Skip to content

Instantly share code, notes, and snippets.

@SergejIsbrecht
Created August 22, 2022 09:40
Show Gist options
  • Save SergejIsbrecht/6a87bd9a5cf4ef89b7ec9ff2f8f04d95 to your computer and use it in GitHub Desktop.
Save SergejIsbrecht/6a87bd9a5cf4ef89b7ec9ff2f8f04d95 to your computer and use it in GitHub Desktop.
DispatcherBenchmark native-image
Display the source blob
Display the rendered blob
Raw
<?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:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
if (!isEdge) {
svg.removeAttribute("viewBox");
}
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="982" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="965.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="965.00"> </text><svg id="frames" x="10" width="1180" total_samples="42892"><g><title>__perf_event_task_sched_in (12 samples, 0.03%)</title><rect x="0.2005%" y="613" width="0.0280%" height="15" fill="rgb(240,109,109)" fg:x="86" fg:w="12"/><text x="0.4505%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (12 samples, 0.03%)</title><rect x="0.2005%" y="597" width="0.0280%" height="15" fill="rgb(71,219,71)" fg:x="86" fg:w="12"/><text x="0.4505%" y="607.50"></text></g><g><title>x86_pmu_enable (12 samples, 0.03%)</title><rect x="0.2005%" y="581" width="0.0280%" height="15" fill="rgb(238,105,105)" fg:x="86" fg:w="12"/><text x="0.4505%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (12 samples, 0.03%)</title><rect x="0.2005%" y="565" width="0.0280%" height="15" fill="rgb(238,105,105)" fg:x="86" fg:w="12"/><text x="0.4505%" y="575.50"></text></g><g><title>native_write_msr (12 samples, 0.03%)</title><rect x="0.2005%" y="549" width="0.0280%" height="15" fill="rgb(212,68,68)" fg:x="86" fg:w="12"/><text x="0.4505%" y="559.50"></text></g><g><title>finish_task_switch (14 samples, 0.03%)</title><rect x="0.2005%" y="629" width="0.0326%" height="15" fill="rgb(251,124,124)" fg:x="86" fg:w="14"/><text x="0.4505%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.04%)</title><rect x="0.1912%" y="725" width="0.0443%" height="15" fill="rgb(254,128,128)" fg:x="82" fg:w="19"/><text x="0.4412%" y="735.50"></text></g><g><title>do_syscall_64 (19 samples, 0.04%)</title><rect x="0.1912%" y="709" width="0.0443%" height="15" fill="rgb(217,75,75)" fg:x="82" fg:w="19"/><text x="0.4412%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (17 samples, 0.04%)</title><rect x="0.1958%" y="693" width="0.0396%" height="15" fill="rgb(226,87,87)" fg:x="84" fg:w="17"/><text x="0.4458%" y="703.50"></text></g><g><title>do_sched_yield (17 samples, 0.04%)</title><rect x="0.1958%" y="677" width="0.0396%" height="15" fill="rgb(219,78,78)" fg:x="84" fg:w="17"/><text x="0.4458%" y="687.50"></text></g><g><title>schedule (16 samples, 0.04%)</title><rect x="0.1982%" y="661" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="85" fg:w="16"/><text x="0.4482%" y="671.50"></text></g><g><title>__schedule (16 samples, 0.04%)</title><rect x="0.1982%" y="645" width="0.0373%" height="15" fill="rgb(209,64,64)" fg:x="85" fg:w="16"/><text x="0.4482%" y="655.50"></text></g><g><title>__GI___sched_yield (23 samples, 0.05%)</title><rect x="0.1888%" y="741" width="0.0536%" height="15" fill="rgb(247,118,118)" fg:x="81" fg:w="23"/><text x="0.4388%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (105 samples, 0.24%)</title><rect x="0.0000%" y="757" width="0.2448%" height="15" fill="rgb(228,228,69)" fg:x="0" fg:w="105"/><text x="0.2500%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,419 samples, 3.31%)</title><rect x="0.2448%" y="741" width="3.3083%" height="15" fill="rgb(213,213,63)" fg:x="105" fg:w="1419"/><text x="0.4948%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,419 samples, 3.31%)</title><rect x="0.2448%" y="725" width="3.3083%" height="15" fill="rgb(185,185,53)" fg:x="105" fg:w="1419"/><text x="0.4948%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,419 samples, 3.31%)</title><rect x="0.2448%" y="709" width="3.3083%" height="15" fill="rgb(185,185,53)" fg:x="105" fg:w="1419"/><text x="0.4948%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,419 samples, 3.31%)</title><rect x="0.2448%" y="693" width="3.3083%" height="15" fill="rgb(196,196,57)" fg:x="105" fg:w="1419"/><text x="0.4948%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,420 samples, 3.31%)</title><rect x="0.2448%" y="757" width="3.3106%" height="15" fill="rgb(203,203,60)" fg:x="105" fg:w="1420"/><text x="0.4948%" y="767.50">jav..</text></g><g><title>[anon] (1,526 samples, 3.56%)</title><rect x="0.0000%" y="901" width="3.5578%" height="15" fill="rgb(252,126,126)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="911.50">[ano..</text></g><g><title>start_thread (1,526 samples, 3.56%)</title><rect x="0.0000%" y="885" width="3.5578%" height="15" fill="rgb(235,101,101)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="895.50">star..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,526 samples, 3.56%)</title><rect x="0.0000%" y="869" width="3.5578%" height="15" fill="rgb(191,191,56)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="879.50">com...</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,526 samples, 3.56%)</title><rect x="0.0000%" y="853" width="3.5578%" height="15" fill="rgb(210,210,62)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="863.50">com...</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,526 samples, 3.56%)</title><rect x="0.0000%" y="837" width="3.5578%" height="15" fill="rgb(205,205,61)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="847.50">com...</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,526 samples, 3.56%)</title><rect x="0.0000%" y="821" width="3.5578%" height="15" fill="rgb(181,181,52)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="831.50">java..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,526 samples, 3.56%)</title><rect x="0.0000%" y="805" width="3.5578%" height="15" fill="rgb(182,182,52)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="815.50">java..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,526 samples, 3.56%)</title><rect x="0.0000%" y="789" width="3.5578%" height="15" fill="rgb(194,194,57)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="799.50">java..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,526 samples, 3.56%)</title><rect x="0.0000%" y="773" width="3.5578%" height="15" fill="rgb(222,222,67)" fg:x="0" fg:w="1526"/><text x="0.2500%" y="783.50">java..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::nextLocalTask (8 samples, 0.02%)</title><rect x="3.5718%" y="757" width="0.0187%" height="15" fill="rgb(188,188,54)" fg:x="1532" fg:w="8"/><text x="3.8218%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (12 samples, 0.03%)</title><rect x="3.6510%" y="437" width="0.0280%" height="15" fill="rgb(240,109,109)" fg:x="1566" fg:w="12"/><text x="3.9010%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (12 samples, 0.03%)</title><rect x="3.6510%" y="421" width="0.0280%" height="15" fill="rgb(71,219,71)" fg:x="1566" fg:w="12"/><text x="3.9010%" y="431.50"></text></g><g><title>x86_pmu_enable (12 samples, 0.03%)</title><rect x="3.6510%" y="405" width="0.0280%" height="15" fill="rgb(238,105,105)" fg:x="1566" fg:w="12"/><text x="3.9010%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (12 samples, 0.03%)</title><rect x="3.6510%" y="389" width="0.0280%" height="15" fill="rgb(238,105,105)" fg:x="1566" fg:w="12"/><text x="3.9010%" y="399.50"></text></g><g><title>native_write_msr (12 samples, 0.03%)</title><rect x="3.6510%" y="373" width="0.0280%" height="15" fill="rgb(212,68,68)" fg:x="1566" fg:w="12"/><text x="3.9010%" y="383.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (33 samples, 0.08%)</title><rect x="3.6044%" y="741" width="0.0769%" height="15" fill="rgb(213,213,63)" fg:x="1546" fg:w="33"/><text x="3.8544%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (32 samples, 0.07%)</title><rect x="3.6067%" y="725" width="0.0746%" height="15" fill="rgb(185,185,53)" fg:x="1547" fg:w="32"/><text x="3.8567%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (32 samples, 0.07%)</title><rect x="3.6067%" y="709" width="0.0746%" height="15" fill="rgb(185,185,53)" fg:x="1547" fg:w="32"/><text x="3.8567%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (14 samples, 0.03%)</title><rect x="3.6487%" y="693" width="0.0326%" height="15" fill="rgb(196,196,57)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (14 samples, 0.03%)</title><rect x="3.6487%" y="677" width="0.0326%" height="15" fill="rgb(208,208,62)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (14 samples, 0.03%)</title><rect x="3.6487%" y="661" width="0.0326%" height="15" fill="rgb(179,179,51)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (14 samples, 0.03%)</title><rect x="3.6487%" y="645" width="0.0326%" height="15" fill="rgb(182,182,52)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (14 samples, 0.03%)</title><rect x="3.6487%" y="629" width="0.0326%" height="15" fill="rgb(184,184,53)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (14 samples, 0.03%)</title><rect x="3.6487%" y="613" width="0.0326%" height="15" fill="rgb(246,117,117)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="623.50"></text></g><g><title>__lll_lock_wait (14 samples, 0.03%)</title><rect x="3.6487%" y="597" width="0.0326%" height="15" fill="rgb(235,101,101)" fg:x="1565" fg:w="14"/><text x="3.8987%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (13 samples, 0.03%)</title><rect x="3.6510%" y="581" width="0.0303%" height="15" fill="rgb(254,128,128)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="591.50"></text></g><g><title>do_syscall_64 (13 samples, 0.03%)</title><rect x="3.6510%" y="565" width="0.0303%" height="15" fill="rgb(217,75,75)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="575.50"></text></g><g><title>__x64_sys_futex (13 samples, 0.03%)</title><rect x="3.6510%" y="549" width="0.0303%" height="15" fill="rgb(248,121,121)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="559.50"></text></g><g><title>do_futex (13 samples, 0.03%)</title><rect x="3.6510%" y="533" width="0.0303%" height="15" fill="rgb(230,94,94)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="543.50"></text></g><g><title>futex_wait (13 samples, 0.03%)</title><rect x="3.6510%" y="517" width="0.0303%" height="15" fill="rgb(219,78,78)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="527.50"></text></g><g><title>futex_wait_queue_me (13 samples, 0.03%)</title><rect x="3.6510%" y="501" width="0.0303%" height="15" fill="rgb(204,56,56)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="511.50"></text></g><g><title>schedule (13 samples, 0.03%)</title><rect x="3.6510%" y="485" width="0.0303%" height="15" fill="rgb(251,124,124)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="495.50"></text></g><g><title>__schedule (13 samples, 0.03%)</title><rect x="3.6510%" y="469" width="0.0303%" height="15" fill="rgb(209,64,64)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="479.50"></text></g><g><title>finish_task_switch (13 samples, 0.03%)</title><rect x="3.6510%" y="453" width="0.0303%" height="15" fill="rgb(251,124,124)" fg:x="1566" fg:w="13"/><text x="3.9010%" y="463.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (60 samples, 0.14%)</title><rect x="3.5671%" y="773" width="0.1399%" height="15" fill="rgb(222,222,67)" fg:x="1530" fg:w="60"/><text x="3.8171%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (47 samples, 0.11%)</title><rect x="3.5974%" y="757" width="0.1096%" height="15" fill="rgb(203,203,60)" fg:x="1543" fg:w="47"/><text x="3.8474%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (11 samples, 0.03%)</title><rect x="3.6813%" y="741" width="0.0256%" height="15" fill="rgb(219,219,66)" fg:x="1579" fg:w="11"/><text x="3.9313%" y="751.50"></text></g><g><title>[unknown] (65 samples, 0.15%)</title><rect x="3.5578%" y="901" width="0.1515%" height="15" fill="rgb(206,59,59)" fg:x="1526" fg:w="65"/><text x="3.8078%" y="911.50"></text></g><g><title>start_thread (61 samples, 0.14%)</title><rect x="3.5671%" y="885" width="0.1422%" height="15" fill="rgb(235,101,101)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (61 samples, 0.14%)</title><rect x="3.5671%" y="869" width="0.1422%" height="15" fill="rgb(191,191,56)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (61 samples, 0.14%)</title><rect x="3.5671%" y="853" width="0.1422%" height="15" fill="rgb(210,210,62)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (61 samples, 0.14%)</title><rect x="3.5671%" y="837" width="0.1422%" height="15" fill="rgb(205,205,61)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (61 samples, 0.14%)</title><rect x="3.5671%" y="821" width="0.1422%" height="15" fill="rgb(181,181,52)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (61 samples, 0.14%)</title><rect x="3.5671%" y="805" width="0.1422%" height="15" fill="rgb(182,182,52)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (61 samples, 0.14%)</title><rect x="3.5671%" y="789" width="0.1422%" height="15" fill="rgb(194,194,57)" fg:x="1530" fg:w="61"/><text x="3.8171%" y="799.50"></text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="3.7303%" y="565" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="1600" fg:w="20"/><text x="3.9803%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="3.7303%" y="549" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="1600" fg:w="20"/><text x="3.9803%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="3.7303%" y="533" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="1600" fg:w="20"/><text x="3.9803%" y="543.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="3.7303%" y="517" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="1600" fg:w="20"/><text x="3.9803%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="3.7303%" y="501" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="1600" fg:w="20"/><text x="3.9803%" y="511.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="3.7303%" y="485" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="1600" fg:w="20"/><text x="3.9803%" y="495.50"></text></g><g><title>Pool-6-worker-3 (1,621 samples, 3.78%)</title><rect x="0.0000%" y="917" width="3.7793%" height="15" fill="rgb(79,226,79)" fg:x="0" fg:w="1621"/><text x="0.2500%" y="927.50">Pool..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (21 samples, 0.05%)</title><rect x="3.7303%" y="901" width="0.0490%" height="15" fill="rgb(181,181,52)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="911.50"></text></g><g><title>start_thread (21 samples, 0.05%)</title><rect x="3.7303%" y="885" width="0.0490%" height="15" fill="rgb(235,101,101)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (21 samples, 0.05%)</title><rect x="3.7303%" y="869" width="0.0490%" height="15" fill="rgb(191,191,56)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (21 samples, 0.05%)</title><rect x="3.7303%" y="853" width="0.0490%" height="15" fill="rgb(210,210,62)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (21 samples, 0.05%)</title><rect x="3.7303%" y="837" width="0.0490%" height="15" fill="rgb(205,205,61)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (21 samples, 0.05%)</title><rect x="3.7303%" y="821" width="0.0490%" height="15" fill="rgb(181,181,52)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (21 samples, 0.05%)</title><rect x="3.7303%" y="805" width="0.0490%" height="15" fill="rgb(182,182,52)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (21 samples, 0.05%)</title><rect x="3.7303%" y="789" width="0.0490%" height="15" fill="rgb(204,204,60)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (21 samples, 0.05%)</title><rect x="3.7303%" y="773" width="0.0490%" height="15" fill="rgb(191,191,56)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (21 samples, 0.05%)</title><rect x="3.7303%" y="757" width="0.0490%" height="15" fill="rgb(218,218,65)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="767.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.05%)</title><rect x="3.7303%" y="741" width="0.0490%" height="15" fill="rgb(240,109,109)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.05%)</title><rect x="3.7303%" y="725" width="0.0490%" height="15" fill="rgb(203,55,55)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="735.50"></text></g><g><title>futex_wait_cancelable (21 samples, 0.05%)</title><rect x="3.7303%" y="709" width="0.0490%" height="15" fill="rgb(252,126,126)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.05%)</title><rect x="3.7303%" y="693" width="0.0490%" height="15" fill="rgb(254,128,128)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="703.50"></text></g><g><title>do_syscall_64 (21 samples, 0.05%)</title><rect x="3.7303%" y="677" width="0.0490%" height="15" fill="rgb(217,75,75)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="687.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.05%)</title><rect x="3.7303%" y="661" width="0.0490%" height="15" fill="rgb(248,121,121)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="671.50"></text></g><g><title>do_futex (21 samples, 0.05%)</title><rect x="3.7303%" y="645" width="0.0490%" height="15" fill="rgb(230,94,94)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="655.50"></text></g><g><title>futex_wait (21 samples, 0.05%)</title><rect x="3.7303%" y="629" width="0.0490%" height="15" fill="rgb(219,78,78)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="639.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.05%)</title><rect x="3.7303%" y="613" width="0.0490%" height="15" fill="rgb(204,56,56)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="623.50"></text></g><g><title>schedule (21 samples, 0.05%)</title><rect x="3.7303%" y="597" width="0.0490%" height="15" fill="rgb(251,124,124)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="607.50"></text></g><g><title>__schedule (21 samples, 0.05%)</title><rect x="3.7303%" y="581" width="0.0490%" height="15" fill="rgb(209,64,64)" fg:x="1600" fg:w="21"/><text x="3.9803%" y="591.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="3.9798%" y="629" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="1707" fg:w="16"/><text x="4.2298%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="3.9798%" y="613" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="1707" fg:w="16"/><text x="4.2298%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="3.9798%" y="597" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="1707" fg:w="16"/><text x="4.2298%" y="607.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="3.9798%" y="581" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="1707" fg:w="16"/><text x="4.2298%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="3.9798%" y="565" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="1707" fg:w="16"/><text x="4.2298%" y="575.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="3.9798%" y="549" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="1707" fg:w="16"/><text x="4.2298%" y="559.50"></text></g><g><title>__schedule (19 samples, 0.04%)</title><rect x="3.9774%" y="645" width="0.0443%" height="15" fill="rgb(209,64,64)" fg:x="1706" fg:w="19"/><text x="4.2274%" y="655.50"></text></g><g><title>__GI___sched_yield (28 samples, 0.07%)</title><rect x="3.9588%" y="741" width="0.0653%" height="15" fill="rgb(247,118,118)" fg:x="1698" fg:w="28"/><text x="4.2088%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.06%)</title><rect x="3.9611%" y="725" width="0.0629%" height="15" fill="rgb(254,128,128)" fg:x="1699" fg:w="27"/><text x="4.2111%" y="735.50"></text></g><g><title>do_syscall_64 (26 samples, 0.06%)</title><rect x="3.9634%" y="709" width="0.0606%" height="15" fill="rgb(217,75,75)" fg:x="1700" fg:w="26"/><text x="4.2134%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (20 samples, 0.05%)</title><rect x="3.9774%" y="693" width="0.0466%" height="15" fill="rgb(226,87,87)" fg:x="1706" fg:w="20"/><text x="4.2274%" y="703.50"></text></g><g><title>do_sched_yield (20 samples, 0.05%)</title><rect x="3.9774%" y="677" width="0.0466%" height="15" fill="rgb(219,78,78)" fg:x="1706" fg:w="20"/><text x="4.2274%" y="687.50"></text></g><g><title>schedule (20 samples, 0.05%)</title><rect x="3.9774%" y="661" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="1706" fg:w="20"/><text x="4.2274%" y="671.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (110 samples, 0.26%)</title><rect x="3.7793%" y="757" width="0.2565%" height="15" fill="rgb(228,228,69)" fg:x="1621" fg:w="110"/><text x="4.0293%" y="767.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathTransitionFromNativeToNewStatus (5 samples, 0.01%)</title><rect x="4.0241%" y="741" width="0.0117%" height="15" fill="rgb(185,185,53)" fg:x="1726" fg:w="5"/><text x="4.2741%" y="751.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (5 samples, 0.01%)</title><rect x="4.0241%" y="725" width="0.0117%" height="15" fill="rgb(179,179,51)" fg:x="1726" fg:w="5"/><text x="4.2741%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (5 samples, 0.01%)</title><rect x="4.0241%" y="709" width="0.0117%" height="15" fill="rgb(182,182,52)" fg:x="1726" fg:w="5"/><text x="4.2741%" y="719.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,339 samples, 3.12%)</title><rect x="4.0357%" y="741" width="3.1218%" height="15" fill="rgb(213,213,63)" fg:x="1731" fg:w="1339"/><text x="4.2857%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,339 samples, 3.12%)</title><rect x="4.0357%" y="725" width="3.1218%" height="15" fill="rgb(185,185,53)" fg:x="1731" fg:w="1339"/><text x="4.2857%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,339 samples, 3.12%)</title><rect x="4.0357%" y="709" width="3.1218%" height="15" fill="rgb(185,185,53)" fg:x="1731" fg:w="1339"/><text x="4.2857%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,339 samples, 3.12%)</title><rect x="4.0357%" y="693" width="3.1218%" height="15" fill="rgb(196,196,57)" fg:x="1731" fg:w="1339"/><text x="4.2857%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,340 samples, 3.12%)</title><rect x="4.0357%" y="757" width="3.1241%" height="15" fill="rgb(203,203,60)" fg:x="1731" fg:w="1340"/><text x="4.2857%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,451 samples, 3.38%)</title><rect x="3.7793%" y="773" width="3.3829%" height="15" fill="rgb(222,222,67)" fg:x="1621" fg:w="1451"/><text x="4.0293%" y="783.50">jav..</text></g><g><title>[anon] (1,452 samples, 3.39%)</title><rect x="3.7793%" y="901" width="3.3852%" height="15" fill="rgb(252,126,126)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="911.50">[an..</text></g><g><title>start_thread (1,452 samples, 3.39%)</title><rect x="3.7793%" y="885" width="3.3852%" height="15" fill="rgb(235,101,101)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,452 samples, 3.39%)</title><rect x="3.7793%" y="869" width="3.3852%" height="15" fill="rgb(191,191,56)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,452 samples, 3.39%)</title><rect x="3.7793%" y="853" width="3.3852%" height="15" fill="rgb(210,210,62)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,452 samples, 3.39%)</title><rect x="3.7793%" y="837" width="3.3852%" height="15" fill="rgb(205,205,61)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,452 samples, 3.39%)</title><rect x="3.7793%" y="821" width="3.3852%" height="15" fill="rgb(181,181,52)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,452 samples, 3.39%)</title><rect x="3.7793%" y="805" width="3.3852%" height="15" fill="rgb(182,182,52)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,452 samples, 3.39%)</title><rect x="3.7793%" y="789" width="3.3852%" height="15" fill="rgb(194,194,57)" fg:x="1621" fg:w="1452"/><text x="4.0293%" y="799.50">jav..</text></g><g><title>dup@plt (12 samples, 0.03%)</title><rect x="7.1645%" y="885" width="0.0280%" height="15" fill="rgb(215,73,73)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="895.50"></text></g><g><title>start_thread (12 samples, 0.03%)</title><rect x="7.1645%" y="869" width="0.0280%" height="15" fill="rgb(235,101,101)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (12 samples, 0.03%)</title><rect x="7.1645%" y="853" width="0.0280%" height="15" fill="rgb(191,191,56)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (12 samples, 0.03%)</title><rect x="7.1645%" y="837" width="0.0280%" height="15" fill="rgb(210,210,62)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (12 samples, 0.03%)</title><rect x="7.1645%" y="821" width="0.0280%" height="15" fill="rgb(205,205,61)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (12 samples, 0.03%)</title><rect x="7.1645%" y="805" width="0.0280%" height="15" fill="rgb(181,181,52)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (12 samples, 0.03%)</title><rect x="7.1645%" y="789" width="0.0280%" height="15" fill="rgb(182,182,52)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (12 samples, 0.03%)</title><rect x="7.1645%" y="773" width="0.0280%" height="15" fill="rgb(194,194,57)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (12 samples, 0.03%)</title><rect x="7.1645%" y="757" width="0.0280%" height="15" fill="rgb(222,222,67)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (12 samples, 0.03%)</title><rect x="7.1645%" y="741" width="0.0280%" height="15" fill="rgb(203,203,60)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (12 samples, 0.03%)</title><rect x="7.1645%" y="725" width="0.0280%" height="15" fill="rgb(213,213,63)" fg:x="3073" fg:w="12"/><text x="7.4145%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (31 samples, 0.07%)</title><rect x="7.2041%" y="741" width="0.0723%" height="15" fill="rgb(213,213,63)" fg:x="3090" fg:w="31"/><text x="7.4541%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (31 samples, 0.07%)</title><rect x="7.2041%" y="725" width="0.0723%" height="15" fill="rgb(185,185,53)" fg:x="3090" fg:w="31"/><text x="7.4541%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (31 samples, 0.07%)</title><rect x="7.2041%" y="709" width="0.0723%" height="15" fill="rgb(185,185,53)" fg:x="3090" fg:w="31"/><text x="7.4541%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (9 samples, 0.02%)</title><rect x="7.2554%" y="693" width="0.0210%" height="15" fill="rgb(196,196,57)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (9 samples, 0.02%)</title><rect x="7.2554%" y="677" width="0.0210%" height="15" fill="rgb(208,208,62)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (9 samples, 0.02%)</title><rect x="7.2554%" y="661" width="0.0210%" height="15" fill="rgb(179,179,51)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (9 samples, 0.02%)</title><rect x="7.2554%" y="645" width="0.0210%" height="15" fill="rgb(182,182,52)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (9 samples, 0.02%)</title><rect x="7.2554%" y="629" width="0.0210%" height="15" fill="rgb(184,184,53)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (9 samples, 0.02%)</title><rect x="7.2554%" y="613" width="0.0210%" height="15" fill="rgb(246,117,117)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="623.50"></text></g><g><title>__lll_lock_wait (9 samples, 0.02%)</title><rect x="7.2554%" y="597" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="7.2554%" y="581" width="0.0210%" height="15" fill="rgb(254,128,128)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="591.50"></text></g><g><title>do_syscall_64 (9 samples, 0.02%)</title><rect x="7.2554%" y="565" width="0.0210%" height="15" fill="rgb(217,75,75)" fg:x="3112" fg:w="9"/><text x="7.5054%" y="575.50"></text></g><g><title>__x64_sys_futex (8 samples, 0.02%)</title><rect x="7.2578%" y="549" width="0.0187%" height="15" fill="rgb(248,121,121)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="559.50"></text></g><g><title>do_futex (8 samples, 0.02%)</title><rect x="7.2578%" y="533" width="0.0187%" height="15" fill="rgb(230,94,94)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="543.50"></text></g><g><title>futex_wait (8 samples, 0.02%)</title><rect x="7.2578%" y="517" width="0.0187%" height="15" fill="rgb(219,78,78)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="527.50"></text></g><g><title>futex_wait_queue_me (8 samples, 0.02%)</title><rect x="7.2578%" y="501" width="0.0187%" height="15" fill="rgb(204,56,56)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="511.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="7.2578%" y="485" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="495.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="7.2578%" y="469" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="479.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="7.2578%" y="453" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="7.2578%" y="437" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="7.2578%" y="421" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="431.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="7.2578%" y="405" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="7.2578%" y="389" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="399.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="7.2578%" y="373" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="3113" fg:w="8"/><text x="7.5078%" y="383.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (56 samples, 0.13%)</title><rect x="7.1925%" y="773" width="0.1306%" height="15" fill="rgb(222,222,67)" fg:x="3085" fg:w="56"/><text x="7.4425%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (53 samples, 0.12%)</title><rect x="7.1995%" y="757" width="0.1236%" height="15" fill="rgb(203,203,60)" fg:x="3088" fg:w="53"/><text x="7.4495%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (20 samples, 0.05%)</title><rect x="7.2764%" y="741" width="0.0466%" height="15" fill="rgb(219,219,66)" fg:x="3121" fg:w="20"/><text x="7.5264%" y="751.50"></text></g><g><title>[unknown] (72 samples, 0.17%)</title><rect x="7.1645%" y="901" width="0.1679%" height="15" fill="rgb(206,59,59)" fg:x="3073" fg:w="72"/><text x="7.4145%" y="911.50"></text></g><g><title>start_thread (60 samples, 0.14%)</title><rect x="7.1925%" y="885" width="0.1399%" height="15" fill="rgb(235,101,101)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (60 samples, 0.14%)</title><rect x="7.1925%" y="869" width="0.1399%" height="15" fill="rgb(191,191,56)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (60 samples, 0.14%)</title><rect x="7.1925%" y="853" width="0.1399%" height="15" fill="rgb(210,210,62)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (60 samples, 0.14%)</title><rect x="7.1925%" y="837" width="0.1399%" height="15" fill="rgb(205,205,61)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (60 samples, 0.14%)</title><rect x="7.1925%" y="821" width="0.1399%" height="15" fill="rgb(181,181,52)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (60 samples, 0.14%)</title><rect x="7.1925%" y="805" width="0.1399%" height="15" fill="rgb(182,182,52)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (60 samples, 0.14%)</title><rect x="7.1925%" y="789" width="0.1399%" height="15" fill="rgb(194,194,57)" fg:x="3085" fg:w="60"/><text x="7.4425%" y="799.50"></text></g><g><title>__schedule (32 samples, 0.07%)</title><rect x="7.3440%" y="581" width="0.0746%" height="15" fill="rgb(209,64,64)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="591.50"></text></g><g><title>finish_task_switch (32 samples, 0.07%)</title><rect x="7.3440%" y="565" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.07%)</title><rect x="7.3440%" y="549" width="0.0746%" height="15" fill="rgb(240,109,109)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (32 samples, 0.07%)</title><rect x="7.3440%" y="533" width="0.0746%" height="15" fill="rgb(71,219,71)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="543.50"></text></g><g><title>x86_pmu_enable (32 samples, 0.07%)</title><rect x="7.3440%" y="517" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (32 samples, 0.07%)</title><rect x="7.3440%" y="501" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="511.50"></text></g><g><title>native_write_msr (32 samples, 0.07%)</title><rect x="7.3440%" y="485" width="0.0746%" height="15" fill="rgb(212,68,68)" fg:x="3150" fg:w="32"/><text x="7.5940%" y="495.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (33 samples, 0.08%)</title><rect x="7.3440%" y="901" width="0.0769%" height="15" fill="rgb(181,181,52)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="911.50"></text></g><g><title>start_thread (33 samples, 0.08%)</title><rect x="7.3440%" y="885" width="0.0769%" height="15" fill="rgb(235,101,101)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="7.3440%" y="869" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (33 samples, 0.08%)</title><rect x="7.3440%" y="853" width="0.0769%" height="15" fill="rgb(210,210,62)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (33 samples, 0.08%)</title><rect x="7.3440%" y="837" width="0.0769%" height="15" fill="rgb(205,205,61)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (33 samples, 0.08%)</title><rect x="7.3440%" y="821" width="0.0769%" height="15" fill="rgb(181,181,52)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (33 samples, 0.08%)</title><rect x="7.3440%" y="805" width="0.0769%" height="15" fill="rgb(182,182,52)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (33 samples, 0.08%)</title><rect x="7.3440%" y="789" width="0.0769%" height="15" fill="rgb(204,204,60)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (33 samples, 0.08%)</title><rect x="7.3440%" y="773" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (33 samples, 0.08%)</title><rect x="7.3440%" y="757" width="0.0769%" height="15" fill="rgb(218,218,65)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="767.50"></text></g><g><title>__pthread_cond_wait (33 samples, 0.08%)</title><rect x="7.3440%" y="741" width="0.0769%" height="15" fill="rgb(240,109,109)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.08%)</title><rect x="7.3440%" y="725" width="0.0769%" height="15" fill="rgb(203,55,55)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="735.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.08%)</title><rect x="7.3440%" y="709" width="0.0769%" height="15" fill="rgb(252,126,126)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.08%)</title><rect x="7.3440%" y="693" width="0.0769%" height="15" fill="rgb(254,128,128)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="703.50"></text></g><g><title>do_syscall_64 (33 samples, 0.08%)</title><rect x="7.3440%" y="677" width="0.0769%" height="15" fill="rgb(217,75,75)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="687.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.08%)</title><rect x="7.3440%" y="661" width="0.0769%" height="15" fill="rgb(248,121,121)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="671.50"></text></g><g><title>do_futex (33 samples, 0.08%)</title><rect x="7.3440%" y="645" width="0.0769%" height="15" fill="rgb(230,94,94)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="655.50"></text></g><g><title>futex_wait (33 samples, 0.08%)</title><rect x="7.3440%" y="629" width="0.0769%" height="15" fill="rgb(219,78,78)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="639.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.08%)</title><rect x="7.3440%" y="613" width="0.0769%" height="15" fill="rgb(204,56,56)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="623.50"></text></g><g><title>schedule (33 samples, 0.08%)</title><rect x="7.3440%" y="597" width="0.0769%" height="15" fill="rgb(251,124,124)" fg:x="3150" fg:w="33"/><text x="7.5940%" y="607.50"></text></g><g><title>Pool-6-worker-5 (1,564 samples, 3.65%)</title><rect x="3.7793%" y="917" width="3.6464%" height="15" fill="rgb(79,226,79)" fg:x="1621" fg:w="1564"/><text x="4.0293%" y="927.50">Pool..</text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="7.5818%" y="629" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="3252" fg:w="8"/><text x="7.8318%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="7.5818%" y="613" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="3252" fg:w="8"/><text x="7.8318%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="7.5818%" y="597" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="3252" fg:w="8"/><text x="7.8318%" y="607.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="7.5818%" y="581" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="3252" fg:w="8"/><text x="7.8318%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="7.5818%" y="565" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="3252" fg:w="8"/><text x="7.8318%" y="575.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="7.5818%" y="549" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="3252" fg:w="8"/><text x="7.8318%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (15 samples, 0.03%)</title><rect x="7.5702%" y="725" width="0.0350%" height="15" fill="rgb(254,128,128)" fg:x="3247" fg:w="15"/><text x="7.8202%" y="735.50"></text></g><g><title>do_syscall_64 (15 samples, 0.03%)</title><rect x="7.5702%" y="709" width="0.0350%" height="15" fill="rgb(217,75,75)" fg:x="3247" fg:w="15"/><text x="7.8202%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (13 samples, 0.03%)</title><rect x="7.5748%" y="693" width="0.0303%" height="15" fill="rgb(226,87,87)" fg:x="3249" fg:w="13"/><text x="7.8248%" y="703.50"></text></g><g><title>do_sched_yield (12 samples, 0.03%)</title><rect x="7.5772%" y="677" width="0.0280%" height="15" fill="rgb(219,78,78)" fg:x="3250" fg:w="12"/><text x="7.8272%" y="687.50"></text></g><g><title>schedule (12 samples, 0.03%)</title><rect x="7.5772%" y="661" width="0.0280%" height="15" fill="rgb(251,124,124)" fg:x="3250" fg:w="12"/><text x="7.8272%" y="671.50"></text></g><g><title>__schedule (12 samples, 0.03%)</title><rect x="7.5772%" y="645" width="0.0280%" height="15" fill="rgb(209,64,64)" fg:x="3250" fg:w="12"/><text x="7.8272%" y="655.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (79 samples, 0.18%)</title><rect x="7.4256%" y="757" width="0.1842%" height="15" fill="rgb(228,228,69)" fg:x="3185" fg:w="79"/><text x="7.6756%" y="767.50"></text></g><g><title>__GI___sched_yield (17 samples, 0.04%)</title><rect x="7.5702%" y="741" width="0.0396%" height="15" fill="rgb(247,118,118)" fg:x="3247" fg:w="17"/><text x="7.8202%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,357 samples, 3.16%)</title><rect x="7.6098%" y="757" width="3.1638%" height="15" fill="rgb(203,203,60)" fg:x="3264" fg:w="1357"/><text x="7.8598%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,357 samples, 3.16%)</title><rect x="7.6098%" y="741" width="3.1638%" height="15" fill="rgb(213,213,63)" fg:x="3264" fg:w="1357"/><text x="7.8598%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,357 samples, 3.16%)</title><rect x="7.6098%" y="725" width="3.1638%" height="15" fill="rgb(185,185,53)" fg:x="3264" fg:w="1357"/><text x="7.8598%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,357 samples, 3.16%)</title><rect x="7.6098%" y="709" width="3.1638%" height="15" fill="rgb(185,185,53)" fg:x="3264" fg:w="1357"/><text x="7.8598%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,357 samples, 3.16%)</title><rect x="7.6098%" y="693" width="3.1638%" height="15" fill="rgb(196,196,57)" fg:x="3264" fg:w="1357"/><text x="7.8598%" y="703.50">io...</text></g><g><title>[anon] (1,437 samples, 3.35%)</title><rect x="7.4256%" y="901" width="3.3503%" height="15" fill="rgb(252,126,126)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="911.50">[an..</text></g><g><title>start_thread (1,437 samples, 3.35%)</title><rect x="7.4256%" y="885" width="3.3503%" height="15" fill="rgb(235,101,101)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,437 samples, 3.35%)</title><rect x="7.4256%" y="869" width="3.3503%" height="15" fill="rgb(191,191,56)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,437 samples, 3.35%)</title><rect x="7.4256%" y="853" width="3.3503%" height="15" fill="rgb(210,210,62)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,437 samples, 3.35%)</title><rect x="7.4256%" y="837" width="3.3503%" height="15" fill="rgb(205,205,61)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,437 samples, 3.35%)</title><rect x="7.4256%" y="821" width="3.3503%" height="15" fill="rgb(181,181,52)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,437 samples, 3.35%)</title><rect x="7.4256%" y="805" width="3.3503%" height="15" fill="rgb(182,182,52)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,437 samples, 3.35%)</title><rect x="7.4256%" y="789" width="3.3503%" height="15" fill="rgb(194,194,57)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,437 samples, 3.35%)</title><rect x="7.4256%" y="773" width="3.3503%" height="15" fill="rgb(222,222,67)" fg:x="3185" fg:w="1437"/><text x="7.6756%" y="783.50">jav..</text></g><g><title>dup@plt (8 samples, 0.02%)</title><rect x="10.7759%" y="885" width="0.0187%" height="15" fill="rgb(215,73,73)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="895.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="10.7759%" y="869" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="10.7759%" y="853" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="10.7759%" y="837" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="10.7759%" y="821" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (8 samples, 0.02%)</title><rect x="10.7759%" y="805" width="0.0187%" height="15" fill="rgb(181,181,52)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (8 samples, 0.02%)</title><rect x="10.7759%" y="789" width="0.0187%" height="15" fill="rgb(182,182,52)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (8 samples, 0.02%)</title><rect x="10.7759%" y="773" width="0.0187%" height="15" fill="rgb(194,194,57)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (8 samples, 0.02%)</title><rect x="10.7759%" y="757" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (8 samples, 0.02%)</title><rect x="10.7759%" y="741" width="0.0187%" height="15" fill="rgb(203,203,60)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (8 samples, 0.02%)</title><rect x="10.7759%" y="725" width="0.0187%" height="15" fill="rgb(213,213,63)" fg:x="4622" fg:w="8"/><text x="11.0259%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::nextLocalTask (5 samples, 0.01%)</title><rect x="10.7969%" y="757" width="0.0117%" height="15" fill="rgb(188,188,54)" fg:x="4631" fg:w="5"/><text x="11.0469%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (29 samples, 0.07%)</title><rect x="10.8249%" y="741" width="0.0676%" height="15" fill="rgb(213,213,63)" fg:x="4643" fg:w="29"/><text x="11.0749%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (29 samples, 0.07%)</title><rect x="10.8249%" y="725" width="0.0676%" height="15" fill="rgb(185,185,53)" fg:x="4643" fg:w="29"/><text x="11.0749%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (27 samples, 0.06%)</title><rect x="10.8295%" y="709" width="0.0629%" height="15" fill="rgb(185,185,53)" fg:x="4645" fg:w="27"/><text x="11.0795%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (8 samples, 0.02%)</title><rect x="10.8738%" y="693" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (8 samples, 0.02%)</title><rect x="10.8738%" y="677" width="0.0187%" height="15" fill="rgb(208,208,62)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (8 samples, 0.02%)</title><rect x="10.8738%" y="661" width="0.0187%" height="15" fill="rgb(179,179,51)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (8 samples, 0.02%)</title><rect x="10.8738%" y="645" width="0.0187%" height="15" fill="rgb(182,182,52)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (8 samples, 0.02%)</title><rect x="10.8738%" y="629" width="0.0187%" height="15" fill="rgb(184,184,53)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (8 samples, 0.02%)</title><rect x="10.8738%" y="613" width="0.0187%" height="15" fill="rgb(246,117,117)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="623.50"></text></g><g><title>__lll_lock_wait (8 samples, 0.02%)</title><rect x="10.8738%" y="597" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="10.8738%" y="581" width="0.0187%" height="15" fill="rgb(254,128,128)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="591.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="10.8738%" y="565" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="575.50"></text></g><g><title>__x64_sys_futex (8 samples, 0.02%)</title><rect x="10.8738%" y="549" width="0.0187%" height="15" fill="rgb(248,121,121)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="559.50"></text></g><g><title>do_futex (8 samples, 0.02%)</title><rect x="10.8738%" y="533" width="0.0187%" height="15" fill="rgb(230,94,94)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="543.50"></text></g><g><title>futex_wait (8 samples, 0.02%)</title><rect x="10.8738%" y="517" width="0.0187%" height="15" fill="rgb(219,78,78)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="527.50"></text></g><g><title>futex_wait_queue_me (8 samples, 0.02%)</title><rect x="10.8738%" y="501" width="0.0187%" height="15" fill="rgb(204,56,56)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="511.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="10.8738%" y="485" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="495.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="10.8738%" y="469" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="479.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="10.8738%" y="453" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="10.8738%" y="437" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="10.8738%" y="421" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="431.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="10.8738%" y="405" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="10.8738%" y="389" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="399.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="10.8738%" y="373" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="4664" fg:w="8"/><text x="11.1238%" y="383.50"></text></g><g><title>[unknown] (76 samples, 0.18%)</title><rect x="10.7759%" y="901" width="0.1772%" height="15" fill="rgb(206,59,59)" fg:x="4622" fg:w="76"/><text x="11.0259%" y="911.50"></text></g><g><title>start_thread (68 samples, 0.16%)</title><rect x="10.7946%" y="885" width="0.1585%" height="15" fill="rgb(235,101,101)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (68 samples, 0.16%)</title><rect x="10.7946%" y="869" width="0.1585%" height="15" fill="rgb(191,191,56)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (68 samples, 0.16%)</title><rect x="10.7946%" y="853" width="0.1585%" height="15" fill="rgb(210,210,62)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (68 samples, 0.16%)</title><rect x="10.7946%" y="837" width="0.1585%" height="15" fill="rgb(205,205,61)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (68 samples, 0.16%)</title><rect x="10.7946%" y="821" width="0.1585%" height="15" fill="rgb(181,181,52)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (68 samples, 0.16%)</title><rect x="10.7946%" y="805" width="0.1585%" height="15" fill="rgb(182,182,52)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (68 samples, 0.16%)</title><rect x="10.7946%" y="789" width="0.1585%" height="15" fill="rgb(194,194,57)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (68 samples, 0.16%)</title><rect x="10.7946%" y="773" width="0.1585%" height="15" fill="rgb(222,222,67)" fg:x="4630" fg:w="68"/><text x="11.0446%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (60 samples, 0.14%)</title><rect x="10.8132%" y="757" width="0.1399%" height="15" fill="rgb(203,203,60)" fg:x="4638" fg:w="60"/><text x="11.0632%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (26 samples, 0.06%)</title><rect x="10.8925%" y="741" width="0.0606%" height="15" fill="rgb(219,219,66)" fg:x="4672" fg:w="26"/><text x="11.1425%" y="751.50"></text></g><g><title>Pool-6-worker-7 (1,549 samples, 3.61%)</title><rect x="7.4256%" y="917" width="3.6114%" height="15" fill="rgb(79,226,79)" fg:x="3185" fg:w="1549"/><text x="7.6756%" y="927.50">Pool..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (28 samples, 0.07%)</title><rect x="10.9717%" y="901" width="0.0653%" height="15" fill="rgb(181,181,52)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="911.50"></text></g><g><title>start_thread (28 samples, 0.07%)</title><rect x="10.9717%" y="885" width="0.0653%" height="15" fill="rgb(235,101,101)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (28 samples, 0.07%)</title><rect x="10.9717%" y="869" width="0.0653%" height="15" fill="rgb(191,191,56)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (28 samples, 0.07%)</title><rect x="10.9717%" y="853" width="0.0653%" height="15" fill="rgb(210,210,62)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (28 samples, 0.07%)</title><rect x="10.9717%" y="837" width="0.0653%" height="15" fill="rgb(205,205,61)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (28 samples, 0.07%)</title><rect x="10.9717%" y="821" width="0.0653%" height="15" fill="rgb(181,181,52)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (28 samples, 0.07%)</title><rect x="10.9717%" y="805" width="0.0653%" height="15" fill="rgb(182,182,52)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (28 samples, 0.07%)</title><rect x="10.9717%" y="789" width="0.0653%" height="15" fill="rgb(204,204,60)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (28 samples, 0.07%)</title><rect x="10.9717%" y="773" width="0.0653%" height="15" fill="rgb(191,191,56)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (28 samples, 0.07%)</title><rect x="10.9717%" y="757" width="0.0653%" height="15" fill="rgb(218,218,65)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="767.50"></text></g><g><title>__pthread_cond_wait (28 samples, 0.07%)</title><rect x="10.9717%" y="741" width="0.0653%" height="15" fill="rgb(240,109,109)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.07%)</title><rect x="10.9717%" y="725" width="0.0653%" height="15" fill="rgb(203,55,55)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="735.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.07%)</title><rect x="10.9717%" y="709" width="0.0653%" height="15" fill="rgb(252,126,126)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.07%)</title><rect x="10.9717%" y="693" width="0.0653%" height="15" fill="rgb(254,128,128)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="703.50"></text></g><g><title>do_syscall_64 (28 samples, 0.07%)</title><rect x="10.9717%" y="677" width="0.0653%" height="15" fill="rgb(217,75,75)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="687.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.07%)</title><rect x="10.9717%" y="661" width="0.0653%" height="15" fill="rgb(248,121,121)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="671.50"></text></g><g><title>do_futex (28 samples, 0.07%)</title><rect x="10.9717%" y="645" width="0.0653%" height="15" fill="rgb(230,94,94)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="655.50"></text></g><g><title>futex_wait (28 samples, 0.07%)</title><rect x="10.9717%" y="629" width="0.0653%" height="15" fill="rgb(219,78,78)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="639.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.07%)</title><rect x="10.9717%" y="613" width="0.0653%" height="15" fill="rgb(204,56,56)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="623.50"></text></g><g><title>schedule (28 samples, 0.07%)</title><rect x="10.9717%" y="597" width="0.0653%" height="15" fill="rgb(251,124,124)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="607.50"></text></g><g><title>__schedule (28 samples, 0.07%)</title><rect x="10.9717%" y="581" width="0.0653%" height="15" fill="rgb(209,64,64)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="591.50"></text></g><g><title>finish_task_switch (28 samples, 0.07%)</title><rect x="10.9717%" y="565" width="0.0653%" height="15" fill="rgb(251,124,124)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.07%)</title><rect x="10.9717%" y="549" width="0.0653%" height="15" fill="rgb(240,109,109)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (28 samples, 0.07%)</title><rect x="10.9717%" y="533" width="0.0653%" height="15" fill="rgb(71,219,71)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="543.50"></text></g><g><title>x86_pmu_enable (28 samples, 0.07%)</title><rect x="10.9717%" y="517" width="0.0653%" height="15" fill="rgb(238,105,105)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (28 samples, 0.07%)</title><rect x="10.9717%" y="501" width="0.0653%" height="15" fill="rgb(238,105,105)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="511.50"></text></g><g><title>native_write_msr (28 samples, 0.07%)</title><rect x="10.9717%" y="485" width="0.0653%" height="15" fill="rgb(212,68,68)" fg:x="4706" fg:w="28"/><text x="11.2217%" y="495.50"></text></g><g><title>__x64_sys_sched_yield (6 samples, 0.01%)</title><rect x="11.2259%" y="693" width="0.0140%" height="15" fill="rgb(226,87,87)" fg:x="4815" fg:w="6"/><text x="11.4759%" y="703.50"></text></g><g><title>do_sched_yield (6 samples, 0.01%)</title><rect x="11.2259%" y="677" width="0.0140%" height="15" fill="rgb(219,78,78)" fg:x="4815" fg:w="6"/><text x="11.4759%" y="687.50"></text></g><g><title>schedule (6 samples, 0.01%)</title><rect x="11.2259%" y="661" width="0.0140%" height="15" fill="rgb(251,124,124)" fg:x="4815" fg:w="6"/><text x="11.4759%" y="671.50"></text></g><g><title>__schedule (6 samples, 0.01%)</title><rect x="11.2259%" y="645" width="0.0140%" height="15" fill="rgb(209,64,64)" fg:x="4815" fg:w="6"/><text x="11.4759%" y="655.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (88 samples, 0.21%)</title><rect x="11.0370%" y="757" width="0.2052%" height="15" fill="rgb(228,228,69)" fg:x="4734" fg:w="88"/><text x="11.2870%" y="767.50"></text></g><g><title>__GI___sched_yield (12 samples, 0.03%)</title><rect x="11.2142%" y="741" width="0.0280%" height="15" fill="rgb(247,118,118)" fg:x="4810" fg:w="12"/><text x="11.4642%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="11.2212%" y="725" width="0.0210%" height="15" fill="rgb(254,128,128)" fg:x="4813" fg:w="9"/><text x="11.4712%" y="735.50"></text></g><g><title>do_syscall_64 (9 samples, 0.02%)</title><rect x="11.2212%" y="709" width="0.0210%" height="15" fill="rgb(217,75,75)" fg:x="4813" fg:w="9"/><text x="11.4712%" y="719.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,354 samples, 3.16%)</title><rect x="11.2422%" y="741" width="3.1568%" height="15" fill="rgb(213,213,63)" fg:x="4822" fg:w="1354"/><text x="11.4922%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,354 samples, 3.16%)</title><rect x="11.2422%" y="725" width="3.1568%" height="15" fill="rgb(185,185,53)" fg:x="4822" fg:w="1354"/><text x="11.4922%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,354 samples, 3.16%)</title><rect x="11.2422%" y="709" width="3.1568%" height="15" fill="rgb(185,185,53)" fg:x="4822" fg:w="1354"/><text x="11.4922%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,354 samples, 3.16%)</title><rect x="11.2422%" y="693" width="3.1568%" height="15" fill="rgb(196,196,57)" fg:x="4822" fg:w="1354"/><text x="11.4922%" y="703.50">io...</text></g><g><title>[anon] (1,443 samples, 3.36%)</title><rect x="11.0370%" y="901" width="3.3643%" height="15" fill="rgb(252,126,126)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="911.50">[an..</text></g><g><title>start_thread (1,443 samples, 3.36%)</title><rect x="11.0370%" y="885" width="3.3643%" height="15" fill="rgb(235,101,101)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,443 samples, 3.36%)</title><rect x="11.0370%" y="869" width="3.3643%" height="15" fill="rgb(191,191,56)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,443 samples, 3.36%)</title><rect x="11.0370%" y="853" width="3.3643%" height="15" fill="rgb(210,210,62)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,443 samples, 3.36%)</title><rect x="11.0370%" y="837" width="3.3643%" height="15" fill="rgb(205,205,61)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,443 samples, 3.36%)</title><rect x="11.0370%" y="821" width="3.3643%" height="15" fill="rgb(181,181,52)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,443 samples, 3.36%)</title><rect x="11.0370%" y="805" width="3.3643%" height="15" fill="rgb(182,182,52)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,443 samples, 3.36%)</title><rect x="11.0370%" y="789" width="3.3643%" height="15" fill="rgb(194,194,57)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,443 samples, 3.36%)</title><rect x="11.0370%" y="773" width="3.3643%" height="15" fill="rgb(222,222,67)" fg:x="4734" fg:w="1443"/><text x="11.2870%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,355 samples, 3.16%)</title><rect x="11.2422%" y="757" width="3.1591%" height="15" fill="rgb(203,203,60)" fg:x="4822" fg:w="1355"/><text x="11.4922%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (43 samples, 0.10%)</title><rect x="14.4223%" y="741" width="0.1003%" height="15" fill="rgb(213,213,63)" fg:x="6186" fg:w="43"/><text x="14.6723%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (43 samples, 0.10%)</title><rect x="14.4223%" y="725" width="0.1003%" height="15" fill="rgb(185,185,53)" fg:x="6186" fg:w="43"/><text x="14.6723%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (43 samples, 0.10%)</title><rect x="14.4223%" y="709" width="0.1003%" height="15" fill="rgb(185,185,53)" fg:x="6186" fg:w="43"/><text x="14.6723%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (19 samples, 0.04%)</title><rect x="14.4782%" y="693" width="0.0443%" height="15" fill="rgb(196,196,57)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (19 samples, 0.04%)</title><rect x="14.4782%" y="677" width="0.0443%" height="15" fill="rgb(208,208,62)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (19 samples, 0.04%)</title><rect x="14.4782%" y="661" width="0.0443%" height="15" fill="rgb(179,179,51)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (19 samples, 0.04%)</title><rect x="14.4782%" y="645" width="0.0443%" height="15" fill="rgb(182,182,52)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (19 samples, 0.04%)</title><rect x="14.4782%" y="629" width="0.0443%" height="15" fill="rgb(184,184,53)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (19 samples, 0.04%)</title><rect x="14.4782%" y="613" width="0.0443%" height="15" fill="rgb(246,117,117)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="623.50"></text></g><g><title>__lll_lock_wait (19 samples, 0.04%)</title><rect x="14.4782%" y="597" width="0.0443%" height="15" fill="rgb(235,101,101)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.04%)</title><rect x="14.4782%" y="581" width="0.0443%" height="15" fill="rgb(254,128,128)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="591.50"></text></g><g><title>do_syscall_64 (19 samples, 0.04%)</title><rect x="14.4782%" y="565" width="0.0443%" height="15" fill="rgb(217,75,75)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="575.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.04%)</title><rect x="14.4782%" y="549" width="0.0443%" height="15" fill="rgb(248,121,121)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="559.50"></text></g><g><title>do_futex (19 samples, 0.04%)</title><rect x="14.4782%" y="533" width="0.0443%" height="15" fill="rgb(230,94,94)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="543.50"></text></g><g><title>futex_wait (19 samples, 0.04%)</title><rect x="14.4782%" y="517" width="0.0443%" height="15" fill="rgb(219,78,78)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="527.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.04%)</title><rect x="14.4782%" y="501" width="0.0443%" height="15" fill="rgb(204,56,56)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="511.50"></text></g><g><title>schedule (19 samples, 0.04%)</title><rect x="14.4782%" y="485" width="0.0443%" height="15" fill="rgb(251,124,124)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="495.50"></text></g><g><title>__schedule (19 samples, 0.04%)</title><rect x="14.4782%" y="469" width="0.0443%" height="15" fill="rgb(209,64,64)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="479.50"></text></g><g><title>finish_task_switch (19 samples, 0.04%)</title><rect x="14.4782%" y="453" width="0.0443%" height="15" fill="rgb(251,124,124)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.04%)</title><rect x="14.4782%" y="437" width="0.0443%" height="15" fill="rgb(240,109,109)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (19 samples, 0.04%)</title><rect x="14.4782%" y="421" width="0.0443%" height="15" fill="rgb(71,219,71)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="431.50"></text></g><g><title>x86_pmu_enable (19 samples, 0.04%)</title><rect x="14.4782%" y="405" width="0.0443%" height="15" fill="rgb(238,105,105)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (19 samples, 0.04%)</title><rect x="14.4782%" y="389" width="0.0443%" height="15" fill="rgb(238,105,105)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="399.50"></text></g><g><title>native_write_msr (19 samples, 0.04%)</title><rect x="14.4782%" y="373" width="0.0443%" height="15" fill="rgb(212,68,68)" fg:x="6210" fg:w="19"/><text x="14.7282%" y="383.50"></text></g><g><title>[unknown] (65 samples, 0.15%)</title><rect x="14.4013%" y="901" width="0.1515%" height="15" fill="rgb(206,59,59)" fg:x="6177" fg:w="65"/><text x="14.6513%" y="911.50"></text></g><g><title>start_thread (61 samples, 0.14%)</title><rect x="14.4106%" y="885" width="0.1422%" height="15" fill="rgb(235,101,101)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (61 samples, 0.14%)</title><rect x="14.4106%" y="869" width="0.1422%" height="15" fill="rgb(191,191,56)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (61 samples, 0.14%)</title><rect x="14.4106%" y="853" width="0.1422%" height="15" fill="rgb(210,210,62)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (61 samples, 0.14%)</title><rect x="14.4106%" y="837" width="0.1422%" height="15" fill="rgb(205,205,61)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (61 samples, 0.14%)</title><rect x="14.4106%" y="821" width="0.1422%" height="15" fill="rgb(181,181,52)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (61 samples, 0.14%)</title><rect x="14.4106%" y="805" width="0.1422%" height="15" fill="rgb(182,182,52)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (61 samples, 0.14%)</title><rect x="14.4106%" y="789" width="0.1422%" height="15" fill="rgb(194,194,57)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (61 samples, 0.14%)</title><rect x="14.4106%" y="773" width="0.1422%" height="15" fill="rgb(222,222,67)" fg:x="6181" fg:w="61"/><text x="14.6606%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (59 samples, 0.14%)</title><rect x="14.4153%" y="757" width="0.1376%" height="15" fill="rgb(203,203,60)" fg:x="6183" fg:w="59"/><text x="14.6653%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (13 samples, 0.03%)</title><rect x="14.5225%" y="741" width="0.0303%" height="15" fill="rgb(219,219,66)" fg:x="6229" fg:w="13"/><text x="14.7725%" y="751.50"></text></g><g><title>Pool-6-worker-9 (1,531 samples, 3.57%)</title><rect x="11.0370%" y="917" width="3.5694%" height="15" fill="rgb(79,226,79)" fg:x="4734" fg:w="1531"/><text x="11.2870%" y="927.50">Pool..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (16 samples, 0.04%)</title><rect x="14.5692%" y="901" width="0.0373%" height="15" fill="rgb(181,181,52)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="911.50"></text></g><g><title>start_thread (16 samples, 0.04%)</title><rect x="14.5692%" y="885" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (16 samples, 0.04%)</title><rect x="14.5692%" y="869" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (16 samples, 0.04%)</title><rect x="14.5692%" y="853" width="0.0373%" height="15" fill="rgb(210,210,62)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (16 samples, 0.04%)</title><rect x="14.5692%" y="837" width="0.0373%" height="15" fill="rgb(205,205,61)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (16 samples, 0.04%)</title><rect x="14.5692%" y="821" width="0.0373%" height="15" fill="rgb(181,181,52)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (16 samples, 0.04%)</title><rect x="14.5692%" y="805" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (16 samples, 0.04%)</title><rect x="14.5692%" y="789" width="0.0373%" height="15" fill="rgb(204,204,60)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (16 samples, 0.04%)</title><rect x="14.5692%" y="773" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (16 samples, 0.04%)</title><rect x="14.5692%" y="757" width="0.0373%" height="15" fill="rgb(218,218,65)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="767.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.04%)</title><rect x="14.5692%" y="741" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.04%)</title><rect x="14.5692%" y="725" width="0.0373%" height="15" fill="rgb(203,55,55)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="735.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.04%)</title><rect x="14.5692%" y="709" width="0.0373%" height="15" fill="rgb(252,126,126)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="14.5692%" y="693" width="0.0373%" height="15" fill="rgb(254,128,128)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="703.50"></text></g><g><title>do_syscall_64 (16 samples, 0.04%)</title><rect x="14.5692%" y="677" width="0.0373%" height="15" fill="rgb(217,75,75)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="687.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.04%)</title><rect x="14.5692%" y="661" width="0.0373%" height="15" fill="rgb(248,121,121)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="671.50"></text></g><g><title>do_futex (16 samples, 0.04%)</title><rect x="14.5692%" y="645" width="0.0373%" height="15" fill="rgb(230,94,94)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="655.50"></text></g><g><title>futex_wait (16 samples, 0.04%)</title><rect x="14.5692%" y="629" width="0.0373%" height="15" fill="rgb(219,78,78)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="639.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.04%)</title><rect x="14.5692%" y="613" width="0.0373%" height="15" fill="rgb(204,56,56)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="623.50"></text></g><g><title>schedule (16 samples, 0.04%)</title><rect x="14.5692%" y="597" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="607.50"></text></g><g><title>__schedule (16 samples, 0.04%)</title><rect x="14.5692%" y="581" width="0.0373%" height="15" fill="rgb(209,64,64)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="591.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="14.5692%" y="565" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="14.5692%" y="549" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="14.5692%" y="533" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="543.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="14.5692%" y="517" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="14.5692%" y="501" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="511.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="14.5692%" y="485" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="6249" fg:w="16"/><text x="14.8192%" y="495.50"></text></g><g><title>[anon] (14 samples, 0.03%)</title><rect x="14.6065%" y="901" width="0.0326%" height="15" fill="rgb(252,126,126)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="911.50"></text></g><g><title>__libc_start_main (14 samples, 0.03%)</title><rect x="14.6065%" y="885" width="0.0326%" height="15" fill="rgb(221,81,81)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b (14 samples, 0.03%)</title><rect x="14.6065%" y="869" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="879.50"></text></g><g><title>com.oracle.svm.core.JavaMainWrapper::run (14 samples, 0.03%)</title><rect x="14.6065%" y="853" width="0.0326%" height="15" fill="rgb(199,199,59)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="863.50"></text></g><g><title>com.oracle.svm.core.JavaMainWrapper::runCore0 (14 samples, 0.03%)</title><rect x="14.6065%" y="837" width="0.0326%" height="15" fill="rgb(225,225,68)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="847.50"></text></g><g><title>io.sergejisbrecht.HelloWorld::main (14 samples, 0.03%)</title><rect x="14.6065%" y="821" width="0.0326%" height="15" fill="rgb(215,215,64)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="831.50"></text></g><g><title>org.openjdk.jmh.runner.Runner::run (14 samples, 0.03%)</title><rect x="14.6065%" y="805" width="0.0326%" height="15" fill="rgb(223,223,67)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="815.50"></text></g><g><title>org.openjdk.jmh.runner.Runner::internalRun (14 samples, 0.03%)</title><rect x="14.6065%" y="789" width="0.0326%" height="15" fill="rgb(226,226,68)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="799.50"></text></g><g><title>org.openjdk.jmh.runner.Runner::runBenchmarks (14 samples, 0.03%)</title><rect x="14.6065%" y="773" width="0.0326%" height="15" fill="rgb(176,176,50)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="783.50"></text></g><g><title>org.openjdk.jmh.runner.BaseRunner::runBenchmarksEmbedded (14 samples, 0.03%)</title><rect x="14.6065%" y="757" width="0.0326%" height="15" fill="rgb(216,216,64)" fg:x="6265" fg:w="14"/><text x="14.8565%" y="767.50"></text></g><g><title>org.openjdk.jmh.runner.format.TextReportFormat::startBenchmark (10 samples, 0.02%)</title><rect x="14.6158%" y="741" width="0.0233%" height="15" fill="rgb(179,179,51)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.CompilerHints::printBlackhole (10 samples, 0.02%)</title><rect x="14.6158%" y="725" width="0.0233%" height="15" fill="rgb(202,202,59)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.CompilerHints::blackholeMode (10 samples, 0.02%)</title><rect x="14.6158%" y="709" width="0.0233%" height="15" fill="rgb(215,215,64)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="719.50"></text></g><g><title>org.openjdk.jmh.runner.CompilerHints::compilerBlackholesAvailable (10 samples, 0.02%)</title><rect x="14.6158%" y="693" width="0.0233%" height="15" fill="rgb(213,213,64)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="703.50"></text></g><g><title>org.openjdk.jmh.util.Utils::runWith (10 samples, 0.02%)</title><rect x="14.6158%" y="677" width="0.0233%" height="15" fill="rgb(175,175,50)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="687.50"></text></g><g><title>java.lang.ProcessBuilder::start (10 samples, 0.02%)</title><rect x="14.6158%" y="661" width="0.0233%" height="15" fill="rgb(177,177,50)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="671.50"></text></g><g><title>java.lang.ProcessImpl::start (10 samples, 0.02%)</title><rect x="14.6158%" y="645" width="0.0233%" height="15" fill="rgb(190,190,55)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="655.50"></text></g><g><title>java.lang.ProcessImpl::ProcessImpl (10 samples, 0.02%)</title><rect x="14.6158%" y="629" width="0.0233%" height="15" fill="rgb(214,214,64)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="639.50"></text></g><g><title>java.lang.ProcessImpl::forkAndExec (10 samples, 0.02%)</title><rect x="14.6158%" y="613" width="0.0233%" height="15" fill="rgb(202,202,59)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="623.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (10 samples, 0.02%)</title><rect x="14.6158%" y="597" width="0.0233%" height="15" fill="rgb(66,215,66)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="607.50"></text></g><g><title>__GI___fork (10 samples, 0.02%)</title><rect x="14.6158%" y="581" width="0.0233%" height="15" fill="rgb(235,101,101)" fg:x="6269" fg:w="10"/><text x="14.8658%" y="591.50"></text></g><g><title>ret_from_fork (8 samples, 0.02%)</title><rect x="14.6204%" y="565" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="575.50"></text></g><g><title>schedule_tail (8 samples, 0.02%)</title><rect x="14.6204%" y="549" width="0.0187%" height="15" fill="rgb(234,100,100)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="559.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="14.6204%" y="533" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="14.6204%" y="517" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="527.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="14.6204%" y="501" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="511.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="14.6204%" y="485" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="495.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="14.6204%" y="469" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="479.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="14.6204%" y="453" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="6271" fg:w="8"/><text x="14.8704%" y="463.50"></text></g><g><title>__GI___clone (8 samples, 0.02%)</title><rect x="14.6414%" y="901" width="0.0187%" height="15" fill="rgb(206,59,59)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="911.50"></text></g><g><title>ret_from_fork (8 samples, 0.02%)</title><rect x="14.6414%" y="885" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="895.50"></text></g><g><title>schedule_tail (8 samples, 0.02%)</title><rect x="14.6414%" y="869" width="0.0187%" height="15" fill="rgb(234,100,100)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="879.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="14.6414%" y="853" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="14.6414%" y="837" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="847.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="14.6414%" y="821" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="831.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="14.6414%" y="805" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="815.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="14.6414%" y="789" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="799.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="14.6414%" y="773" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="6280" fg:w="8"/><text x="14.8914%" y="783.50"></text></g><g><title>bench (27 samples, 0.06%)</title><rect x="14.6065%" y="917" width="0.0629%" height="15" fill="rgb(246,117,117)" fg:x="6265" fg:w="27"/><text x="14.8565%" y="927.50"></text></g><g><title>__pthread_mutex_cond_lock (5 samples, 0.01%)</title><rect x="14.6927%" y="469" width="0.0117%" height="15" fill="rgb(244,115,115)" fg:x="6302" fg:w="5"/><text x="14.9427%" y="479.50"></text></g><g><title>__lll_lock_wait (5 samples, 0.01%)</title><rect x="14.6927%" y="453" width="0.0117%" height="15" fill="rgb(235,101,101)" fg:x="6302" fg:w="5"/><text x="14.9427%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="14.6927%" y="437" width="0.0117%" height="15" fill="rgb(254,128,128)" fg:x="6302" fg:w="5"/><text x="14.9427%" y="447.50"></text></g><g><title>do_syscall_64 (5 samples, 0.01%)</title><rect x="14.6927%" y="421" width="0.0117%" height="15" fill="rgb(217,75,75)" fg:x="6302" fg:w="5"/><text x="14.9427%" y="431.50"></text></g><g><title>deactivate_task (5 samples, 0.01%)</title><rect x="14.7160%" y="325" width="0.0117%" height="15" fill="rgb(213,68,68)" fg:x="6312" fg:w="5"/><text x="14.9660%" y="335.50"></text></g><g><title>finish_task_switch (83 samples, 0.19%)</title><rect x="14.7277%" y="325" width="0.1935%" height="15" fill="rgb(251,124,124)" fg:x="6317" fg:w="83"/><text x="14.9777%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.19%)</title><rect x="14.7277%" y="309" width="0.1935%" height="15" fill="rgb(240,109,109)" fg:x="6317" fg:w="83"/><text x="14.9777%" y="319.50"></text></g><g><title>perf_pmu_enable.part.0 (83 samples, 0.19%)</title><rect x="14.7277%" y="293" width="0.1935%" height="15" fill="rgb(71,219,71)" fg:x="6317" fg:w="83"/><text x="14.9777%" y="303.50"></text></g><g><title>x86_pmu_enable (83 samples, 0.19%)</title><rect x="14.7277%" y="277" width="0.1935%" height="15" fill="rgb(238,105,105)" fg:x="6317" fg:w="83"/><text x="14.9777%" y="287.50"></text></g><g><title>intel_tfa_pmu_enable_all (83 samples, 0.19%)</title><rect x="14.7277%" y="261" width="0.1935%" height="15" fill="rgb(238,105,105)" fg:x="6317" fg:w="83"/><text x="14.9777%" y="271.50"></text></g><g><title>native_write_msr (83 samples, 0.19%)</title><rect x="14.7277%" y="245" width="0.1935%" height="15" fill="rgb(212,68,68)" fg:x="6317" fg:w="83"/><text x="14.9777%" y="255.50"></text></g><g><title>__schedule (89 samples, 0.21%)</title><rect x="14.7160%" y="341" width="0.2075%" height="15" fill="rgb(209,64,64)" fg:x="6312" fg:w="89"/><text x="14.9660%" y="351.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.21%)</title><rect x="14.7137%" y="373" width="0.2122%" height="15" fill="rgb(204,56,56)" fg:x="6311" fg:w="91"/><text x="14.9637%" y="383.50"></text></g><g><title>schedule (90 samples, 0.21%)</title><rect x="14.7160%" y="357" width="0.2098%" height="15" fill="rgb(251,124,124)" fg:x="6312" fg:w="90"/><text x="14.9660%" y="367.50"></text></g><g><title>__pthread_cond_timedwait (103 samples, 0.24%)</title><rect x="14.6881%" y="501" width="0.2401%" height="15" fill="rgb(250,123,123)" fg:x="6300" fg:w="103"/><text x="14.9381%" y="511.50"></text></g><g><title>__pthread_cond_wait_common (103 samples, 0.24%)</title><rect x="14.6881%" y="485" width="0.2401%" height="15" fill="rgb(203,55,55)" fg:x="6300" fg:w="103"/><text x="14.9381%" y="495.50"></text></g><g><title>futex_abstimed_wait_cancelable (96 samples, 0.22%)</title><rect x="14.7044%" y="469" width="0.2238%" height="15" fill="rgb(234,100,100)" fg:x="6307" fg:w="96"/><text x="14.9544%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.21%)</title><rect x="14.7137%" y="453" width="0.2145%" height="15" fill="rgb(254,128,128)" fg:x="6311" fg:w="92"/><text x="14.9637%" y="463.50"></text></g><g><title>do_syscall_64 (92 samples, 0.21%)</title><rect x="14.7137%" y="437" width="0.2145%" height="15" fill="rgb(217,75,75)" fg:x="6311" fg:w="92"/><text x="14.9637%" y="447.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.21%)</title><rect x="14.7137%" y="421" width="0.2145%" height="15" fill="rgb(248,121,121)" fg:x="6311" fg:w="92"/><text x="14.9637%" y="431.50"></text></g><g><title>do_futex (92 samples, 0.21%)</title><rect x="14.7137%" y="405" width="0.2145%" height="15" fill="rgb(230,94,94)" fg:x="6311" fg:w="92"/><text x="14.9637%" y="415.50"></text></g><g><title>futex_wait (92 samples, 0.21%)</title><rect x="14.7137%" y="389" width="0.2145%" height="15" fill="rgb(219,78,78)" fg:x="6311" fg:w="92"/><text x="14.9637%" y="399.50"></text></g><g><title>java.util.concurrent.CountDownLatch::await (109 samples, 0.25%)</title><rect x="14.6787%" y="613" width="0.2541%" height="15" fill="rgb(192,192,56)" fg:x="6296" fg:w="109"/><text x="14.9287%" y="623.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::tryAcquireSharedNanos (109 samples, 0.25%)</title><rect x="14.6787%" y="597" width="0.2541%" height="15" fill="rgb(197,197,58)" fg:x="6296" fg:w="109"/><text x="14.9287%" y="607.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireSharedNanos (109 samples, 0.25%)</title><rect x="14.6787%" y="581" width="0.2541%" height="15" fill="rgb(178,178,51)" fg:x="6296" fg:w="109"/><text x="14.9287%" y="591.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::parkNanos (106 samples, 0.25%)</title><rect x="14.6857%" y="565" width="0.2471%" height="15" fill="rgb(180,180,51)" fg:x="6299" fg:w="106"/><text x="14.9357%" y="575.50"></text></g><g><title>jdk.internal.misc.Unsafe::park (106 samples, 0.25%)</title><rect x="14.6857%" y="549" width="0.2471%" height="15" fill="rgb(213,213,63)" fg:x="6299" fg:w="106"/><text x="14.9357%" y="559.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (106 samples, 0.25%)</title><rect x="14.6857%" y="533" width="0.2471%" height="15" fill="rgb(191,191,56)" fg:x="6299" fg:w="106"/><text x="14.9357%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condTimedWait (106 samples, 0.25%)</title><rect x="14.6857%" y="517" width="0.2471%" height="15" fill="rgb(188,188,54)" fg:x="6299" fg:w="106"/><text x="14.9357%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (94 samples, 0.22%)</title><rect x="14.9865%" y="245" width="0.2192%" height="15" fill="rgb(215,215,64)" fg:x="6428" fg:w="94"/><text x="15.2365%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (93 samples, 0.22%)</title><rect x="14.9888%" y="229" width="0.2168%" height="15" fill="rgb(196,196,57)" fg:x="6429" fg:w="93"/><text x="15.2388%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (97 samples, 0.23%)</title><rect x="14.9865%" y="293" width="0.2261%" height="15" fill="rgb(189,189,55)" fg:x="6428" fg:w="97"/><text x="15.2365%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (97 samples, 0.23%)</title><rect x="14.9865%" y="277" width="0.2261%" height="15" fill="rgb(189,189,55)" fg:x="6428" fg:w="97"/><text x="15.2365%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (97 samples, 0.23%)</title><rect x="14.9865%" y="261" width="0.2261%" height="15" fill="rgb(209,209,62)" fg:x="6428" fg:w="97"/><text x="15.2365%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (126 samples, 0.29%)</title><rect x="14.9865%" y="549" width="0.2938%" height="15" fill="rgb(205,205,60)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (126 samples, 0.29%)</title><rect x="14.9865%" y="533" width="0.2938%" height="15" fill="rgb(211,211,63)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (126 samples, 0.29%)</title><rect x="14.9865%" y="517" width="0.2938%" height="15" fill="rgb(222,222,67)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (126 samples, 0.29%)</title><rect x="14.9865%" y="501" width="0.2938%" height="15" fill="rgb(184,184,53)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="511.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (126 samples, 0.29%)</title><rect x="14.9865%" y="485" width="0.2938%" height="15" fill="rgb(188,188,55)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (126 samples, 0.29%)</title><rect x="14.9865%" y="469" width="0.2938%" height="15" fill="rgb(175,175,50)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (126 samples, 0.29%)</title><rect x="14.9865%" y="453" width="0.2938%" height="15" fill="rgb(228,228,69)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (126 samples, 0.29%)</title><rect x="14.9865%" y="437" width="0.2938%" height="15" fill="rgb(193,193,56)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (126 samples, 0.29%)</title><rect x="14.9865%" y="421" width="0.2938%" height="15" fill="rgb(189,189,55)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (126 samples, 0.29%)</title><rect x="14.9865%" y="405" width="0.2938%" height="15" fill="rgb(197,197,58)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="415.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (126 samples, 0.29%)</title><rect x="14.9865%" y="389" width="0.2938%" height="15" fill="rgb(229,229,69)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (126 samples, 0.29%)</title><rect x="14.9865%" y="373" width="0.2938%" height="15" fill="rgb(188,188,55)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (126 samples, 0.29%)</title><rect x="14.9865%" y="357" width="0.2938%" height="15" fill="rgb(187,187,54)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (126 samples, 0.29%)</title><rect x="14.9865%" y="341" width="0.2938%" height="15" fill="rgb(197,197,58)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (126 samples, 0.29%)</title><rect x="14.9865%" y="325" width="0.2938%" height="15" fill="rgb(220,220,66)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (126 samples, 0.29%)</title><rect x="14.9865%" y="309" width="0.2938%" height="15" fill="rgb(187,187,54)" fg:x="6428" fg:w="126"/><text x="15.2365%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromRoots (29 samples, 0.07%)</title><rect x="15.2126%" y="293" width="0.0676%" height="15" fill="rgb(196,196,57)" fg:x="6525" fg:w="29"/><text x="15.4626%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (29 samples, 0.07%)</title><rect x="15.2126%" y="277" width="0.0676%" height="15" fill="rgb(189,189,55)" fg:x="6525" fg:w="29"/><text x="15.4626%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (29 samples, 0.07%)</title><rect x="15.2126%" y="261" width="0.0676%" height="15" fill="rgb(215,215,64)" fg:x="6525" fg:w="29"/><text x="15.4626%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (29 samples, 0.07%)</title><rect x="15.2126%" y="245" width="0.0676%" height="15" fill="rgb(196,196,57)" fg:x="6525" fg:w="29"/><text x="15.4626%" y="255.50"></text></g><g><title>do_anonymous_page (7 samples, 0.02%)</title><rect x="15.8981%" y="85" width="0.0163%" height="15" fill="rgb(254,128,128)" fg:x="6819" fg:w="7"/><text x="16.1481%" y="95.50"></text></g><g><title>alloc_pages_vma (6 samples, 0.01%)</title><rect x="15.9004%" y="69" width="0.0140%" height="15" fill="rgb(219,77,77)" fg:x="6820" fg:w="6"/><text x="16.1504%" y="79.50"></text></g><g><title>__alloc_pages_nodemask (6 samples, 0.01%)</title><rect x="15.9004%" y="53" width="0.0140%" height="15" fill="rgb(211,67,67)" fg:x="6820" fg:w="6"/><text x="16.1504%" y="63.50"></text></g><g><title>get_page_from_freelist (6 samples, 0.01%)</title><rect x="15.9004%" y="37" width="0.0140%" height="15" fill="rgb(208,62,62)" fg:x="6820" fg:w="6"/><text x="16.1504%" y="47.50"></text></g><g><title>page_fault (11 samples, 0.03%)</title><rect x="15.8911%" y="181" width="0.0256%" height="15" fill="rgb(243,112,112)" fg:x="6816" fg:w="11"/><text x="16.1411%" y="191.50"></text></g><g><title>do_page_fault (11 samples, 0.03%)</title><rect x="15.8911%" y="165" width="0.0256%" height="15" fill="rgb(215,72,72)" fg:x="6816" fg:w="11"/><text x="16.1411%" y="175.50"></text></g><g><title>__do_page_fault (11 samples, 0.03%)</title><rect x="15.8911%" y="149" width="0.0256%" height="15" fill="rgb(217,75,75)" fg:x="6816" fg:w="11"/><text x="16.1411%" y="159.50"></text></g><g><title>do_user_addr_fault (11 samples, 0.03%)</title><rect x="15.8911%" y="133" width="0.0256%" height="15" fill="rgb(208,62,62)" fg:x="6816" fg:w="11"/><text x="16.1411%" y="143.50"></text></g><g><title>handle_mm_fault (11 samples, 0.03%)</title><rect x="15.8911%" y="117" width="0.0256%" height="15" fill="rgb(207,60,60)" fg:x="6816" fg:w="11"/><text x="16.1411%" y="127.50"></text></g><g><title>__handle_mm_fault (10 samples, 0.02%)</title><rect x="15.8934%" y="101" width="0.0233%" height="15" fill="rgb(229,92,92)" fg:x="6817" fg:w="10"/><text x="16.1434%" y="111.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (41 samples, 0.10%)</title><rect x="15.8421%" y="309" width="0.0956%" height="15" fill="rgb(220,220,66)" fg:x="6795" fg:w="41"/><text x="16.0921%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (41 samples, 0.10%)</title><rect x="15.8421%" y="293" width="0.0956%" height="15" fill="rgb(187,187,54)" fg:x="6795" fg:w="41"/><text x="16.0921%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (41 samples, 0.10%)</title><rect x="15.8421%" y="277" width="0.0956%" height="15" fill="rgb(189,189,55)" fg:x="6795" fg:w="41"/><text x="16.0921%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (41 samples, 0.10%)</title><rect x="15.8421%" y="261" width="0.0956%" height="15" fill="rgb(189,189,55)" fg:x="6795" fg:w="41"/><text x="16.0921%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (41 samples, 0.10%)</title><rect x="15.8421%" y="245" width="0.0956%" height="15" fill="rgb(209,209,62)" fg:x="6795" fg:w="41"/><text x="16.0921%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (41 samples, 0.10%)</title><rect x="15.8421%" y="229" width="0.0956%" height="15" fill="rgb(215,215,64)" fg:x="6795" fg:w="41"/><text x="16.0921%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (37 samples, 0.09%)</title><rect x="15.8514%" y="213" width="0.0863%" height="15" fill="rgb(196,196,57)" fg:x="6799" fg:w="37"/><text x="16.1014%" y="223.50"></text></g><g><title>com.oracle.svm.core.UnmanagedMemoryUtil::copyLongsForward (37 samples, 0.09%)</title><rect x="15.8514%" y="197" width="0.0863%" height="15" fill="rgb(213,213,64)" fg:x="6799" fg:w="37"/><text x="16.1014%" y="207.50"></text></g><g><title>swapgs_restore_regs_and_return_to_usermode (9 samples, 0.02%)</title><rect x="15.9167%" y="181" width="0.0210%" height="15" fill="rgb(212,68,68)" fg:x="6827" fg:w="9"/><text x="16.1667%" y="191.50"></text></g><g><title>prepare_exit_to_usermode (6 samples, 0.01%)</title><rect x="15.9237%" y="165" width="0.0140%" height="15" fill="rgb(240,108,108)" fg:x="6830" fg:w="6"/><text x="16.1737%" y="175.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (43 samples, 0.10%)</title><rect x="15.8421%" y="501" width="0.1003%" height="15" fill="rgb(222,222,67)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (43 samples, 0.10%)</title><rect x="15.8421%" y="485" width="0.1003%" height="15" fill="rgb(184,184,53)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (43 samples, 0.10%)</title><rect x="15.8421%" y="469" width="0.1003%" height="15" fill="rgb(188,188,55)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (43 samples, 0.10%)</title><rect x="15.8421%" y="453" width="0.1003%" height="15" fill="rgb(175,175,50)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (43 samples, 0.10%)</title><rect x="15.8421%" y="437" width="0.1003%" height="15" fill="rgb(228,228,69)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (43 samples, 0.10%)</title><rect x="15.8421%" y="421" width="0.1003%" height="15" fill="rgb(193,193,56)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (43 samples, 0.10%)</title><rect x="15.8421%" y="405" width="0.1003%" height="15" fill="rgb(189,189,55)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (43 samples, 0.10%)</title><rect x="15.8421%" y="389" width="0.1003%" height="15" fill="rgb(197,197,58)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (43 samples, 0.10%)</title><rect x="15.8421%" y="373" width="0.1003%" height="15" fill="rgb(229,229,69)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (43 samples, 0.10%)</title><rect x="15.8421%" y="357" width="0.1003%" height="15" fill="rgb(188,188,55)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (43 samples, 0.10%)</title><rect x="15.8421%" y="341" width="0.1003%" height="15" fill="rgb(187,187,54)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (43 samples, 0.10%)</title><rect x="15.8421%" y="325" width="0.1003%" height="15" fill="rgb(197,197,58)" fg:x="6795" fg:w="43"/><text x="16.0921%" y="335.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::schedule (285 samples, 0.66%)</title><rect x="15.2802%" y="549" width="0.6645%" height="15" fill="rgb(216,216,65)" fg:x="6554" fg:w="285"/><text x="15.5302%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (44 samples, 0.10%)</title><rect x="15.8421%" y="533" width="0.1026%" height="15" fill="rgb(205,205,60)" fg:x="6795" fg:w="44"/><text x="16.0921%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (44 samples, 0.10%)</title><rect x="15.8421%" y="517" width="0.1026%" height="15" fill="rgb(211,211,63)" fg:x="6795" fg:w="44"/><text x="16.0921%" y="527.50"></text></g><g><title>java.util.ArrayList$Itr::hasNext (8 samples, 0.02%)</title><rect x="15.9470%" y="549" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="6840" fg:w="8"/><text x="16.1970%" y="559.50"></text></g><g><title>java.util.ArrayList$Itr::next (12 samples, 0.03%)</title><rect x="15.9657%" y="549" width="0.0280%" height="15" fill="rgb(211,211,63)" fg:x="6848" fg:w="12"/><text x="16.2157%" y="559.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueWorkersJobs$3 (458 samples, 1.07%)</title><rect x="14.9329%" y="565" width="1.0678%" height="15" fill="rgb(176,176,50)" fg:x="6405" fg:w="458"/><text x="15.1829%" y="575.50"></text></g><g><title>[anon] (576 samples, 1.34%)</title><rect x="14.6694%" y="901" width="1.3429%" height="15" fill="rgb(252,126,126)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="911.50"></text></g><g><title>start_thread (576 samples, 1.34%)</title><rect x="14.6694%" y="885" width="1.3429%" height="15" fill="rgb(235,101,101)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (576 samples, 1.34%)</title><rect x="14.6694%" y="869" width="1.3429%" height="15" fill="rgb(191,191,56)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (576 samples, 1.34%)</title><rect x="14.6694%" y="853" width="1.3429%" height="15" fill="rgb(210,210,62)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (576 samples, 1.34%)</title><rect x="14.6694%" y="837" width="1.3429%" height="15" fill="rgb(205,205,61)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="847.50"></text></g><g><title>java.lang.Thread::run (576 samples, 1.34%)</title><rect x="14.6694%" y="821" width="1.3429%" height="15" fill="rgb(228,228,69)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (576 samples, 1.34%)</title><rect x="14.6694%" y="805" width="1.3429%" height="15" fill="rgb(225,225,68)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (576 samples, 1.34%)</title><rect x="14.6694%" y="789" width="1.3429%" height="15" fill="rgb(227,227,69)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (576 samples, 1.34%)</title><rect x="14.6694%" y="773" width="1.3429%" height="15" fill="rgb(220,220,66)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (576 samples, 1.34%)</title><rect x="14.6694%" y="757" width="1.3429%" height="15" fill="rgb(197,197,58)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (576 samples, 1.34%)</title><rect x="14.6694%" y="741" width="1.3429%" height="15" fill="rgb(220,220,66)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (576 samples, 1.34%)</title><rect x="14.6694%" y="725" width="1.3429%" height="15" fill="rgb(228,228,69)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (576 samples, 1.34%)</title><rect x="14.6694%" y="709" width="1.3429%" height="15" fill="rgb(228,228,69)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (576 samples, 1.34%)</title><rect x="14.6694%" y="693" width="1.3429%" height="15" fill="rgb(219,219,66)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (576 samples, 1.34%)</title><rect x="14.6694%" y="677" width="1.3429%" height="15" fill="rgb(180,180,52)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_AverageTime (576 samples, 1.34%)</title><rect x="14.6694%" y="661" width="1.3429%" height="15" fill="rgb(223,223,67)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_avgt_jmhStub (576 samples, 1.34%)</title><rect x="14.6694%" y="645" width="1.3429%" height="15" fill="rgb(221,221,66)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueWorkersJobs (576 samples, 1.34%)</title><rect x="14.6694%" y="629" width="1.3429%" height="15" fill="rgb(191,191,56)" fg:x="6292" fg:w="576"/><text x="14.9194%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (463 samples, 1.08%)</title><rect x="14.9329%" y="613" width="1.0795%" height="15" fill="rgb(201,201,59)" fg:x="6405" fg:w="463"/><text x="15.1829%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (463 samples, 1.08%)</title><rect x="14.9329%" y="597" width="1.0795%" height="15" fill="rgb(194,194,57)" fg:x="6405" fg:w="463"/><text x="15.1829%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$989/1721138936::accept (463 samples, 1.08%)</title><rect x="14.9329%" y="581" width="1.0795%" height="15" fill="rgb(186,186,54)" fg:x="6405" fg:w="463"/><text x="15.1829%" y="591.50"></text></g><g><title>alloc_pages_vma (5 samples, 0.01%)</title><rect x="16.0426%" y="69" width="0.0117%" height="15" fill="rgb(219,77,77)" fg:x="6881" fg:w="5"/><text x="16.2926%" y="79.50"></text></g><g><title>__alloc_pages_nodemask (5 samples, 0.01%)</title><rect x="16.0426%" y="53" width="0.0117%" height="15" fill="rgb(211,67,67)" fg:x="6881" fg:w="5"/><text x="16.2926%" y="63.50"></text></g><g><title>page_fault (14 samples, 0.03%)</title><rect x="16.0403%" y="181" width="0.0326%" height="15" fill="rgb(243,112,112)" fg:x="6880" fg:w="14"/><text x="16.2903%" y="191.50"></text></g><g><title>do_page_fault (14 samples, 0.03%)</title><rect x="16.0403%" y="165" width="0.0326%" height="15" fill="rgb(215,72,72)" fg:x="6880" fg:w="14"/><text x="16.2903%" y="175.50"></text></g><g><title>__do_page_fault (14 samples, 0.03%)</title><rect x="16.0403%" y="149" width="0.0326%" height="15" fill="rgb(217,75,75)" fg:x="6880" fg:w="14"/><text x="16.2903%" y="159.50"></text></g><g><title>do_user_addr_fault (14 samples, 0.03%)</title><rect x="16.0403%" y="133" width="0.0326%" height="15" fill="rgb(208,62,62)" fg:x="6880" fg:w="14"/><text x="16.2903%" y="143.50"></text></g><g><title>handle_mm_fault (14 samples, 0.03%)</title><rect x="16.0403%" y="117" width="0.0326%" height="15" fill="rgb(207,60,60)" fg:x="6880" fg:w="14"/><text x="16.2903%" y="127.50"></text></g><g><title>__handle_mm_fault (13 samples, 0.03%)</title><rect x="16.0426%" y="101" width="0.0303%" height="15" fill="rgb(229,92,92)" fg:x="6881" fg:w="13"/><text x="16.2926%" y="111.50"></text></g><g><title>do_anonymous_page (13 samples, 0.03%)</title><rect x="16.0426%" y="85" width="0.0303%" height="15" fill="rgb(254,128,128)" fg:x="6881" fg:w="13"/><text x="16.2926%" y="95.50"></text></g><g><title>mem_cgroup_try_charge_delay (5 samples, 0.01%)</title><rect x="16.0613%" y="69" width="0.0117%" height="15" fill="rgb(247,118,118)" fg:x="6889" fg:w="5"/><text x="16.3113%" y="79.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (30 samples, 0.07%)</title><rect x="16.0146%" y="885" width="0.0699%" height="15" fill="rgb(229,229,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="895.50"></text></g><g><title>start_thread (30 samples, 0.07%)</title><rect x="16.0146%" y="869" width="0.0699%" height="15" fill="rgb(235,101,101)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (30 samples, 0.07%)</title><rect x="16.0146%" y="853" width="0.0699%" height="15" fill="rgb(191,191,56)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (30 samples, 0.07%)</title><rect x="16.0146%" y="837" width="0.0699%" height="15" fill="rgb(210,210,62)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (30 samples, 0.07%)</title><rect x="16.0146%" y="821" width="0.0699%" height="15" fill="rgb(205,205,61)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="831.50"></text></g><g><title>java.lang.Thread::run (30 samples, 0.07%)</title><rect x="16.0146%" y="805" width="0.0699%" height="15" fill="rgb(228,228,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (30 samples, 0.07%)</title><rect x="16.0146%" y="789" width="0.0699%" height="15" fill="rgb(225,225,68)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (30 samples, 0.07%)</title><rect x="16.0146%" y="773" width="0.0699%" height="15" fill="rgb(227,227,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::run (30 samples, 0.07%)</title><rect x="16.0146%" y="757" width="0.0699%" height="15" fill="rgb(220,220,66)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="767.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (30 samples, 0.07%)</title><rect x="16.0146%" y="741" width="0.0699%" height="15" fill="rgb(197,197,58)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="751.50"></text></g><g><title>java.util.concurrent.FutureTask::run (30 samples, 0.07%)</title><rect x="16.0146%" y="725" width="0.0699%" height="15" fill="rgb(220,220,66)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (30 samples, 0.07%)</title><rect x="16.0146%" y="709" width="0.0699%" height="15" fill="rgb(228,228,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="719.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (30 samples, 0.07%)</title><rect x="16.0146%" y="693" width="0.0699%" height="15" fill="rgb(228,228,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (30 samples, 0.07%)</title><rect x="16.0146%" y="677" width="0.0699%" height="15" fill="rgb(219,219,66)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="687.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (30 samples, 0.07%)</title><rect x="16.0146%" y="661" width="0.0699%" height="15" fill="rgb(180,180,52)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_AverageTime (30 samples, 0.07%)</title><rect x="16.0146%" y="645" width="0.0699%" height="15" fill="rgb(223,223,67)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="655.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_avgt_jmhStub (30 samples, 0.07%)</title><rect x="16.0146%" y="629" width="0.0699%" height="15" fill="rgb(221,221,66)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="639.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueWorkersJobs (30 samples, 0.07%)</title><rect x="16.0146%" y="613" width="0.0699%" height="15" fill="rgb(191,191,56)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="623.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (30 samples, 0.07%)</title><rect x="16.0146%" y="597" width="0.0699%" height="15" fill="rgb(201,201,59)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="607.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (30 samples, 0.07%)</title><rect x="16.0146%" y="581" width="0.0699%" height="15" fill="rgb(194,194,57)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$989/1721138936::accept (30 samples, 0.07%)</title><rect x="16.0146%" y="565" width="0.0699%" height="15" fill="rgb(186,186,54)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="575.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueWorkersJobs$3 (30 samples, 0.07%)</title><rect x="16.0146%" y="549" width="0.0699%" height="15" fill="rgb(176,176,50)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (30 samples, 0.07%)</title><rect x="16.0146%" y="533" width="0.0699%" height="15" fill="rgb(205,205,60)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (30 samples, 0.07%)</title><rect x="16.0146%" y="517" width="0.0699%" height="15" fill="rgb(211,211,63)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (30 samples, 0.07%)</title><rect x="16.0146%" y="501" width="0.0699%" height="15" fill="rgb(222,222,67)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (30 samples, 0.07%)</title><rect x="16.0146%" y="485" width="0.0699%" height="15" fill="rgb(184,184,53)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (30 samples, 0.07%)</title><rect x="16.0146%" y="469" width="0.0699%" height="15" fill="rgb(188,188,55)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (30 samples, 0.07%)</title><rect x="16.0146%" y="453" width="0.0699%" height="15" fill="rgb(175,175,50)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (30 samples, 0.07%)</title><rect x="16.0146%" y="437" width="0.0699%" height="15" fill="rgb(228,228,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (30 samples, 0.07%)</title><rect x="16.0146%" y="421" width="0.0699%" height="15" fill="rgb(193,193,56)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (30 samples, 0.07%)</title><rect x="16.0146%" y="405" width="0.0699%" height="15" fill="rgb(189,189,55)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (30 samples, 0.07%)</title><rect x="16.0146%" y="389" width="0.0699%" height="15" fill="rgb(197,197,58)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (30 samples, 0.07%)</title><rect x="16.0146%" y="373" width="0.0699%" height="15" fill="rgb(229,229,69)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (30 samples, 0.07%)</title><rect x="16.0146%" y="357" width="0.0699%" height="15" fill="rgb(188,188,55)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (30 samples, 0.07%)</title><rect x="16.0146%" y="341" width="0.0699%" height="15" fill="rgb(187,187,54)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (30 samples, 0.07%)</title><rect x="16.0146%" y="325" width="0.0699%" height="15" fill="rgb(197,197,58)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (30 samples, 0.07%)</title><rect x="16.0146%" y="309" width="0.0699%" height="15" fill="rgb(220,220,66)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (30 samples, 0.07%)</title><rect x="16.0146%" y="293" width="0.0699%" height="15" fill="rgb(187,187,54)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (30 samples, 0.07%)</title><rect x="16.0146%" y="277" width="0.0699%" height="15" fill="rgb(189,189,55)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (30 samples, 0.07%)</title><rect x="16.0146%" y="261" width="0.0699%" height="15" fill="rgb(189,189,55)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (30 samples, 0.07%)</title><rect x="16.0146%" y="245" width="0.0699%" height="15" fill="rgb(209,209,62)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (30 samples, 0.07%)</title><rect x="16.0146%" y="229" width="0.0699%" height="15" fill="rgb(215,215,64)" fg:x="6869" fg:w="30"/><text x="16.2646%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (29 samples, 0.07%)</title><rect x="16.0170%" y="213" width="0.0676%" height="15" fill="rgb(196,196,57)" fg:x="6870" fg:w="29"/><text x="16.2670%" y="223.50"></text></g><g><title>com.oracle.svm.core.UnmanagedMemoryUtil::copyLongsForward (29 samples, 0.07%)</title><rect x="16.0170%" y="197" width="0.0676%" height="15" fill="rgb(213,213,64)" fg:x="6870" fg:w="29"/><text x="16.2670%" y="207.50"></text></g><g><title>com.oracle.svm.core.graal.snippets.CEntryPointSnippets::attachThread (7 samples, 0.02%)</title><rect x="16.0846%" y="853" width="0.0163%" height="15" fill="rgb(187,187,54)" fg:x="6899" fg:w="7"/><text x="16.3346%" y="863.50"></text></g><g><title>com.oracle.svm.core.graal.snippets.CEntryPointSnippets::attachUnattachedThread (7 samples, 0.02%)</title><rect x="16.0846%" y="837" width="0.0163%" height="15" fill="rgb(188,188,55)" fg:x="6899" fg:w="7"/><text x="16.3346%" y="847.50"></text></g><g><title>__calloc (7 samples, 0.02%)</title><rect x="16.0846%" y="821" width="0.0163%" height="15" fill="rgb(242,111,111)" fg:x="6899" fg:w="7"/><text x="16.3346%" y="831.50"></text></g><g><title>tcache_init.part.0 (7 samples, 0.02%)</title><rect x="16.0846%" y="805" width="0.0163%" height="15" fill="rgb(89,236,89)" fg:x="6899" fg:w="7"/><text x="16.3346%" y="815.50"></text></g><g><title>arena_get2.part.0 (7 samples, 0.02%)</title><rect x="16.0846%" y="789" width="0.0163%" height="15" fill="rgb(66,215,66)" fg:x="6899" fg:w="7"/><text x="16.3346%" y="799.50"></text></g><g><title>new_heap (5 samples, 0.01%)</title><rect x="16.0892%" y="773" width="0.0117%" height="15" fill="rgb(249,121,121)" fg:x="6901" fg:w="5"/><text x="16.3392%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::schedule (32 samples, 0.07%)</title><rect x="16.1079%" y="549" width="0.0746%" height="15" fill="rgb(216,216,65)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (32 samples, 0.07%)</title><rect x="16.1079%" y="533" width="0.0746%" height="15" fill="rgb(205,205,60)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (32 samples, 0.07%)</title><rect x="16.1079%" y="517" width="0.0746%" height="15" fill="rgb(211,211,63)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (32 samples, 0.07%)</title><rect x="16.1079%" y="501" width="0.0746%" height="15" fill="rgb(222,222,67)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (32 samples, 0.07%)</title><rect x="16.1079%" y="485" width="0.0746%" height="15" fill="rgb(184,184,53)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (32 samples, 0.07%)</title><rect x="16.1079%" y="469" width="0.0746%" height="15" fill="rgb(188,188,55)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (32 samples, 0.07%)</title><rect x="16.1079%" y="453" width="0.0746%" height="15" fill="rgb(175,175,50)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (32 samples, 0.07%)</title><rect x="16.1079%" y="437" width="0.0746%" height="15" fill="rgb(228,228,69)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (32 samples, 0.07%)</title><rect x="16.1079%" y="421" width="0.0746%" height="15" fill="rgb(193,193,56)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (32 samples, 0.07%)</title><rect x="16.1079%" y="405" width="0.0746%" height="15" fill="rgb(189,189,55)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (32 samples, 0.07%)</title><rect x="16.1079%" y="389" width="0.0746%" height="15" fill="rgb(197,197,58)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (32 samples, 0.07%)</title><rect x="16.1079%" y="373" width="0.0746%" height="15" fill="rgb(229,229,69)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (32 samples, 0.07%)</title><rect x="16.1079%" y="357" width="0.0746%" height="15" fill="rgb(188,188,55)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (32 samples, 0.07%)</title><rect x="16.1079%" y="341" width="0.0746%" height="15" fill="rgb(187,187,54)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (32 samples, 0.07%)</title><rect x="16.1079%" y="325" width="0.0746%" height="15" fill="rgb(197,197,58)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (32 samples, 0.07%)</title><rect x="16.1079%" y="309" width="0.0746%" height="15" fill="rgb(220,220,66)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (32 samples, 0.07%)</title><rect x="16.1079%" y="293" width="0.0746%" height="15" fill="rgb(187,187,54)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromRoots (32 samples, 0.07%)</title><rect x="16.1079%" y="277" width="0.0746%" height="15" fill="rgb(196,196,57)" fg:x="6909" fg:w="32"/><text x="16.3579%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (31 samples, 0.07%)</title><rect x="16.1102%" y="261" width="0.0723%" height="15" fill="rgb(189,189,55)" fg:x="6910" fg:w="31"/><text x="16.3602%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (31 samples, 0.07%)</title><rect x="16.1102%" y="245" width="0.0723%" height="15" fill="rgb(215,215,64)" fg:x="6910" fg:w="31"/><text x="16.3602%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (31 samples, 0.07%)</title><rect x="16.1102%" y="229" width="0.0723%" height="15" fill="rgb(196,196,57)" fg:x="6910" fg:w="31"/><text x="16.3602%" y="239.50"></text></g><g><title>[unknown] (74 samples, 0.17%)</title><rect x="16.0123%" y="901" width="0.1725%" height="15" fill="rgb(206,59,59)" fg:x="6868" fg:w="74"/><text x="16.2623%" y="911.50"></text></g><g><title>start_thread (43 samples, 0.10%)</title><rect x="16.0846%" y="885" width="0.1003%" height="15" fill="rgb(235,101,101)" fg:x="6899" fg:w="43"/><text x="16.3346%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (43 samples, 0.10%)</title><rect x="16.0846%" y="869" width="0.1003%" height="15" fill="rgb(191,191,56)" fg:x="6899" fg:w="43"/><text x="16.3346%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (36 samples, 0.08%)</title><rect x="16.1009%" y="853" width="0.0839%" height="15" fill="rgb(210,210,62)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (36 samples, 0.08%)</title><rect x="16.1009%" y="837" width="0.0839%" height="15" fill="rgb(205,205,61)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="847.50"></text></g><g><title>java.lang.Thread::run (36 samples, 0.08%)</title><rect x="16.1009%" y="821" width="0.0839%" height="15" fill="rgb(228,228,69)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (36 samples, 0.08%)</title><rect x="16.1009%" y="805" width="0.0839%" height="15" fill="rgb(225,225,68)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (36 samples, 0.08%)</title><rect x="16.1009%" y="789" width="0.0839%" height="15" fill="rgb(227,227,69)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (36 samples, 0.08%)</title><rect x="16.1009%" y="773" width="0.0839%" height="15" fill="rgb(220,220,66)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (36 samples, 0.08%)</title><rect x="16.1009%" y="757" width="0.0839%" height="15" fill="rgb(197,197,58)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (36 samples, 0.08%)</title><rect x="16.1009%" y="741" width="0.0839%" height="15" fill="rgb(220,220,66)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (36 samples, 0.08%)</title><rect x="16.1009%" y="725" width="0.0839%" height="15" fill="rgb(228,228,69)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (36 samples, 0.08%)</title><rect x="16.1009%" y="709" width="0.0839%" height="15" fill="rgb(228,228,69)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (36 samples, 0.08%)</title><rect x="16.1009%" y="693" width="0.0839%" height="15" fill="rgb(219,219,66)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (36 samples, 0.08%)</title><rect x="16.1009%" y="677" width="0.0839%" height="15" fill="rgb(180,180,52)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_AverageTime (36 samples, 0.08%)</title><rect x="16.1009%" y="661" width="0.0839%" height="15" fill="rgb(223,223,67)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_avgt_jmhStub (36 samples, 0.08%)</title><rect x="16.1009%" y="645" width="0.0839%" height="15" fill="rgb(221,221,66)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueWorkersJobs (36 samples, 0.08%)</title><rect x="16.1009%" y="629" width="0.0839%" height="15" fill="rgb(191,191,56)" fg:x="6906" fg:w="36"/><text x="16.3509%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (33 samples, 0.08%)</title><rect x="16.1079%" y="613" width="0.0769%" height="15" fill="rgb(201,201,59)" fg:x="6909" fg:w="33"/><text x="16.3579%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (33 samples, 0.08%)</title><rect x="16.1079%" y="597" width="0.0769%" height="15" fill="rgb(194,194,57)" fg:x="6909" fg:w="33"/><text x="16.3579%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$989/1721138936::accept (33 samples, 0.08%)</title><rect x="16.1079%" y="581" width="0.0769%" height="15" fill="rgb(186,186,54)" fg:x="6909" fg:w="33"/><text x="16.3579%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueWorkersJobs$3 (33 samples, 0.08%)</title><rect x="16.1079%" y="565" width="0.0769%" height="15" fill="rgb(176,176,50)" fg:x="6909" fg:w="33"/><text x="16.3579%" y="575.50"></text></g><g><title>__GI___clone (44 samples, 0.10%)</title><rect x="16.1848%" y="901" width="0.1026%" height="15" fill="rgb(206,59,59)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="911.50"></text></g><g><title>ret_from_fork (44 samples, 0.10%)</title><rect x="16.1848%" y="885" width="0.1026%" height="15" fill="rgb(235,101,101)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="895.50"></text></g><g><title>schedule_tail (44 samples, 0.10%)</title><rect x="16.1848%" y="869" width="0.1026%" height="15" fill="rgb(234,100,100)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="879.50"></text></g><g><title>finish_task_switch (44 samples, 0.10%)</title><rect x="16.1848%" y="853" width="0.1026%" height="15" fill="rgb(251,124,124)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.10%)</title><rect x="16.1848%" y="837" width="0.1026%" height="15" fill="rgb(240,109,109)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="847.50"></text></g><g><title>perf_pmu_enable.part.0 (44 samples, 0.10%)</title><rect x="16.1848%" y="821" width="0.1026%" height="15" fill="rgb(71,219,71)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="831.50"></text></g><g><title>x86_pmu_enable (44 samples, 0.10%)</title><rect x="16.1848%" y="805" width="0.1026%" height="15" fill="rgb(238,105,105)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="815.50"></text></g><g><title>intel_tfa_pmu_enable_all (44 samples, 0.10%)</title><rect x="16.1848%" y="789" width="0.1026%" height="15" fill="rgb(238,105,105)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="799.50"></text></g><g><title>native_write_msr (44 samples, 0.10%)</title><rect x="16.1848%" y="773" width="0.1026%" height="15" fill="rgb(212,68,68)" fg:x="6942" fg:w="44"/><text x="16.4348%" y="783.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (7 samples, 0.02%)</title><rect x="16.3457%" y="277" width="0.0163%" height="15" fill="rgb(189,189,55)" fg:x="7011" fg:w="7"/><text x="16.5957%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::blackenImageHeapRoots (7 samples, 0.02%)</title><rect x="16.3620%" y="261" width="0.0163%" height="15" fill="rgb(202,202,60)" fg:x="7018" fg:w="7"/><text x="16.6120%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ImageHeapWalker::walkRegions (7 samples, 0.02%)</title><rect x="16.3620%" y="245" width="0.0163%" height="15" fill="rgb(204,204,60)" fg:x="7018" fg:w="7"/><text x="16.6120%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$BlackenImageHeapRootsVisitor::visitNativeImageHeapRegion (7 samples, 0.02%)</title><rect x="16.3620%" y="229" width="0.0163%" height="15" fill="rgb(229,229,69)" fg:x="7018" fg:w="7"/><text x="16.6120%" y="239.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::schedule (20 samples, 0.05%)</title><rect x="16.3410%" y="549" width="0.0466%" height="15" fill="rgb(216,216,65)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (20 samples, 0.05%)</title><rect x="16.3410%" y="533" width="0.0466%" height="15" fill="rgb(205,205,60)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (20 samples, 0.05%)</title><rect x="16.3410%" y="517" width="0.0466%" height="15" fill="rgb(211,211,63)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (20 samples, 0.05%)</title><rect x="16.3410%" y="501" width="0.0466%" height="15" fill="rgb(222,222,67)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (20 samples, 0.05%)</title><rect x="16.3410%" y="485" width="0.0466%" height="15" fill="rgb(184,184,53)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (20 samples, 0.05%)</title><rect x="16.3410%" y="469" width="0.0466%" height="15" fill="rgb(188,188,55)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (20 samples, 0.05%)</title><rect x="16.3410%" y="453" width="0.0466%" height="15" fill="rgb(175,175,50)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (20 samples, 0.05%)</title><rect x="16.3410%" y="437" width="0.0466%" height="15" fill="rgb(228,228,69)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (20 samples, 0.05%)</title><rect x="16.3410%" y="421" width="0.0466%" height="15" fill="rgb(193,193,56)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (20 samples, 0.05%)</title><rect x="16.3410%" y="405" width="0.0466%" height="15" fill="rgb(189,189,55)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (20 samples, 0.05%)</title><rect x="16.3410%" y="389" width="0.0466%" height="15" fill="rgb(197,197,58)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (20 samples, 0.05%)</title><rect x="16.3410%" y="373" width="0.0466%" height="15" fill="rgb(229,229,69)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (20 samples, 0.05%)</title><rect x="16.3410%" y="357" width="0.0466%" height="15" fill="rgb(188,188,55)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (20 samples, 0.05%)</title><rect x="16.3410%" y="341" width="0.0466%" height="15" fill="rgb(187,187,54)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (20 samples, 0.05%)</title><rect x="16.3410%" y="325" width="0.0466%" height="15" fill="rgb(197,197,58)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (20 samples, 0.05%)</title><rect x="16.3410%" y="309" width="0.0466%" height="15" fill="rgb(220,220,66)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (20 samples, 0.05%)</title><rect x="16.3410%" y="293" width="0.0466%" height="15" fill="rgb(187,187,54)" fg:x="7009" fg:w="20"/><text x="16.5910%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromRoots (11 samples, 0.03%)</title><rect x="16.3620%" y="277" width="0.0256%" height="15" fill="rgb(196,196,57)" fg:x="7018" fg:w="11"/><text x="16.6120%" y="287.50"></text></g><g><title>_fini (44 samples, 0.10%)</title><rect x="16.2874%" y="901" width="0.1026%" height="15" fill="rgb(247,119,119)" fg:x="6986" fg:w="44"/><text x="16.5374%" y="911.50"></text></g><g><title>start_thread (44 samples, 0.10%)</title><rect x="16.2874%" y="885" width="0.1026%" height="15" fill="rgb(235,101,101)" fg:x="6986" fg:w="44"/><text x="16.5374%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (44 samples, 0.10%)</title><rect x="16.2874%" y="869" width="0.1026%" height="15" fill="rgb(191,191,56)" fg:x="6986" fg:w="44"/><text x="16.5374%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (44 samples, 0.10%)</title><rect x="16.2874%" y="853" width="0.1026%" height="15" fill="rgb(210,210,62)" fg:x="6986" fg:w="44"/><text x="16.5374%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (44 samples, 0.10%)</title><rect x="16.2874%" y="837" width="0.1026%" height="15" fill="rgb(205,205,61)" fg:x="6986" fg:w="44"/><text x="16.5374%" y="847.50"></text></g><g><title>java.lang.Thread::run (43 samples, 0.10%)</title><rect x="16.2898%" y="821" width="0.1003%" height="15" fill="rgb(228,228,69)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (43 samples, 0.10%)</title><rect x="16.2898%" y="805" width="0.1003%" height="15" fill="rgb(225,225,68)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (43 samples, 0.10%)</title><rect x="16.2898%" y="789" width="0.1003%" height="15" fill="rgb(227,227,69)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (43 samples, 0.10%)</title><rect x="16.2898%" y="773" width="0.1003%" height="15" fill="rgb(220,220,66)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (43 samples, 0.10%)</title><rect x="16.2898%" y="757" width="0.1003%" height="15" fill="rgb(197,197,58)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (43 samples, 0.10%)</title><rect x="16.2898%" y="741" width="0.1003%" height="15" fill="rgb(220,220,66)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (43 samples, 0.10%)</title><rect x="16.2898%" y="725" width="0.1003%" height="15" fill="rgb(228,228,69)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (43 samples, 0.10%)</title><rect x="16.2898%" y="709" width="0.1003%" height="15" fill="rgb(228,228,69)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (43 samples, 0.10%)</title><rect x="16.2898%" y="693" width="0.1003%" height="15" fill="rgb(219,219,66)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (43 samples, 0.10%)</title><rect x="16.2898%" y="677" width="0.1003%" height="15" fill="rgb(180,180,52)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_AverageTime (43 samples, 0.10%)</title><rect x="16.2898%" y="661" width="0.1003%" height="15" fill="rgb(223,223,67)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_avgt_jmhStub (43 samples, 0.10%)</title><rect x="16.2898%" y="645" width="0.1003%" height="15" fill="rgb(221,221,66)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueWorkersJobs (43 samples, 0.10%)</title><rect x="16.2898%" y="629" width="0.1003%" height="15" fill="rgb(191,191,56)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (43 samples, 0.10%)</title><rect x="16.2898%" y="613" width="0.1003%" height="15" fill="rgb(201,201,59)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (43 samples, 0.10%)</title><rect x="16.2898%" y="597" width="0.1003%" height="15" fill="rgb(194,194,57)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$989/1721138936::accept (43 samples, 0.10%)</title><rect x="16.2898%" y="581" width="0.1003%" height="15" fill="rgb(186,186,54)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueWorkersJobs$3 (43 samples, 0.10%)</title><rect x="16.2898%" y="565" width="0.1003%" height="15" fill="rgb(176,176,50)" fg:x="6987" fg:w="43"/><text x="16.5398%" y="575.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint$Master::freeze (5 samples, 0.01%)</title><rect x="16.3947%" y="901" width="0.0117%" height="15" fill="rgb(206,206,61)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="911.50"></text></g><g><title>start_thread (5 samples, 0.01%)</title><rect x="16.3947%" y="885" width="0.0117%" height="15" fill="rgb(235,101,101)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="16.3947%" y="869" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (5 samples, 0.01%)</title><rect x="16.3947%" y="853" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="16.3947%" y="837" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="847.50"></text></g><g><title>java.lang.Thread::run (5 samples, 0.01%)</title><rect x="16.3947%" y="821" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (5 samples, 0.01%)</title><rect x="16.3947%" y="805" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (5 samples, 0.01%)</title><rect x="16.3947%" y="789" width="0.0117%" height="15" fill="rgb(227,227,69)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (5 samples, 0.01%)</title><rect x="16.3947%" y="773" width="0.0117%" height="15" fill="rgb(220,220,66)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (5 samples, 0.01%)</title><rect x="16.3947%" y="757" width="0.0117%" height="15" fill="rgb(197,197,58)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (5 samples, 0.01%)</title><rect x="16.3947%" y="741" width="0.0117%" height="15" fill="rgb(220,220,66)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (5 samples, 0.01%)</title><rect x="16.3947%" y="725" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (5 samples, 0.01%)</title><rect x="16.3947%" y="709" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (5 samples, 0.01%)</title><rect x="16.3947%" y="693" width="0.0117%" height="15" fill="rgb(219,219,66)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (5 samples, 0.01%)</title><rect x="16.3947%" y="677" width="0.0117%" height="15" fill="rgb(180,180,52)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_AverageTime (5 samples, 0.01%)</title><rect x="16.3947%" y="661" width="0.0117%" height="15" fill="rgb(223,223,67)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_avgt_jmhStub (5 samples, 0.01%)</title><rect x="16.3947%" y="645" width="0.0117%" height="15" fill="rgb(221,221,66)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueWorkersJobs (5 samples, 0.01%)</title><rect x="16.3947%" y="629" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (5 samples, 0.01%)</title><rect x="16.3947%" y="613" width="0.0117%" height="15" fill="rgb(201,201,59)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (5 samples, 0.01%)</title><rect x="16.3947%" y="597" width="0.0117%" height="15" fill="rgb(194,194,57)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$989/1721138936::accept (5 samples, 0.01%)</title><rect x="16.3947%" y="581" width="0.0117%" height="15" fill="rgb(186,186,54)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueWorkersJobs$3 (5 samples, 0.01%)</title><rect x="16.3947%" y="565" width="0.0117%" height="15" fill="rgb(176,176,50)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="575.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (5 samples, 0.01%)</title><rect x="16.3947%" y="549" width="0.0117%" height="15" fill="rgb(205,205,60)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (5 samples, 0.01%)</title><rect x="16.3947%" y="533" width="0.0117%" height="15" fill="rgb(211,211,63)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (5 samples, 0.01%)</title><rect x="16.3947%" y="517" width="0.0117%" height="15" fill="rgb(222,222,67)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (5 samples, 0.01%)</title><rect x="16.3947%" y="501" width="0.0117%" height="15" fill="rgb(184,184,53)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="511.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (5 samples, 0.01%)</title><rect x="16.3947%" y="485" width="0.0117%" height="15" fill="rgb(188,188,55)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (5 samples, 0.01%)</title><rect x="16.3947%" y="469" width="0.0117%" height="15" fill="rgb(175,175,50)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (5 samples, 0.01%)</title><rect x="16.3947%" y="453" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (5 samples, 0.01%)</title><rect x="16.3947%" y="437" width="0.0117%" height="15" fill="rgb(193,193,56)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (5 samples, 0.01%)</title><rect x="16.3947%" y="421" width="0.0117%" height="15" fill="rgb(189,189,55)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (5 samples, 0.01%)</title><rect x="16.3947%" y="405" width="0.0117%" height="15" fill="rgb(197,197,58)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="415.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (5 samples, 0.01%)</title><rect x="16.3947%" y="389" width="0.0117%" height="15" fill="rgb(229,229,69)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (5 samples, 0.01%)</title><rect x="16.3947%" y="373" width="0.0117%" height="15" fill="rgb(188,188,55)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (5 samples, 0.01%)</title><rect x="16.3947%" y="357" width="0.0117%" height="15" fill="rgb(187,187,54)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (5 samples, 0.01%)</title><rect x="16.3947%" y="341" width="0.0117%" height="15" fill="rgb(197,197,58)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (5 samples, 0.01%)</title><rect x="16.3947%" y="325" width="0.0117%" height="15" fill="rgb(220,220,66)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (5 samples, 0.01%)</title><rect x="16.3947%" y="309" width="0.0117%" height="15" fill="rgb(187,187,54)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$ChunkReleaser::release (5 samples, 0.01%)</title><rect x="16.3947%" y="293" width="0.0117%" height="15" fill="rgb(189,189,55)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.HeapChunkProvider::consumeAlignedChunks (5 samples, 0.01%)</title><rect x="16.3947%" y="277" width="0.0117%" height="15" fill="rgb(227,227,68)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.HeapChunkProvider::freeAlignedChunkList (5 samples, 0.01%)</title><rect x="16.3947%" y="261" width="0.0117%" height="15" fill="rgb(221,221,66)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="271.50"></text></g><g><title>com.oracle.svm.core.os.AbstractCommittedMemoryProvider::free (5 samples, 0.01%)</title><rect x="16.3947%" y="245" width="0.0117%" height="15" fill="rgb(186,186,54)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="255.50"></text></g><g><title>com.oracle.svm.core.posix.PosixVirtualMemoryProvider::free (5 samples, 0.01%)</title><rect x="16.3947%" y="229" width="0.0117%" height="15" fill="rgb(194,194,56)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="239.50"></text></g><g><title>__GI_munmap (5 samples, 0.01%)</title><rect x="16.3947%" y="213" width="0.0117%" height="15" fill="rgb(220,80,80)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="223.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="16.3947%" y="197" width="0.0117%" height="15" fill="rgb(254,128,128)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="207.50"></text></g><g><title>do_syscall_64 (5 samples, 0.01%)</title><rect x="16.3947%" y="181" width="0.0117%" height="15" fill="rgb(217,75,75)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="191.50"></text></g><g><title>__x64_sys_munmap (5 samples, 0.01%)</title><rect x="16.3947%" y="165" width="0.0117%" height="15" fill="rgb(244,114,114)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="175.50"></text></g><g><title>__vm_munmap (5 samples, 0.01%)</title><rect x="16.3947%" y="149" width="0.0117%" height="15" fill="rgb(247,118,118)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="159.50"></text></g><g><title>__do_munmap (5 samples, 0.01%)</title><rect x="16.3947%" y="133" width="0.0117%" height="15" fill="rgb(208,61,61)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="143.50"></text></g><g><title>unmap_region (5 samples, 0.01%)</title><rect x="16.3947%" y="117" width="0.0117%" height="15" fill="rgb(252,127,127)" fg:x="7032" fg:w="5"/><text x="16.6447%" y="127.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (9 samples, 0.02%)</title><rect x="16.4063%" y="549" width="0.0210%" height="15" fill="rgb(205,205,60)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (9 samples, 0.02%)</title><rect x="16.4063%" y="533" width="0.0210%" height="15" fill="rgb(211,211,63)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (9 samples, 0.02%)</title><rect x="16.4063%" y="517" width="0.0210%" height="15" fill="rgb(222,222,67)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (9 samples, 0.02%)</title><rect x="16.4063%" y="501" width="0.0210%" height="15" fill="rgb(184,184,53)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="511.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (9 samples, 0.02%)</title><rect x="16.4063%" y="485" width="0.0210%" height="15" fill="rgb(188,188,55)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (9 samples, 0.02%)</title><rect x="16.4063%" y="469" width="0.0210%" height="15" fill="rgb(175,175,50)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (9 samples, 0.02%)</title><rect x="16.4063%" y="453" width="0.0210%" height="15" fill="rgb(228,228,69)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (9 samples, 0.02%)</title><rect x="16.4063%" y="437" width="0.0210%" height="15" fill="rgb(193,193,56)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (9 samples, 0.02%)</title><rect x="16.4063%" y="421" width="0.0210%" height="15" fill="rgb(189,189,55)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (9 samples, 0.02%)</title><rect x="16.4063%" y="405" width="0.0210%" height="15" fill="rgb(197,197,58)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="415.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (9 samples, 0.02%)</title><rect x="16.4063%" y="389" width="0.0210%" height="15" fill="rgb(229,229,69)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (9 samples, 0.02%)</title><rect x="16.4063%" y="373" width="0.0210%" height="15" fill="rgb(188,188,55)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (9 samples, 0.02%)</title><rect x="16.4063%" y="357" width="0.0210%" height="15" fill="rgb(187,187,54)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (9 samples, 0.02%)</title><rect x="16.4063%" y="341" width="0.0210%" height="15" fill="rgb(197,197,58)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (9 samples, 0.02%)</title><rect x="16.4063%" y="325" width="0.0210%" height="15" fill="rgb(220,220,66)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (9 samples, 0.02%)</title><rect x="16.4063%" y="309" width="0.0210%" height="15" fill="rgb(187,187,54)" fg:x="7037" fg:w="9"/><text x="16.6563%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromRoots (6 samples, 0.01%)</title><rect x="16.4133%" y="293" width="0.0140%" height="15" fill="rgb(196,196,57)" fg:x="7040" fg:w="6"/><text x="16.6633%" y="303.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::schedule (130 samples, 0.30%)</title><rect x="16.4273%" y="549" width="0.3031%" height="15" fill="rgb(216,216,65)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="559.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (130 samples, 0.30%)</title><rect x="16.4273%" y="533" width="0.3031%" height="15" fill="rgb(205,205,60)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (130 samples, 0.30%)</title><rect x="16.4273%" y="517" width="0.3031%" height="15" fill="rgb(211,211,63)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (130 samples, 0.30%)</title><rect x="16.4273%" y="501" width="0.3031%" height="15" fill="rgb(222,222,67)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (130 samples, 0.30%)</title><rect x="16.4273%" y="485" width="0.3031%" height="15" fill="rgb(184,184,53)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (130 samples, 0.30%)</title><rect x="16.4273%" y="469" width="0.3031%" height="15" fill="rgb(188,188,55)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (130 samples, 0.30%)</title><rect x="16.4273%" y="453" width="0.3031%" height="15" fill="rgb(175,175,50)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (130 samples, 0.30%)</title><rect x="16.4273%" y="437" width="0.3031%" height="15" fill="rgb(228,228,69)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (130 samples, 0.30%)</title><rect x="16.4273%" y="421" width="0.3031%" height="15" fill="rgb(193,193,56)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (130 samples, 0.30%)</title><rect x="16.4273%" y="405" width="0.3031%" height="15" fill="rgb(189,189,55)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (130 samples, 0.30%)</title><rect x="16.4273%" y="389" width="0.3031%" height="15" fill="rgb(197,197,58)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (130 samples, 0.30%)</title><rect x="16.4273%" y="373" width="0.3031%" height="15" fill="rgb(229,229,69)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (130 samples, 0.30%)</title><rect x="16.4273%" y="357" width="0.3031%" height="15" fill="rgb(188,188,55)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (130 samples, 0.30%)</title><rect x="16.4273%" y="341" width="0.3031%" height="15" fill="rgb(187,187,54)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (130 samples, 0.30%)</title><rect x="16.4273%" y="325" width="0.3031%" height="15" fill="rgb(197,197,58)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (130 samples, 0.30%)</title><rect x="16.4273%" y="309" width="0.3031%" height="15" fill="rgb(220,220,66)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (130 samples, 0.30%)</title><rect x="16.4273%" y="293" width="0.3031%" height="15" fill="rgb(187,187,54)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (130 samples, 0.30%)</title><rect x="16.4273%" y="277" width="0.3031%" height="15" fill="rgb(189,189,55)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (130 samples, 0.30%)</title><rect x="16.4273%" y="261" width="0.3031%" height="15" fill="rgb(189,189,55)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (130 samples, 0.30%)</title><rect x="16.4273%" y="245" width="0.3031%" height="15" fill="rgb(209,209,62)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (130 samples, 0.30%)</title><rect x="16.4273%" y="229" width="0.3031%" height="15" fill="rgb(215,215,64)" fg:x="7046" fg:w="130"/><text x="16.6773%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (128 samples, 0.30%)</title><rect x="16.4320%" y="213" width="0.2984%" height="15" fill="rgb(196,196,57)" fg:x="7048" fg:w="128"/><text x="16.6820%" y="223.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (141 samples, 0.33%)</title><rect x="16.4063%" y="901" width="0.3287%" height="15" fill="rgb(197,197,58)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="911.50"></text></g><g><title>start_thread (141 samples, 0.33%)</title><rect x="16.4063%" y="885" width="0.3287%" height="15" fill="rgb(235,101,101)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (141 samples, 0.33%)</title><rect x="16.4063%" y="869" width="0.3287%" height="15" fill="rgb(191,191,56)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (141 samples, 0.33%)</title><rect x="16.4063%" y="853" width="0.3287%" height="15" fill="rgb(210,210,62)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (141 samples, 0.33%)</title><rect x="16.4063%" y="837" width="0.3287%" height="15" fill="rgb(205,205,61)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="847.50"></text></g><g><title>java.lang.Thread::run (141 samples, 0.33%)</title><rect x="16.4063%" y="821" width="0.3287%" height="15" fill="rgb(228,228,69)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (141 samples, 0.33%)</title><rect x="16.4063%" y="805" width="0.3287%" height="15" fill="rgb(225,225,68)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (141 samples, 0.33%)</title><rect x="16.4063%" y="789" width="0.3287%" height="15" fill="rgb(227,227,69)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (141 samples, 0.33%)</title><rect x="16.4063%" y="773" width="0.3287%" height="15" fill="rgb(220,220,66)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (141 samples, 0.33%)</title><rect x="16.4063%" y="757" width="0.3287%" height="15" fill="rgb(197,197,58)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (141 samples, 0.33%)</title><rect x="16.4063%" y="741" width="0.3287%" height="15" fill="rgb(220,220,66)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (141 samples, 0.33%)</title><rect x="16.4063%" y="725" width="0.3287%" height="15" fill="rgb(228,228,69)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (141 samples, 0.33%)</title><rect x="16.4063%" y="709" width="0.3287%" height="15" fill="rgb(228,228,69)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (141 samples, 0.33%)</title><rect x="16.4063%" y="693" width="0.3287%" height="15" fill="rgb(219,219,66)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (141 samples, 0.33%)</title><rect x="16.4063%" y="677" width="0.3287%" height="15" fill="rgb(180,180,52)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_AverageTime (141 samples, 0.33%)</title><rect x="16.4063%" y="661" width="0.3287%" height="15" fill="rgb(223,223,67)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineExecutorService_jmhTest::baselineExecutorService_avgt_jmhStub (141 samples, 0.33%)</title><rect x="16.4063%" y="645" width="0.3287%" height="15" fill="rgb(221,221,66)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueWorkersJobs (141 samples, 0.33%)</title><rect x="16.4063%" y="629" width="0.3287%" height="15" fill="rgb(191,191,56)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (141 samples, 0.33%)</title><rect x="16.4063%" y="613" width="0.3287%" height="15" fill="rgb(201,201,59)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (141 samples, 0.33%)</title><rect x="16.4063%" y="597" width="0.3287%" height="15" fill="rgb(194,194,57)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$989/1721138936::accept (141 samples, 0.33%)</title><rect x="16.4063%" y="581" width="0.3287%" height="15" fill="rgb(186,186,54)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueWorkersJobs$3 (141 samples, 0.33%)</title><rect x="16.4063%" y="565" width="0.3287%" height="15" fill="rgb(176,176,50)" fg:x="7037" fg:w="141"/><text x="16.6563%" y="575.50"></text></g><g><title>ce-jmh-worker-1 (892 samples, 2.08%)</title><rect x="14.6694%" y="917" width="2.0796%" height="15" fill="rgb(214,70,70)" fg:x="6292" fg:w="892"/><text x="14.9194%" y="927.50">c..</text></g><g><title>java.util.concurrent.CountDownLatch::await (10 samples, 0.02%)</title><rect x="16.7490%" y="613" width="0.0233%" height="15" fill="rgb(192,192,56)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="623.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::tryAcquireSharedNanos (10 samples, 0.02%)</title><rect x="16.7490%" y="597" width="0.0233%" height="15" fill="rgb(197,197,58)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="607.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireSharedNanos (10 samples, 0.02%)</title><rect x="16.7490%" y="581" width="0.0233%" height="15" fill="rgb(178,178,51)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="591.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::parkNanos (10 samples, 0.02%)</title><rect x="16.7490%" y="565" width="0.0233%" height="15" fill="rgb(180,180,51)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="575.50"></text></g><g><title>jdk.internal.misc.Unsafe::park (10 samples, 0.02%)</title><rect x="16.7490%" y="549" width="0.0233%" height="15" fill="rgb(213,213,63)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="559.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (10 samples, 0.02%)</title><rect x="16.7490%" y="533" width="0.0233%" height="15" fill="rgb(191,191,56)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condTimedWait (10 samples, 0.02%)</title><rect x="16.7490%" y="517" width="0.0233%" height="15" fill="rgb(188,188,54)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="527.50"></text></g><g><title>__pthread_cond_timedwait (10 samples, 0.02%)</title><rect x="16.7490%" y="501" width="0.0233%" height="15" fill="rgb(250,123,123)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="511.50"></text></g><g><title>__pthread_cond_wait_common (10 samples, 0.02%)</title><rect x="16.7490%" y="485" width="0.0233%" height="15" fill="rgb(203,55,55)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="495.50"></text></g><g><title>futex_abstimed_wait_cancelable (10 samples, 0.02%)</title><rect x="16.7490%" y="469" width="0.0233%" height="15" fill="rgb(234,100,100)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="16.7490%" y="453" width="0.0233%" height="15" fill="rgb(254,128,128)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="463.50"></text></g><g><title>do_syscall_64 (10 samples, 0.02%)</title><rect x="16.7490%" y="437" width="0.0233%" height="15" fill="rgb(217,75,75)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="447.50"></text></g><g><title>__x64_sys_futex (10 samples, 0.02%)</title><rect x="16.7490%" y="421" width="0.0233%" height="15" fill="rgb(248,121,121)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="431.50"></text></g><g><title>do_futex (10 samples, 0.02%)</title><rect x="16.7490%" y="405" width="0.0233%" height="15" fill="rgb(230,94,94)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="415.50"></text></g><g><title>futex_wait (10 samples, 0.02%)</title><rect x="16.7490%" y="389" width="0.0233%" height="15" fill="rgb(219,78,78)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="399.50"></text></g><g><title>futex_wait_queue_me (10 samples, 0.02%)</title><rect x="16.7490%" y="373" width="0.0233%" height="15" fill="rgb(204,56,56)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="383.50"></text></g><g><title>schedule (10 samples, 0.02%)</title><rect x="16.7490%" y="357" width="0.0233%" height="15" fill="rgb(251,124,124)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="367.50"></text></g><g><title>__schedule (10 samples, 0.02%)</title><rect x="16.7490%" y="341" width="0.0233%" height="15" fill="rgb(209,64,64)" fg:x="7184" fg:w="10"/><text x="16.9990%" y="351.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="16.7537%" y="325" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="7186" fg:w="8"/><text x="17.0037%" y="335.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="16.7537%" y="309" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="7186" fg:w="8"/><text x="17.0037%" y="319.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="16.7537%" y="293" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="7186" fg:w="8"/><text x="17.0037%" y="303.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="16.7537%" y="277" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="7186" fg:w="8"/><text x="17.0037%" y="287.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="16.7537%" y="261" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="7186" fg:w="8"/><text x="17.0037%" y="271.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="16.7537%" y="245" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="7186" fg:w="8"/><text x="17.0037%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (10 samples, 0.02%)</title><rect x="16.8493%" y="517" width="0.0233%" height="15" fill="rgb(205,205,60)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (10 samples, 0.02%)</title><rect x="16.8493%" y="501" width="0.0233%" height="15" fill="rgb(211,211,63)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (10 samples, 0.02%)</title><rect x="16.8493%" y="485" width="0.0233%" height="15" fill="rgb(222,222,67)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="495.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (10 samples, 0.02%)</title><rect x="16.8493%" y="469" width="0.0233%" height="15" fill="rgb(184,184,53)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (10 samples, 0.02%)</title><rect x="16.8493%" y="453" width="0.0233%" height="15" fill="rgb(188,188,55)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (10 samples, 0.02%)</title><rect x="16.8493%" y="437" width="0.0233%" height="15" fill="rgb(175,175,50)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (10 samples, 0.02%)</title><rect x="16.8493%" y="421" width="0.0233%" height="15" fill="rgb(228,228,69)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (10 samples, 0.02%)</title><rect x="16.8493%" y="405" width="0.0233%" height="15" fill="rgb(193,193,56)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (10 samples, 0.02%)</title><rect x="16.8493%" y="389" width="0.0233%" height="15" fill="rgb(189,189,55)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="399.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (10 samples, 0.02%)</title><rect x="16.8493%" y="373" width="0.0233%" height="15" fill="rgb(197,197,58)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (10 samples, 0.02%)</title><rect x="16.8493%" y="357" width="0.0233%" height="15" fill="rgb(229,229,69)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (10 samples, 0.02%)</title><rect x="16.8493%" y="341" width="0.0233%" height="15" fill="rgb(188,188,55)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (10 samples, 0.02%)</title><rect x="16.8493%" y="325" width="0.0233%" height="15" fill="rgb(187,187,54)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (10 samples, 0.02%)</title><rect x="16.8493%" y="309" width="0.0233%" height="15" fill="rgb(197,197,58)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (10 samples, 0.02%)</title><rect x="16.8493%" y="293" width="0.0233%" height="15" fill="rgb(220,220,66)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (10 samples, 0.02%)</title><rect x="16.8493%" y="277" width="0.0233%" height="15" fill="rgb(187,187,54)" fg:x="7227" fg:w="10"/><text x="17.0993%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (8 samples, 0.02%)</title><rect x="16.8540%" y="261" width="0.0187%" height="15" fill="rgb(189,189,55)" fg:x="7229" fg:w="8"/><text x="17.1040%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::blackenDirtyCardRoots (8 samples, 0.02%)</title><rect x="16.8540%" y="245" width="0.0187%" height="15" fill="rgb(179,179,51)" fg:x="7229" fg:w="8"/><text x="17.1040%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.remset.CardTableBasedRememberedSet::walkDirtyObjects (8 samples, 0.02%)</title><rect x="16.8540%" y="229" width="0.0187%" height="15" fill="rgb(208,208,62)" fg:x="7229" fg:w="8"/><text x="17.1040%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.remset.AlignedChunkRememberedSet::walkDirtyObjects (8 samples, 0.02%)</title><rect x="16.8540%" y="213" width="0.0187%" height="15" fill="rgb(209,209,62)" fg:x="7229" fg:w="8"/><text x="17.1040%" y="223.50"></text></g><g><title>java.util.concurrent.FutureTask::FutureTask (21 samples, 0.05%)</title><rect x="16.8726%" y="517" width="0.0490%" height="15" fill="rgb(226,226,68)" fg:x="7237" fg:w="21"/><text x="17.1226%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (5 samples, 0.01%)</title><rect x="17.1664%" y="229" width="0.0117%" height="15" fill="rgb(189,189,55)" fg:x="7363" fg:w="5"/><text x="17.4164%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::blackenDirtyCardRoots (5 samples, 0.01%)</title><rect x="17.1664%" y="213" width="0.0117%" height="15" fill="rgb(179,179,51)" fg:x="7363" fg:w="5"/><text x="17.4164%" y="223.50"></text></g><g><title>com.oracle.svm.core.genscavenge.remset.CardTableBasedRememberedSet::walkDirtyObjects (5 samples, 0.01%)</title><rect x="17.1664%" y="197" width="0.0117%" height="15" fill="rgb(208,208,62)" fg:x="7363" fg:w="5"/><text x="17.4164%" y="207.50"></text></g><g><title>com.oracle.svm.core.genscavenge.remset.AlignedChunkRememberedSet::walkDirtyObjects (5 samples, 0.01%)</title><rect x="17.1664%" y="181" width="0.0117%" height="15" fill="rgb(209,209,62)" fg:x="7363" fg:w="5"/><text x="17.4164%" y="191.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (14 samples, 0.03%)</title><rect x="17.1664%" y="485" width="0.0326%" height="15" fill="rgb(205,205,60)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="495.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (14 samples, 0.03%)</title><rect x="17.1664%" y="469" width="0.0326%" height="15" fill="rgb(211,211,63)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="479.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (14 samples, 0.03%)</title><rect x="17.1664%" y="453" width="0.0326%" height="15" fill="rgb(222,222,67)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="463.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (14 samples, 0.03%)</title><rect x="17.1664%" y="437" width="0.0326%" height="15" fill="rgb(184,184,53)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (14 samples, 0.03%)</title><rect x="17.1664%" y="421" width="0.0326%" height="15" fill="rgb(188,188,55)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (14 samples, 0.03%)</title><rect x="17.1664%" y="405" width="0.0326%" height="15" fill="rgb(175,175,50)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (14 samples, 0.03%)</title><rect x="17.1664%" y="389" width="0.0326%" height="15" fill="rgb(228,228,69)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="399.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (14 samples, 0.03%)</title><rect x="17.1664%" y="373" width="0.0326%" height="15" fill="rgb(193,193,56)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="383.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (14 samples, 0.03%)</title><rect x="17.1664%" y="357" width="0.0326%" height="15" fill="rgb(189,189,55)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="367.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (14 samples, 0.03%)</title><rect x="17.1664%" y="341" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (14 samples, 0.03%)</title><rect x="17.1664%" y="325" width="0.0326%" height="15" fill="rgb(229,229,69)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (14 samples, 0.03%)</title><rect x="17.1664%" y="309" width="0.0326%" height="15" fill="rgb(188,188,55)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (14 samples, 0.03%)</title><rect x="17.1664%" y="293" width="0.0326%" height="15" fill="rgb(187,187,54)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (14 samples, 0.03%)</title><rect x="17.1664%" y="277" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (14 samples, 0.03%)</title><rect x="17.1664%" y="261" width="0.0326%" height="15" fill="rgb(220,220,66)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (14 samples, 0.03%)</title><rect x="17.1664%" y="245" width="0.0326%" height="15" fill="rgb(187,187,54)" fg:x="7363" fg:w="14"/><text x="17.4164%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromRoots (9 samples, 0.02%)</title><rect x="17.1780%" y="229" width="0.0210%" height="15" fill="rgb(196,196,57)" fg:x="7368" fg:w="9"/><text x="17.4280%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (9 samples, 0.02%)</title><rect x="17.1780%" y="213" width="0.0210%" height="15" fill="rgb(189,189,55)" fg:x="7368" fg:w="9"/><text x="17.4280%" y="223.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (9 samples, 0.02%)</title><rect x="17.1780%" y="197" width="0.0210%" height="15" fill="rgb(215,215,64)" fg:x="7368" fg:w="9"/><text x="17.4280%" y="207.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (9 samples, 0.02%)</title><rect x="17.1780%" y="181" width="0.0210%" height="15" fill="rgb(196,196,57)" fg:x="7368" fg:w="9"/><text x="17.4280%" y="191.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::offer (131 samples, 0.31%)</title><rect x="16.9635%" y="501" width="0.3054%" height="15" fill="rgb(227,227,69)" fg:x="7276" fg:w="131"/><text x="17.2135%" y="511.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquire (30 samples, 0.07%)</title><rect x="17.1990%" y="485" width="0.0699%" height="15" fill="rgb(202,202,59)" fg:x="7377" fg:w="30"/><text x="17.4490%" y="495.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (30 samples, 0.07%)</title><rect x="17.1990%" y="469" width="0.0699%" height="15" fill="rgb(190,190,55)" fg:x="7377" fg:w="30"/><text x="17.4490%" y="479.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (28 samples, 0.07%)</title><rect x="17.2037%" y="453" width="0.0653%" height="15" fill="rgb(208,208,62)" fg:x="7379" fg:w="28"/><text x="17.4537%" y="463.50"></text></g><g><title>java.util.concurrent.AbstractExecutorService::submit (187 samples, 0.44%)</title><rect x="16.8400%" y="533" width="0.4360%" height="15" fill="rgb(188,188,54)" fg:x="7223" fg:w="187"/><text x="17.0900%" y="543.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::execute (152 samples, 0.35%)</title><rect x="16.9216%" y="517" width="0.3544%" height="15" fill="rgb(224,224,68)" fg:x="7258" fg:w="152"/><text x="17.1716%" y="527.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler::scheduleDirect (209 samples, 0.49%)</title><rect x="16.7910%" y="549" width="0.4873%" height="15" fill="rgb(201,201,59)" fg:x="7202" fg:w="209"/><text x="17.0410%" y="559.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueJobs$1 (232 samples, 0.54%)</title><rect x="16.7747%" y="565" width="0.5409%" height="15" fill="rgb(177,177,51)" fg:x="7195" fg:w="232"/><text x="17.0247%" y="575.50"></text></g><g><title>java.util.ArrayList$Itr::next (10 samples, 0.02%)</title><rect x="17.2923%" y="549" width="0.0233%" height="15" fill="rgb(211,211,63)" fg:x="7417" fg:w="10"/><text x="17.5423%" y="559.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueJobs (246 samples, 0.57%)</title><rect x="16.7490%" y="629" width="0.5735%" height="15" fill="rgb(193,193,56)" fg:x="7184" fg:w="246"/><text x="16.9990%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (236 samples, 0.55%)</title><rect x="16.7724%" y="613" width="0.5502%" height="15" fill="rgb(201,201,59)" fg:x="7194" fg:w="236"/><text x="17.0224%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (235 samples, 0.55%)</title><rect x="16.7747%" y="597" width="0.5479%" height="15" fill="rgb(194,194,57)" fg:x="7195" fg:w="235"/><text x="17.0247%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$991/2019577486::accept (235 samples, 0.55%)</title><rect x="16.7747%" y="581" width="0.5479%" height="15" fill="rgb(182,182,52)" fg:x="7195" fg:w="235"/><text x="17.0247%" y="591.50"></text></g><g><title>[anon] (247 samples, 0.58%)</title><rect x="16.7490%" y="901" width="0.5759%" height="15" fill="rgb(252,126,126)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="911.50"></text></g><g><title>start_thread (247 samples, 0.58%)</title><rect x="16.7490%" y="885" width="0.5759%" height="15" fill="rgb(235,101,101)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (247 samples, 0.58%)</title><rect x="16.7490%" y="869" width="0.5759%" height="15" fill="rgb(191,191,56)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (247 samples, 0.58%)</title><rect x="16.7490%" y="853" width="0.5759%" height="15" fill="rgb(210,210,62)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (247 samples, 0.58%)</title><rect x="16.7490%" y="837" width="0.5759%" height="15" fill="rgb(205,205,61)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="847.50"></text></g><g><title>java.lang.Thread::run (247 samples, 0.58%)</title><rect x="16.7490%" y="821" width="0.5759%" height="15" fill="rgb(228,228,69)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (247 samples, 0.58%)</title><rect x="16.7490%" y="805" width="0.5759%" height="15" fill="rgb(225,225,68)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (247 samples, 0.58%)</title><rect x="16.7490%" y="789" width="0.5759%" height="15" fill="rgb(227,227,69)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (247 samples, 0.58%)</title><rect x="16.7490%" y="773" width="0.5759%" height="15" fill="rgb(220,220,66)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (247 samples, 0.58%)</title><rect x="16.7490%" y="757" width="0.5759%" height="15" fill="rgb(197,197,58)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (247 samples, 0.58%)</title><rect x="16.7490%" y="741" width="0.5759%" height="15" fill="rgb(220,220,66)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (247 samples, 0.58%)</title><rect x="16.7490%" y="725" width="0.5759%" height="15" fill="rgb(228,228,69)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (247 samples, 0.58%)</title><rect x="16.7490%" y="709" width="0.5759%" height="15" fill="rgb(228,228,69)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (247 samples, 0.58%)</title><rect x="16.7490%" y="693" width="0.5759%" height="15" fill="rgb(219,219,66)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (247 samples, 0.58%)</title><rect x="16.7490%" y="677" width="0.5759%" height="15" fill="rgb(180,180,52)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_AverageTime (247 samples, 0.58%)</title><rect x="16.7490%" y="661" width="0.5759%" height="15" fill="rgb(186,186,54)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (247 samples, 0.58%)</title><rect x="16.7490%" y="645" width="0.5759%" height="15" fill="rgb(182,182,52)" fg:x="7184" fg:w="247"/><text x="16.9990%" y="655.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (6 samples, 0.01%)</title><rect x="17.3506%" y="229" width="0.0140%" height="15" fill="rgb(189,189,55)" fg:x="7442" fg:w="6"/><text x="17.6006%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (5 samples, 0.01%)</title><rect x="17.3529%" y="213" width="0.0117%" height="15" fill="rgb(189,189,55)" fg:x="7443" fg:w="5"/><text x="17.6029%" y="223.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (5 samples, 0.01%)</title><rect x="17.3529%" y="197" width="0.0117%" height="15" fill="rgb(209,209,62)" fg:x="7443" fg:w="5"/><text x="17.6029%" y="207.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (5 samples, 0.01%)</title><rect x="17.3529%" y="181" width="0.0117%" height="15" fill="rgb(215,215,64)" fg:x="7443" fg:w="5"/><text x="17.6029%" y="191.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (5 samples, 0.01%)</title><rect x="17.3529%" y="165" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="7443" fg:w="5"/><text x="17.6029%" y="175.50"></text></g><g><title>com.oracle.svm.core.UnmanagedMemoryUtil::copyLongsForward (5 samples, 0.01%)</title><rect x="17.3529%" y="149" width="0.0117%" height="15" fill="rgb(213,213,64)" fg:x="7443" fg:w="5"/><text x="17.6029%" y="159.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (7 samples, 0.02%)</title><rect x="17.3506%" y="485" width="0.0163%" height="15" fill="rgb(205,205,60)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="495.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (7 samples, 0.02%)</title><rect x="17.3506%" y="469" width="0.0163%" height="15" fill="rgb(211,211,63)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="479.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (7 samples, 0.02%)</title><rect x="17.3506%" y="453" width="0.0163%" height="15" fill="rgb(222,222,67)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="463.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (7 samples, 0.02%)</title><rect x="17.3506%" y="437" width="0.0163%" height="15" fill="rgb(184,184,53)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (7 samples, 0.02%)</title><rect x="17.3506%" y="421" width="0.0163%" height="15" fill="rgb(188,188,55)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (7 samples, 0.02%)</title><rect x="17.3506%" y="405" width="0.0163%" height="15" fill="rgb(175,175,50)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (7 samples, 0.02%)</title><rect x="17.3506%" y="389" width="0.0163%" height="15" fill="rgb(228,228,69)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="399.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (7 samples, 0.02%)</title><rect x="17.3506%" y="373" width="0.0163%" height="15" fill="rgb(193,193,56)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="383.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (7 samples, 0.02%)</title><rect x="17.3506%" y="357" width="0.0163%" height="15" fill="rgb(189,189,55)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="367.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (7 samples, 0.02%)</title><rect x="17.3506%" y="341" width="0.0163%" height="15" fill="rgb(197,197,58)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (7 samples, 0.02%)</title><rect x="17.3506%" y="325" width="0.0163%" height="15" fill="rgb(229,229,69)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (7 samples, 0.02%)</title><rect x="17.3506%" y="309" width="0.0163%" height="15" fill="rgb(188,188,55)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (7 samples, 0.02%)</title><rect x="17.3506%" y="293" width="0.0163%" height="15" fill="rgb(187,187,54)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (7 samples, 0.02%)</title><rect x="17.3506%" y="277" width="0.0163%" height="15" fill="rgb(197,197,58)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (7 samples, 0.02%)</title><rect x="17.3506%" y="261" width="0.0163%" height="15" fill="rgb(220,220,66)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (7 samples, 0.02%)</title><rect x="17.3506%" y="245" width="0.0163%" height="15" fill="rgb(187,187,54)" fg:x="7442" fg:w="7"/><text x="17.6006%" y="255.50"></text></g><g><title>[unknown] (21 samples, 0.05%)</title><rect x="17.3249%" y="901" width="0.0490%" height="15" fill="rgb(206,59,59)" fg:x="7431" fg:w="21"/><text x="17.5749%" y="911.50"></text></g><g><title>start_thread (20 samples, 0.05%)</title><rect x="17.3272%" y="885" width="0.0466%" height="15" fill="rgb(235,101,101)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (20 samples, 0.05%)</title><rect x="17.3272%" y="869" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (20 samples, 0.05%)</title><rect x="17.3272%" y="853" width="0.0466%" height="15" fill="rgb(210,210,62)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (20 samples, 0.05%)</title><rect x="17.3272%" y="837" width="0.0466%" height="15" fill="rgb(205,205,61)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="847.50"></text></g><g><title>java.lang.Thread::run (20 samples, 0.05%)</title><rect x="17.3272%" y="821" width="0.0466%" height="15" fill="rgb(228,228,69)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (20 samples, 0.05%)</title><rect x="17.3272%" y="805" width="0.0466%" height="15" fill="rgb(225,225,68)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (20 samples, 0.05%)</title><rect x="17.3272%" y="789" width="0.0466%" height="15" fill="rgb(227,227,69)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (20 samples, 0.05%)</title><rect x="17.3272%" y="773" width="0.0466%" height="15" fill="rgb(220,220,66)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (20 samples, 0.05%)</title><rect x="17.3272%" y="757" width="0.0466%" height="15" fill="rgb(197,197,58)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (20 samples, 0.05%)</title><rect x="17.3272%" y="741" width="0.0466%" height="15" fill="rgb(220,220,66)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (20 samples, 0.05%)</title><rect x="17.3272%" y="725" width="0.0466%" height="15" fill="rgb(228,228,69)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (20 samples, 0.05%)</title><rect x="17.3272%" y="709" width="0.0466%" height="15" fill="rgb(228,228,69)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (20 samples, 0.05%)</title><rect x="17.3272%" y="693" width="0.0466%" height="15" fill="rgb(219,219,66)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (20 samples, 0.05%)</title><rect x="17.3272%" y="677" width="0.0466%" height="15" fill="rgb(180,180,52)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_AverageTime (20 samples, 0.05%)</title><rect x="17.3272%" y="661" width="0.0466%" height="15" fill="rgb(186,186,54)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (20 samples, 0.05%)</title><rect x="17.3272%" y="645" width="0.0466%" height="15" fill="rgb(182,182,52)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueJobs (20 samples, 0.05%)</title><rect x="17.3272%" y="629" width="0.0466%" height="15" fill="rgb(193,193,56)" fg:x="7432" fg:w="20"/><text x="17.5772%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (19 samples, 0.04%)</title><rect x="17.3296%" y="613" width="0.0443%" height="15" fill="rgb(201,201,59)" fg:x="7433" fg:w="19"/><text x="17.5796%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (19 samples, 0.04%)</title><rect x="17.3296%" y="597" width="0.0443%" height="15" fill="rgb(194,194,57)" fg:x="7433" fg:w="19"/><text x="17.5796%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$991/2019577486::accept (19 samples, 0.04%)</title><rect x="17.3296%" y="581" width="0.0443%" height="15" fill="rgb(182,182,52)" fg:x="7433" fg:w="19"/><text x="17.5796%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueJobs$1 (19 samples, 0.04%)</title><rect x="17.3296%" y="565" width="0.0443%" height="15" fill="rgb(177,177,51)" fg:x="7433" fg:w="19"/><text x="17.5796%" y="575.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler::scheduleDirect (19 samples, 0.04%)</title><rect x="17.3296%" y="549" width="0.0443%" height="15" fill="rgb(201,201,59)" fg:x="7433" fg:w="19"/><text x="17.5796%" y="559.50"></text></g><g><title>java.util.concurrent.AbstractExecutorService::submit (16 samples, 0.04%)</title><rect x="17.3366%" y="533" width="0.0373%" height="15" fill="rgb(188,188,54)" fg:x="7436" fg:w="16"/><text x="17.5866%" y="543.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::execute (11 samples, 0.03%)</title><rect x="17.3482%" y="517" width="0.0256%" height="15" fill="rgb(224,224,68)" fg:x="7441" fg:w="11"/><text x="17.5982%" y="527.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::offer (10 samples, 0.02%)</title><rect x="17.3506%" y="501" width="0.0233%" height="15" fill="rgb(227,227,69)" fg:x="7442" fg:w="10"/><text x="17.6006%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (7 samples, 0.02%)</title><rect x="17.3972%" y="533" width="0.0163%" height="15" fill="rgb(205,205,60)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (7 samples, 0.02%)</title><rect x="17.3972%" y="517" width="0.0163%" height="15" fill="rgb(211,211,63)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (7 samples, 0.02%)</title><rect x="17.3972%" y="501" width="0.0163%" height="15" fill="rgb(222,222,67)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (7 samples, 0.02%)</title><rect x="17.3972%" y="485" width="0.0163%" height="15" fill="rgb(184,184,53)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (7 samples, 0.02%)</title><rect x="17.3972%" y="469" width="0.0163%" height="15" fill="rgb(188,188,55)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (7 samples, 0.02%)</title><rect x="17.3972%" y="453" width="0.0163%" height="15" fill="rgb(175,175,50)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (7 samples, 0.02%)</title><rect x="17.3972%" y="437" width="0.0163%" height="15" fill="rgb(228,228,69)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (7 samples, 0.02%)</title><rect x="17.3972%" y="421" width="0.0163%" height="15" fill="rgb(193,193,56)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (7 samples, 0.02%)</title><rect x="17.3972%" y="405" width="0.0163%" height="15" fill="rgb(189,189,55)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (7 samples, 0.02%)</title><rect x="17.3972%" y="389" width="0.0163%" height="15" fill="rgb(197,197,58)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (7 samples, 0.02%)</title><rect x="17.3972%" y="373" width="0.0163%" height="15" fill="rgb(229,229,69)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (7 samples, 0.02%)</title><rect x="17.3972%" y="357" width="0.0163%" height="15" fill="rgb(188,188,55)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (7 samples, 0.02%)</title><rect x="17.3972%" y="341" width="0.0163%" height="15" fill="rgb(187,187,54)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (7 samples, 0.02%)</title><rect x="17.3972%" y="325" width="0.0163%" height="15" fill="rgb(197,197,58)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (7 samples, 0.02%)</title><rect x="17.3972%" y="309" width="0.0163%" height="15" fill="rgb(220,220,66)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (7 samples, 0.02%)</title><rect x="17.3972%" y="293" width="0.0163%" height="15" fill="rgb(187,187,54)" fg:x="7462" fg:w="7"/><text x="17.6472%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (5 samples, 0.01%)</title><rect x="17.4018%" y="277" width="0.0117%" height="15" fill="rgb(189,189,55)" fg:x="7464" fg:w="5"/><text x="17.6518%" y="287.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.AbstractDirectTask::setFuture (15 samples, 0.03%)</title><rect x="17.4135%" y="533" width="0.0350%" height="15" fill="rgb(227,227,69)" fg:x="7469" fg:w="15"/><text x="17.6635%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (21 samples, 0.05%)</title><rect x="17.4485%" y="261" width="0.0490%" height="15" fill="rgb(189,189,55)" fg:x="7484" fg:w="21"/><text x="17.6985%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (21 samples, 0.05%)</title><rect x="17.4485%" y="245" width="0.0490%" height="15" fill="rgb(189,189,55)" fg:x="7484" fg:w="21"/><text x="17.6985%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (21 samples, 0.05%)</title><rect x="17.4485%" y="229" width="0.0490%" height="15" fill="rgb(209,209,62)" fg:x="7484" fg:w="21"/><text x="17.6985%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (21 samples, 0.05%)</title><rect x="17.4485%" y="213" width="0.0490%" height="15" fill="rgb(215,215,64)" fg:x="7484" fg:w="21"/><text x="17.6985%" y="223.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (21 samples, 0.05%)</title><rect x="17.4485%" y="197" width="0.0490%" height="15" fill="rgb(196,196,57)" fg:x="7484" fg:w="21"/><text x="17.6985%" y="207.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (26 samples, 0.06%)</title><rect x="17.4485%" y="517" width="0.0606%" height="15" fill="rgb(205,205,60)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (26 samples, 0.06%)</title><rect x="17.4485%" y="501" width="0.0606%" height="15" fill="rgb(211,211,63)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (26 samples, 0.06%)</title><rect x="17.4485%" y="485" width="0.0606%" height="15" fill="rgb(222,222,67)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="495.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (26 samples, 0.06%)</title><rect x="17.4485%" y="469" width="0.0606%" height="15" fill="rgb(184,184,53)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (26 samples, 0.06%)</title><rect x="17.4485%" y="453" width="0.0606%" height="15" fill="rgb(188,188,55)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (26 samples, 0.06%)</title><rect x="17.4485%" y="437" width="0.0606%" height="15" fill="rgb(175,175,50)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (26 samples, 0.06%)</title><rect x="17.4485%" y="421" width="0.0606%" height="15" fill="rgb(228,228,69)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (26 samples, 0.06%)</title><rect x="17.4485%" y="405" width="0.0606%" height="15" fill="rgb(193,193,56)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (26 samples, 0.06%)</title><rect x="17.4485%" y="389" width="0.0606%" height="15" fill="rgb(189,189,55)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="399.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (26 samples, 0.06%)</title><rect x="17.4485%" y="373" width="0.0606%" height="15" fill="rgb(197,197,58)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (26 samples, 0.06%)</title><rect x="17.4485%" y="357" width="0.0606%" height="15" fill="rgb(229,229,69)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (26 samples, 0.06%)</title><rect x="17.4485%" y="341" width="0.0606%" height="15" fill="rgb(188,188,55)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (26 samples, 0.06%)</title><rect x="17.4485%" y="325" width="0.0606%" height="15" fill="rgb(187,187,54)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (26 samples, 0.06%)</title><rect x="17.4485%" y="309" width="0.0606%" height="15" fill="rgb(197,197,58)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (26 samples, 0.06%)</title><rect x="17.4485%" y="293" width="0.0606%" height="15" fill="rgb(220,220,66)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (26 samples, 0.06%)</title><rect x="17.4485%" y="277" width="0.0606%" height="15" fill="rgb(187,187,54)" fg:x="7484" fg:w="26"/><text x="17.6985%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromRoots (5 samples, 0.01%)</title><rect x="17.4974%" y="261" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="7505" fg:w="5"/><text x="17.7474%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (5 samples, 0.01%)</title><rect x="17.4974%" y="245" width="0.0117%" height="15" fill="rgb(189,189,55)" fg:x="7505" fg:w="5"/><text x="17.7474%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (5 samples, 0.01%)</title><rect x="17.4974%" y="229" width="0.0117%" height="15" fill="rgb(215,215,64)" fg:x="7505" fg:w="5"/><text x="17.7474%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (5 samples, 0.01%)</title><rect x="17.4974%" y="213" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="7505" fg:w="5"/><text x="17.7474%" y="223.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler::scheduleDirect (62 samples, 0.14%)</title><rect x="17.3972%" y="549" width="0.1445%" height="15" fill="rgb(201,201,59)" fg:x="7462" fg:w="62"/><text x="17.6472%" y="559.50"></text></g><g><title>java.util.concurrent.AbstractExecutorService::submit (40 samples, 0.09%)</title><rect x="17.4485%" y="533" width="0.0933%" height="15" fill="rgb(188,188,54)" fg:x="7484" fg:w="40"/><text x="17.6985%" y="543.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::execute (14 samples, 0.03%)</title><rect x="17.5091%" y="517" width="0.0326%" height="15" fill="rgb(224,224,68)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="527.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::offer (14 samples, 0.03%)</title><rect x="17.5091%" y="501" width="0.0326%" height="15" fill="rgb(227,227,69)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (14 samples, 0.03%)</title><rect x="17.5091%" y="485" width="0.0326%" height="15" fill="rgb(205,205,60)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="495.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (14 samples, 0.03%)</title><rect x="17.5091%" y="469" width="0.0326%" height="15" fill="rgb(211,211,63)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="479.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (14 samples, 0.03%)</title><rect x="17.5091%" y="453" width="0.0326%" height="15" fill="rgb(222,222,67)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="463.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (14 samples, 0.03%)</title><rect x="17.5091%" y="437" width="0.0326%" height="15" fill="rgb(184,184,53)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (14 samples, 0.03%)</title><rect x="17.5091%" y="421" width="0.0326%" height="15" fill="rgb(188,188,55)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (14 samples, 0.03%)</title><rect x="17.5091%" y="405" width="0.0326%" height="15" fill="rgb(175,175,50)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (14 samples, 0.03%)</title><rect x="17.5091%" y="389" width="0.0326%" height="15" fill="rgb(228,228,69)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="399.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (14 samples, 0.03%)</title><rect x="17.5091%" y="373" width="0.0326%" height="15" fill="rgb(193,193,56)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="383.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (14 samples, 0.03%)</title><rect x="17.5091%" y="357" width="0.0326%" height="15" fill="rgb(189,189,55)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="367.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (14 samples, 0.03%)</title><rect x="17.5091%" y="341" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (14 samples, 0.03%)</title><rect x="17.5091%" y="325" width="0.0326%" height="15" fill="rgb(229,229,69)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (14 samples, 0.03%)</title><rect x="17.5091%" y="309" width="0.0326%" height="15" fill="rgb(188,188,55)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (14 samples, 0.03%)</title><rect x="17.5091%" y="293" width="0.0326%" height="15" fill="rgb(187,187,54)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (14 samples, 0.03%)</title><rect x="17.5091%" y="277" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (14 samples, 0.03%)</title><rect x="17.5091%" y="261" width="0.0326%" height="15" fill="rgb(220,220,66)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (14 samples, 0.03%)</title><rect x="17.5091%" y="245" width="0.0326%" height="15" fill="rgb(187,187,54)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (14 samples, 0.03%)</title><rect x="17.5091%" y="229" width="0.0326%" height="15" fill="rgb(189,189,55)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (14 samples, 0.03%)</title><rect x="17.5091%" y="213" width="0.0326%" height="15" fill="rgb(189,189,55)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="223.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (14 samples, 0.03%)</title><rect x="17.5091%" y="197" width="0.0326%" height="15" fill="rgb(209,209,62)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="207.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (14 samples, 0.03%)</title><rect x="17.5091%" y="181" width="0.0326%" height="15" fill="rgb(215,215,64)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="191.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (14 samples, 0.03%)</title><rect x="17.5091%" y="165" width="0.0326%" height="15" fill="rgb(196,196,57)" fg:x="7510" fg:w="14"/><text x="17.7591%" y="175.50"></text></g><g><title>_fini (71 samples, 0.17%)</title><rect x="17.3785%" y="901" width="0.1655%" height="15" fill="rgb(247,119,119)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="911.50"></text></g><g><title>start_thread (71 samples, 0.17%)</title><rect x="17.3785%" y="885" width="0.1655%" height="15" fill="rgb(235,101,101)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (71 samples, 0.17%)</title><rect x="17.3785%" y="869" width="0.1655%" height="15" fill="rgb(191,191,56)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (71 samples, 0.17%)</title><rect x="17.3785%" y="853" width="0.1655%" height="15" fill="rgb(210,210,62)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (71 samples, 0.17%)</title><rect x="17.3785%" y="837" width="0.1655%" height="15" fill="rgb(205,205,61)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="847.50"></text></g><g><title>java.lang.Thread::run (71 samples, 0.17%)</title><rect x="17.3785%" y="821" width="0.1655%" height="15" fill="rgb(228,228,69)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (71 samples, 0.17%)</title><rect x="17.3785%" y="805" width="0.1655%" height="15" fill="rgb(225,225,68)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (71 samples, 0.17%)</title><rect x="17.3785%" y="789" width="0.1655%" height="15" fill="rgb(227,227,69)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (71 samples, 0.17%)</title><rect x="17.3785%" y="773" width="0.1655%" height="15" fill="rgb(220,220,66)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (71 samples, 0.17%)</title><rect x="17.3785%" y="757" width="0.1655%" height="15" fill="rgb(197,197,58)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (71 samples, 0.17%)</title><rect x="17.3785%" y="741" width="0.1655%" height="15" fill="rgb(220,220,66)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (71 samples, 0.17%)</title><rect x="17.3785%" y="725" width="0.1655%" height="15" fill="rgb(228,228,69)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (71 samples, 0.17%)</title><rect x="17.3785%" y="709" width="0.1655%" height="15" fill="rgb(228,228,69)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (71 samples, 0.17%)</title><rect x="17.3785%" y="693" width="0.1655%" height="15" fill="rgb(219,219,66)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (71 samples, 0.17%)</title><rect x="17.3785%" y="677" width="0.1655%" height="15" fill="rgb(180,180,52)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_AverageTime (71 samples, 0.17%)</title><rect x="17.3785%" y="661" width="0.1655%" height="15" fill="rgb(186,186,54)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (71 samples, 0.17%)</title><rect x="17.3785%" y="645" width="0.1655%" height="15" fill="rgb(182,182,52)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueJobs (71 samples, 0.17%)</title><rect x="17.3785%" y="629" width="0.1655%" height="15" fill="rgb(193,193,56)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (71 samples, 0.17%)</title><rect x="17.3785%" y="613" width="0.1655%" height="15" fill="rgb(201,201,59)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (71 samples, 0.17%)</title><rect x="17.3785%" y="597" width="0.1655%" height="15" fill="rgb(194,194,57)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$991/2019577486::accept (71 samples, 0.17%)</title><rect x="17.3785%" y="581" width="0.1655%" height="15" fill="rgb(182,182,52)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueJobs$1 (71 samples, 0.17%)</title><rect x="17.3785%" y="565" width="0.1655%" height="15" fill="rgb(177,177,51)" fg:x="7454" fg:w="71"/><text x="17.6285%" y="575.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (8 samples, 0.02%)</title><rect x="17.5441%" y="533" width="0.0187%" height="15" fill="rgb(205,205,60)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (8 samples, 0.02%)</title><rect x="17.5441%" y="517" width="0.0187%" height="15" fill="rgb(211,211,63)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (8 samples, 0.02%)</title><rect x="17.5441%" y="501" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (8 samples, 0.02%)</title><rect x="17.5441%" y="485" width="0.0187%" height="15" fill="rgb(184,184,53)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="495.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (8 samples, 0.02%)</title><rect x="17.5441%" y="469" width="0.0187%" height="15" fill="rgb(188,188,55)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (8 samples, 0.02%)</title><rect x="17.5441%" y="453" width="0.0187%" height="15" fill="rgb(175,175,50)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (8 samples, 0.02%)</title><rect x="17.5441%" y="437" width="0.0187%" height="15" fill="rgb(228,228,69)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (8 samples, 0.02%)</title><rect x="17.5441%" y="421" width="0.0187%" height="15" fill="rgb(193,193,56)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (8 samples, 0.02%)</title><rect x="17.5441%" y="405" width="0.0187%" height="15" fill="rgb(189,189,55)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (8 samples, 0.02%)</title><rect x="17.5441%" y="389" width="0.0187%" height="15" fill="rgb(197,197,58)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="399.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (8 samples, 0.02%)</title><rect x="17.5441%" y="373" width="0.0187%" height="15" fill="rgb(229,229,69)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (8 samples, 0.02%)</title><rect x="17.5441%" y="357" width="0.0187%" height="15" fill="rgb(188,188,55)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (8 samples, 0.02%)</title><rect x="17.5441%" y="341" width="0.0187%" height="15" fill="rgb(187,187,54)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (8 samples, 0.02%)</title><rect x="17.5441%" y="325" width="0.0187%" height="15" fill="rgb(197,197,58)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (8 samples, 0.02%)</title><rect x="17.5441%" y="309" width="0.0187%" height="15" fill="rgb(220,220,66)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (8 samples, 0.02%)</title><rect x="17.5441%" y="293" width="0.0187%" height="15" fill="rgb(187,187,54)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (8 samples, 0.02%)</title><rect x="17.5441%" y="277" width="0.0187%" height="15" fill="rgb(189,189,55)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (8 samples, 0.02%)</title><rect x="17.5441%" y="261" width="0.0187%" height="15" fill="rgb(189,189,55)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (8 samples, 0.02%)</title><rect x="17.5441%" y="245" width="0.0187%" height="15" fill="rgb(209,209,62)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (8 samples, 0.02%)</title><rect x="17.5441%" y="229" width="0.0187%" height="15" fill="rgb(215,215,64)" fg:x="7525" fg:w="8"/><text x="17.7941%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (7 samples, 0.02%)</title><rect x="17.5464%" y="213" width="0.0163%" height="15" fill="rgb(196,196,57)" fg:x="7526" fg:w="7"/><text x="17.7964%" y="223.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (14 samples, 0.03%)</title><rect x="17.5441%" y="901" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="911.50"></text></g><g><title>start_thread (14 samples, 0.03%)</title><rect x="17.5441%" y="885" width="0.0326%" height="15" fill="rgb(235,101,101)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (14 samples, 0.03%)</title><rect x="17.5441%" y="869" width="0.0326%" height="15" fill="rgb(191,191,56)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (14 samples, 0.03%)</title><rect x="17.5441%" y="853" width="0.0326%" height="15" fill="rgb(210,210,62)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (14 samples, 0.03%)</title><rect x="17.5441%" y="837" width="0.0326%" height="15" fill="rgb(205,205,61)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="847.50"></text></g><g><title>java.lang.Thread::run (14 samples, 0.03%)</title><rect x="17.5441%" y="821" width="0.0326%" height="15" fill="rgb(228,228,69)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (14 samples, 0.03%)</title><rect x="17.5441%" y="805" width="0.0326%" height="15" fill="rgb(225,225,68)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (14 samples, 0.03%)</title><rect x="17.5441%" y="789" width="0.0326%" height="15" fill="rgb(227,227,69)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (14 samples, 0.03%)</title><rect x="17.5441%" y="773" width="0.0326%" height="15" fill="rgb(220,220,66)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (14 samples, 0.03%)</title><rect x="17.5441%" y="757" width="0.0326%" height="15" fill="rgb(197,197,58)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (14 samples, 0.03%)</title><rect x="17.5441%" y="741" width="0.0326%" height="15" fill="rgb(220,220,66)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (14 samples, 0.03%)</title><rect x="17.5441%" y="725" width="0.0326%" height="15" fill="rgb(228,228,69)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (14 samples, 0.03%)</title><rect x="17.5441%" y="709" width="0.0326%" height="15" fill="rgb(228,228,69)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (14 samples, 0.03%)</title><rect x="17.5441%" y="693" width="0.0326%" height="15" fill="rgb(219,219,66)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (14 samples, 0.03%)</title><rect x="17.5441%" y="677" width="0.0326%" height="15" fill="rgb(180,180,52)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_AverageTime (14 samples, 0.03%)</title><rect x="17.5441%" y="661" width="0.0326%" height="15" fill="rgb(186,186,54)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (14 samples, 0.03%)</title><rect x="17.5441%" y="645" width="0.0326%" height="15" fill="rgb(182,182,52)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueJobs (14 samples, 0.03%)</title><rect x="17.5441%" y="629" width="0.0326%" height="15" fill="rgb(193,193,56)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (14 samples, 0.03%)</title><rect x="17.5441%" y="613" width="0.0326%" height="15" fill="rgb(201,201,59)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (14 samples, 0.03%)</title><rect x="17.5441%" y="597" width="0.0326%" height="15" fill="rgb(194,194,57)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$991/2019577486::accept (14 samples, 0.03%)</title><rect x="17.5441%" y="581" width="0.0326%" height="15" fill="rgb(182,182,52)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueJobs$1 (14 samples, 0.03%)</title><rect x="17.5441%" y="565" width="0.0326%" height="15" fill="rgb(177,177,51)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="575.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler::scheduleDirect (14 samples, 0.03%)</title><rect x="17.5441%" y="549" width="0.0326%" height="15" fill="rgb(201,201,59)" fg:x="7525" fg:w="14"/><text x="17.7941%" y="559.50"></text></g><g><title>java.util.concurrent.AbstractExecutorService::submit (6 samples, 0.01%)</title><rect x="17.5627%" y="533" width="0.0140%" height="15" fill="rgb(188,188,54)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="543.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstance (6 samples, 0.01%)</title><rect x="17.5627%" y="517" width="0.0140%" height="15" fill="rgb(205,205,60)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="527.50"></text></g><g><title>com.oracle.svm.core.genscavenge.ThreadLocalAllocation::slowPathNewInstanceWithoutAllocating (6 samples, 0.01%)</title><rect x="17.5627%" y="501" width="0.0140%" height="15" fill="rgb(211,211,63)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="511.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::maybeCollectOnAllocation (6 samples, 0.01%)</title><rect x="17.5627%" y="485" width="0.0140%" height="15" fill="rgb(222,222,67)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="495.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectWithoutAllocating (6 samples, 0.01%)</title><rect x="17.5627%" y="469" width="0.0140%" height="15" fill="rgb(184,184,53)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="479.50"></text></g><g><title>com.oracle.svm.core.thread.NativeVMOperation::enqueue (6 samples, 0.01%)</title><rect x="17.5627%" y="453" width="0.0140%" height="15" fill="rgb(188,188,55)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="463.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl::enqueue (6 samples, 0.01%)</title><rect x="17.5627%" y="437" width="0.0140%" height="15" fill="rgb(175,175,50)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="447.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::enqueueAndExecute (6 samples, 0.01%)</title><rect x="17.5627%" y="421" width="0.0140%" height="15" fill="rgb(228,228,69)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="431.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::executeAllQueuedVMOperations (6 samples, 0.01%)</title><rect x="17.5627%" y="405" width="0.0140%" height="15" fill="rgb(193,193,56)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="415.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperationControl$WorkQueues::drain (6 samples, 0.01%)</title><rect x="17.5627%" y="389" width="0.0140%" height="15" fill="rgb(189,189,55)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="399.50"></text></g><g><title>com.oracle.svm.core.thread.VMOperation::execute (6 samples, 0.01%)</title><rect x="17.5627%" y="373" width="0.0140%" height="15" fill="rgb(197,197,58)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="383.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl$CollectionVMOperation::operate (6 samples, 0.01%)</title><rect x="17.5627%" y="357" width="0.0140%" height="15" fill="rgb(229,229,69)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="367.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectOperation (6 samples, 0.01%)</title><rect x="17.5627%" y="341" width="0.0140%" height="15" fill="rgb(188,188,55)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="351.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::collectImpl (6 samples, 0.01%)</title><rect x="17.5627%" y="325" width="0.0140%" height="15" fill="rgb(187,187,54)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="335.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectImpl (6 samples, 0.01%)</title><rect x="17.5627%" y="309" width="0.0140%" height="15" fill="rgb(197,197,58)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="319.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::doCollectOnce (6 samples, 0.01%)</title><rect x="17.5627%" y="293" width="0.0140%" height="15" fill="rgb(220,220,66)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="303.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scavenge (6 samples, 0.01%)</title><rect x="17.5627%" y="277" width="0.0140%" height="15" fill="rgb(187,187,54)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="287.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::cheneyScanFromDirtyRoots (6 samples, 0.01%)</title><rect x="17.5627%" y="261" width="0.0140%" height="15" fill="rgb(189,189,55)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="271.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjects (6 samples, 0.01%)</title><rect x="17.5627%" y="245" width="0.0140%" height="15" fill="rgb(189,189,55)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="255.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GCImpl::scanGreyObjectsLoop (6 samples, 0.01%)</title><rect x="17.5627%" y="229" width="0.0140%" height="15" fill="rgb(209,209,62)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="239.50"></text></g><g><title>com.oracle.svm.core.genscavenge.OldGeneration::scanGreyObjects (6 samples, 0.01%)</title><rect x="17.5627%" y="213" width="0.0140%" height="15" fill="rgb(215,215,64)" fg:x="7533" fg:w="6"/><text x="17.8127%" y="223.50"></text></g><g><title>com.oracle.svm.core.genscavenge.GreyObjectsWalker::walkGreyObjects (5 samples, 0.01%)</title><rect x="17.5650%" y="197" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="7534" fg:w="5"/><text x="17.8150%" y="207.50"></text></g><g><title>com.oracle.svm.core.UnmanagedMemoryUtil::copyLongsForward (5 samples, 0.01%)</title><rect x="17.5650%" y="181" width="0.0117%" height="15" fill="rgb(213,213,64)" fg:x="7534" fg:w="5"/><text x="17.8150%" y="191.50"></text></g><g><title>graal_vm_locator_symbol (15 samples, 0.03%)</title><rect x="17.5767%" y="901" width="0.0350%" height="15" fill="rgb(210,65,65)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="911.50"></text></g><g><title>start_thread (15 samples, 0.03%)</title><rect x="17.5767%" y="885" width="0.0350%" height="15" fill="rgb(235,101,101)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (15 samples, 0.03%)</title><rect x="17.5767%" y="869" width="0.0350%" height="15" fill="rgb(191,191,56)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (15 samples, 0.03%)</title><rect x="17.5767%" y="853" width="0.0350%" height="15" fill="rgb(210,210,62)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (15 samples, 0.03%)</title><rect x="17.5767%" y="837" width="0.0350%" height="15" fill="rgb(205,205,61)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="847.50"></text></g><g><title>java.lang.Thread::run (15 samples, 0.03%)</title><rect x="17.5767%" y="821" width="0.0350%" height="15" fill="rgb(228,228,69)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (15 samples, 0.03%)</title><rect x="17.5767%" y="805" width="0.0350%" height="15" fill="rgb(225,225,68)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (15 samples, 0.03%)</title><rect x="17.5767%" y="789" width="0.0350%" height="15" fill="rgb(227,227,69)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (15 samples, 0.03%)</title><rect x="17.5767%" y="773" width="0.0350%" height="15" fill="rgb(220,220,66)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (15 samples, 0.03%)</title><rect x="17.5767%" y="757" width="0.0350%" height="15" fill="rgb(197,197,58)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (15 samples, 0.03%)</title><rect x="17.5767%" y="741" width="0.0350%" height="15" fill="rgb(220,220,66)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (15 samples, 0.03%)</title><rect x="17.5767%" y="725" width="0.0350%" height="15" fill="rgb(228,228,69)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (15 samples, 0.03%)</title><rect x="17.5767%" y="709" width="0.0350%" height="15" fill="rgb(228,228,69)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (15 samples, 0.03%)</title><rect x="17.5767%" y="693" width="0.0350%" height="15" fill="rgb(219,219,66)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (15 samples, 0.03%)</title><rect x="17.5767%" y="677" width="0.0350%" height="15" fill="rgb(180,180,52)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_AverageTime (15 samples, 0.03%)</title><rect x="17.5767%" y="661" width="0.0350%" height="15" fill="rgb(186,186,54)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (15 samples, 0.03%)</title><rect x="17.5767%" y="645" width="0.0350%" height="15" fill="rgb(182,182,52)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueJobs (15 samples, 0.03%)</title><rect x="17.5767%" y="629" width="0.0350%" height="15" fill="rgb(193,193,56)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (15 samples, 0.03%)</title><rect x="17.5767%" y="613" width="0.0350%" height="15" fill="rgb(201,201,59)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (15 samples, 0.03%)</title><rect x="17.5767%" y="597" width="0.0350%" height="15" fill="rgb(194,194,57)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$991/2019577486::accept (15 samples, 0.03%)</title><rect x="17.5767%" y="581" width="0.0350%" height="15" fill="rgb(182,182,52)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueJobs$1 (15 samples, 0.03%)</title><rect x="17.5767%" y="565" width="0.0350%" height="15" fill="rgb(177,177,51)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="575.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler::scheduleDirect (15 samples, 0.03%)</title><rect x="17.5767%" y="549" width="0.0350%" height="15" fill="rgb(201,201,59)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="559.50"></text></g><g><title>java.util.concurrent.AbstractExecutorService::submit (15 samples, 0.03%)</title><rect x="17.5767%" y="533" width="0.0350%" height="15" fill="rgb(188,188,54)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="543.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::execute (15 samples, 0.03%)</title><rect x="17.5767%" y="517" width="0.0350%" height="15" fill="rgb(224,224,68)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="527.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::offer (15 samples, 0.03%)</title><rect x="17.5767%" y="501" width="0.0350%" height="15" fill="rgb(227,227,69)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="511.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (15 samples, 0.03%)</title><rect x="17.5767%" y="485" width="0.0350%" height="15" fill="rgb(191,191,56)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="495.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::tryRelease (15 samples, 0.03%)</title><rect x="17.5767%" y="469" width="0.0350%" height="15" fill="rgb(179,179,51)" fg:x="7539" fg:w="15"/><text x="17.8267%" y="479.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::signal (9 samples, 0.02%)</title><rect x="17.6163%" y="485" width="0.0210%" height="15" fill="rgb(193,193,56)" fg:x="7556" fg:w="9"/><text x="17.8663%" y="495.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::offer (13 samples, 0.03%)</title><rect x="17.6163%" y="501" width="0.0303%" height="15" fill="rgb(227,227,69)" fg:x="7556" fg:w="13"/><text x="17.8663%" y="511.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (16 samples, 0.04%)</title><rect x="17.6140%" y="901" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="911.50"></text></g><g><title>start_thread (16 samples, 0.04%)</title><rect x="17.6140%" y="885" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (16 samples, 0.04%)</title><rect x="17.6140%" y="869" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (16 samples, 0.04%)</title><rect x="17.6140%" y="853" width="0.0373%" height="15" fill="rgb(210,210,62)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (16 samples, 0.04%)</title><rect x="17.6140%" y="837" width="0.0373%" height="15" fill="rgb(205,205,61)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="847.50"></text></g><g><title>java.lang.Thread::run (16 samples, 0.04%)</title><rect x="17.6140%" y="821" width="0.0373%" height="15" fill="rgb(228,228,69)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (16 samples, 0.04%)</title><rect x="17.6140%" y="805" width="0.0373%" height="15" fill="rgb(225,225,68)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (16 samples, 0.04%)</title><rect x="17.6140%" y="789" width="0.0373%" height="15" fill="rgb(227,227,69)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (16 samples, 0.04%)</title><rect x="17.6140%" y="773" width="0.0373%" height="15" fill="rgb(220,220,66)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="783.50"></text></g><g><title>java.util.concurrent.Executors$RunnableAdapter::call (16 samples, 0.04%)</title><rect x="17.6140%" y="757" width="0.0373%" height="15" fill="rgb(197,197,58)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (16 samples, 0.04%)</title><rect x="17.6140%" y="741" width="0.0373%" height="15" fill="rgb(220,220,66)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="751.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (16 samples, 0.04%)</title><rect x="17.6140%" y="725" width="0.0373%" height="15" fill="rgb(228,228,69)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="735.50"></text></g><g><title>org.openjdk.jmh.runner.BenchmarkHandler$BenchmarkTask::call (16 samples, 0.04%)</title><rect x="17.6140%" y="709" width="0.0373%" height="15" fill="rgb(228,228,69)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="719.50"></text></g><g><title>com.oracle.svm.core.reflect.SubstrateMethodAccessor::invoke (16 samples, 0.04%)</title><rect x="17.6140%" y="693" width="0.0373%" height="15" fill="rgb(219,219,66)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="703.50"></text></g><g><title>com.oracle.svm.core.reflect.ReflectionAccessorHolder::766c0676b22e00f8bb22346a2f4894b4ca2a8aed (16 samples, 0.04%)</title><rect x="17.6140%" y="677" width="0.0373%" height="15" fill="rgb(180,180,52)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="687.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_AverageTime (16 samples, 0.04%)</title><rect x="17.6140%" y="661" width="0.0373%" height="15" fill="rgb(186,186,54)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="671.50"></text></g><g><title>io.sergejisbrecht.jmh_generated.DispatcherBenchmark_baselineMpscUnboundedArrayQueueLooper_jmhTest::baselineMpscUnboundedArrayQueueLooper_avgt_jmhStub (16 samples, 0.04%)</title><rect x="17.6140%" y="645" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="655.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::enqueueJobs (16 samples, 0.04%)</title><rect x="17.6140%" y="629" width="0.0373%" height="15" fill="rgb(193,193,56)" fg:x="7555" fg:w="16"/><text x="17.8640%" y="639.50"></text></g><g><title>java.util.stream.IntPipeline$Head::forEach (15 samples, 0.03%)</title><rect x="17.6163%" y="613" width="0.0350%" height="15" fill="rgb(201,201,59)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="623.50"></text></g><g><title>java.util.stream.Streams$RangeIntSpliterator::forEachRemaining (15 samples, 0.03%)</title><rect x="17.6163%" y="597" width="0.0350%" height="15" fill="rgb(194,194,57)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="607.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$991/2019577486::accept (15 samples, 0.03%)</title><rect x="17.6163%" y="581" width="0.0350%" height="15" fill="rgb(182,182,52)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="591.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark::lambda$enqueueJobs$1 (15 samples, 0.03%)</title><rect x="17.6163%" y="565" width="0.0350%" height="15" fill="rgb(177,177,51)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="575.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler::scheduleDirect (15 samples, 0.03%)</title><rect x="17.6163%" y="549" width="0.0350%" height="15" fill="rgb(201,201,59)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="559.50"></text></g><g><title>java.util.concurrent.AbstractExecutorService::submit (15 samples, 0.03%)</title><rect x="17.6163%" y="533" width="0.0350%" height="15" fill="rgb(188,188,54)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="543.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::execute (15 samples, 0.03%)</title><rect x="17.6163%" y="517" width="0.0350%" height="15" fill="rgb(224,224,68)" fg:x="7556" fg:w="15"/><text x="17.8663%" y="527.50"></text></g><g><title>er-jmh-worker-1 (389 samples, 0.91%)</title><rect x="16.7490%" y="917" width="0.9069%" height="15" fill="rgb(212,68,68)" fg:x="7184" fg:w="389"/><text x="16.9990%" y="927.50"></text></g><g><title>finish_task_switch (32 samples, 0.07%)</title><rect x="17.6676%" y="501" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="7578" fg:w="32"/><text x="17.9176%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.07%)</title><rect x="17.6676%" y="485" width="0.0746%" height="15" fill="rgb(240,109,109)" fg:x="7578" fg:w="32"/><text x="17.9176%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (32 samples, 0.07%)</title><rect x="17.6676%" y="469" width="0.0746%" height="15" fill="rgb(71,219,71)" fg:x="7578" fg:w="32"/><text x="17.9176%" y="479.50"></text></g><g><title>x86_pmu_enable (32 samples, 0.07%)</title><rect x="17.6676%" y="453" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="7578" fg:w="32"/><text x="17.9176%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (32 samples, 0.07%)</title><rect x="17.6676%" y="437" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="7578" fg:w="32"/><text x="17.9176%" y="447.50"></text></g><g><title>native_write_msr (32 samples, 0.07%)</title><rect x="17.6676%" y="421" width="0.0746%" height="15" fill="rgb(212,68,68)" fg:x="7578" fg:w="32"/><text x="17.9176%" y="431.50"></text></g><g><title>__schedule (33 samples, 0.08%)</title><rect x="17.6676%" y="517" width="0.0769%" height="15" fill="rgb(209,64,64)" fg:x="7578" fg:w="33"/><text x="17.9176%" y="527.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.08%)</title><rect x="17.6676%" y="549" width="0.0793%" height="15" fill="rgb(204,56,56)" fg:x="7578" fg:w="34"/><text x="17.9176%" y="559.50"></text></g><g><title>schedule (34 samples, 0.08%)</title><rect x="17.6676%" y="533" width="0.0793%" height="15" fill="rgb(251,124,124)" fg:x="7578" fg:w="34"/><text x="17.9176%" y="543.50"></text></g><g><title>do_syscall_64 (35 samples, 0.08%)</title><rect x="17.6676%" y="613" width="0.0816%" height="15" fill="rgb(217,75,75)" fg:x="7578" fg:w="35"/><text x="17.9176%" y="623.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.08%)</title><rect x="17.6676%" y="597" width="0.0816%" height="15" fill="rgb(248,121,121)" fg:x="7578" fg:w="35"/><text x="17.9176%" y="607.50"></text></g><g><title>do_futex (35 samples, 0.08%)</title><rect x="17.6676%" y="581" width="0.0816%" height="15" fill="rgb(230,94,94)" fg:x="7578" fg:w="35"/><text x="17.9176%" y="591.50"></text></g><g><title>futex_wait (35 samples, 0.08%)</title><rect x="17.6676%" y="565" width="0.0816%" height="15" fill="rgb(219,78,78)" fg:x="7578" fg:w="35"/><text x="17.9176%" y="575.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.09%)</title><rect x="17.6653%" y="677" width="0.0863%" height="15" fill="rgb(240,109,109)" fg:x="7577" fg:w="37"/><text x="17.9153%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.08%)</title><rect x="17.6676%" y="661" width="0.0839%" height="15" fill="rgb(203,55,55)" fg:x="7578" fg:w="36"/><text x="17.9176%" y="671.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.08%)</title><rect x="17.6676%" y="645" width="0.0839%" height="15" fill="rgb(252,126,126)" fg:x="7578" fg:w="36"/><text x="17.9176%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.08%)</title><rect x="17.6676%" y="629" width="0.0839%" height="15" fill="rgb(254,128,128)" fg:x="7578" fg:w="36"/><text x="17.9176%" y="639.50"></text></g><g><title>[anon] (50 samples, 0.12%)</title><rect x="17.6560%" y="901" width="0.1166%" height="15" fill="rgb(252,126,126)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="911.50"></text></g><g><title>start_thread (50 samples, 0.12%)</title><rect x="17.6560%" y="885" width="0.1166%" height="15" fill="rgb(235,101,101)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (50 samples, 0.12%)</title><rect x="17.6560%" y="869" width="0.1166%" height="15" fill="rgb(191,191,56)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (50 samples, 0.12%)</title><rect x="17.6560%" y="853" width="0.1166%" height="15" fill="rgb(210,210,62)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (50 samples, 0.12%)</title><rect x="17.6560%" y="837" width="0.1166%" height="15" fill="rgb(205,205,61)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="847.50"></text></g><g><title>java.lang.Thread::run (50 samples, 0.12%)</title><rect x="17.6560%" y="821" width="0.1166%" height="15" fill="rgb(228,228,69)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (50 samples, 0.12%)</title><rect x="17.6560%" y="805" width="0.1166%" height="15" fill="rgb(225,225,68)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (50 samples, 0.12%)</title><rect x="17.6560%" y="789" width="0.1166%" height="15" fill="rgb(227,227,69)" fg:x="7573" fg:w="50"/><text x="17.9060%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (47 samples, 0.11%)</title><rect x="17.6630%" y="773" width="0.1096%" height="15" fill="rgb(218,218,65)" fg:x="7576" fg:w="47"/><text x="17.9130%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (47 samples, 0.11%)</title><rect x="17.6630%" y="757" width="0.1096%" height="15" fill="rgb(180,180,51)" fg:x="7576" fg:w="47"/><text x="17.9130%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (47 samples, 0.11%)</title><rect x="17.6630%" y="741" width="0.1096%" height="15" fill="rgb(192,192,56)" fg:x="7576" fg:w="47"/><text x="17.9130%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (47 samples, 0.11%)</title><rect x="17.6630%" y="725" width="0.1096%" height="15" fill="rgb(204,204,60)" fg:x="7576" fg:w="47"/><text x="17.9130%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (47 samples, 0.11%)</title><rect x="17.6630%" y="709" width="0.1096%" height="15" fill="rgb(191,191,56)" fg:x="7576" fg:w="47"/><text x="17.9130%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (47 samples, 0.11%)</title><rect x="17.6630%" y="693" width="0.1096%" height="15" fill="rgb(218,218,65)" fg:x="7576" fg:w="47"/><text x="17.9130%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathTransitionFromNativeToNewStatus (9 samples, 0.02%)</title><rect x="17.7516%" y="677" width="0.0210%" height="15" fill="rgb(185,185,53)" fg:x="7614" fg:w="9"/><text x="18.0016%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (9 samples, 0.02%)</title><rect x="17.7516%" y="661" width="0.0210%" height="15" fill="rgb(179,179,51)" fg:x="7614" fg:w="9"/><text x="18.0016%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (9 samples, 0.02%)</title><rect x="17.7516%" y="645" width="0.0210%" height="15" fill="rgb(182,182,52)" fg:x="7614" fg:w="9"/><text x="18.0016%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (8 samples, 0.02%)</title><rect x="17.7539%" y="629" width="0.0187%" height="15" fill="rgb(184,184,53)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (8 samples, 0.02%)</title><rect x="17.7539%" y="613" width="0.0187%" height="15" fill="rgb(246,117,117)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="623.50"></text></g><g><title>__lll_lock_wait (8 samples, 0.02%)</title><rect x="17.7539%" y="597" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="17.7539%" y="581" width="0.0187%" height="15" fill="rgb(254,128,128)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="591.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="17.7539%" y="565" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="575.50"></text></g><g><title>__x64_sys_futex (8 samples, 0.02%)</title><rect x="17.7539%" y="549" width="0.0187%" height="15" fill="rgb(248,121,121)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="559.50"></text></g><g><title>do_futex (8 samples, 0.02%)</title><rect x="17.7539%" y="533" width="0.0187%" height="15" fill="rgb(230,94,94)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="543.50"></text></g><g><title>futex_wait (8 samples, 0.02%)</title><rect x="17.7539%" y="517" width="0.0187%" height="15" fill="rgb(219,78,78)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="527.50"></text></g><g><title>futex_wait_queue_me (8 samples, 0.02%)</title><rect x="17.7539%" y="501" width="0.0187%" height="15" fill="rgb(204,56,56)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="511.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="17.7539%" y="485" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="495.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="17.7539%" y="469" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="479.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="17.7539%" y="453" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="17.7539%" y="437" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="17.7539%" y="421" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="431.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="17.7539%" y="405" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="17.7539%" y="389" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="399.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="17.7539%" y="373" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="7615" fg:w="8"/><text x="18.0039%" y="383.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (27 samples, 0.06%)</title><rect x="17.7725%" y="741" width="0.0629%" height="15" fill="rgb(177,177,51)" fg:x="7623" fg:w="27"/><text x="18.0225%" y="751.50"></text></g><g><title>[unknown] (1,117 samples, 2.60%)</title><rect x="17.7725%" y="901" width="2.6042%" height="15" fill="rgb(206,59,59)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="911.50">[u..</text></g><g><title>start_thread (1,117 samples, 2.60%)</title><rect x="17.7725%" y="885" width="2.6042%" height="15" fill="rgb(235,101,101)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,117 samples, 2.60%)</title><rect x="17.7725%" y="869" width="2.6042%" height="15" fill="rgb(191,191,56)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,117 samples, 2.60%)</title><rect x="17.7725%" y="853" width="2.6042%" height="15" fill="rgb(210,210,62)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,117 samples, 2.60%)</title><rect x="17.7725%" y="837" width="2.6042%" height="15" fill="rgb(205,205,61)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,117 samples, 2.60%)</title><rect x="17.7725%" y="821" width="2.6042%" height="15" fill="rgb(228,228,69)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,117 samples, 2.60%)</title><rect x="17.7725%" y="805" width="2.6042%" height="15" fill="rgb(225,225,68)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,117 samples, 2.60%)</title><rect x="17.7725%" y="789" width="2.6042%" height="15" fill="rgb(227,227,69)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,117 samples, 2.60%)</title><rect x="17.7725%" y="773" width="2.6042%" height="15" fill="rgb(225,225,68)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,117 samples, 2.60%)</title><rect x="17.7725%" y="757" width="2.6042%" height="15" fill="rgb(190,190,55)" fg:x="7623" fg:w="1117"/><text x="18.0225%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,090 samples, 2.54%)</title><rect x="17.8355%" y="741" width="2.5413%" height="15" fill="rgb(196,196,57)" fg:x="7650" fg:w="1090"/><text x="18.0855%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,090 samples, 2.54%)</title><rect x="17.8355%" y="725" width="2.5413%" height="15" fill="rgb(217,217,65)" fg:x="7650" fg:w="1090"/><text x="18.0855%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (12 samples, 0.03%)</title><rect x="20.3768%" y="901" width="0.0280%" height="15" fill="rgb(191,191,56)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="911.50"></text></g><g><title>start_thread (12 samples, 0.03%)</title><rect x="20.3768%" y="885" width="0.0280%" height="15" fill="rgb(235,101,101)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (12 samples, 0.03%)</title><rect x="20.3768%" y="869" width="0.0280%" height="15" fill="rgb(191,191,56)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (12 samples, 0.03%)</title><rect x="20.3768%" y="853" width="0.0280%" height="15" fill="rgb(210,210,62)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (12 samples, 0.03%)</title><rect x="20.3768%" y="837" width="0.0280%" height="15" fill="rgb(205,205,61)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="847.50"></text></g><g><title>java.lang.Thread::run (12 samples, 0.03%)</title><rect x="20.3768%" y="821" width="0.0280%" height="15" fill="rgb(228,228,69)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (12 samples, 0.03%)</title><rect x="20.3768%" y="805" width="0.0280%" height="15" fill="rgb(225,225,68)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (12 samples, 0.03%)</title><rect x="20.3768%" y="789" width="0.0280%" height="15" fill="rgb(227,227,69)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (12 samples, 0.03%)</title><rect x="20.3768%" y="773" width="0.0280%" height="15" fill="rgb(225,225,68)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (12 samples, 0.03%)</title><rect x="20.3768%" y="757" width="0.0280%" height="15" fill="rgb(190,190,55)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (12 samples, 0.03%)</title><rect x="20.3768%" y="741" width="0.0280%" height="15" fill="rgb(196,196,57)" fg:x="8740" fg:w="12"/><text x="20.6268%" y="751.50"></text></g><g><title>ool-3-thread-10 (1,181 samples, 2.75%)</title><rect x="17.6560%" y="917" width="2.7534%" height="15" fill="rgb(207,60,60)" fg:x="7573" fg:w="1181"/><text x="17.9060%" y="927.50">oo..</text></g><g><title>__pthread_cond_wait (28 samples, 0.07%)</title><rect x="20.4164%" y="677" width="0.0653%" height="15" fill="rgb(240,109,109)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (28 samples, 0.07%)</title><rect x="20.4164%" y="661" width="0.0653%" height="15" fill="rgb(203,55,55)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="671.50"></text></g><g><title>futex_wait_cancelable (28 samples, 0.07%)</title><rect x="20.4164%" y="645" width="0.0653%" height="15" fill="rgb(252,126,126)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (28 samples, 0.07%)</title><rect x="20.4164%" y="629" width="0.0653%" height="15" fill="rgb(254,128,128)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="639.50"></text></g><g><title>do_syscall_64 (28 samples, 0.07%)</title><rect x="20.4164%" y="613" width="0.0653%" height="15" fill="rgb(217,75,75)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="623.50"></text></g><g><title>__x64_sys_futex (28 samples, 0.07%)</title><rect x="20.4164%" y="597" width="0.0653%" height="15" fill="rgb(248,121,121)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="607.50"></text></g><g><title>do_futex (28 samples, 0.07%)</title><rect x="20.4164%" y="581" width="0.0653%" height="15" fill="rgb(230,94,94)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="591.50"></text></g><g><title>futex_wait (28 samples, 0.07%)</title><rect x="20.4164%" y="565" width="0.0653%" height="15" fill="rgb(219,78,78)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="575.50"></text></g><g><title>futex_wait_queue_me (28 samples, 0.07%)</title><rect x="20.4164%" y="549" width="0.0653%" height="15" fill="rgb(204,56,56)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="559.50"></text></g><g><title>schedule (28 samples, 0.07%)</title><rect x="20.4164%" y="533" width="0.0653%" height="15" fill="rgb(251,124,124)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="543.50"></text></g><g><title>__schedule (28 samples, 0.07%)</title><rect x="20.4164%" y="517" width="0.0653%" height="15" fill="rgb(209,64,64)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="527.50"></text></g><g><title>finish_task_switch (28 samples, 0.07%)</title><rect x="20.4164%" y="501" width="0.0653%" height="15" fill="rgb(251,124,124)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.07%)</title><rect x="20.4164%" y="485" width="0.0653%" height="15" fill="rgb(240,109,109)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (28 samples, 0.07%)</title><rect x="20.4164%" y="469" width="0.0653%" height="15" fill="rgb(71,219,71)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="479.50"></text></g><g><title>x86_pmu_enable (28 samples, 0.07%)</title><rect x="20.4164%" y="453" width="0.0653%" height="15" fill="rgb(238,105,105)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (28 samples, 0.07%)</title><rect x="20.4164%" y="437" width="0.0653%" height="15" fill="rgb(238,105,105)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="447.50"></text></g><g><title>native_write_msr (28 samples, 0.07%)</title><rect x="20.4164%" y="421" width="0.0653%" height="15" fill="rgb(212,68,68)" fg:x="8757" fg:w="28"/><text x="20.6664%" y="431.50"></text></g><g><title>[anon] (32 samples, 0.07%)</title><rect x="20.4094%" y="901" width="0.0746%" height="15" fill="rgb(252,126,126)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="911.50"></text></g><g><title>start_thread (32 samples, 0.07%)</title><rect x="20.4094%" y="885" width="0.0746%" height="15" fill="rgb(235,101,101)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (32 samples, 0.07%)</title><rect x="20.4094%" y="869" width="0.0746%" height="15" fill="rgb(191,191,56)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (32 samples, 0.07%)</title><rect x="20.4094%" y="853" width="0.0746%" height="15" fill="rgb(210,210,62)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (32 samples, 0.07%)</title><rect x="20.4094%" y="837" width="0.0746%" height="15" fill="rgb(205,205,61)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="847.50"></text></g><g><title>java.lang.Thread::run (32 samples, 0.07%)</title><rect x="20.4094%" y="821" width="0.0746%" height="15" fill="rgb(228,228,69)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (32 samples, 0.07%)</title><rect x="20.4094%" y="805" width="0.0746%" height="15" fill="rgb(225,225,68)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (32 samples, 0.07%)</title><rect x="20.4094%" y="789" width="0.0746%" height="15" fill="rgb(227,227,69)" fg:x="8754" fg:w="32"/><text x="20.6594%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (29 samples, 0.07%)</title><rect x="20.4164%" y="773" width="0.0676%" height="15" fill="rgb(218,218,65)" fg:x="8757" fg:w="29"/><text x="20.6664%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (29 samples, 0.07%)</title><rect x="20.4164%" y="757" width="0.0676%" height="15" fill="rgb(180,180,51)" fg:x="8757" fg:w="29"/><text x="20.6664%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (29 samples, 0.07%)</title><rect x="20.4164%" y="741" width="0.0676%" height="15" fill="rgb(192,192,56)" fg:x="8757" fg:w="29"/><text x="20.6664%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (29 samples, 0.07%)</title><rect x="20.4164%" y="725" width="0.0676%" height="15" fill="rgb(204,204,60)" fg:x="8757" fg:w="29"/><text x="20.6664%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (29 samples, 0.07%)</title><rect x="20.4164%" y="709" width="0.0676%" height="15" fill="rgb(191,191,56)" fg:x="8757" fg:w="29"/><text x="20.6664%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (29 samples, 0.07%)</title><rect x="20.4164%" y="693" width="0.0676%" height="15" fill="rgb(218,218,65)" fg:x="8757" fg:w="29"/><text x="20.6664%" y="703.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (37 samples, 0.09%)</title><rect x="20.4887%" y="741" width="0.0863%" height="15" fill="rgb(177,177,51)" fg:x="8788" fg:w="37"/><text x="20.7387%" y="751.50"></text></g><g><title>[unknown] (1,168 samples, 2.72%)</title><rect x="20.4840%" y="901" width="2.7231%" height="15" fill="rgb(206,59,59)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="911.50">[u..</text></g><g><title>start_thread (1,168 samples, 2.72%)</title><rect x="20.4840%" y="885" width="2.7231%" height="15" fill="rgb(235,101,101)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,168 samples, 2.72%)</title><rect x="20.4840%" y="869" width="2.7231%" height="15" fill="rgb(191,191,56)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,168 samples, 2.72%)</title><rect x="20.4840%" y="853" width="2.7231%" height="15" fill="rgb(210,210,62)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,168 samples, 2.72%)</title><rect x="20.4840%" y="837" width="2.7231%" height="15" fill="rgb(205,205,61)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,168 samples, 2.72%)</title><rect x="20.4840%" y="821" width="2.7231%" height="15" fill="rgb(228,228,69)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,168 samples, 2.72%)</title><rect x="20.4840%" y="805" width="2.7231%" height="15" fill="rgb(225,225,68)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,168 samples, 2.72%)</title><rect x="20.4840%" y="789" width="2.7231%" height="15" fill="rgb(227,227,69)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,168 samples, 2.72%)</title><rect x="20.4840%" y="773" width="2.7231%" height="15" fill="rgb(225,225,68)" fg:x="8786" fg:w="1168"/><text x="20.7340%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,167 samples, 2.72%)</title><rect x="20.4863%" y="757" width="2.7208%" height="15" fill="rgb(190,190,55)" fg:x="8787" fg:w="1167"/><text x="20.7363%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,129 samples, 2.63%)</title><rect x="20.5749%" y="741" width="2.6322%" height="15" fill="rgb(196,196,57)" fg:x="8825" fg:w="1129"/><text x="20.8249%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,129 samples, 2.63%)</title><rect x="20.5749%" y="725" width="2.6322%" height="15" fill="rgb(217,217,65)" fg:x="8825" fg:w="1129"/><text x="20.8249%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="23.2071%" y="901" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="911.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="23.2071%" y="885" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="23.2071%" y="869" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="23.2071%" y="853" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="23.2071%" y="837" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="847.50"></text></g><g><title>java.lang.Thread::run (8 samples, 0.02%)</title><rect x="23.2071%" y="821" width="0.0187%" height="15" fill="rgb(228,228,69)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (8 samples, 0.02%)</title><rect x="23.2071%" y="805" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (8 samples, 0.02%)</title><rect x="23.2071%" y="789" width="0.0187%" height="15" fill="rgb(227,227,69)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (8 samples, 0.02%)</title><rect x="23.2071%" y="773" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (8 samples, 0.02%)</title><rect x="23.2071%" y="757" width="0.0187%" height="15" fill="rgb(190,190,55)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (8 samples, 0.02%)</title><rect x="23.2071%" y="741" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="9954" fg:w="8"/><text x="23.4571%" y="751.50"></text></g><g><title>ool-3-thread-11 (1,210 samples, 2.82%)</title><rect x="20.4094%" y="917" width="2.8210%" height="15" fill="rgb(207,60,60)" fg:x="8754" fg:w="1210"/><text x="20.6594%" y="927.50">oo..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (10 samples, 0.02%)</title><rect x="23.2304%" y="773" width="0.0233%" height="15" fill="rgb(225,225,68)" fg:x="9964" fg:w="10"/><text x="23.4804%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (10 samples, 0.02%)</title><rect x="23.2304%" y="757" width="0.0233%" height="15" fill="rgb(190,190,55)" fg:x="9964" fg:w="10"/><text x="23.4804%" y="767.50"></text></g><g><title>__pthread_cond_wait (33 samples, 0.08%)</title><rect x="23.2538%" y="677" width="0.0769%" height="15" fill="rgb(240,109,109)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (33 samples, 0.08%)</title><rect x="23.2538%" y="661" width="0.0769%" height="15" fill="rgb(203,55,55)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="671.50"></text></g><g><title>futex_wait_cancelable (33 samples, 0.08%)</title><rect x="23.2538%" y="645" width="0.0769%" height="15" fill="rgb(252,126,126)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.08%)</title><rect x="23.2538%" y="629" width="0.0769%" height="15" fill="rgb(254,128,128)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="639.50"></text></g><g><title>do_syscall_64 (33 samples, 0.08%)</title><rect x="23.2538%" y="613" width="0.0769%" height="15" fill="rgb(217,75,75)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="623.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.08%)</title><rect x="23.2538%" y="597" width="0.0769%" height="15" fill="rgb(248,121,121)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="607.50"></text></g><g><title>do_futex (33 samples, 0.08%)</title><rect x="23.2538%" y="581" width="0.0769%" height="15" fill="rgb(230,94,94)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="591.50"></text></g><g><title>futex_wait (33 samples, 0.08%)</title><rect x="23.2538%" y="565" width="0.0769%" height="15" fill="rgb(219,78,78)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="575.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.08%)</title><rect x="23.2538%" y="549" width="0.0769%" height="15" fill="rgb(204,56,56)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="559.50"></text></g><g><title>schedule (33 samples, 0.08%)</title><rect x="23.2538%" y="533" width="0.0769%" height="15" fill="rgb(251,124,124)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="543.50"></text></g><g><title>__schedule (33 samples, 0.08%)</title><rect x="23.2538%" y="517" width="0.0769%" height="15" fill="rgb(209,64,64)" fg:x="9974" fg:w="33"/><text x="23.5038%" y="527.50"></text></g><g><title>finish_task_switch (32 samples, 0.07%)</title><rect x="23.2561%" y="501" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="9975" fg:w="32"/><text x="23.5061%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.07%)</title><rect x="23.2561%" y="485" width="0.0746%" height="15" fill="rgb(240,109,109)" fg:x="9975" fg:w="32"/><text x="23.5061%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (32 samples, 0.07%)</title><rect x="23.2561%" y="469" width="0.0746%" height="15" fill="rgb(71,219,71)" fg:x="9975" fg:w="32"/><text x="23.5061%" y="479.50"></text></g><g><title>x86_pmu_enable (32 samples, 0.07%)</title><rect x="23.2561%" y="453" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="9975" fg:w="32"/><text x="23.5061%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (32 samples, 0.07%)</title><rect x="23.2561%" y="437" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="9975" fg:w="32"/><text x="23.5061%" y="447.50"></text></g><g><title>native_write_msr (32 samples, 0.07%)</title><rect x="23.2561%" y="421" width="0.0746%" height="15" fill="rgb(212,68,68)" fg:x="9975" fg:w="32"/><text x="23.5061%" y="431.50"></text></g><g><title>[anon] (45 samples, 0.10%)</title><rect x="23.2304%" y="901" width="0.1049%" height="15" fill="rgb(252,126,126)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="911.50"></text></g><g><title>start_thread (45 samples, 0.10%)</title><rect x="23.2304%" y="885" width="0.1049%" height="15" fill="rgb(235,101,101)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (45 samples, 0.10%)</title><rect x="23.2304%" y="869" width="0.1049%" height="15" fill="rgb(191,191,56)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (45 samples, 0.10%)</title><rect x="23.2304%" y="853" width="0.1049%" height="15" fill="rgb(210,210,62)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (45 samples, 0.10%)</title><rect x="23.2304%" y="837" width="0.1049%" height="15" fill="rgb(205,205,61)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="847.50"></text></g><g><title>java.lang.Thread::run (45 samples, 0.10%)</title><rect x="23.2304%" y="821" width="0.1049%" height="15" fill="rgb(228,228,69)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (45 samples, 0.10%)</title><rect x="23.2304%" y="805" width="0.1049%" height="15" fill="rgb(225,225,68)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (45 samples, 0.10%)</title><rect x="23.2304%" y="789" width="0.1049%" height="15" fill="rgb(227,227,69)" fg:x="9964" fg:w="45"/><text x="23.4804%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (35 samples, 0.08%)</title><rect x="23.2538%" y="773" width="0.0816%" height="15" fill="rgb(218,218,65)" fg:x="9974" fg:w="35"/><text x="23.5038%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (35 samples, 0.08%)</title><rect x="23.2538%" y="757" width="0.0816%" height="15" fill="rgb(180,180,51)" fg:x="9974" fg:w="35"/><text x="23.5038%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (35 samples, 0.08%)</title><rect x="23.2538%" y="741" width="0.0816%" height="15" fill="rgb(192,192,56)" fg:x="9974" fg:w="35"/><text x="23.5038%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (35 samples, 0.08%)</title><rect x="23.2538%" y="725" width="0.0816%" height="15" fill="rgb(204,204,60)" fg:x="9974" fg:w="35"/><text x="23.5038%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (35 samples, 0.08%)</title><rect x="23.2538%" y="709" width="0.0816%" height="15" fill="rgb(191,191,56)" fg:x="9974" fg:w="35"/><text x="23.5038%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (35 samples, 0.08%)</title><rect x="23.2538%" y="693" width="0.0816%" height="15" fill="rgb(218,218,65)" fg:x="9974" fg:w="35"/><text x="23.5038%" y="703.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (21 samples, 0.05%)</title><rect x="23.3354%" y="741" width="0.0490%" height="15" fill="rgb(177,177,51)" fg:x="10009" fg:w="21"/><text x="23.5854%" y="751.50"></text></g><g><title>[unknown] (1,091 samples, 2.54%)</title><rect x="23.3354%" y="901" width="2.5436%" height="15" fill="rgb(206,59,59)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="911.50">[u..</text></g><g><title>start_thread (1,091 samples, 2.54%)</title><rect x="23.3354%" y="885" width="2.5436%" height="15" fill="rgb(235,101,101)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,091 samples, 2.54%)</title><rect x="23.3354%" y="869" width="2.5436%" height="15" fill="rgb(191,191,56)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,091 samples, 2.54%)</title><rect x="23.3354%" y="853" width="2.5436%" height="15" fill="rgb(210,210,62)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,091 samples, 2.54%)</title><rect x="23.3354%" y="837" width="2.5436%" height="15" fill="rgb(205,205,61)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,091 samples, 2.54%)</title><rect x="23.3354%" y="821" width="2.5436%" height="15" fill="rgb(228,228,69)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,091 samples, 2.54%)</title><rect x="23.3354%" y="805" width="2.5436%" height="15" fill="rgb(225,225,68)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,091 samples, 2.54%)</title><rect x="23.3354%" y="789" width="2.5436%" height="15" fill="rgb(227,227,69)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,091 samples, 2.54%)</title><rect x="23.3354%" y="773" width="2.5436%" height="15" fill="rgb(225,225,68)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,091 samples, 2.54%)</title><rect x="23.3354%" y="757" width="2.5436%" height="15" fill="rgb(190,190,55)" fg:x="10009" fg:w="1091"/><text x="23.5854%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,070 samples, 2.49%)</title><rect x="23.3843%" y="741" width="2.4946%" height="15" fill="rgb(196,196,57)" fg:x="10030" fg:w="1070"/><text x="23.6343%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,070 samples, 2.49%)</title><rect x="23.3843%" y="725" width="2.4946%" height="15" fill="rgb(217,217,65)" fg:x="10030" fg:w="1070"/><text x="23.6343%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (7 samples, 0.02%)</title><rect x="25.8790%" y="901" width="0.0163%" height="15" fill="rgb(191,191,56)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="911.50"></text></g><g><title>start_thread (7 samples, 0.02%)</title><rect x="25.8790%" y="885" width="0.0163%" height="15" fill="rgb(235,101,101)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (7 samples, 0.02%)</title><rect x="25.8790%" y="869" width="0.0163%" height="15" fill="rgb(191,191,56)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (7 samples, 0.02%)</title><rect x="25.8790%" y="853" width="0.0163%" height="15" fill="rgb(210,210,62)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (7 samples, 0.02%)</title><rect x="25.8790%" y="837" width="0.0163%" height="15" fill="rgb(205,205,61)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="847.50"></text></g><g><title>java.lang.Thread::run (7 samples, 0.02%)</title><rect x="25.8790%" y="821" width="0.0163%" height="15" fill="rgb(228,228,69)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (7 samples, 0.02%)</title><rect x="25.8790%" y="805" width="0.0163%" height="15" fill="rgb(225,225,68)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (7 samples, 0.02%)</title><rect x="25.8790%" y="789" width="0.0163%" height="15" fill="rgb(227,227,69)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (7 samples, 0.02%)</title><rect x="25.8790%" y="773" width="0.0163%" height="15" fill="rgb(225,225,68)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (7 samples, 0.02%)</title><rect x="25.8790%" y="757" width="0.0163%" height="15" fill="rgb(190,190,55)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (7 samples, 0.02%)</title><rect x="25.8790%" y="741" width="0.0163%" height="15" fill="rgb(196,196,57)" fg:x="11100" fg:w="7"/><text x="26.1290%" y="751.50"></text></g><g><title>ool-3-thread-12 (1,145 samples, 2.67%)</title><rect x="23.2304%" y="917" width="2.6695%" height="15" fill="rgb(207,60,60)" fg:x="9964" fg:w="1145"/><text x="23.4804%" y="927.50">oo..</text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="26.1028%" y="629" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="11196" fg:w="8"/><text x="26.3528%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="26.1028%" y="613" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="11196" fg:w="8"/><text x="26.3528%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="26.1028%" y="597" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="11196" fg:w="8"/><text x="26.3528%" y="607.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="26.1028%" y="581" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="11196" fg:w="8"/><text x="26.3528%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="26.1028%" y="565" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="11196" fg:w="8"/><text x="26.3528%" y="575.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="26.1028%" y="549" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="11196" fg:w="8"/><text x="26.3528%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="26.1004%" y="725" width="0.0233%" height="15" fill="rgb(254,128,128)" fg:x="11195" fg:w="10"/><text x="26.3504%" y="735.50"></text></g><g><title>do_syscall_64 (10 samples, 0.02%)</title><rect x="26.1004%" y="709" width="0.0233%" height="15" fill="rgb(217,75,75)" fg:x="11195" fg:w="10"/><text x="26.3504%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (9 samples, 0.02%)</title><rect x="26.1028%" y="693" width="0.0210%" height="15" fill="rgb(226,87,87)" fg:x="11196" fg:w="9"/><text x="26.3528%" y="703.50"></text></g><g><title>do_sched_yield (9 samples, 0.02%)</title><rect x="26.1028%" y="677" width="0.0210%" height="15" fill="rgb(219,78,78)" fg:x="11196" fg:w="9"/><text x="26.3528%" y="687.50"></text></g><g><title>schedule (9 samples, 0.02%)</title><rect x="26.1028%" y="661" width="0.0210%" height="15" fill="rgb(251,124,124)" fg:x="11196" fg:w="9"/><text x="26.3528%" y="671.50"></text></g><g><title>__schedule (9 samples, 0.02%)</title><rect x="26.1028%" y="645" width="0.0210%" height="15" fill="rgb(209,64,64)" fg:x="11196" fg:w="9"/><text x="26.3528%" y="655.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (97 samples, 0.23%)</title><rect x="25.8999%" y="757" width="0.2261%" height="15" fill="rgb(228,228,69)" fg:x="11109" fg:w="97"/><text x="26.1499%" y="767.50"></text></g><g><title>__GI___sched_yield (11 samples, 0.03%)</title><rect x="26.1004%" y="741" width="0.0256%" height="15" fill="rgb(247,118,118)" fg:x="11195" fg:w="11"/><text x="26.3504%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,363 samples, 3.18%)</title><rect x="26.1261%" y="757" width="3.1777%" height="15" fill="rgb(203,203,60)" fg:x="11206" fg:w="1363"/><text x="26.3761%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,363 samples, 3.18%)</title><rect x="26.1261%" y="741" width="3.1777%" height="15" fill="rgb(213,213,63)" fg:x="11206" fg:w="1363"/><text x="26.3761%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,363 samples, 3.18%)</title><rect x="26.1261%" y="725" width="3.1777%" height="15" fill="rgb(185,185,53)" fg:x="11206" fg:w="1363"/><text x="26.3761%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,363 samples, 3.18%)</title><rect x="26.1261%" y="709" width="3.1777%" height="15" fill="rgb(185,185,53)" fg:x="11206" fg:w="1363"/><text x="26.3761%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,363 samples, 3.18%)</title><rect x="26.1261%" y="693" width="3.1777%" height="15" fill="rgb(196,196,57)" fg:x="11206" fg:w="1363"/><text x="26.3761%" y="703.50">io...</text></g><g><title>[anon] (1,461 samples, 3.41%)</title><rect x="25.8999%" y="901" width="3.4062%" height="15" fill="rgb(252,126,126)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="911.50">[an..</text></g><g><title>start_thread (1,461 samples, 3.41%)</title><rect x="25.8999%" y="885" width="3.4062%" height="15" fill="rgb(235,101,101)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,461 samples, 3.41%)</title><rect x="25.8999%" y="869" width="3.4062%" height="15" fill="rgb(191,191,56)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,461 samples, 3.41%)</title><rect x="25.8999%" y="853" width="3.4062%" height="15" fill="rgb(210,210,62)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,461 samples, 3.41%)</title><rect x="25.8999%" y="837" width="3.4062%" height="15" fill="rgb(205,205,61)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,461 samples, 3.41%)</title><rect x="25.8999%" y="821" width="3.4062%" height="15" fill="rgb(181,181,52)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,461 samples, 3.41%)</title><rect x="25.8999%" y="805" width="3.4062%" height="15" fill="rgb(182,182,52)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,461 samples, 3.41%)</title><rect x="25.8999%" y="789" width="3.4062%" height="15" fill="rgb(194,194,57)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,461 samples, 3.41%)</title><rect x="25.8999%" y="773" width="3.4062%" height="15" fill="rgb(222,222,67)" fg:x="11109" fg:w="1461"/><text x="26.1499%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (9 samples, 0.02%)</title><rect x="29.3062%" y="773" width="0.0210%" height="15" fill="rgb(194,194,57)" fg:x="12570" fg:w="9"/><text x="29.5562%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (9 samples, 0.02%)</title><rect x="29.3062%" y="757" width="0.0210%" height="15" fill="rgb(222,222,67)" fg:x="12570" fg:w="9"/><text x="29.5562%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (9 samples, 0.02%)</title><rect x="29.3062%" y="741" width="0.0210%" height="15" fill="rgb(203,203,60)" fg:x="12570" fg:w="9"/><text x="29.5562%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (9 samples, 0.02%)</title><rect x="29.3062%" y="725" width="0.0210%" height="15" fill="rgb(213,213,63)" fg:x="12570" fg:w="9"/><text x="29.5562%" y="735.50"></text></g><g><title>dup@plt (10 samples, 0.02%)</title><rect x="29.3062%" y="885" width="0.0233%" height="15" fill="rgb(215,73,73)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="895.50"></text></g><g><title>start_thread (10 samples, 0.02%)</title><rect x="29.3062%" y="869" width="0.0233%" height="15" fill="rgb(235,101,101)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (10 samples, 0.02%)</title><rect x="29.3062%" y="853" width="0.0233%" height="15" fill="rgb(191,191,56)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (10 samples, 0.02%)</title><rect x="29.3062%" y="837" width="0.0233%" height="15" fill="rgb(210,210,62)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (10 samples, 0.02%)</title><rect x="29.3062%" y="821" width="0.0233%" height="15" fill="rgb(205,205,61)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (10 samples, 0.02%)</title><rect x="29.3062%" y="805" width="0.0233%" height="15" fill="rgb(181,181,52)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (10 samples, 0.02%)</title><rect x="29.3062%" y="789" width="0.0233%" height="15" fill="rgb(182,182,52)" fg:x="12570" fg:w="10"/><text x="29.5562%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (21 samples, 0.05%)</title><rect x="29.3481%" y="741" width="0.0490%" height="15" fill="rgb(213,213,63)" fg:x="12588" fg:w="21"/><text x="29.5981%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (21 samples, 0.05%)</title><rect x="29.3481%" y="725" width="0.0490%" height="15" fill="rgb(185,185,53)" fg:x="12588" fg:w="21"/><text x="29.5981%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (20 samples, 0.05%)</title><rect x="29.3505%" y="709" width="0.0466%" height="15" fill="rgb(185,185,53)" fg:x="12589" fg:w="20"/><text x="29.6005%" y="719.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (38 samples, 0.09%)</title><rect x="29.3435%" y="757" width="0.0886%" height="15" fill="rgb(203,203,60)" fg:x="12586" fg:w="38"/><text x="29.5935%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (15 samples, 0.03%)</title><rect x="29.3971%" y="741" width="0.0350%" height="15" fill="rgb(219,219,66)" fg:x="12609" fg:w="15"/><text x="29.6471%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (44 samples, 0.10%)</title><rect x="29.3318%" y="773" width="0.1026%" height="15" fill="rgb(222,222,67)" fg:x="12581" fg:w="44"/><text x="29.5818%" y="783.50"></text></g><g><title>[unknown] (58 samples, 0.14%)</title><rect x="29.3062%" y="901" width="0.1352%" height="15" fill="rgb(206,59,59)" fg:x="12570" fg:w="58"/><text x="29.5562%" y="911.50"></text></g><g><title>start_thread (48 samples, 0.11%)</title><rect x="29.3295%" y="885" width="0.1119%" height="15" fill="rgb(235,101,101)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (48 samples, 0.11%)</title><rect x="29.3295%" y="869" width="0.1119%" height="15" fill="rgb(191,191,56)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (48 samples, 0.11%)</title><rect x="29.3295%" y="853" width="0.1119%" height="15" fill="rgb(210,210,62)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (48 samples, 0.11%)</title><rect x="29.3295%" y="837" width="0.1119%" height="15" fill="rgb(205,205,61)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (48 samples, 0.11%)</title><rect x="29.3295%" y="821" width="0.1119%" height="15" fill="rgb(181,181,52)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (48 samples, 0.11%)</title><rect x="29.3295%" y="805" width="0.1119%" height="15" fill="rgb(182,182,52)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (48 samples, 0.11%)</title><rect x="29.3295%" y="789" width="0.1119%" height="15" fill="rgb(194,194,57)" fg:x="12580" fg:w="48"/><text x="29.5795%" y="799.50"></text></g><g><title>ool-6-worker-13 (1,546 samples, 3.60%)</title><rect x="25.8999%" y="917" width="3.6044%" height="15" fill="rgb(254,129,129)" fg:x="11109" fg:w="1546"/><text x="26.1499%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (20 samples, 0.05%)</title><rect x="29.4577%" y="901" width="0.0466%" height="15" fill="rgb(181,181,52)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="911.50"></text></g><g><title>start_thread (20 samples, 0.05%)</title><rect x="29.4577%" y="885" width="0.0466%" height="15" fill="rgb(235,101,101)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (20 samples, 0.05%)</title><rect x="29.4577%" y="869" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (20 samples, 0.05%)</title><rect x="29.4577%" y="853" width="0.0466%" height="15" fill="rgb(210,210,62)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (20 samples, 0.05%)</title><rect x="29.4577%" y="837" width="0.0466%" height="15" fill="rgb(205,205,61)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (20 samples, 0.05%)</title><rect x="29.4577%" y="821" width="0.0466%" height="15" fill="rgb(181,181,52)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (20 samples, 0.05%)</title><rect x="29.4577%" y="805" width="0.0466%" height="15" fill="rgb(182,182,52)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (20 samples, 0.05%)</title><rect x="29.4577%" y="789" width="0.0466%" height="15" fill="rgb(204,204,60)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (20 samples, 0.05%)</title><rect x="29.4577%" y="773" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (20 samples, 0.05%)</title><rect x="29.4577%" y="757" width="0.0466%" height="15" fill="rgb(218,218,65)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="767.50"></text></g><g><title>__pthread_cond_wait (20 samples, 0.05%)</title><rect x="29.4577%" y="741" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (20 samples, 0.05%)</title><rect x="29.4577%" y="725" width="0.0466%" height="15" fill="rgb(203,55,55)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="735.50"></text></g><g><title>futex_wait_cancelable (20 samples, 0.05%)</title><rect x="29.4577%" y="709" width="0.0466%" height="15" fill="rgb(252,126,126)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.05%)</title><rect x="29.4577%" y="693" width="0.0466%" height="15" fill="rgb(254,128,128)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="703.50"></text></g><g><title>do_syscall_64 (20 samples, 0.05%)</title><rect x="29.4577%" y="677" width="0.0466%" height="15" fill="rgb(217,75,75)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="687.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.05%)</title><rect x="29.4577%" y="661" width="0.0466%" height="15" fill="rgb(248,121,121)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="671.50"></text></g><g><title>do_futex (20 samples, 0.05%)</title><rect x="29.4577%" y="645" width="0.0466%" height="15" fill="rgb(230,94,94)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="655.50"></text></g><g><title>futex_wait (20 samples, 0.05%)</title><rect x="29.4577%" y="629" width="0.0466%" height="15" fill="rgb(219,78,78)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="639.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.05%)</title><rect x="29.4577%" y="613" width="0.0466%" height="15" fill="rgb(204,56,56)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="623.50"></text></g><g><title>schedule (20 samples, 0.05%)</title><rect x="29.4577%" y="597" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="607.50"></text></g><g><title>__schedule (20 samples, 0.05%)</title><rect x="29.4577%" y="581" width="0.0466%" height="15" fill="rgb(209,64,64)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="591.50"></text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="29.4577%" y="565" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="29.4577%" y="549" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="29.4577%" y="533" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="543.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="29.4577%" y="517" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="29.4577%" y="501" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="511.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="29.4577%" y="485" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="12635" fg:w="20"/><text x="29.7077%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (11 samples, 0.03%)</title><rect x="29.6792%" y="725" width="0.0256%" height="15" fill="rgb(254,128,128)" fg:x="12730" fg:w="11"/><text x="29.9292%" y="735.50"></text></g><g><title>do_syscall_64 (11 samples, 0.03%)</title><rect x="29.6792%" y="709" width="0.0256%" height="15" fill="rgb(217,75,75)" fg:x="12730" fg:w="11"/><text x="29.9292%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (6 samples, 0.01%)</title><rect x="29.6909%" y="693" width="0.0140%" height="15" fill="rgb(226,87,87)" fg:x="12735" fg:w="6"/><text x="29.9409%" y="703.50"></text></g><g><title>do_sched_yield (6 samples, 0.01%)</title><rect x="29.6909%" y="677" width="0.0140%" height="15" fill="rgb(219,78,78)" fg:x="12735" fg:w="6"/><text x="29.9409%" y="687.50"></text></g><g><title>schedule (6 samples, 0.01%)</title><rect x="29.6909%" y="661" width="0.0140%" height="15" fill="rgb(251,124,124)" fg:x="12735" fg:w="6"/><text x="29.9409%" y="671.50"></text></g><g><title>__schedule (6 samples, 0.01%)</title><rect x="29.6909%" y="645" width="0.0140%" height="15" fill="rgb(209,64,64)" fg:x="12735" fg:w="6"/><text x="29.9409%" y="655.50"></text></g><g><title>__GI___sched_yield (12 samples, 0.03%)</title><rect x="29.6792%" y="741" width="0.0280%" height="15" fill="rgb(247,118,118)" fg:x="12730" fg:w="12"/><text x="29.9292%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (88 samples, 0.21%)</title><rect x="29.5043%" y="757" width="0.2052%" height="15" fill="rgb(228,228,69)" fg:x="12655" fg:w="88"/><text x="29.7543%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,337 samples, 3.12%)</title><rect x="29.7095%" y="757" width="3.1171%" height="15" fill="rgb(203,203,60)" fg:x="12743" fg:w="1337"/><text x="29.9595%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,337 samples, 3.12%)</title><rect x="29.7095%" y="741" width="3.1171%" height="15" fill="rgb(213,213,63)" fg:x="12743" fg:w="1337"/><text x="29.9595%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,337 samples, 3.12%)</title><rect x="29.7095%" y="725" width="3.1171%" height="15" fill="rgb(185,185,53)" fg:x="12743" fg:w="1337"/><text x="29.9595%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,337 samples, 3.12%)</title><rect x="29.7095%" y="709" width="3.1171%" height="15" fill="rgb(185,185,53)" fg:x="12743" fg:w="1337"/><text x="29.9595%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,337 samples, 3.12%)</title><rect x="29.7095%" y="693" width="3.1171%" height="15" fill="rgb(196,196,57)" fg:x="12743" fg:w="1337"/><text x="29.9595%" y="703.50">io...</text></g><g><title>[anon] (1,426 samples, 3.32%)</title><rect x="29.5043%" y="901" width="3.3246%" height="15" fill="rgb(252,126,126)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="911.50">[an..</text></g><g><title>start_thread (1,426 samples, 3.32%)</title><rect x="29.5043%" y="885" width="3.3246%" height="15" fill="rgb(235,101,101)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,426 samples, 3.32%)</title><rect x="29.5043%" y="869" width="3.3246%" height="15" fill="rgb(191,191,56)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,426 samples, 3.32%)</title><rect x="29.5043%" y="853" width="3.3246%" height="15" fill="rgb(210,210,62)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,426 samples, 3.32%)</title><rect x="29.5043%" y="837" width="3.3246%" height="15" fill="rgb(205,205,61)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,426 samples, 3.32%)</title><rect x="29.5043%" y="821" width="3.3246%" height="15" fill="rgb(181,181,52)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,426 samples, 3.32%)</title><rect x="29.5043%" y="805" width="3.3246%" height="15" fill="rgb(182,182,52)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,426 samples, 3.32%)</title><rect x="29.5043%" y="789" width="3.3246%" height="15" fill="rgb(194,194,57)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,426 samples, 3.32%)</title><rect x="29.5043%" y="773" width="3.3246%" height="15" fill="rgb(222,222,67)" fg:x="12655" fg:w="1426"/><text x="29.7543%" y="783.50">jav..</text></g><g><title>dup@plt (8 samples, 0.02%)</title><rect x="32.8290%" y="885" width="0.0187%" height="15" fill="rgb(215,73,73)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="895.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="32.8290%" y="869" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="32.8290%" y="853" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="32.8290%" y="837" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="32.8290%" y="821" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (8 samples, 0.02%)</title><rect x="32.8290%" y="805" width="0.0187%" height="15" fill="rgb(181,181,52)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (8 samples, 0.02%)</title><rect x="32.8290%" y="789" width="0.0187%" height="15" fill="rgb(182,182,52)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (8 samples, 0.02%)</title><rect x="32.8290%" y="773" width="0.0187%" height="15" fill="rgb(194,194,57)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (8 samples, 0.02%)</title><rect x="32.8290%" y="757" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (8 samples, 0.02%)</title><rect x="32.8290%" y="741" width="0.0187%" height="15" fill="rgb(203,203,60)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (8 samples, 0.02%)</title><rect x="32.8290%" y="725" width="0.0187%" height="15" fill="rgb(213,213,63)" fg:x="14081" fg:w="8"/><text x="33.0790%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::nextLocalTask (8 samples, 0.02%)</title><rect x="32.8523%" y="757" width="0.0187%" height="15" fill="rgb(188,188,54)" fg:x="14091" fg:w="8"/><text x="33.1023%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (19 samples, 0.04%)</title><rect x="32.8826%" y="709" width="0.0443%" height="15" fill="rgb(185,185,53)" fg:x="14104" fg:w="19"/><text x="33.1326%" y="719.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (22 samples, 0.05%)</title><rect x="32.8779%" y="741" width="0.0513%" height="15" fill="rgb(213,213,63)" fg:x="14102" fg:w="22"/><text x="33.1279%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (20 samples, 0.05%)</title><rect x="32.8826%" y="725" width="0.0466%" height="15" fill="rgb(185,185,53)" fg:x="14104" fg:w="20"/><text x="33.1326%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (48 samples, 0.11%)</title><rect x="32.8476%" y="773" width="0.1119%" height="15" fill="rgb(222,222,67)" fg:x="14089" fg:w="48"/><text x="33.0976%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (37 samples, 0.09%)</title><rect x="32.8733%" y="757" width="0.0863%" height="15" fill="rgb(203,203,60)" fg:x="14100" fg:w="37"/><text x="33.1233%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (13 samples, 0.03%)</title><rect x="32.9292%" y="741" width="0.0303%" height="15" fill="rgb(219,219,66)" fg:x="14124" fg:w="13"/><text x="33.1792%" y="751.50"></text></g><g><title>[unknown] (60 samples, 0.14%)</title><rect x="32.8290%" y="901" width="0.1399%" height="15" fill="rgb(206,59,59)" fg:x="14081" fg:w="60"/><text x="33.0790%" y="911.50"></text></g><g><title>start_thread (52 samples, 0.12%)</title><rect x="32.8476%" y="885" width="0.1212%" height="15" fill="rgb(235,101,101)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (52 samples, 0.12%)</title><rect x="32.8476%" y="869" width="0.1212%" height="15" fill="rgb(191,191,56)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (52 samples, 0.12%)</title><rect x="32.8476%" y="853" width="0.1212%" height="15" fill="rgb(210,210,62)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (52 samples, 0.12%)</title><rect x="32.8476%" y="837" width="0.1212%" height="15" fill="rgb(205,205,61)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (52 samples, 0.12%)</title><rect x="32.8476%" y="821" width="0.1212%" height="15" fill="rgb(181,181,52)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (52 samples, 0.12%)</title><rect x="32.8476%" y="805" width="0.1212%" height="15" fill="rgb(182,182,52)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (52 samples, 0.12%)</title><rect x="32.8476%" y="789" width="0.1212%" height="15" fill="rgb(194,194,57)" fg:x="14089" fg:w="52"/><text x="33.0976%" y="799.50"></text></g><g><title>ool-6-worker-17 (1,507 samples, 3.51%)</title><rect x="29.5043%" y="917" width="3.5135%" height="15" fill="rgb(254,129,129)" fg:x="12655" fg:w="1507"/><text x="29.7543%" y="927.50">ool..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (20 samples, 0.05%)</title><rect x="32.9712%" y="901" width="0.0466%" height="15" fill="rgb(181,181,52)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="911.50"></text></g><g><title>start_thread (20 samples, 0.05%)</title><rect x="32.9712%" y="885" width="0.0466%" height="15" fill="rgb(235,101,101)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (20 samples, 0.05%)</title><rect x="32.9712%" y="869" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (20 samples, 0.05%)</title><rect x="32.9712%" y="853" width="0.0466%" height="15" fill="rgb(210,210,62)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (20 samples, 0.05%)</title><rect x="32.9712%" y="837" width="0.0466%" height="15" fill="rgb(205,205,61)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (20 samples, 0.05%)</title><rect x="32.9712%" y="821" width="0.0466%" height="15" fill="rgb(181,181,52)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (20 samples, 0.05%)</title><rect x="32.9712%" y="805" width="0.0466%" height="15" fill="rgb(182,182,52)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (20 samples, 0.05%)</title><rect x="32.9712%" y="789" width="0.0466%" height="15" fill="rgb(204,204,60)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (20 samples, 0.05%)</title><rect x="32.9712%" y="773" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (20 samples, 0.05%)</title><rect x="32.9712%" y="757" width="0.0466%" height="15" fill="rgb(218,218,65)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="767.50"></text></g><g><title>__pthread_cond_wait (20 samples, 0.05%)</title><rect x="32.9712%" y="741" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (20 samples, 0.05%)</title><rect x="32.9712%" y="725" width="0.0466%" height="15" fill="rgb(203,55,55)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="735.50"></text></g><g><title>futex_wait_cancelable (20 samples, 0.05%)</title><rect x="32.9712%" y="709" width="0.0466%" height="15" fill="rgb(252,126,126)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (20 samples, 0.05%)</title><rect x="32.9712%" y="693" width="0.0466%" height="15" fill="rgb(254,128,128)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="703.50"></text></g><g><title>do_syscall_64 (20 samples, 0.05%)</title><rect x="32.9712%" y="677" width="0.0466%" height="15" fill="rgb(217,75,75)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="687.50"></text></g><g><title>__x64_sys_futex (20 samples, 0.05%)</title><rect x="32.9712%" y="661" width="0.0466%" height="15" fill="rgb(248,121,121)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="671.50"></text></g><g><title>do_futex (20 samples, 0.05%)</title><rect x="32.9712%" y="645" width="0.0466%" height="15" fill="rgb(230,94,94)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="655.50"></text></g><g><title>futex_wait (20 samples, 0.05%)</title><rect x="32.9712%" y="629" width="0.0466%" height="15" fill="rgb(219,78,78)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="639.50"></text></g><g><title>futex_wait_queue_me (20 samples, 0.05%)</title><rect x="32.9712%" y="613" width="0.0466%" height="15" fill="rgb(204,56,56)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="623.50"></text></g><g><title>schedule (20 samples, 0.05%)</title><rect x="32.9712%" y="597" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="607.50"></text></g><g><title>__schedule (20 samples, 0.05%)</title><rect x="32.9712%" y="581" width="0.0466%" height="15" fill="rgb(209,64,64)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="591.50"></text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="32.9712%" y="565" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="32.9712%" y="549" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="32.9712%" y="533" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="543.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="32.9712%" y="517" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="32.9712%" y="501" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="511.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="32.9712%" y="485" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="14142" fg:w="20"/><text x="33.2212%" y="495.50"></text></g><g><title>__GI___sched_yield (9 samples, 0.02%)</title><rect x="33.1554%" y="741" width="0.0210%" height="15" fill="rgb(247,118,118)" fg:x="14221" fg:w="9"/><text x="33.4054%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="33.1600%" y="725" width="0.0163%" height="15" fill="rgb(254,128,128)" fg:x="14223" fg:w="7"/><text x="33.4100%" y="735.50"></text></g><g><title>do_syscall_64 (7 samples, 0.02%)</title><rect x="33.1600%" y="709" width="0.0163%" height="15" fill="rgb(217,75,75)" fg:x="14223" fg:w="7"/><text x="33.4100%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (5 samples, 0.01%)</title><rect x="33.1647%" y="693" width="0.0117%" height="15" fill="rgb(226,87,87)" fg:x="14225" fg:w="5"/><text x="33.4147%" y="703.50"></text></g><g><title>do_sched_yield (5 samples, 0.01%)</title><rect x="33.1647%" y="677" width="0.0117%" height="15" fill="rgb(219,78,78)" fg:x="14225" fg:w="5"/><text x="33.4147%" y="687.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (71 samples, 0.17%)</title><rect x="33.0201%" y="757" width="0.1655%" height="15" fill="rgb(228,228,69)" fg:x="14163" fg:w="71"/><text x="33.2701%" y="767.50"></text></g><g><title>[anon] (1,493 samples, 3.48%)</title><rect x="33.0178%" y="901" width="3.4808%" height="15" fill="rgb(252,126,126)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="911.50">[an..</text></g><g><title>start_thread (1,493 samples, 3.48%)</title><rect x="33.0178%" y="885" width="3.4808%" height="15" fill="rgb(235,101,101)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,493 samples, 3.48%)</title><rect x="33.0178%" y="869" width="3.4808%" height="15" fill="rgb(191,191,56)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,493 samples, 3.48%)</title><rect x="33.0178%" y="853" width="3.4808%" height="15" fill="rgb(210,210,62)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,493 samples, 3.48%)</title><rect x="33.0178%" y="837" width="3.4808%" height="15" fill="rgb(205,205,61)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,493 samples, 3.48%)</title><rect x="33.0178%" y="821" width="3.4808%" height="15" fill="rgb(181,181,52)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,493 samples, 3.48%)</title><rect x="33.0178%" y="805" width="3.4808%" height="15" fill="rgb(182,182,52)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,493 samples, 3.48%)</title><rect x="33.0178%" y="789" width="3.4808%" height="15" fill="rgb(194,194,57)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,493 samples, 3.48%)</title><rect x="33.0178%" y="773" width="3.4808%" height="15" fill="rgb(222,222,67)" fg:x="14162" fg:w="1493"/><text x="33.2678%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,421 samples, 3.31%)</title><rect x="33.1857%" y="757" width="3.3130%" height="15" fill="rgb(203,203,60)" fg:x="14234" fg:w="1421"/><text x="33.4357%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,421 samples, 3.31%)</title><rect x="33.1857%" y="741" width="3.3130%" height="15" fill="rgb(213,213,63)" fg:x="14234" fg:w="1421"/><text x="33.4357%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,421 samples, 3.31%)</title><rect x="33.1857%" y="725" width="3.3130%" height="15" fill="rgb(185,185,53)" fg:x="14234" fg:w="1421"/><text x="33.4357%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,421 samples, 3.31%)</title><rect x="33.1857%" y="709" width="3.3130%" height="15" fill="rgb(185,185,53)" fg:x="14234" fg:w="1421"/><text x="33.4357%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,421 samples, 3.31%)</title><rect x="33.1857%" y="693" width="3.3130%" height="15" fill="rgb(196,196,57)" fg:x="14234" fg:w="1421"/><text x="33.4357%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (13 samples, 0.03%)</title><rect x="36.5010%" y="773" width="0.0303%" height="15" fill="rgb(194,194,57)" fg:x="15656" fg:w="13"/><text x="36.7510%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (13 samples, 0.03%)</title><rect x="36.5010%" y="757" width="0.0303%" height="15" fill="rgb(222,222,67)" fg:x="15656" fg:w="13"/><text x="36.7510%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (13 samples, 0.03%)</title><rect x="36.5010%" y="741" width="0.0303%" height="15" fill="rgb(203,203,60)" fg:x="15656" fg:w="13"/><text x="36.7510%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (12 samples, 0.03%)</title><rect x="36.5033%" y="725" width="0.0280%" height="15" fill="rgb(213,213,63)" fg:x="15657" fg:w="12"/><text x="36.7533%" y="735.50"></text></g><g><title>dup@plt (14 samples, 0.03%)</title><rect x="36.5010%" y="885" width="0.0326%" height="15" fill="rgb(215,73,73)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="895.50"></text></g><g><title>start_thread (14 samples, 0.03%)</title><rect x="36.5010%" y="869" width="0.0326%" height="15" fill="rgb(235,101,101)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (14 samples, 0.03%)</title><rect x="36.5010%" y="853" width="0.0326%" height="15" fill="rgb(191,191,56)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (14 samples, 0.03%)</title><rect x="36.5010%" y="837" width="0.0326%" height="15" fill="rgb(210,210,62)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (14 samples, 0.03%)</title><rect x="36.5010%" y="821" width="0.0326%" height="15" fill="rgb(205,205,61)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (14 samples, 0.03%)</title><rect x="36.5010%" y="805" width="0.0326%" height="15" fill="rgb(181,181,52)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (14 samples, 0.03%)</title><rect x="36.5010%" y="789" width="0.0326%" height="15" fill="rgb(182,182,52)" fg:x="15656" fg:w="14"/><text x="36.7510%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (31 samples, 0.07%)</title><rect x="36.5546%" y="741" width="0.0723%" height="15" fill="rgb(213,213,63)" fg:x="15679" fg:w="31"/><text x="36.8046%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (31 samples, 0.07%)</title><rect x="36.5546%" y="725" width="0.0723%" height="15" fill="rgb(185,185,53)" fg:x="15679" fg:w="31"/><text x="36.8046%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (31 samples, 0.07%)</title><rect x="36.5546%" y="709" width="0.0723%" height="15" fill="rgb(185,185,53)" fg:x="15679" fg:w="31"/><text x="36.8046%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (17 samples, 0.04%)</title><rect x="36.5872%" y="693" width="0.0396%" height="15" fill="rgb(196,196,57)" fg:x="15693" fg:w="17"/><text x="36.8372%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (16 samples, 0.04%)</title><rect x="36.5896%" y="677" width="0.0373%" height="15" fill="rgb(208,208,62)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (16 samples, 0.04%)</title><rect x="36.5896%" y="661" width="0.0373%" height="15" fill="rgb(179,179,51)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (16 samples, 0.04%)</title><rect x="36.5896%" y="645" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (16 samples, 0.04%)</title><rect x="36.5896%" y="629" width="0.0373%" height="15" fill="rgb(184,184,53)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (16 samples, 0.04%)</title><rect x="36.5896%" y="613" width="0.0373%" height="15" fill="rgb(246,117,117)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="623.50"></text></g><g><title>__lll_lock_wait (16 samples, 0.04%)</title><rect x="36.5896%" y="597" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="36.5896%" y="581" width="0.0373%" height="15" fill="rgb(254,128,128)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="591.50"></text></g><g><title>do_syscall_64 (16 samples, 0.04%)</title><rect x="36.5896%" y="565" width="0.0373%" height="15" fill="rgb(217,75,75)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="575.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.04%)</title><rect x="36.5896%" y="549" width="0.0373%" height="15" fill="rgb(248,121,121)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="559.50"></text></g><g><title>do_futex (16 samples, 0.04%)</title><rect x="36.5896%" y="533" width="0.0373%" height="15" fill="rgb(230,94,94)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="543.50"></text></g><g><title>futex_wait (16 samples, 0.04%)</title><rect x="36.5896%" y="517" width="0.0373%" height="15" fill="rgb(219,78,78)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="527.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.04%)</title><rect x="36.5896%" y="501" width="0.0373%" height="15" fill="rgb(204,56,56)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="511.50"></text></g><g><title>schedule (16 samples, 0.04%)</title><rect x="36.5896%" y="485" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="495.50"></text></g><g><title>__schedule (16 samples, 0.04%)</title><rect x="36.5896%" y="469" width="0.0373%" height="15" fill="rgb(209,64,64)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="479.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="36.5896%" y="453" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="36.5896%" y="437" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="36.5896%" y="421" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="431.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="36.5896%" y="405" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="36.5896%" y="389" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="399.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="36.5896%" y="373" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="15694" fg:w="16"/><text x="36.8396%" y="383.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (59 samples, 0.14%)</title><rect x="36.5336%" y="773" width="0.1376%" height="15" fill="rgb(222,222,67)" fg:x="15670" fg:w="59"/><text x="36.7836%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (54 samples, 0.13%)</title><rect x="36.5453%" y="757" width="0.1259%" height="15" fill="rgb(203,203,60)" fg:x="15675" fg:w="54"/><text x="36.7953%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (19 samples, 0.04%)</title><rect x="36.6269%" y="741" width="0.0443%" height="15" fill="rgb(219,219,66)" fg:x="15710" fg:w="19"/><text x="36.8769%" y="751.50"></text></g><g><title>[unknown] (75 samples, 0.17%)</title><rect x="36.4986%" y="901" width="0.1749%" height="15" fill="rgb(206,59,59)" fg:x="15655" fg:w="75"/><text x="36.7486%" y="911.50"></text></g><g><title>start_thread (60 samples, 0.14%)</title><rect x="36.5336%" y="885" width="0.1399%" height="15" fill="rgb(235,101,101)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (60 samples, 0.14%)</title><rect x="36.5336%" y="869" width="0.1399%" height="15" fill="rgb(191,191,56)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (60 samples, 0.14%)</title><rect x="36.5336%" y="853" width="0.1399%" height="15" fill="rgb(210,210,62)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (60 samples, 0.14%)</title><rect x="36.5336%" y="837" width="0.1399%" height="15" fill="rgb(205,205,61)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (60 samples, 0.14%)</title><rect x="36.5336%" y="821" width="0.1399%" height="15" fill="rgb(181,181,52)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (60 samples, 0.14%)</title><rect x="36.5336%" y="805" width="0.1399%" height="15" fill="rgb(182,182,52)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (60 samples, 0.14%)</title><rect x="36.5336%" y="789" width="0.1399%" height="15" fill="rgb(194,194,57)" fg:x="15670" fg:w="60"/><text x="36.7836%" y="799.50"></text></g><g><title>__pthread_cond_wait (19 samples, 0.04%)</title><rect x="36.6875%" y="741" width="0.0443%" height="15" fill="rgb(240,109,109)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (19 samples, 0.04%)</title><rect x="36.6875%" y="725" width="0.0443%" height="15" fill="rgb(203,55,55)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="735.50"></text></g><g><title>futex_wait_cancelable (19 samples, 0.04%)</title><rect x="36.6875%" y="709" width="0.0443%" height="15" fill="rgb(252,126,126)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.04%)</title><rect x="36.6875%" y="693" width="0.0443%" height="15" fill="rgb(254,128,128)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="703.50"></text></g><g><title>do_syscall_64 (19 samples, 0.04%)</title><rect x="36.6875%" y="677" width="0.0443%" height="15" fill="rgb(217,75,75)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="687.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.04%)</title><rect x="36.6875%" y="661" width="0.0443%" height="15" fill="rgb(248,121,121)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="671.50"></text></g><g><title>do_futex (19 samples, 0.04%)</title><rect x="36.6875%" y="645" width="0.0443%" height="15" fill="rgb(230,94,94)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="655.50"></text></g><g><title>futex_wait (19 samples, 0.04%)</title><rect x="36.6875%" y="629" width="0.0443%" height="15" fill="rgb(219,78,78)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="639.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.04%)</title><rect x="36.6875%" y="613" width="0.0443%" height="15" fill="rgb(204,56,56)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="623.50"></text></g><g><title>schedule (19 samples, 0.04%)</title><rect x="36.6875%" y="597" width="0.0443%" height="15" fill="rgb(251,124,124)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="607.50"></text></g><g><title>__schedule (19 samples, 0.04%)</title><rect x="36.6875%" y="581" width="0.0443%" height="15" fill="rgb(209,64,64)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="591.50"></text></g><g><title>finish_task_switch (19 samples, 0.04%)</title><rect x="36.6875%" y="565" width="0.0443%" height="15" fill="rgb(251,124,124)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.04%)</title><rect x="36.6875%" y="549" width="0.0443%" height="15" fill="rgb(240,109,109)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (19 samples, 0.04%)</title><rect x="36.6875%" y="533" width="0.0443%" height="15" fill="rgb(71,219,71)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="543.50"></text></g><g><title>x86_pmu_enable (19 samples, 0.04%)</title><rect x="36.6875%" y="517" width="0.0443%" height="15" fill="rgb(238,105,105)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (19 samples, 0.04%)</title><rect x="36.6875%" y="501" width="0.0443%" height="15" fill="rgb(238,105,105)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="511.50"></text></g><g><title>native_write_msr (19 samples, 0.04%)</title><rect x="36.6875%" y="485" width="0.0443%" height="15" fill="rgb(212,68,68)" fg:x="15736" fg:w="19"/><text x="36.9375%" y="495.50"></text></g><g><title>ool-6-worker-19 (1,594 samples, 3.72%)</title><rect x="33.0178%" y="917" width="3.7163%" height="15" fill="rgb(254,129,129)" fg:x="14162" fg:w="1594"/><text x="33.2678%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (20 samples, 0.05%)</title><rect x="36.6875%" y="901" width="0.0466%" height="15" fill="rgb(181,181,52)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="911.50"></text></g><g><title>start_thread (20 samples, 0.05%)</title><rect x="36.6875%" y="885" width="0.0466%" height="15" fill="rgb(235,101,101)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (20 samples, 0.05%)</title><rect x="36.6875%" y="869" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (20 samples, 0.05%)</title><rect x="36.6875%" y="853" width="0.0466%" height="15" fill="rgb(210,210,62)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (20 samples, 0.05%)</title><rect x="36.6875%" y="837" width="0.0466%" height="15" fill="rgb(205,205,61)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (20 samples, 0.05%)</title><rect x="36.6875%" y="821" width="0.0466%" height="15" fill="rgb(181,181,52)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (20 samples, 0.05%)</title><rect x="36.6875%" y="805" width="0.0466%" height="15" fill="rgb(182,182,52)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (20 samples, 0.05%)</title><rect x="36.6875%" y="789" width="0.0466%" height="15" fill="rgb(204,204,60)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (20 samples, 0.05%)</title><rect x="36.6875%" y="773" width="0.0466%" height="15" fill="rgb(191,191,56)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (20 samples, 0.05%)</title><rect x="36.6875%" y="757" width="0.0466%" height="15" fill="rgb(218,218,65)" fg:x="15736" fg:w="20"/><text x="36.9375%" y="767.50"></text></g><g><title>schedule (6 samples, 0.01%)</title><rect x="36.8810%" y="661" width="0.0140%" height="15" fill="rgb(251,124,124)" fg:x="15819" fg:w="6"/><text x="37.1310%" y="671.50"></text></g><g><title>__schedule (6 samples, 0.01%)</title><rect x="36.8810%" y="645" width="0.0140%" height="15" fill="rgb(209,64,64)" fg:x="15819" fg:w="6"/><text x="37.1310%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="36.8810%" y="725" width="0.0163%" height="15" fill="rgb(254,128,128)" fg:x="15819" fg:w="7"/><text x="37.1310%" y="735.50"></text></g><g><title>do_syscall_64 (7 samples, 0.02%)</title><rect x="36.8810%" y="709" width="0.0163%" height="15" fill="rgb(217,75,75)" fg:x="15819" fg:w="7"/><text x="37.1310%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (7 samples, 0.02%)</title><rect x="36.8810%" y="693" width="0.0163%" height="15" fill="rgb(226,87,87)" fg:x="15819" fg:w="7"/><text x="37.1310%" y="703.50"></text></g><g><title>do_sched_yield (7 samples, 0.02%)</title><rect x="36.8810%" y="677" width="0.0163%" height="15" fill="rgb(219,78,78)" fg:x="15819" fg:w="7"/><text x="37.1310%" y="687.50"></text></g><g><title>__GI___sched_yield (11 samples, 0.03%)</title><rect x="36.8740%" y="741" width="0.0256%" height="15" fill="rgb(247,118,118)" fg:x="15816" fg:w="11"/><text x="37.1240%" y="751.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathTransitionFromNativeToNewStatus (5 samples, 0.01%)</title><rect x="36.9020%" y="741" width="0.0117%" height="15" fill="rgb(185,185,53)" fg:x="15828" fg:w="5"/><text x="37.1520%" y="751.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (5 samples, 0.01%)</title><rect x="36.9020%" y="725" width="0.0117%" height="15" fill="rgb(179,179,51)" fg:x="15828" fg:w="5"/><text x="37.1520%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (5 samples, 0.01%)</title><rect x="36.9020%" y="709" width="0.0117%" height="15" fill="rgb(182,182,52)" fg:x="15828" fg:w="5"/><text x="37.1520%" y="719.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (78 samples, 0.18%)</title><rect x="36.7341%" y="757" width="0.1819%" height="15" fill="rgb(228,228,69)" fg:x="15756" fg:w="78"/><text x="36.9841%" y="767.50"></text></g><g><title>[anon] (1,426 samples, 3.32%)</title><rect x="36.7341%" y="901" width="3.3246%" height="15" fill="rgb(252,126,126)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="911.50">[an..</text></g><g><title>start_thread (1,426 samples, 3.32%)</title><rect x="36.7341%" y="885" width="3.3246%" height="15" fill="rgb(235,101,101)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,426 samples, 3.32%)</title><rect x="36.7341%" y="869" width="3.3246%" height="15" fill="rgb(191,191,56)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,426 samples, 3.32%)</title><rect x="36.7341%" y="853" width="3.3246%" height="15" fill="rgb(210,210,62)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,426 samples, 3.32%)</title><rect x="36.7341%" y="837" width="3.3246%" height="15" fill="rgb(205,205,61)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,426 samples, 3.32%)</title><rect x="36.7341%" y="821" width="3.3246%" height="15" fill="rgb(181,181,52)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,426 samples, 3.32%)</title><rect x="36.7341%" y="805" width="3.3246%" height="15" fill="rgb(182,182,52)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,426 samples, 3.32%)</title><rect x="36.7341%" y="789" width="3.3246%" height="15" fill="rgb(194,194,57)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,426 samples, 3.32%)</title><rect x="36.7341%" y="773" width="3.3246%" height="15" fill="rgb(222,222,67)" fg:x="15756" fg:w="1426"/><text x="36.9841%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,348 samples, 3.14%)</title><rect x="36.9160%" y="757" width="3.1428%" height="15" fill="rgb(203,203,60)" fg:x="15834" fg:w="1348"/><text x="37.1660%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,348 samples, 3.14%)</title><rect x="36.9160%" y="741" width="3.1428%" height="15" fill="rgb(213,213,63)" fg:x="15834" fg:w="1348"/><text x="37.1660%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,348 samples, 3.14%)</title><rect x="36.9160%" y="725" width="3.1428%" height="15" fill="rgb(185,185,53)" fg:x="15834" fg:w="1348"/><text x="37.1660%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,347 samples, 3.14%)</title><rect x="36.9183%" y="709" width="3.1404%" height="15" fill="rgb(185,185,53)" fg:x="15835" fg:w="1347"/><text x="37.1683%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,347 samples, 3.14%)</title><rect x="36.9183%" y="693" width="3.1404%" height="15" fill="rgb(196,196,57)" fg:x="15835" fg:w="1347"/><text x="37.1683%" y="703.50">io...</text></g><g><title>dup@plt (9 samples, 0.02%)</title><rect x="40.0588%" y="885" width="0.0210%" height="15" fill="rgb(215,73,73)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="895.50"></text></g><g><title>start_thread (9 samples, 0.02%)</title><rect x="40.0588%" y="869" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="40.0588%" y="853" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (9 samples, 0.02%)</title><rect x="40.0588%" y="837" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="40.0588%" y="821" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (9 samples, 0.02%)</title><rect x="40.0588%" y="805" width="0.0210%" height="15" fill="rgb(181,181,52)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (9 samples, 0.02%)</title><rect x="40.0588%" y="789" width="0.0210%" height="15" fill="rgb(182,182,52)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (9 samples, 0.02%)</title><rect x="40.0588%" y="773" width="0.0210%" height="15" fill="rgb(194,194,57)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (9 samples, 0.02%)</title><rect x="40.0588%" y="757" width="0.0210%" height="15" fill="rgb(222,222,67)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (9 samples, 0.02%)</title><rect x="40.0588%" y="741" width="0.0210%" height="15" fill="rgb(203,203,60)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (9 samples, 0.02%)</title><rect x="40.0588%" y="725" width="0.0210%" height="15" fill="rgb(213,213,63)" fg:x="17182" fg:w="9"/><text x="40.3088%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (22 samples, 0.05%)</title><rect x="40.0961%" y="741" width="0.0513%" height="15" fill="rgb(213,213,63)" fg:x="17198" fg:w="22"/><text x="40.3461%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (22 samples, 0.05%)</title><rect x="40.0961%" y="725" width="0.0513%" height="15" fill="rgb(185,185,53)" fg:x="17198" fg:w="22"/><text x="40.3461%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (21 samples, 0.05%)</title><rect x="40.0984%" y="709" width="0.0490%" height="15" fill="rgb(185,185,53)" fg:x="17199" fg:w="21"/><text x="40.3484%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (8 samples, 0.02%)</title><rect x="40.1287%" y="693" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (8 samples, 0.02%)</title><rect x="40.1287%" y="677" width="0.0187%" height="15" fill="rgb(208,208,62)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (8 samples, 0.02%)</title><rect x="40.1287%" y="661" width="0.0187%" height="15" fill="rgb(179,179,51)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (8 samples, 0.02%)</title><rect x="40.1287%" y="645" width="0.0187%" height="15" fill="rgb(182,182,52)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (8 samples, 0.02%)</title><rect x="40.1287%" y="629" width="0.0187%" height="15" fill="rgb(184,184,53)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (8 samples, 0.02%)</title><rect x="40.1287%" y="613" width="0.0187%" height="15" fill="rgb(246,117,117)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="623.50"></text></g><g><title>__lll_lock_wait (8 samples, 0.02%)</title><rect x="40.1287%" y="597" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="40.1287%" y="581" width="0.0187%" height="15" fill="rgb(254,128,128)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="591.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="40.1287%" y="565" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="575.50"></text></g><g><title>__x64_sys_futex (8 samples, 0.02%)</title><rect x="40.1287%" y="549" width="0.0187%" height="15" fill="rgb(248,121,121)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="559.50"></text></g><g><title>do_futex (8 samples, 0.02%)</title><rect x="40.1287%" y="533" width="0.0187%" height="15" fill="rgb(230,94,94)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="543.50"></text></g><g><title>futex_wait (8 samples, 0.02%)</title><rect x="40.1287%" y="517" width="0.0187%" height="15" fill="rgb(219,78,78)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="527.50"></text></g><g><title>futex_wait_queue_me (8 samples, 0.02%)</title><rect x="40.1287%" y="501" width="0.0187%" height="15" fill="rgb(204,56,56)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="511.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="40.1287%" y="485" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="495.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="40.1287%" y="469" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="479.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="40.1287%" y="453" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="40.1287%" y="437" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="40.1287%" y="421" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="431.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="40.1287%" y="405" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="40.1287%" y="389" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="399.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="40.1287%" y="373" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="17212" fg:w="8"/><text x="40.3787%" y="383.50"></text></g><g><title>[unknown] (61 samples, 0.14%)</title><rect x="40.0588%" y="901" width="0.1422%" height="15" fill="rgb(206,59,59)" fg:x="17182" fg:w="61"/><text x="40.3088%" y="911.50"></text></g><g><title>start_thread (52 samples, 0.12%)</title><rect x="40.0797%" y="885" width="0.1212%" height="15" fill="rgb(235,101,101)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (52 samples, 0.12%)</title><rect x="40.0797%" y="869" width="0.1212%" height="15" fill="rgb(191,191,56)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (52 samples, 0.12%)</title><rect x="40.0797%" y="853" width="0.1212%" height="15" fill="rgb(210,210,62)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (52 samples, 0.12%)</title><rect x="40.0797%" y="837" width="0.1212%" height="15" fill="rgb(205,205,61)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (52 samples, 0.12%)</title><rect x="40.0797%" y="821" width="0.1212%" height="15" fill="rgb(181,181,52)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (52 samples, 0.12%)</title><rect x="40.0797%" y="805" width="0.1212%" height="15" fill="rgb(182,182,52)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (52 samples, 0.12%)</title><rect x="40.0797%" y="789" width="0.1212%" height="15" fill="rgb(194,194,57)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (52 samples, 0.12%)</title><rect x="40.0797%" y="773" width="0.1212%" height="15" fill="rgb(222,222,67)" fg:x="17191" fg:w="52"/><text x="40.3297%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (48 samples, 0.11%)</title><rect x="40.0891%" y="757" width="0.1119%" height="15" fill="rgb(203,203,60)" fg:x="17195" fg:w="48"/><text x="40.3391%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (23 samples, 0.05%)</title><rect x="40.1473%" y="741" width="0.0536%" height="15" fill="rgb(219,219,66)" fg:x="17220" fg:w="23"/><text x="40.3973%" y="751.50"></text></g><g><title>ool-6-worker-21 (1,526 samples, 3.56%)</title><rect x="36.7341%" y="917" width="3.5578%" height="15" fill="rgb(254,129,129)" fg:x="15756" fg:w="1526"/><text x="36.9841%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (32 samples, 0.07%)</title><rect x="40.2173%" y="901" width="0.0746%" height="15" fill="rgb(181,181,52)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="911.50"></text></g><g><title>start_thread (32 samples, 0.07%)</title><rect x="40.2173%" y="885" width="0.0746%" height="15" fill="rgb(235,101,101)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (32 samples, 0.07%)</title><rect x="40.2173%" y="869" width="0.0746%" height="15" fill="rgb(191,191,56)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (32 samples, 0.07%)</title><rect x="40.2173%" y="853" width="0.0746%" height="15" fill="rgb(210,210,62)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (32 samples, 0.07%)</title><rect x="40.2173%" y="837" width="0.0746%" height="15" fill="rgb(205,205,61)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (32 samples, 0.07%)</title><rect x="40.2173%" y="821" width="0.0746%" height="15" fill="rgb(181,181,52)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (32 samples, 0.07%)</title><rect x="40.2173%" y="805" width="0.0746%" height="15" fill="rgb(182,182,52)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (32 samples, 0.07%)</title><rect x="40.2173%" y="789" width="0.0746%" height="15" fill="rgb(204,204,60)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (32 samples, 0.07%)</title><rect x="40.2173%" y="773" width="0.0746%" height="15" fill="rgb(191,191,56)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (32 samples, 0.07%)</title><rect x="40.2173%" y="757" width="0.0746%" height="15" fill="rgb(218,218,65)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="767.50"></text></g><g><title>__pthread_cond_wait (32 samples, 0.07%)</title><rect x="40.2173%" y="741" width="0.0746%" height="15" fill="rgb(240,109,109)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (32 samples, 0.07%)</title><rect x="40.2173%" y="725" width="0.0746%" height="15" fill="rgb(203,55,55)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="735.50"></text></g><g><title>futex_wait_cancelable (32 samples, 0.07%)</title><rect x="40.2173%" y="709" width="0.0746%" height="15" fill="rgb(252,126,126)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.07%)</title><rect x="40.2173%" y="693" width="0.0746%" height="15" fill="rgb(254,128,128)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="703.50"></text></g><g><title>do_syscall_64 (32 samples, 0.07%)</title><rect x="40.2173%" y="677" width="0.0746%" height="15" fill="rgb(217,75,75)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="687.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.07%)</title><rect x="40.2173%" y="661" width="0.0746%" height="15" fill="rgb(248,121,121)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="671.50"></text></g><g><title>do_futex (32 samples, 0.07%)</title><rect x="40.2173%" y="645" width="0.0746%" height="15" fill="rgb(230,94,94)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="655.50"></text></g><g><title>futex_wait (32 samples, 0.07%)</title><rect x="40.2173%" y="629" width="0.0746%" height="15" fill="rgb(219,78,78)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="639.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.07%)</title><rect x="40.2173%" y="613" width="0.0746%" height="15" fill="rgb(204,56,56)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="623.50"></text></g><g><title>schedule (32 samples, 0.07%)</title><rect x="40.2173%" y="597" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="607.50"></text></g><g><title>__schedule (32 samples, 0.07%)</title><rect x="40.2173%" y="581" width="0.0746%" height="15" fill="rgb(209,64,64)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="591.50"></text></g><g><title>finish_task_switch (32 samples, 0.07%)</title><rect x="40.2173%" y="565" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.07%)</title><rect x="40.2173%" y="549" width="0.0746%" height="15" fill="rgb(240,109,109)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (32 samples, 0.07%)</title><rect x="40.2173%" y="533" width="0.0746%" height="15" fill="rgb(71,219,71)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="543.50"></text></g><g><title>x86_pmu_enable (32 samples, 0.07%)</title><rect x="40.2173%" y="517" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (32 samples, 0.07%)</title><rect x="40.2173%" y="501" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="511.50"></text></g><g><title>native_write_msr (32 samples, 0.07%)</title><rect x="40.2173%" y="485" width="0.0746%" height="15" fill="rgb(212,68,68)" fg:x="17250" fg:w="32"/><text x="40.4673%" y="495.50"></text></g><g><title>__GI___sched_yield (8 samples, 0.02%)</title><rect x="40.5111%" y="741" width="0.0187%" height="15" fill="rgb(247,118,118)" fg:x="17376" fg:w="8"/><text x="40.7611%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="40.5157%" y="725" width="0.0140%" height="15" fill="rgb(254,128,128)" fg:x="17378" fg:w="6"/><text x="40.7657%" y="735.50"></text></g><g><title>do_syscall_64 (6 samples, 0.01%)</title><rect x="40.5157%" y="709" width="0.0140%" height="15" fill="rgb(217,75,75)" fg:x="17378" fg:w="6"/><text x="40.7657%" y="719.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (106 samples, 0.25%)</title><rect x="40.2919%" y="757" width="0.2471%" height="15" fill="rgb(228,228,69)" fg:x="17282" fg:w="106"/><text x="40.5419%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,345 samples, 3.14%)</title><rect x="40.5390%" y="741" width="3.1358%" height="15" fill="rgb(213,213,63)" fg:x="17388" fg:w="1345"/><text x="40.7890%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,345 samples, 3.14%)</title><rect x="40.5390%" y="725" width="3.1358%" height="15" fill="rgb(185,185,53)" fg:x="17388" fg:w="1345"/><text x="40.7890%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,345 samples, 3.14%)</title><rect x="40.5390%" y="709" width="3.1358%" height="15" fill="rgb(185,185,53)" fg:x="17388" fg:w="1345"/><text x="40.7890%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,345 samples, 3.14%)</title><rect x="40.5390%" y="693" width="3.1358%" height="15" fill="rgb(196,196,57)" fg:x="17388" fg:w="1345"/><text x="40.7890%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,346 samples, 3.14%)</title><rect x="40.5390%" y="757" width="3.1381%" height="15" fill="rgb(203,203,60)" fg:x="17388" fg:w="1346"/><text x="40.7890%" y="767.50">jav..</text></g><g><title>[anon] (1,453 samples, 3.39%)</title><rect x="40.2919%" y="901" width="3.3876%" height="15" fill="rgb(252,126,126)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="911.50">[an..</text></g><g><title>start_thread (1,453 samples, 3.39%)</title><rect x="40.2919%" y="885" width="3.3876%" height="15" fill="rgb(235,101,101)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,453 samples, 3.39%)</title><rect x="40.2919%" y="869" width="3.3876%" height="15" fill="rgb(191,191,56)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,453 samples, 3.39%)</title><rect x="40.2919%" y="853" width="3.3876%" height="15" fill="rgb(210,210,62)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,453 samples, 3.39%)</title><rect x="40.2919%" y="837" width="3.3876%" height="15" fill="rgb(205,205,61)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,453 samples, 3.39%)</title><rect x="40.2919%" y="821" width="3.3876%" height="15" fill="rgb(181,181,52)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,453 samples, 3.39%)</title><rect x="40.2919%" y="805" width="3.3876%" height="15" fill="rgb(182,182,52)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,453 samples, 3.39%)</title><rect x="40.2919%" y="789" width="3.3876%" height="15" fill="rgb(194,194,57)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,453 samples, 3.39%)</title><rect x="40.2919%" y="773" width="3.3876%" height="15" fill="rgb(222,222,67)" fg:x="17282" fg:w="1453"/><text x="40.5419%" y="783.50">jav..</text></g><g><title>dup@plt (8 samples, 0.02%)</title><rect x="43.6795%" y="885" width="0.0187%" height="15" fill="rgb(215,73,73)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="895.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="43.6795%" y="869" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="43.6795%" y="853" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="43.6795%" y="837" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="43.6795%" y="821" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (8 samples, 0.02%)</title><rect x="43.6795%" y="805" width="0.0187%" height="15" fill="rgb(181,181,52)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (8 samples, 0.02%)</title><rect x="43.6795%" y="789" width="0.0187%" height="15" fill="rgb(182,182,52)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (8 samples, 0.02%)</title><rect x="43.6795%" y="773" width="0.0187%" height="15" fill="rgb(194,194,57)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (8 samples, 0.02%)</title><rect x="43.6795%" y="757" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="18735" fg:w="8"/><text x="43.9295%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (7 samples, 0.02%)</title><rect x="43.6818%" y="741" width="0.0163%" height="15" fill="rgb(203,203,60)" fg:x="18736" fg:w="7"/><text x="43.9318%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (7 samples, 0.02%)</title><rect x="43.6818%" y="725" width="0.0163%" height="15" fill="rgb(213,213,63)" fg:x="18736" fg:w="7"/><text x="43.9318%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (25 samples, 0.06%)</title><rect x="43.7261%" y="741" width="0.0583%" height="15" fill="rgb(213,213,63)" fg:x="18755" fg:w="25"/><text x="43.9761%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (25 samples, 0.06%)</title><rect x="43.7261%" y="725" width="0.0583%" height="15" fill="rgb(185,185,53)" fg:x="18755" fg:w="25"/><text x="43.9761%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (25 samples, 0.06%)</title><rect x="43.7261%" y="709" width="0.0583%" height="15" fill="rgb(185,185,53)" fg:x="18755" fg:w="25"/><text x="43.9761%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (8 samples, 0.02%)</title><rect x="43.7657%" y="693" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (8 samples, 0.02%)</title><rect x="43.7657%" y="677" width="0.0187%" height="15" fill="rgb(208,208,62)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (8 samples, 0.02%)</title><rect x="43.7657%" y="661" width="0.0187%" height="15" fill="rgb(179,179,51)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (8 samples, 0.02%)</title><rect x="43.7657%" y="645" width="0.0187%" height="15" fill="rgb(182,182,52)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (8 samples, 0.02%)</title><rect x="43.7657%" y="629" width="0.0187%" height="15" fill="rgb(184,184,53)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (8 samples, 0.02%)</title><rect x="43.7657%" y="613" width="0.0187%" height="15" fill="rgb(246,117,117)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="623.50"></text></g><g><title>__lll_lock_wait (8 samples, 0.02%)</title><rect x="43.7657%" y="597" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="43.7657%" y="581" width="0.0187%" height="15" fill="rgb(254,128,128)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="591.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="43.7657%" y="565" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="575.50"></text></g><g><title>__x64_sys_futex (8 samples, 0.02%)</title><rect x="43.7657%" y="549" width="0.0187%" height="15" fill="rgb(248,121,121)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="559.50"></text></g><g><title>do_futex (8 samples, 0.02%)</title><rect x="43.7657%" y="533" width="0.0187%" height="15" fill="rgb(230,94,94)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="543.50"></text></g><g><title>futex_wait (8 samples, 0.02%)</title><rect x="43.7657%" y="517" width="0.0187%" height="15" fill="rgb(219,78,78)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="527.50"></text></g><g><title>futex_wait_queue_me (8 samples, 0.02%)</title><rect x="43.7657%" y="501" width="0.0187%" height="15" fill="rgb(204,56,56)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="511.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="43.7657%" y="485" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="495.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="43.7657%" y="469" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="479.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="43.7657%" y="453" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="43.7657%" y="437" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="43.7657%" y="421" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="431.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="43.7657%" y="405" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="43.7657%" y="389" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="399.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="43.7657%" y="373" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="18772" fg:w="8"/><text x="44.0157%" y="383.50"></text></g><g><title>[unknown] (73 samples, 0.17%)</title><rect x="43.6795%" y="901" width="0.1702%" height="15" fill="rgb(206,59,59)" fg:x="18735" fg:w="73"/><text x="43.9295%" y="911.50"></text></g><g><title>start_thread (65 samples, 0.15%)</title><rect x="43.6981%" y="885" width="0.1515%" height="15" fill="rgb(235,101,101)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (65 samples, 0.15%)</title><rect x="43.6981%" y="869" width="0.1515%" height="15" fill="rgb(191,191,56)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (65 samples, 0.15%)</title><rect x="43.6981%" y="853" width="0.1515%" height="15" fill="rgb(210,210,62)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (65 samples, 0.15%)</title><rect x="43.6981%" y="837" width="0.1515%" height="15" fill="rgb(205,205,61)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (65 samples, 0.15%)</title><rect x="43.6981%" y="821" width="0.1515%" height="15" fill="rgb(181,181,52)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (65 samples, 0.15%)</title><rect x="43.6981%" y="805" width="0.1515%" height="15" fill="rgb(182,182,52)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (65 samples, 0.15%)</title><rect x="43.6981%" y="789" width="0.1515%" height="15" fill="rgb(194,194,57)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (65 samples, 0.15%)</title><rect x="43.6981%" y="773" width="0.1515%" height="15" fill="rgb(222,222,67)" fg:x="18743" fg:w="65"/><text x="43.9481%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (61 samples, 0.14%)</title><rect x="43.7075%" y="757" width="0.1422%" height="15" fill="rgb(203,203,60)" fg:x="18747" fg:w="61"/><text x="43.9575%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (28 samples, 0.07%)</title><rect x="43.7844%" y="741" width="0.0653%" height="15" fill="rgb(219,219,66)" fg:x="18780" fg:w="28"/><text x="44.0344%" y="751.50"></text></g><g><title>ool-6-worker-23 (1,546 samples, 3.60%)</title><rect x="40.2919%" y="917" width="3.6044%" height="15" fill="rgb(254,129,129)" fg:x="17282" fg:w="1546"/><text x="40.5419%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (16 samples, 0.04%)</title><rect x="43.8590%" y="901" width="0.0373%" height="15" fill="rgb(181,181,52)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="911.50"></text></g><g><title>start_thread (16 samples, 0.04%)</title><rect x="43.8590%" y="885" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (16 samples, 0.04%)</title><rect x="43.8590%" y="869" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (16 samples, 0.04%)</title><rect x="43.8590%" y="853" width="0.0373%" height="15" fill="rgb(210,210,62)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (16 samples, 0.04%)</title><rect x="43.8590%" y="837" width="0.0373%" height="15" fill="rgb(205,205,61)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (16 samples, 0.04%)</title><rect x="43.8590%" y="821" width="0.0373%" height="15" fill="rgb(181,181,52)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (16 samples, 0.04%)</title><rect x="43.8590%" y="805" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (16 samples, 0.04%)</title><rect x="43.8590%" y="789" width="0.0373%" height="15" fill="rgb(204,204,60)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (16 samples, 0.04%)</title><rect x="43.8590%" y="773" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (16 samples, 0.04%)</title><rect x="43.8590%" y="757" width="0.0373%" height="15" fill="rgb(218,218,65)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="767.50"></text></g><g><title>__pthread_cond_wait (16 samples, 0.04%)</title><rect x="43.8590%" y="741" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (16 samples, 0.04%)</title><rect x="43.8590%" y="725" width="0.0373%" height="15" fill="rgb(203,55,55)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="735.50"></text></g><g><title>futex_wait_cancelable (16 samples, 0.04%)</title><rect x="43.8590%" y="709" width="0.0373%" height="15" fill="rgb(252,126,126)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="43.8590%" y="693" width="0.0373%" height="15" fill="rgb(254,128,128)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="703.50"></text></g><g><title>do_syscall_64 (16 samples, 0.04%)</title><rect x="43.8590%" y="677" width="0.0373%" height="15" fill="rgb(217,75,75)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="687.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.04%)</title><rect x="43.8590%" y="661" width="0.0373%" height="15" fill="rgb(248,121,121)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="671.50"></text></g><g><title>do_futex (16 samples, 0.04%)</title><rect x="43.8590%" y="645" width="0.0373%" height="15" fill="rgb(230,94,94)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="655.50"></text></g><g><title>futex_wait (16 samples, 0.04%)</title><rect x="43.8590%" y="629" width="0.0373%" height="15" fill="rgb(219,78,78)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="639.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.04%)</title><rect x="43.8590%" y="613" width="0.0373%" height="15" fill="rgb(204,56,56)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="623.50"></text></g><g><title>schedule (16 samples, 0.04%)</title><rect x="43.8590%" y="597" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="607.50"></text></g><g><title>__schedule (16 samples, 0.04%)</title><rect x="43.8590%" y="581" width="0.0373%" height="15" fill="rgb(209,64,64)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="591.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="43.8590%" y="565" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="43.8590%" y="549" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="43.8590%" y="533" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="543.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="43.8590%" y="517" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="43.8590%" y="501" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="511.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="43.8590%" y="485" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="18812" fg:w="16"/><text x="44.1090%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="44.0362%" y="725" width="0.0187%" height="15" fill="rgb(254,128,128)" fg:x="18888" fg:w="8"/><text x="44.2862%" y="735.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="44.0362%" y="709" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="18888" fg:w="8"/><text x="44.2862%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (6 samples, 0.01%)</title><rect x="44.0408%" y="693" width="0.0140%" height="15" fill="rgb(226,87,87)" fg:x="18890" fg:w="6"/><text x="44.2908%" y="703.50"></text></g><g><title>do_sched_yield (6 samples, 0.01%)</title><rect x="44.0408%" y="677" width="0.0140%" height="15" fill="rgb(219,78,78)" fg:x="18890" fg:w="6"/><text x="44.2908%" y="687.50"></text></g><g><title>schedule (6 samples, 0.01%)</title><rect x="44.0408%" y="661" width="0.0140%" height="15" fill="rgb(251,124,124)" fg:x="18890" fg:w="6"/><text x="44.2908%" y="671.50"></text></g><g><title>__schedule (6 samples, 0.01%)</title><rect x="44.0408%" y="645" width="0.0140%" height="15" fill="rgb(209,64,64)" fg:x="18890" fg:w="6"/><text x="44.2908%" y="655.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (69 samples, 0.16%)</title><rect x="43.8963%" y="757" width="0.1609%" height="15" fill="rgb(228,228,69)" fg:x="18828" fg:w="69"/><text x="44.1463%" y="767.50"></text></g><g><title>__GI___sched_yield (9 samples, 0.02%)</title><rect x="44.0362%" y="741" width="0.0210%" height="15" fill="rgb(247,118,118)" fg:x="18888" fg:w="9"/><text x="44.2862%" y="751.50"></text></g><g><title>[anon] (1,412 samples, 3.29%)</title><rect x="43.8963%" y="901" width="3.2920%" height="15" fill="rgb(252,126,126)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="911.50">[an..</text></g><g><title>start_thread (1,412 samples, 3.29%)</title><rect x="43.8963%" y="885" width="3.2920%" height="15" fill="rgb(235,101,101)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,412 samples, 3.29%)</title><rect x="43.8963%" y="869" width="3.2920%" height="15" fill="rgb(191,191,56)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,412 samples, 3.29%)</title><rect x="43.8963%" y="853" width="3.2920%" height="15" fill="rgb(210,210,62)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,412 samples, 3.29%)</title><rect x="43.8963%" y="837" width="3.2920%" height="15" fill="rgb(205,205,61)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,412 samples, 3.29%)</title><rect x="43.8963%" y="821" width="3.2920%" height="15" fill="rgb(181,181,52)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,412 samples, 3.29%)</title><rect x="43.8963%" y="805" width="3.2920%" height="15" fill="rgb(182,182,52)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,412 samples, 3.29%)</title><rect x="43.8963%" y="789" width="3.2920%" height="15" fill="rgb(194,194,57)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,412 samples, 3.29%)</title><rect x="43.8963%" y="773" width="3.2920%" height="15" fill="rgb(222,222,67)" fg:x="18828" fg:w="1412"/><text x="44.1463%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,343 samples, 3.13%)</title><rect x="44.0572%" y="757" width="3.1311%" height="15" fill="rgb(203,203,60)" fg:x="18897" fg:w="1343"/><text x="44.3072%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,343 samples, 3.13%)</title><rect x="44.0572%" y="741" width="3.1311%" height="15" fill="rgb(213,213,63)" fg:x="18897" fg:w="1343"/><text x="44.3072%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,343 samples, 3.13%)</title><rect x="44.0572%" y="725" width="3.1311%" height="15" fill="rgb(185,185,53)" fg:x="18897" fg:w="1343"/><text x="44.3072%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,343 samples, 3.13%)</title><rect x="44.0572%" y="709" width="3.1311%" height="15" fill="rgb(185,185,53)" fg:x="18897" fg:w="1343"/><text x="44.3072%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,343 samples, 3.13%)</title><rect x="44.0572%" y="693" width="3.1311%" height="15" fill="rgb(196,196,57)" fg:x="18897" fg:w="1343"/><text x="44.3072%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::nextLocalTask (6 samples, 0.01%)</title><rect x="47.1999%" y="757" width="0.0140%" height="15" fill="rgb(188,188,54)" fg:x="20245" fg:w="6"/><text x="47.4499%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (26 samples, 0.06%)</title><rect x="47.2326%" y="741" width="0.0606%" height="15" fill="rgb(213,213,63)" fg:x="20259" fg:w="26"/><text x="47.4826%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (26 samples, 0.06%)</title><rect x="47.2326%" y="725" width="0.0606%" height="15" fill="rgb(185,185,53)" fg:x="20259" fg:w="26"/><text x="47.4826%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (24 samples, 0.06%)</title><rect x="47.2372%" y="709" width="0.0560%" height="15" fill="rgb(185,185,53)" fg:x="20261" fg:w="24"/><text x="47.4872%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (16 samples, 0.04%)</title><rect x="47.2559%" y="693" width="0.0373%" height="15" fill="rgb(196,196,57)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (16 samples, 0.04%)</title><rect x="47.2559%" y="677" width="0.0373%" height="15" fill="rgb(208,208,62)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (16 samples, 0.04%)</title><rect x="47.2559%" y="661" width="0.0373%" height="15" fill="rgb(179,179,51)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (16 samples, 0.04%)</title><rect x="47.2559%" y="645" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (16 samples, 0.04%)</title><rect x="47.2559%" y="629" width="0.0373%" height="15" fill="rgb(184,184,53)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (16 samples, 0.04%)</title><rect x="47.2559%" y="613" width="0.0373%" height="15" fill="rgb(246,117,117)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="623.50"></text></g><g><title>__lll_lock_wait (16 samples, 0.04%)</title><rect x="47.2559%" y="597" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="47.2559%" y="581" width="0.0373%" height="15" fill="rgb(254,128,128)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="591.50"></text></g><g><title>do_syscall_64 (16 samples, 0.04%)</title><rect x="47.2559%" y="565" width="0.0373%" height="15" fill="rgb(217,75,75)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="575.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.04%)</title><rect x="47.2559%" y="549" width="0.0373%" height="15" fill="rgb(248,121,121)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="559.50"></text></g><g><title>do_futex (16 samples, 0.04%)</title><rect x="47.2559%" y="533" width="0.0373%" height="15" fill="rgb(230,94,94)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="543.50"></text></g><g><title>futex_wait (16 samples, 0.04%)</title><rect x="47.2559%" y="517" width="0.0373%" height="15" fill="rgb(219,78,78)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="527.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.04%)</title><rect x="47.2559%" y="501" width="0.0373%" height="15" fill="rgb(204,56,56)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="511.50"></text></g><g><title>schedule (16 samples, 0.04%)</title><rect x="47.2559%" y="485" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="495.50"></text></g><g><title>__schedule (16 samples, 0.04%)</title><rect x="47.2559%" y="469" width="0.0373%" height="15" fill="rgb(209,64,64)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="479.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="47.2559%" y="453" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="47.2559%" y="437" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="47.2559%" y="421" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="431.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="47.2559%" y="405" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="47.2559%" y="389" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="399.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="47.2559%" y="373" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="20269" fg:w="16"/><text x="47.5059%" y="383.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (58 samples, 0.14%)</title><rect x="47.2233%" y="757" width="0.1352%" height="15" fill="rgb(203,203,60)" fg:x="20255" fg:w="58"/><text x="47.4733%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (28 samples, 0.07%)</title><rect x="47.2932%" y="741" width="0.0653%" height="15" fill="rgb(219,219,66)" fg:x="20285" fg:w="28"/><text x="47.5432%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (70 samples, 0.16%)</title><rect x="47.1976%" y="773" width="0.1632%" height="15" fill="rgb(222,222,67)" fg:x="20244" fg:w="70"/><text x="47.4476%" y="783.50"></text></g><g><title>[unknown] (75 samples, 0.17%)</title><rect x="47.1883%" y="901" width="0.1749%" height="15" fill="rgb(206,59,59)" fg:x="20240" fg:w="75"/><text x="47.4383%" y="911.50"></text></g><g><title>start_thread (71 samples, 0.17%)</title><rect x="47.1976%" y="885" width="0.1655%" height="15" fill="rgb(235,101,101)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (71 samples, 0.17%)</title><rect x="47.1976%" y="869" width="0.1655%" height="15" fill="rgb(191,191,56)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (71 samples, 0.17%)</title><rect x="47.1976%" y="853" width="0.1655%" height="15" fill="rgb(210,210,62)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (71 samples, 0.17%)</title><rect x="47.1976%" y="837" width="0.1655%" height="15" fill="rgb(205,205,61)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (71 samples, 0.17%)</title><rect x="47.1976%" y="821" width="0.1655%" height="15" fill="rgb(181,181,52)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (71 samples, 0.17%)</title><rect x="47.1976%" y="805" width="0.1655%" height="15" fill="rgb(182,182,52)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (71 samples, 0.17%)</title><rect x="47.1976%" y="789" width="0.1655%" height="15" fill="rgb(194,194,57)" fg:x="20244" fg:w="71"/><text x="47.4476%" y="799.50"></text></g><g><title>ool-6-worker-25 (1,529 samples, 3.56%)</title><rect x="43.8963%" y="917" width="3.5648%" height="15" fill="rgb(254,129,129)" fg:x="18828" fg:w="1529"/><text x="44.1463%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (36 samples, 0.08%)</title><rect x="47.3771%" y="901" width="0.0839%" height="15" fill="rgb(181,181,52)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="911.50"></text></g><g><title>start_thread (36 samples, 0.08%)</title><rect x="47.3771%" y="885" width="0.0839%" height="15" fill="rgb(235,101,101)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (36 samples, 0.08%)</title><rect x="47.3771%" y="869" width="0.0839%" height="15" fill="rgb(191,191,56)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (36 samples, 0.08%)</title><rect x="47.3771%" y="853" width="0.0839%" height="15" fill="rgb(210,210,62)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (36 samples, 0.08%)</title><rect x="47.3771%" y="837" width="0.0839%" height="15" fill="rgb(205,205,61)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (36 samples, 0.08%)</title><rect x="47.3771%" y="821" width="0.0839%" height="15" fill="rgb(181,181,52)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (36 samples, 0.08%)</title><rect x="47.3771%" y="805" width="0.0839%" height="15" fill="rgb(182,182,52)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (36 samples, 0.08%)</title><rect x="47.3771%" y="789" width="0.0839%" height="15" fill="rgb(204,204,60)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (36 samples, 0.08%)</title><rect x="47.3771%" y="773" width="0.0839%" height="15" fill="rgb(191,191,56)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (36 samples, 0.08%)</title><rect x="47.3771%" y="757" width="0.0839%" height="15" fill="rgb(218,218,65)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="767.50"></text></g><g><title>__pthread_cond_wait (36 samples, 0.08%)</title><rect x="47.3771%" y="741" width="0.0839%" height="15" fill="rgb(240,109,109)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (36 samples, 0.08%)</title><rect x="47.3771%" y="725" width="0.0839%" height="15" fill="rgb(203,55,55)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="735.50"></text></g><g><title>futex_wait_cancelable (36 samples, 0.08%)</title><rect x="47.3771%" y="709" width="0.0839%" height="15" fill="rgb(252,126,126)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.08%)</title><rect x="47.3771%" y="693" width="0.0839%" height="15" fill="rgb(254,128,128)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="703.50"></text></g><g><title>do_syscall_64 (36 samples, 0.08%)</title><rect x="47.3771%" y="677" width="0.0839%" height="15" fill="rgb(217,75,75)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="687.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.08%)</title><rect x="47.3771%" y="661" width="0.0839%" height="15" fill="rgb(248,121,121)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="671.50"></text></g><g><title>do_futex (36 samples, 0.08%)</title><rect x="47.3771%" y="645" width="0.0839%" height="15" fill="rgb(230,94,94)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="655.50"></text></g><g><title>futex_wait (36 samples, 0.08%)</title><rect x="47.3771%" y="629" width="0.0839%" height="15" fill="rgb(219,78,78)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="639.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.08%)</title><rect x="47.3771%" y="613" width="0.0839%" height="15" fill="rgb(204,56,56)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="623.50"></text></g><g><title>schedule (36 samples, 0.08%)</title><rect x="47.3771%" y="597" width="0.0839%" height="15" fill="rgb(251,124,124)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="607.50"></text></g><g><title>__schedule (36 samples, 0.08%)</title><rect x="47.3771%" y="581" width="0.0839%" height="15" fill="rgb(209,64,64)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="591.50"></text></g><g><title>finish_task_switch (36 samples, 0.08%)</title><rect x="47.3771%" y="565" width="0.0839%" height="15" fill="rgb(251,124,124)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.08%)</title><rect x="47.3771%" y="549" width="0.0839%" height="15" fill="rgb(240,109,109)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (36 samples, 0.08%)</title><rect x="47.3771%" y="533" width="0.0839%" height="15" fill="rgb(71,219,71)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="543.50"></text></g><g><title>x86_pmu_enable (36 samples, 0.08%)</title><rect x="47.3771%" y="517" width="0.0839%" height="15" fill="rgb(238,105,105)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (36 samples, 0.08%)</title><rect x="47.3771%" y="501" width="0.0839%" height="15" fill="rgb(238,105,105)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="511.50"></text></g><g><title>native_write_msr (36 samples, 0.08%)</title><rect x="47.3771%" y="485" width="0.0839%" height="15" fill="rgb(212,68,68)" fg:x="20321" fg:w="36"/><text x="47.6271%" y="495.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (90 samples, 0.21%)</title><rect x="47.4634%" y="757" width="0.2098%" height="15" fill="rgb(228,228,69)" fg:x="20358" fg:w="90"/><text x="47.7134%" y="767.50"></text></g><g><title>__GI___sched_yield (14 samples, 0.03%)</title><rect x="47.6406%" y="741" width="0.0326%" height="15" fill="rgb(247,118,118)" fg:x="20434" fg:w="14"/><text x="47.8906%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (11 samples, 0.03%)</title><rect x="47.6476%" y="725" width="0.0256%" height="15" fill="rgb(254,128,128)" fg:x="20437" fg:w="11"/><text x="47.8976%" y="735.50"></text></g><g><title>do_syscall_64 (11 samples, 0.03%)</title><rect x="47.6476%" y="709" width="0.0256%" height="15" fill="rgb(217,75,75)" fg:x="20437" fg:w="11"/><text x="47.8976%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (8 samples, 0.02%)</title><rect x="47.6546%" y="693" width="0.0187%" height="15" fill="rgb(226,87,87)" fg:x="20440" fg:w="8"/><text x="47.9046%" y="703.50"></text></g><g><title>do_sched_yield (8 samples, 0.02%)</title><rect x="47.6546%" y="677" width="0.0187%" height="15" fill="rgb(219,78,78)" fg:x="20440" fg:w="8"/><text x="47.9046%" y="687.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="47.6546%" y="661" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="20440" fg:w="8"/><text x="47.9046%" y="671.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="47.6546%" y="645" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="20440" fg:w="8"/><text x="47.9046%" y="655.50"></text></g><g><title>[anon] (1,446 samples, 3.37%)</title><rect x="47.4611%" y="901" width="3.3713%" height="15" fill="rgb(252,126,126)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="911.50">[an..</text></g><g><title>start_thread (1,446 samples, 3.37%)</title><rect x="47.4611%" y="885" width="3.3713%" height="15" fill="rgb(235,101,101)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,446 samples, 3.37%)</title><rect x="47.4611%" y="869" width="3.3713%" height="15" fill="rgb(191,191,56)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,446 samples, 3.37%)</title><rect x="47.4611%" y="853" width="3.3713%" height="15" fill="rgb(210,210,62)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,446 samples, 3.37%)</title><rect x="47.4611%" y="837" width="3.3713%" height="15" fill="rgb(205,205,61)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,446 samples, 3.37%)</title><rect x="47.4611%" y="821" width="3.3713%" height="15" fill="rgb(181,181,52)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,446 samples, 3.37%)</title><rect x="47.4611%" y="805" width="3.3713%" height="15" fill="rgb(182,182,52)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="815.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,446 samples, 3.37%)</title><rect x="47.4611%" y="789" width="3.3713%" height="15" fill="rgb(194,194,57)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="799.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,446 samples, 3.37%)</title><rect x="47.4611%" y="773" width="3.3713%" height="15" fill="rgb(222,222,67)" fg:x="20357" fg:w="1446"/><text x="47.7111%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,355 samples, 3.16%)</title><rect x="47.6732%" y="757" width="3.1591%" height="15" fill="rgb(203,203,60)" fg:x="20448" fg:w="1355"/><text x="47.9232%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,355 samples, 3.16%)</title><rect x="47.6732%" y="741" width="3.1591%" height="15" fill="rgb(213,213,63)" fg:x="20448" fg:w="1355"/><text x="47.9232%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,355 samples, 3.16%)</title><rect x="47.6732%" y="725" width="3.1591%" height="15" fill="rgb(185,185,53)" fg:x="20448" fg:w="1355"/><text x="47.9232%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,355 samples, 3.16%)</title><rect x="47.6732%" y="709" width="3.1591%" height="15" fill="rgb(185,185,53)" fg:x="20448" fg:w="1355"/><text x="47.9232%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,355 samples, 3.16%)</title><rect x="47.6732%" y="693" width="3.1591%" height="15" fill="rgb(196,196,57)" fg:x="20448" fg:w="1355"/><text x="47.9232%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (45 samples, 0.10%)</title><rect x="50.8556%" y="741" width="0.1049%" height="15" fill="rgb(213,213,63)" fg:x="21813" fg:w="45"/><text x="51.1056%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (45 samples, 0.10%)</title><rect x="50.8556%" y="725" width="0.1049%" height="15" fill="rgb(185,185,53)" fg:x="21813" fg:w="45"/><text x="51.1056%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (43 samples, 0.10%)</title><rect x="50.8603%" y="709" width="0.1003%" height="15" fill="rgb(185,185,53)" fg:x="21815" fg:w="43"/><text x="51.1103%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (25 samples, 0.06%)</title><rect x="50.9023%" y="693" width="0.0583%" height="15" fill="rgb(196,196,57)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (25 samples, 0.06%)</title><rect x="50.9023%" y="677" width="0.0583%" height="15" fill="rgb(208,208,62)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (25 samples, 0.06%)</title><rect x="50.9023%" y="661" width="0.0583%" height="15" fill="rgb(179,179,51)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (25 samples, 0.06%)</title><rect x="50.9023%" y="645" width="0.0583%" height="15" fill="rgb(182,182,52)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (25 samples, 0.06%)</title><rect x="50.9023%" y="629" width="0.0583%" height="15" fill="rgb(184,184,53)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (25 samples, 0.06%)</title><rect x="50.9023%" y="613" width="0.0583%" height="15" fill="rgb(246,117,117)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="623.50"></text></g><g><title>__lll_lock_wait (25 samples, 0.06%)</title><rect x="50.9023%" y="597" width="0.0583%" height="15" fill="rgb(235,101,101)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.06%)</title><rect x="50.9023%" y="581" width="0.0583%" height="15" fill="rgb(254,128,128)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="591.50"></text></g><g><title>do_syscall_64 (25 samples, 0.06%)</title><rect x="50.9023%" y="565" width="0.0583%" height="15" fill="rgb(217,75,75)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="575.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.06%)</title><rect x="50.9023%" y="549" width="0.0583%" height="15" fill="rgb(248,121,121)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="559.50"></text></g><g><title>do_futex (25 samples, 0.06%)</title><rect x="50.9023%" y="533" width="0.0583%" height="15" fill="rgb(230,94,94)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="543.50"></text></g><g><title>futex_wait (25 samples, 0.06%)</title><rect x="50.9023%" y="517" width="0.0583%" height="15" fill="rgb(219,78,78)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="527.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.06%)</title><rect x="50.9023%" y="501" width="0.0583%" height="15" fill="rgb(204,56,56)" fg:x="21833" fg:w="25"/><text x="51.1523%" y="511.50"></text></g><g><title>schedule (24 samples, 0.06%)</title><rect x="50.9046%" y="485" width="0.0560%" height="15" fill="rgb(251,124,124)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="495.50"></text></g><g><title>__schedule (24 samples, 0.06%)</title><rect x="50.9046%" y="469" width="0.0560%" height="15" fill="rgb(209,64,64)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="479.50"></text></g><g><title>finish_task_switch (24 samples, 0.06%)</title><rect x="50.9046%" y="453" width="0.0560%" height="15" fill="rgb(251,124,124)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.06%)</title><rect x="50.9046%" y="437" width="0.0560%" height="15" fill="rgb(240,109,109)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (24 samples, 0.06%)</title><rect x="50.9046%" y="421" width="0.0560%" height="15" fill="rgb(71,219,71)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="431.50"></text></g><g><title>x86_pmu_enable (24 samples, 0.06%)</title><rect x="50.9046%" y="405" width="0.0560%" height="15" fill="rgb(238,105,105)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (24 samples, 0.06%)</title><rect x="50.9046%" y="389" width="0.0560%" height="15" fill="rgb(238,105,105)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="399.50"></text></g><g><title>native_write_msr (24 samples, 0.06%)</title><rect x="50.9046%" y="373" width="0.0560%" height="15" fill="rgb(212,68,68)" fg:x="21834" fg:w="24"/><text x="51.1546%" y="383.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (83 samples, 0.19%)</title><rect x="50.8393%" y="773" width="0.1935%" height="15" fill="rgb(222,222,67)" fg:x="21806" fg:w="83"/><text x="51.0893%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (81 samples, 0.19%)</title><rect x="50.8440%" y="757" width="0.1888%" height="15" fill="rgb(203,203,60)" fg:x="21808" fg:w="81"/><text x="51.0940%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (31 samples, 0.07%)</title><rect x="50.9606%" y="741" width="0.0723%" height="15" fill="rgb(219,219,66)" fg:x="21858" fg:w="31"/><text x="51.2106%" y="751.50"></text></g><g><title>[unknown] (89 samples, 0.21%)</title><rect x="50.8323%" y="901" width="0.2075%" height="15" fill="rgb(206,59,59)" fg:x="21803" fg:w="89"/><text x="51.0823%" y="911.50"></text></g><g><title>start_thread (86 samples, 0.20%)</title><rect x="50.8393%" y="885" width="0.2005%" height="15" fill="rgb(235,101,101)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (86 samples, 0.20%)</title><rect x="50.8393%" y="869" width="0.2005%" height="15" fill="rgb(191,191,56)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (86 samples, 0.20%)</title><rect x="50.8393%" y="853" width="0.2005%" height="15" fill="rgb(210,210,62)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (86 samples, 0.20%)</title><rect x="50.8393%" y="837" width="0.2005%" height="15" fill="rgb(205,205,61)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (86 samples, 0.20%)</title><rect x="50.8393%" y="821" width="0.2005%" height="15" fill="rgb(181,181,52)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (86 samples, 0.20%)</title><rect x="50.8393%" y="805" width="0.2005%" height="15" fill="rgb(182,182,52)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (86 samples, 0.20%)</title><rect x="50.8393%" y="789" width="0.2005%" height="15" fill="rgb(194,194,57)" fg:x="21806" fg:w="86"/><text x="51.0893%" y="799.50"></text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="51.0515%" y="565" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="21897" fg:w="20"/><text x="51.3015%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="51.0515%" y="549" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="21897" fg:w="20"/><text x="51.3015%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="51.0515%" y="533" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="21897" fg:w="20"/><text x="51.3015%" y="543.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="51.0515%" y="517" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="21897" fg:w="20"/><text x="51.3015%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="51.0515%" y="501" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="21897" fg:w="20"/><text x="51.3015%" y="511.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="51.0515%" y="485" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="21897" fg:w="20"/><text x="51.3015%" y="495.50"></text></g><g><title>ool-6-worker-27 (1,561 samples, 3.64%)</title><rect x="47.4611%" y="917" width="3.6394%" height="15" fill="rgb(254,129,129)" fg:x="20357" fg:w="1561"/><text x="47.7111%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (21 samples, 0.05%)</title><rect x="51.0515%" y="901" width="0.0490%" height="15" fill="rgb(181,181,52)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="911.50"></text></g><g><title>start_thread (21 samples, 0.05%)</title><rect x="51.0515%" y="885" width="0.0490%" height="15" fill="rgb(235,101,101)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (21 samples, 0.05%)</title><rect x="51.0515%" y="869" width="0.0490%" height="15" fill="rgb(191,191,56)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (21 samples, 0.05%)</title><rect x="51.0515%" y="853" width="0.0490%" height="15" fill="rgb(210,210,62)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (21 samples, 0.05%)</title><rect x="51.0515%" y="837" width="0.0490%" height="15" fill="rgb(205,205,61)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (21 samples, 0.05%)</title><rect x="51.0515%" y="821" width="0.0490%" height="15" fill="rgb(181,181,52)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (21 samples, 0.05%)</title><rect x="51.0515%" y="805" width="0.0490%" height="15" fill="rgb(182,182,52)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (21 samples, 0.05%)</title><rect x="51.0515%" y="789" width="0.0490%" height="15" fill="rgb(204,204,60)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (21 samples, 0.05%)</title><rect x="51.0515%" y="773" width="0.0490%" height="15" fill="rgb(191,191,56)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (21 samples, 0.05%)</title><rect x="51.0515%" y="757" width="0.0490%" height="15" fill="rgb(218,218,65)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="767.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.05%)</title><rect x="51.0515%" y="741" width="0.0490%" height="15" fill="rgb(240,109,109)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.05%)</title><rect x="51.0515%" y="725" width="0.0490%" height="15" fill="rgb(203,55,55)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="735.50"></text></g><g><title>futex_wait_cancelable (21 samples, 0.05%)</title><rect x="51.0515%" y="709" width="0.0490%" height="15" fill="rgb(252,126,126)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.05%)</title><rect x="51.0515%" y="693" width="0.0490%" height="15" fill="rgb(254,128,128)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="703.50"></text></g><g><title>do_syscall_64 (21 samples, 0.05%)</title><rect x="51.0515%" y="677" width="0.0490%" height="15" fill="rgb(217,75,75)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="687.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.05%)</title><rect x="51.0515%" y="661" width="0.0490%" height="15" fill="rgb(248,121,121)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="671.50"></text></g><g><title>do_futex (21 samples, 0.05%)</title><rect x="51.0515%" y="645" width="0.0490%" height="15" fill="rgb(230,94,94)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="655.50"></text></g><g><title>futex_wait (21 samples, 0.05%)</title><rect x="51.0515%" y="629" width="0.0490%" height="15" fill="rgb(219,78,78)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="639.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.05%)</title><rect x="51.0515%" y="613" width="0.0490%" height="15" fill="rgb(204,56,56)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="623.50"></text></g><g><title>schedule (21 samples, 0.05%)</title><rect x="51.0515%" y="597" width="0.0490%" height="15" fill="rgb(251,124,124)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="607.50"></text></g><g><title>__schedule (21 samples, 0.05%)</title><rect x="51.0515%" y="581" width="0.0490%" height="15" fill="rgb(209,64,64)" fg:x="21897" fg:w="21"/><text x="51.3015%" y="591.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="51.2497%" y="629" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="21982" fg:w="16"/><text x="51.4997%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="51.2497%" y="613" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="21982" fg:w="16"/><text x="51.4997%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="51.2497%" y="597" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="21982" fg:w="16"/><text x="51.4997%" y="607.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="51.2497%" y="581" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="21982" fg:w="16"/><text x="51.4997%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="51.2497%" y="565" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="21982" fg:w="16"/><text x="51.4997%" y="575.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="51.2497%" y="549" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="21982" fg:w="16"/><text x="51.4997%" y="559.50"></text></g><g><title>__schedule (20 samples, 0.05%)</title><rect x="51.2473%" y="645" width="0.0466%" height="15" fill="rgb(209,64,64)" fg:x="21981" fg:w="20"/><text x="51.4973%" y="655.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::poll (85 samples, 0.20%)</title><rect x="51.1004%" y="757" width="0.1982%" height="15" fill="rgb(228,228,69)" fg:x="21918" fg:w="85"/><text x="51.3504%" y="767.50"></text></g><g><title>__GI___sched_yield (27 samples, 0.06%)</title><rect x="51.2357%" y="741" width="0.0629%" height="15" fill="rgb(247,118,118)" fg:x="21976" fg:w="27"/><text x="51.4857%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.06%)</title><rect x="51.2357%" y="725" width="0.0629%" height="15" fill="rgb(254,128,128)" fg:x="21976" fg:w="27"/><text x="51.4857%" y="735.50"></text></g><g><title>do_syscall_64 (27 samples, 0.06%)</title><rect x="51.2357%" y="709" width="0.0629%" height="15" fill="rgb(217,75,75)" fg:x="21976" fg:w="27"/><text x="51.4857%" y="719.50"></text></g><g><title>__x64_sys_sched_yield (24 samples, 0.06%)</title><rect x="51.2427%" y="693" width="0.0560%" height="15" fill="rgb(226,87,87)" fg:x="21979" fg:w="24"/><text x="51.4927%" y="703.50"></text></g><g><title>do_sched_yield (23 samples, 0.05%)</title><rect x="51.2450%" y="677" width="0.0536%" height="15" fill="rgb(219,78,78)" fg:x="21980" fg:w="23"/><text x="51.4950%" y="687.50"></text></g><g><title>schedule (23 samples, 0.05%)</title><rect x="51.2450%" y="661" width="0.0536%" height="15" fill="rgb(251,124,124)" fg:x="21980" fg:w="23"/><text x="51.4950%" y="671.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (1,486 samples, 3.46%)</title><rect x="51.1004%" y="773" width="3.4645%" height="15" fill="rgb(222,222,67)" fg:x="21918" fg:w="1486"/><text x="51.3504%" y="783.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (1,401 samples, 3.27%)</title><rect x="51.2986%" y="757" width="3.2663%" height="15" fill="rgb(203,203,60)" fg:x="22003" fg:w="1401"/><text x="51.5486%" y="767.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (1,401 samples, 3.27%)</title><rect x="51.2986%" y="741" width="3.2663%" height="15" fill="rgb(213,213,63)" fg:x="22003" fg:w="1401"/><text x="51.5486%" y="751.50">jav..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,401 samples, 3.27%)</title><rect x="51.2986%" y="725" width="3.2663%" height="15" fill="rgb(185,185,53)" fg:x="22003" fg:w="1401"/><text x="51.5486%" y="735.50">io...</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (1,401 samples, 3.27%)</title><rect x="51.2986%" y="709" width="3.2663%" height="15" fill="rgb(185,185,53)" fg:x="22003" fg:w="1401"/><text x="51.5486%" y="719.50">io...</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (1,401 samples, 3.27%)</title><rect x="51.2986%" y="693" width="3.2663%" height="15" fill="rgb(196,196,57)" fg:x="22003" fg:w="1401"/><text x="51.5486%" y="703.50">io...</text></g><g><title>java.util.concurrent.ForkJoinPool::scan (1,487 samples, 3.47%)</title><rect x="51.1004%" y="789" width="3.4668%" height="15" fill="rgb(194,194,57)" fg:x="21918" fg:w="1487"/><text x="51.3504%" y="799.50">jav..</text></g><g><title>[anon] (1,488 samples, 3.47%)</title><rect x="51.1004%" y="901" width="3.4692%" height="15" fill="rgb(252,126,126)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="911.50">[an..</text></g><g><title>start_thread (1,488 samples, 3.47%)</title><rect x="51.1004%" y="885" width="3.4692%" height="15" fill="rgb(235,101,101)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="895.50">sta..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,488 samples, 3.47%)</title><rect x="51.1004%" y="869" width="3.4692%" height="15" fill="rgb(191,191,56)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="879.50">com..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,488 samples, 3.47%)</title><rect x="51.1004%" y="853" width="3.4692%" height="15" fill="rgb(210,210,62)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="863.50">com..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,488 samples, 3.47%)</title><rect x="51.1004%" y="837" width="3.4692%" height="15" fill="rgb(205,205,61)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="847.50">com..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (1,488 samples, 3.47%)</title><rect x="51.1004%" y="821" width="3.4692%" height="15" fill="rgb(181,181,52)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="831.50">jav..</text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (1,488 samples, 3.47%)</title><rect x="51.1004%" y="805" width="3.4692%" height="15" fill="rgb(182,182,52)" fg:x="21918" fg:w="1488"/><text x="51.3504%" y="815.50">jav..</text></g><g><title>dup@plt (6 samples, 0.01%)</title><rect x="54.5696%" y="885" width="0.0140%" height="15" fill="rgb(215,73,73)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="895.50"></text></g><g><title>start_thread (6 samples, 0.01%)</title><rect x="54.5696%" y="869" width="0.0140%" height="15" fill="rgb(235,101,101)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="879.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (6 samples, 0.01%)</title><rect x="54.5696%" y="853" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="863.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (6 samples, 0.01%)</title><rect x="54.5696%" y="837" width="0.0140%" height="15" fill="rgb(210,210,62)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="847.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (6 samples, 0.01%)</title><rect x="54.5696%" y="821" width="0.0140%" height="15" fill="rgb(205,205,61)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (6 samples, 0.01%)</title><rect x="54.5696%" y="805" width="0.0140%" height="15" fill="rgb(181,181,52)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (6 samples, 0.01%)</title><rect x="54.5696%" y="789" width="0.0140%" height="15" fill="rgb(182,182,52)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="799.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (6 samples, 0.01%)</title><rect x="54.5696%" y="773" width="0.0140%" height="15" fill="rgb(194,194,57)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (6 samples, 0.01%)</title><rect x="54.5696%" y="757" width="0.0140%" height="15" fill="rgb(222,222,67)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (6 samples, 0.01%)</title><rect x="54.5696%" y="741" width="0.0140%" height="15" fill="rgb(203,203,60)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="751.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (6 samples, 0.01%)</title><rect x="54.5696%" y="725" width="0.0140%" height="15" fill="rgb(213,213,63)" fg:x="23406" fg:w="6"/><text x="54.8196%" y="735.50"></text></g><g><title>java.util.concurrent.ForkJoinTask$AdaptedCallable::exec (36 samples, 0.08%)</title><rect x="54.6023%" y="741" width="0.0839%" height="15" fill="rgb(213,213,63)" fg:x="23420" fg:w="36"/><text x="54.8523%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (36 samples, 0.08%)</title><rect x="54.6023%" y="725" width="0.0839%" height="15" fill="rgb(185,185,53)" fg:x="23420" fg:w="36"/><text x="54.8523%" y="735.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (35 samples, 0.08%)</title><rect x="54.6046%" y="709" width="0.0816%" height="15" fill="rgb(185,185,53)" fg:x="23421" fg:w="35"/><text x="54.8546%" y="719.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (16 samples, 0.04%)</title><rect x="54.6489%" y="693" width="0.0373%" height="15" fill="rgb(196,196,57)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (16 samples, 0.04%)</title><rect x="54.6489%" y="677" width="0.0373%" height="15" fill="rgb(208,208,62)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (16 samples, 0.04%)</title><rect x="54.6489%" y="661" width="0.0373%" height="15" fill="rgb(179,179,51)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="671.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (16 samples, 0.04%)</title><rect x="54.6489%" y="645" width="0.0373%" height="15" fill="rgb(182,182,52)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="655.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (16 samples, 0.04%)</title><rect x="54.6489%" y="629" width="0.0373%" height="15" fill="rgb(184,184,53)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="639.50"></text></g><g><title>__GI___pthread_mutex_lock (16 samples, 0.04%)</title><rect x="54.6489%" y="613" width="0.0373%" height="15" fill="rgb(246,117,117)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="623.50"></text></g><g><title>__lll_lock_wait (16 samples, 0.04%)</title><rect x="54.6489%" y="597" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="54.6489%" y="581" width="0.0373%" height="15" fill="rgb(254,128,128)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="591.50"></text></g><g><title>do_syscall_64 (16 samples, 0.04%)</title><rect x="54.6489%" y="565" width="0.0373%" height="15" fill="rgb(217,75,75)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="575.50"></text></g><g><title>__x64_sys_futex (16 samples, 0.04%)</title><rect x="54.6489%" y="549" width="0.0373%" height="15" fill="rgb(248,121,121)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="559.50"></text></g><g><title>do_futex (16 samples, 0.04%)</title><rect x="54.6489%" y="533" width="0.0373%" height="15" fill="rgb(230,94,94)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="543.50"></text></g><g><title>futex_wait (16 samples, 0.04%)</title><rect x="54.6489%" y="517" width="0.0373%" height="15" fill="rgb(219,78,78)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="527.50"></text></g><g><title>futex_wait_queue_me (16 samples, 0.04%)</title><rect x="54.6489%" y="501" width="0.0373%" height="15" fill="rgb(204,56,56)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="511.50"></text></g><g><title>schedule (16 samples, 0.04%)</title><rect x="54.6489%" y="485" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="495.50"></text></g><g><title>__schedule (16 samples, 0.04%)</title><rect x="54.6489%" y="469" width="0.0373%" height="15" fill="rgb(209,64,64)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="479.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="54.6489%" y="453" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (16 samples, 0.04%)</title><rect x="54.6489%" y="437" width="0.0373%" height="15" fill="rgb(240,109,109)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="447.50"></text></g><g><title>perf_pmu_enable.part.0 (16 samples, 0.04%)</title><rect x="54.6489%" y="421" width="0.0373%" height="15" fill="rgb(71,219,71)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="431.50"></text></g><g><title>x86_pmu_enable (16 samples, 0.04%)</title><rect x="54.6489%" y="405" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="415.50"></text></g><g><title>intel_tfa_pmu_enable_all (16 samples, 0.04%)</title><rect x="54.6489%" y="389" width="0.0373%" height="15" fill="rgb(238,105,105)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="399.50"></text></g><g><title>native_write_msr (16 samples, 0.04%)</title><rect x="54.6489%" y="373" width="0.0373%" height="15" fill="rgb(212,68,68)" fg:x="23440" fg:w="16"/><text x="54.8989%" y="383.50"></text></g><g><title>java.util.concurrent.ForkJoinPool$WorkQueue::topLevelExec (62 samples, 0.14%)</title><rect x="54.5836%" y="773" width="0.1445%" height="15" fill="rgb(222,222,67)" fg:x="23412" fg:w="62"/><text x="54.8336%" y="783.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::doExec (56 samples, 0.13%)</title><rect x="54.5976%" y="757" width="0.1306%" height="15" fill="rgb(203,203,60)" fg:x="23418" fg:w="56"/><text x="54.8476%" y="767.50"></text></g><g><title>java.util.concurrent.ForkJoinTask::setDone (18 samples, 0.04%)</title><rect x="54.6862%" y="741" width="0.0420%" height="15" fill="rgb(219,219,66)" fg:x="23456" fg:w="18"/><text x="54.9362%" y="751.50"></text></g><g><title>[unknown] (69 samples, 0.16%)</title><rect x="54.5696%" y="901" width="0.1609%" height="15" fill="rgb(206,59,59)" fg:x="23406" fg:w="69"/><text x="54.8196%" y="911.50"></text></g><g><title>start_thread (63 samples, 0.15%)</title><rect x="54.5836%" y="885" width="0.1469%" height="15" fill="rgb(235,101,101)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (63 samples, 0.15%)</title><rect x="54.5836%" y="869" width="0.1469%" height="15" fill="rgb(191,191,56)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (63 samples, 0.15%)</title><rect x="54.5836%" y="853" width="0.1469%" height="15" fill="rgb(210,210,62)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (63 samples, 0.15%)</title><rect x="54.5836%" y="837" width="0.1469%" height="15" fill="rgb(205,205,61)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (63 samples, 0.15%)</title><rect x="54.5836%" y="821" width="0.1469%" height="15" fill="rgb(181,181,52)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (63 samples, 0.15%)</title><rect x="54.5836%" y="805" width="0.1469%" height="15" fill="rgb(182,182,52)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="815.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::scan (63 samples, 0.15%)</title><rect x="54.5836%" y="789" width="0.1469%" height="15" fill="rgb(194,194,57)" fg:x="23412" fg:w="63"/><text x="54.8336%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (15 samples, 0.03%)</title><rect x="54.7421%" y="549" width="0.0350%" height="15" fill="rgb(240,109,109)" fg:x="23480" fg:w="15"/><text x="54.9921%" y="559.50"></text></g><g><title>perf_pmu_enable.part.0 (15 samples, 0.03%)</title><rect x="54.7421%" y="533" width="0.0350%" height="15" fill="rgb(71,219,71)" fg:x="23480" fg:w="15"/><text x="54.9921%" y="543.50"></text></g><g><title>x86_pmu_enable (15 samples, 0.03%)</title><rect x="54.7421%" y="517" width="0.0350%" height="15" fill="rgb(238,105,105)" fg:x="23480" fg:w="15"/><text x="54.9921%" y="527.50"></text></g><g><title>intel_tfa_pmu_enable_all (15 samples, 0.03%)</title><rect x="54.7421%" y="501" width="0.0350%" height="15" fill="rgb(238,105,105)" fg:x="23480" fg:w="15"/><text x="54.9921%" y="511.50"></text></g><g><title>native_write_msr (15 samples, 0.03%)</title><rect x="54.7421%" y="485" width="0.0350%" height="15" fill="rgb(212,68,68)" fg:x="23480" fg:w="15"/><text x="54.9921%" y="495.50"></text></g><g><title>ool-6-worker-31 (1,578 samples, 3.68%)</title><rect x="51.1004%" y="917" width="3.6790%" height="15" fill="rgb(254,129,129)" fg:x="21918" fg:w="1578"/><text x="51.3504%" y="927.50">ool-..</text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (17 samples, 0.04%)</title><rect x="54.7398%" y="901" width="0.0396%" height="15" fill="rgb(181,181,52)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="911.50"></text></g><g><title>start_thread (17 samples, 0.04%)</title><rect x="54.7398%" y="885" width="0.0396%" height="15" fill="rgb(235,101,101)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (17 samples, 0.04%)</title><rect x="54.7398%" y="869" width="0.0396%" height="15" fill="rgb(191,191,56)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (17 samples, 0.04%)</title><rect x="54.7398%" y="853" width="0.0396%" height="15" fill="rgb(210,210,62)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (17 samples, 0.04%)</title><rect x="54.7398%" y="837" width="0.0396%" height="15" fill="rgb(205,205,61)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="847.50"></text></g><g><title>java.util.concurrent.ForkJoinWorkerThread::run (17 samples, 0.04%)</title><rect x="54.7398%" y="821" width="0.0396%" height="15" fill="rgb(181,181,52)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="831.50"></text></g><g><title>java.util.concurrent.ForkJoinPool::runWorker (17 samples, 0.04%)</title><rect x="54.7398%" y="805" width="0.0396%" height="15" fill="rgb(182,182,52)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="815.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (17 samples, 0.04%)</title><rect x="54.7398%" y="789" width="0.0396%" height="15" fill="rgb(204,204,60)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (17 samples, 0.04%)</title><rect x="54.7398%" y="773" width="0.0396%" height="15" fill="rgb(191,191,56)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (17 samples, 0.04%)</title><rect x="54.7398%" y="757" width="0.0396%" height="15" fill="rgb(218,218,65)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="767.50"></text></g><g><title>__pthread_cond_wait (17 samples, 0.04%)</title><rect x="54.7398%" y="741" width="0.0396%" height="15" fill="rgb(240,109,109)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (17 samples, 0.04%)</title><rect x="54.7398%" y="725" width="0.0396%" height="15" fill="rgb(203,55,55)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="735.50"></text></g><g><title>futex_wait_cancelable (17 samples, 0.04%)</title><rect x="54.7398%" y="709" width="0.0396%" height="15" fill="rgb(252,126,126)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17 samples, 0.04%)</title><rect x="54.7398%" y="693" width="0.0396%" height="15" fill="rgb(254,128,128)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="703.50"></text></g><g><title>do_syscall_64 (17 samples, 0.04%)</title><rect x="54.7398%" y="677" width="0.0396%" height="15" fill="rgb(217,75,75)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="687.50"></text></g><g><title>__x64_sys_futex (17 samples, 0.04%)</title><rect x="54.7398%" y="661" width="0.0396%" height="15" fill="rgb(248,121,121)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="671.50"></text></g><g><title>do_futex (17 samples, 0.04%)</title><rect x="54.7398%" y="645" width="0.0396%" height="15" fill="rgb(230,94,94)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="655.50"></text></g><g><title>futex_wait (17 samples, 0.04%)</title><rect x="54.7398%" y="629" width="0.0396%" height="15" fill="rgb(219,78,78)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="639.50"></text></g><g><title>futex_wait_queue_me (17 samples, 0.04%)</title><rect x="54.7398%" y="613" width="0.0396%" height="15" fill="rgb(204,56,56)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="623.50"></text></g><g><title>schedule (17 samples, 0.04%)</title><rect x="54.7398%" y="597" width="0.0396%" height="15" fill="rgb(251,124,124)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="607.50"></text></g><g><title>__schedule (17 samples, 0.04%)</title><rect x="54.7398%" y="581" width="0.0396%" height="15" fill="rgb(209,64,64)" fg:x="23479" fg:w="17"/><text x="54.9898%" y="591.50"></text></g><g><title>finish_task_switch (16 samples, 0.04%)</title><rect x="54.7421%" y="565" width="0.0373%" height="15" fill="rgb(251,124,124)" fg:x="23480" fg:w="16"/><text x="54.9921%" y="575.50"></text></g><g><title>dequeue_task_fair (13 samples, 0.03%)</title><rect x="54.8471%" y="453" width="0.0303%" height="15" fill="rgb(200,51,51)" fg:x="23525" fg:w="13"/><text x="55.0971%" y="463.50"></text></g><g><title>dequeue_entity (11 samples, 0.03%)</title><rect x="54.8517%" y="437" width="0.0256%" height="15" fill="rgb(250,122,122)" fg:x="23527" fg:w="11"/><text x="55.1017%" y="447.50"></text></g><g><title>deactivate_task (23 samples, 0.05%)</title><rect x="54.8471%" y="469" width="0.0536%" height="15" fill="rgb(213,68,68)" fg:x="23525" fg:w="23"/><text x="55.0971%" y="479.50"></text></g><g><title>psi_task_change (10 samples, 0.02%)</title><rect x="54.8774%" y="453" width="0.0233%" height="15" fill="rgb(220,80,80)" fg:x="23538" fg:w="10"/><text x="55.1274%" y="463.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.07%)</title><rect x="54.8424%" y="517" width="0.0723%" height="15" fill="rgb(204,56,56)" fg:x="23523" fg:w="31"/><text x="55.0924%" y="527.50"></text></g><g><title>schedule (31 samples, 0.07%)</title><rect x="54.8424%" y="501" width="0.0723%" height="15" fill="rgb(251,124,124)" fg:x="23523" fg:w="31"/><text x="55.0924%" y="511.50"></text></g><g><title>__schedule (31 samples, 0.07%)</title><rect x="54.8424%" y="485" width="0.0723%" height="15" fill="rgb(209,64,64)" fg:x="23523" fg:w="31"/><text x="55.0924%" y="495.50"></text></g><g><title>do_futex (33 samples, 0.08%)</title><rect x="54.8424%" y="549" width="0.0769%" height="15" fill="rgb(230,94,94)" fg:x="23523" fg:w="33"/><text x="55.0924%" y="559.50"></text></g><g><title>futex_wait (33 samples, 0.08%)</title><rect x="54.8424%" y="533" width="0.0769%" height="15" fill="rgb(219,78,78)" fg:x="23523" fg:w="33"/><text x="55.0924%" y="543.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.08%)</title><rect x="54.8377%" y="565" width="0.0839%" height="15" fill="rgb(248,121,121)" fg:x="23521" fg:w="36"/><text x="55.0877%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.10%)</title><rect x="54.8284%" y="597" width="0.0956%" height="15" fill="rgb(254,128,128)" fg:x="23517" fg:w="41"/><text x="55.0784%" y="607.50"></text></g><g><title>do_syscall_64 (41 samples, 0.10%)</title><rect x="54.8284%" y="581" width="0.0956%" height="15" fill="rgb(217,75,75)" fg:x="23517" fg:w="41"/><text x="55.0784%" y="591.50"></text></g><g><title>__pthread_cond_wait (49 samples, 0.11%)</title><rect x="54.8144%" y="645" width="0.1142%" height="15" fill="rgb(240,109,109)" fg:x="23511" fg:w="49"/><text x="55.0644%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (49 samples, 0.11%)</title><rect x="54.8144%" y="629" width="0.1142%" height="15" fill="rgb(203,55,55)" fg:x="23511" fg:w="49"/><text x="55.0644%" y="639.50"></text></g><g><title>futex_wait_cancelable (45 samples, 0.10%)</title><rect x="54.8237%" y="613" width="0.1049%" height="15" fill="rgb(252,126,126)" fg:x="23515" fg:w="45"/><text x="55.0737%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="54.9287%" y="597" width="0.0233%" height="15" fill="rgb(254,128,128)" fg:x="23560" fg:w="10"/><text x="55.1787%" y="607.50"></text></g><g><title>do_syscall_64 (10 samples, 0.02%)</title><rect x="54.9287%" y="581" width="0.0233%" height="15" fill="rgb(217,75,75)" fg:x="23560" fg:w="10"/><text x="55.1787%" y="591.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (72 samples, 0.17%)</title><rect x="54.7864%" y="773" width="0.1679%" height="15" fill="rgb(218,218,65)" fg:x="23499" fg:w="72"/><text x="55.0364%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (67 samples, 0.16%)</title><rect x="54.7981%" y="757" width="0.1562%" height="15" fill="rgb(180,180,51)" fg:x="23504" fg:w="67"/><text x="55.0481%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (67 samples, 0.16%)</title><rect x="54.7981%" y="741" width="0.1562%" height="15" fill="rgb(210,210,62)" fg:x="23504" fg:w="67"/><text x="55.0481%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (66 samples, 0.15%)</title><rect x="54.8004%" y="725" width="0.1539%" height="15" fill="rgb(211,211,63)" fg:x="23505" fg:w="66"/><text x="55.0504%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (63 samples, 0.15%)</title><rect x="54.8074%" y="709" width="0.1469%" height="15" fill="rgb(206,206,61)" fg:x="23508" fg:w="63"/><text x="55.0574%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (63 samples, 0.15%)</title><rect x="54.8074%" y="693" width="0.1469%" height="15" fill="rgb(204,204,60)" fg:x="23508" fg:w="63"/><text x="55.0574%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (63 samples, 0.15%)</title><rect x="54.8074%" y="677" width="0.1469%" height="15" fill="rgb(191,191,56)" fg:x="23508" fg:w="63"/><text x="55.0574%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (60 samples, 0.14%)</title><rect x="54.8144%" y="661" width="0.1399%" height="15" fill="rgb(218,218,65)" fg:x="23511" fg:w="60"/><text x="55.0644%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (11 samples, 0.03%)</title><rect x="54.9287%" y="645" width="0.0256%" height="15" fill="rgb(192,192,56)" fg:x="23560" fg:w="11"/><text x="55.1787%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (11 samples, 0.03%)</title><rect x="54.9287%" y="629" width="0.0256%" height="15" fill="rgb(221,81,81)" fg:x="23560" fg:w="11"/><text x="55.1787%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (11 samples, 0.03%)</title><rect x="54.9287%" y="613" width="0.0256%" height="15" fill="rgb(246,117,117)" fg:x="23560" fg:w="11"/><text x="55.1787%" y="623.50"></text></g><g><title>[anon] (83 samples, 0.19%)</title><rect x="54.7794%" y="901" width="0.1935%" height="15" fill="rgb(252,126,126)" fg:x="23496" fg:w="83"/><text x="55.0294%" y="911.50"></text></g><g><title>start_thread (80 samples, 0.19%)</title><rect x="54.7864%" y="885" width="0.1865%" height="15" fill="rgb(235,101,101)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (80 samples, 0.19%)</title><rect x="54.7864%" y="869" width="0.1865%" height="15" fill="rgb(191,191,56)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (80 samples, 0.19%)</title><rect x="54.7864%" y="853" width="0.1865%" height="15" fill="rgb(210,210,62)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (80 samples, 0.19%)</title><rect x="54.7864%" y="837" width="0.1865%" height="15" fill="rgb(205,205,61)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="847.50"></text></g><g><title>java.lang.Thread::run (80 samples, 0.19%)</title><rect x="54.7864%" y="821" width="0.1865%" height="15" fill="rgb(228,228,69)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (80 samples, 0.19%)</title><rect x="54.7864%" y="805" width="0.1865%" height="15" fill="rgb(225,225,68)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (80 samples, 0.19%)</title><rect x="54.7864%" y="789" width="0.1865%" height="15" fill="rgb(227,227,69)" fg:x="23499" fg:w="80"/><text x="55.0364%" y="799.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (5 samples, 0.01%)</title><rect x="54.9613%" y="773" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="23574" fg:w="5"/><text x="55.2113%" y="783.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::tryRelease (5 samples, 0.01%)</title><rect x="54.9613%" y="757" width="0.0117%" height="15" fill="rgb(210,210,63)" fg:x="23574" fg:w="5"/><text x="55.2113%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (11 samples, 0.03%)</title><rect x="54.9869%" y="773" width="0.0256%" height="15" fill="rgb(220,220,66)" fg:x="23585" fg:w="11"/><text x="55.2369%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (5 samples, 0.01%)</title><rect x="55.0009%" y="757" width="0.0117%" height="15" fill="rgb(185,185,53)" fg:x="23591" fg:w="5"/><text x="55.2509%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (5 samples, 0.01%)</title><rect x="55.0009%" y="741" width="0.0117%" height="15" fill="rgb(185,185,53)" fg:x="23591" fg:w="5"/><text x="55.2509%" y="751.50"></text></g><g><title>[unknown] (19 samples, 0.04%)</title><rect x="54.9730%" y="901" width="0.0443%" height="15" fill="rgb(206,59,59)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="911.50"></text></g><g><title>start_thread (19 samples, 0.04%)</title><rect x="54.9730%" y="885" width="0.0443%" height="15" fill="rgb(235,101,101)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (19 samples, 0.04%)</title><rect x="54.9730%" y="869" width="0.0443%" height="15" fill="rgb(191,191,56)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (19 samples, 0.04%)</title><rect x="54.9730%" y="853" width="0.0443%" height="15" fill="rgb(210,210,62)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (19 samples, 0.04%)</title><rect x="54.9730%" y="837" width="0.0443%" height="15" fill="rgb(205,205,61)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="847.50"></text></g><g><title>java.lang.Thread::run (19 samples, 0.04%)</title><rect x="54.9730%" y="821" width="0.0443%" height="15" fill="rgb(228,228,69)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (19 samples, 0.04%)</title><rect x="54.9730%" y="805" width="0.0443%" height="15" fill="rgb(225,225,68)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (19 samples, 0.04%)</title><rect x="54.9730%" y="789" width="0.0443%" height="15" fill="rgb(227,227,69)" fg:x="23579" fg:w="19"/><text x="55.2230%" y="799.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (31 samples, 0.07%)</title><rect x="55.0173%" y="901" width="0.0723%" height="15" fill="rgb(191,191,56)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="911.50"></text></g><g><title>start_thread (31 samples, 0.07%)</title><rect x="55.0173%" y="885" width="0.0723%" height="15" fill="rgb(235,101,101)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (31 samples, 0.07%)</title><rect x="55.0173%" y="869" width="0.0723%" height="15" fill="rgb(191,191,56)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (31 samples, 0.07%)</title><rect x="55.0173%" y="853" width="0.0723%" height="15" fill="rgb(210,210,62)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (31 samples, 0.07%)</title><rect x="55.0173%" y="837" width="0.0723%" height="15" fill="rgb(205,205,61)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="847.50"></text></g><g><title>java.lang.Thread::run (31 samples, 0.07%)</title><rect x="55.0173%" y="821" width="0.0723%" height="15" fill="rgb(228,228,69)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (31 samples, 0.07%)</title><rect x="55.0173%" y="805" width="0.0723%" height="15" fill="rgb(225,225,68)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (31 samples, 0.07%)</title><rect x="55.0173%" y="789" width="0.0723%" height="15" fill="rgb(227,227,69)" fg:x="23598" fg:w="31"/><text x="55.2673%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (27 samples, 0.06%)</title><rect x="55.0266%" y="773" width="0.0629%" height="15" fill="rgb(218,218,65)" fg:x="23602" fg:w="27"/><text x="55.2766%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (27 samples, 0.06%)</title><rect x="55.0266%" y="757" width="0.0629%" height="15" fill="rgb(180,180,51)" fg:x="23602" fg:w="27"/><text x="55.2766%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (459 samples, 1.07%)</title><rect x="55.0895%" y="757" width="1.0701%" height="15" fill="rgb(185,185,53)" fg:x="23629" fg:w="459"/><text x="55.3395%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (459 samples, 1.07%)</title><rect x="55.0895%" y="741" width="1.0701%" height="15" fill="rgb(185,185,53)" fg:x="23629" fg:w="459"/><text x="55.3395%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (459 samples, 1.07%)</title><rect x="55.0895%" y="725" width="1.0701%" height="15" fill="rgb(196,196,57)" fg:x="23629" fg:w="459"/><text x="55.3395%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (460 samples, 1.07%)</title><rect x="55.0895%" y="773" width="1.0725%" height="15" fill="rgb(220,220,66)" fg:x="23629" fg:w="460"/><text x="55.3395%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (463 samples, 1.08%)</title><rect x="55.0895%" y="901" width="1.0795%" height="15" fill="rgb(210,210,62)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="911.50"></text></g><g><title>start_thread (463 samples, 1.08%)</title><rect x="55.0895%" y="885" width="1.0795%" height="15" fill="rgb(235,101,101)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (463 samples, 1.08%)</title><rect x="55.0895%" y="869" width="1.0795%" height="15" fill="rgb(191,191,56)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (463 samples, 1.08%)</title><rect x="55.0895%" y="853" width="1.0795%" height="15" fill="rgb(210,210,62)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (463 samples, 1.08%)</title><rect x="55.0895%" y="837" width="1.0795%" height="15" fill="rgb(205,205,61)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="847.50"></text></g><g><title>java.lang.Thread::run (463 samples, 1.08%)</title><rect x="55.0895%" y="821" width="1.0795%" height="15" fill="rgb(228,228,69)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (463 samples, 1.08%)</title><rect x="55.0895%" y="805" width="1.0795%" height="15" fill="rgb(225,225,68)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (463 samples, 1.08%)</title><rect x="55.0895%" y="789" width="1.0795%" height="15" fill="rgb(227,227,69)" fg:x="23629" fg:w="463"/><text x="55.3395%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="56.1690%" y="901" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="911.50"></text></g><g><title>start_thread (9 samples, 0.02%)</title><rect x="56.1690%" y="885" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="56.1690%" y="869" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (9 samples, 0.02%)</title><rect x="56.1690%" y="853" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="56.1690%" y="837" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="847.50"></text></g><g><title>java.lang.Thread::run (9 samples, 0.02%)</title><rect x="56.1690%" y="821" width="0.0210%" height="15" fill="rgb(228,228,69)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (9 samples, 0.02%)</title><rect x="56.1690%" y="805" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (9 samples, 0.02%)</title><rect x="56.1690%" y="789" width="0.0210%" height="15" fill="rgb(227,227,69)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (9 samples, 0.02%)</title><rect x="56.1690%" y="773" width="0.0210%" height="15" fill="rgb(218,218,65)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (9 samples, 0.02%)</title><rect x="56.1690%" y="757" width="0.0210%" height="15" fill="rgb(180,180,51)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (9 samples, 0.02%)</title><rect x="56.1690%" y="741" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (9 samples, 0.02%)</title><rect x="56.1690%" y="725" width="0.0210%" height="15" fill="rgb(190,190,55)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (9 samples, 0.02%)</title><rect x="56.1690%" y="709" width="0.0210%" height="15" fill="rgb(208,208,62)" fg:x="24092" fg:w="9"/><text x="56.4190%" y="719.50"></text></g><g><title>enqueue_task_fair (6 samples, 0.01%)</title><rect x="56.2599%" y="485" width="0.0140%" height="15" fill="rgb(218,77,77)" fg:x="24131" fg:w="6"/><text x="56.5099%" y="495.50"></text></g><g><title>enqueue_entity (5 samples, 0.01%)</title><rect x="56.2622%" y="469" width="0.0117%" height="15" fill="rgb(246,117,117)" fg:x="24132" fg:w="5"/><text x="56.5122%" y="479.50"></text></g><g><title>activate_task (23 samples, 0.05%)</title><rect x="56.2552%" y="501" width="0.0536%" height="15" fill="rgb(234,100,100)" fg:x="24129" fg:w="23"/><text x="56.5052%" y="511.50"></text></g><g><title>psi_task_change (15 samples, 0.03%)</title><rect x="56.2739%" y="485" width="0.0350%" height="15" fill="rgb(220,80,80)" fg:x="24137" fg:w="15"/><text x="56.5239%" y="495.50"></text></g><g><title>ttwu_do_activate (24 samples, 0.06%)</title><rect x="56.2552%" y="517" width="0.0560%" height="15" fill="rgb(239,107,107)" fg:x="24129" fg:w="24"/><text x="56.5052%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (48 samples, 0.11%)</title><rect x="56.2063%" y="629" width="0.1119%" height="15" fill="rgb(254,128,128)" fg:x="24108" fg:w="48"/><text x="56.4563%" y="639.50"></text></g><g><title>do_syscall_64 (48 samples, 0.11%)</title><rect x="56.2063%" y="613" width="0.1119%" height="15" fill="rgb(217,75,75)" fg:x="24108" fg:w="48"/><text x="56.4563%" y="623.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="56.2203%" y="597" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="24114" fg:w="42"/><text x="56.4703%" y="607.50"></text></g><g><title>do_futex (42 samples, 0.10%)</title><rect x="56.2203%" y="581" width="0.0979%" height="15" fill="rgb(230,94,94)" fg:x="24114" fg:w="42"/><text x="56.4703%" y="591.50"></text></g><g><title>futex_wake (39 samples, 0.09%)</title><rect x="56.2273%" y="565" width="0.0909%" height="15" fill="rgb(219,78,78)" fg:x="24117" fg:w="39"/><text x="56.4773%" y="575.50"></text></g><g><title>wake_up_q (38 samples, 0.09%)</title><rect x="56.2296%" y="549" width="0.0886%" height="15" fill="rgb(228,90,90)" fg:x="24118" fg:w="38"/><text x="56.4796%" y="559.50"></text></g><g><title>try_to_wake_up (37 samples, 0.09%)</title><rect x="56.2319%" y="533" width="0.0863%" height="15" fill="rgb(229,93,93)" fg:x="24119" fg:w="37"/><text x="56.4819%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (51 samples, 0.12%)</title><rect x="56.2040%" y="677" width="0.1189%" height="15" fill="rgb(223,223,67)" fg:x="24107" fg:w="51"/><text x="56.4540%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (51 samples, 0.12%)</title><rect x="56.2040%" y="661" width="0.1189%" height="15" fill="rgb(219,78,78)" fg:x="24107" fg:w="51"/><text x="56.4540%" y="671.50"></text></g><g><title>futex_wake (51 samples, 0.12%)</title><rect x="56.2040%" y="645" width="0.1189%" height="15" fill="rgb(219,78,78)" fg:x="24107" fg:w="51"/><text x="56.4540%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (57 samples, 0.13%)</title><rect x="56.1993%" y="693" width="0.1329%" height="15" fill="rgb(196,196,57)" fg:x="24105" fg:w="57"/><text x="56.4493%" y="703.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (60 samples, 0.14%)</title><rect x="56.1946%" y="901" width="0.1399%" height="15" fill="rgb(225,225,68)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="911.50"></text></g><g><title>start_thread (60 samples, 0.14%)</title><rect x="56.1946%" y="885" width="0.1399%" height="15" fill="rgb(235,101,101)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (60 samples, 0.14%)</title><rect x="56.1946%" y="869" width="0.1399%" height="15" fill="rgb(191,191,56)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (60 samples, 0.14%)</title><rect x="56.1946%" y="853" width="0.1399%" height="15" fill="rgb(210,210,62)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (60 samples, 0.14%)</title><rect x="56.1946%" y="837" width="0.1399%" height="15" fill="rgb(205,205,61)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="847.50"></text></g><g><title>java.lang.Thread::run (60 samples, 0.14%)</title><rect x="56.1946%" y="821" width="0.1399%" height="15" fill="rgb(228,228,69)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (60 samples, 0.14%)</title><rect x="56.1946%" y="805" width="0.1399%" height="15" fill="rgb(225,225,68)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (60 samples, 0.14%)</title><rect x="56.1946%" y="789" width="0.1399%" height="15" fill="rgb(227,227,69)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (60 samples, 0.14%)</title><rect x="56.1946%" y="773" width="0.1399%" height="15" fill="rgb(218,218,65)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (60 samples, 0.14%)</title><rect x="56.1946%" y="757" width="0.1399%" height="15" fill="rgb(180,180,51)" fg:x="24103" fg:w="60"/><text x="56.4446%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (58 samples, 0.14%)</title><rect x="56.1993%" y="741" width="0.1352%" height="15" fill="rgb(191,191,56)" fg:x="24105" fg:w="58"/><text x="56.4493%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (58 samples, 0.14%)</title><rect x="56.1993%" y="725" width="0.1352%" height="15" fill="rgb(227,227,69)" fg:x="24105" fg:w="58"/><text x="56.4493%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (58 samples, 0.14%)</title><rect x="56.1993%" y="709" width="0.1352%" height="15" fill="rgb(223,223,67)" fg:x="24105" fg:w="58"/><text x="56.4493%" y="719.50"></text></g><g><title>ool-9-thread-10 (668 samples, 1.56%)</title><rect x="54.7794%" y="917" width="1.5574%" height="15" fill="rgb(246,117,117)" fg:x="23496" fg:w="668"/><text x="55.0294%" y="927.50"></text></g><g><title>dequeue_task_fair (7 samples, 0.02%)</title><rect x="56.4348%" y="453" width="0.0163%" height="15" fill="rgb(200,51,51)" fg:x="24206" fg:w="7"/><text x="56.6848%" y="463.50"></text></g><g><title>dequeue_entity (6 samples, 0.01%)</title><rect x="56.4371%" y="437" width="0.0140%" height="15" fill="rgb(250,122,122)" fg:x="24207" fg:w="6"/><text x="56.6871%" y="447.50"></text></g><g><title>deactivate_task (23 samples, 0.05%)</title><rect x="56.4348%" y="469" width="0.0536%" height="15" fill="rgb(213,68,68)" fg:x="24206" fg:w="23"/><text x="56.6848%" y="479.50"></text></g><g><title>psi_task_change (16 samples, 0.04%)</title><rect x="56.4511%" y="453" width="0.0373%" height="15" fill="rgb(220,80,80)" fg:x="24213" fg:w="16"/><text x="56.7011%" y="463.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.09%)</title><rect x="56.4208%" y="517" width="0.0863%" height="15" fill="rgb(204,56,56)" fg:x="24200" fg:w="37"/><text x="56.6708%" y="527.50"></text></g><g><title>schedule (37 samples, 0.09%)</title><rect x="56.4208%" y="501" width="0.0863%" height="15" fill="rgb(251,124,124)" fg:x="24200" fg:w="37"/><text x="56.6708%" y="511.50"></text></g><g><title>__schedule (37 samples, 0.09%)</title><rect x="56.4208%" y="485" width="0.0863%" height="15" fill="rgb(209,64,64)" fg:x="24200" fg:w="37"/><text x="56.6708%" y="495.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="56.4138%" y="565" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="24197" fg:w="42"/><text x="56.6638%" y="575.50"></text></g><g><title>do_futex (42 samples, 0.10%)</title><rect x="56.4138%" y="549" width="0.0979%" height="15" fill="rgb(230,94,94)" fg:x="24197" fg:w="42"/><text x="56.6638%" y="559.50"></text></g><g><title>futex_wait (42 samples, 0.10%)</title><rect x="56.4138%" y="533" width="0.0979%" height="15" fill="rgb(219,78,78)" fg:x="24197" fg:w="42"/><text x="56.6638%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.12%)</title><rect x="56.3975%" y="597" width="0.1212%" height="15" fill="rgb(254,128,128)" fg:x="24190" fg:w="52"/><text x="56.6475%" y="607.50"></text></g><g><title>do_syscall_64 (51 samples, 0.12%)</title><rect x="56.3998%" y="581" width="0.1189%" height="15" fill="rgb(217,75,75)" fg:x="24191" fg:w="51"/><text x="56.6498%" y="591.50"></text></g><g><title>__pthread_cond_wait (58 samples, 0.14%)</title><rect x="56.3881%" y="645" width="0.1352%" height="15" fill="rgb(240,109,109)" fg:x="24186" fg:w="58"/><text x="56.6381%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.14%)</title><rect x="56.3881%" y="629" width="0.1352%" height="15" fill="rgb(203,55,55)" fg:x="24186" fg:w="58"/><text x="56.6381%" y="639.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.13%)</title><rect x="56.3928%" y="613" width="0.1306%" height="15" fill="rgb(252,126,126)" fg:x="24188" fg:w="56"/><text x="56.6428%" y="623.50"></text></g><g><title>do_futex (5 samples, 0.01%)</title><rect x="56.5327%" y="549" width="0.0117%" height="15" fill="rgb(230,94,94)" fg:x="24248" fg:w="5"/><text x="56.7827%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="56.5234%" y="597" width="0.0233%" height="15" fill="rgb(254,128,128)" fg:x="24244" fg:w="10"/><text x="56.7734%" y="607.50"></text></g><g><title>do_syscall_64 (9 samples, 0.02%)</title><rect x="56.5257%" y="581" width="0.0210%" height="15" fill="rgb(217,75,75)" fg:x="24245" fg:w="9"/><text x="56.7757%" y="591.50"></text></g><g><title>__x64_sys_futex (6 samples, 0.01%)</title><rect x="56.5327%" y="565" width="0.0140%" height="15" fill="rgb(248,121,121)" fg:x="24248" fg:w="6"/><text x="56.7827%" y="575.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (81 samples, 0.19%)</title><rect x="56.3602%" y="741" width="0.1888%" height="15" fill="rgb(210,210,62)" fg:x="24174" fg:w="81"/><text x="56.6102%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (81 samples, 0.19%)</title><rect x="56.3602%" y="725" width="0.1888%" height="15" fill="rgb(211,211,63)" fg:x="24174" fg:w="81"/><text x="56.6102%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (76 samples, 0.18%)</title><rect x="56.3718%" y="709" width="0.1772%" height="15" fill="rgb(206,206,61)" fg:x="24179" fg:w="76"/><text x="56.6218%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (76 samples, 0.18%)</title><rect x="56.3718%" y="693" width="0.1772%" height="15" fill="rgb(204,204,60)" fg:x="24179" fg:w="76"/><text x="56.6218%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (76 samples, 0.18%)</title><rect x="56.3718%" y="677" width="0.1772%" height="15" fill="rgb(191,191,56)" fg:x="24179" fg:w="76"/><text x="56.6218%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (72 samples, 0.17%)</title><rect x="56.3811%" y="661" width="0.1679%" height="15" fill="rgb(218,218,65)" fg:x="24183" fg:w="72"/><text x="56.6311%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (11 samples, 0.03%)</title><rect x="56.5234%" y="645" width="0.0256%" height="15" fill="rgb(192,192,56)" fg:x="24244" fg:w="11"/><text x="56.7734%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (11 samples, 0.03%)</title><rect x="56.5234%" y="629" width="0.0256%" height="15" fill="rgb(221,81,81)" fg:x="24244" fg:w="11"/><text x="56.7734%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (11 samples, 0.03%)</title><rect x="56.5234%" y="613" width="0.0256%" height="15" fill="rgb(246,117,117)" fg:x="24244" fg:w="11"/><text x="56.7734%" y="623.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (87 samples, 0.20%)</title><rect x="56.3485%" y="773" width="0.2028%" height="15" fill="rgb(218,218,65)" fg:x="24169" fg:w="87"/><text x="56.5985%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (82 samples, 0.19%)</title><rect x="56.3602%" y="757" width="0.1912%" height="15" fill="rgb(180,180,51)" fg:x="24174" fg:w="82"/><text x="56.6102%" y="767.50"></text></g><g><title>[anon] (96 samples, 0.22%)</title><rect x="56.3368%" y="901" width="0.2238%" height="15" fill="rgb(252,126,126)" fg:x="24164" fg:w="96"/><text x="56.5868%" y="911.50"></text></g><g><title>start_thread (92 samples, 0.21%)</title><rect x="56.3462%" y="885" width="0.2145%" height="15" fill="rgb(235,101,101)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (92 samples, 0.21%)</title><rect x="56.3462%" y="869" width="0.2145%" height="15" fill="rgb(191,191,56)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (92 samples, 0.21%)</title><rect x="56.3462%" y="853" width="0.2145%" height="15" fill="rgb(210,210,62)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (92 samples, 0.21%)</title><rect x="56.3462%" y="837" width="0.2145%" height="15" fill="rgb(205,205,61)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="847.50"></text></g><g><title>java.lang.Thread::run (92 samples, 0.21%)</title><rect x="56.3462%" y="821" width="0.2145%" height="15" fill="rgb(228,228,69)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (92 samples, 0.21%)</title><rect x="56.3462%" y="805" width="0.2145%" height="15" fill="rgb(225,225,68)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (92 samples, 0.21%)</title><rect x="56.3462%" y="789" width="0.2145%" height="15" fill="rgb(227,227,69)" fg:x="24168" fg:w="92"/><text x="56.5962%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (8 samples, 0.02%)</title><rect x="56.5816%" y="773" width="0.0187%" height="15" fill="rgb(220,220,66)" fg:x="24269" fg:w="8"/><text x="56.8316%" y="783.50"></text></g><g><title>[unknown] (21 samples, 0.05%)</title><rect x="56.5607%" y="901" width="0.0490%" height="15" fill="rgb(206,59,59)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="911.50"></text></g><g><title>start_thread (21 samples, 0.05%)</title><rect x="56.5607%" y="885" width="0.0490%" height="15" fill="rgb(235,101,101)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (21 samples, 0.05%)</title><rect x="56.5607%" y="869" width="0.0490%" height="15" fill="rgb(191,191,56)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (21 samples, 0.05%)</title><rect x="56.5607%" y="853" width="0.0490%" height="15" fill="rgb(210,210,62)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (21 samples, 0.05%)</title><rect x="56.5607%" y="837" width="0.0490%" height="15" fill="rgb(205,205,61)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="847.50"></text></g><g><title>java.lang.Thread::run (21 samples, 0.05%)</title><rect x="56.5607%" y="821" width="0.0490%" height="15" fill="rgb(228,228,69)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (21 samples, 0.05%)</title><rect x="56.5607%" y="805" width="0.0490%" height="15" fill="rgb(225,225,68)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (21 samples, 0.05%)</title><rect x="56.5607%" y="789" width="0.0490%" height="15" fill="rgb(227,227,69)" fg:x="24260" fg:w="21"/><text x="56.8107%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (10 samples, 0.02%)</title><rect x="56.6120%" y="773" width="0.0233%" height="15" fill="rgb(220,220,66)" fg:x="24282" fg:w="10"/><text x="56.8620%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (10 samples, 0.02%)</title><rect x="56.6120%" y="757" width="0.0233%" height="15" fill="rgb(222,222,67)" fg:x="24282" fg:w="10"/><text x="56.8620%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (24 samples, 0.06%)</title><rect x="56.6120%" y="901" width="0.0560%" height="15" fill="rgb(191,191,56)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="911.50"></text></g><g><title>start_thread (24 samples, 0.06%)</title><rect x="56.6120%" y="885" width="0.0560%" height="15" fill="rgb(235,101,101)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (24 samples, 0.06%)</title><rect x="56.6120%" y="869" width="0.0560%" height="15" fill="rgb(191,191,56)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (24 samples, 0.06%)</title><rect x="56.6120%" y="853" width="0.0560%" height="15" fill="rgb(210,210,62)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (24 samples, 0.06%)</title><rect x="56.6120%" y="837" width="0.0560%" height="15" fill="rgb(205,205,61)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="847.50"></text></g><g><title>java.lang.Thread::run (24 samples, 0.06%)</title><rect x="56.6120%" y="821" width="0.0560%" height="15" fill="rgb(228,228,69)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (24 samples, 0.06%)</title><rect x="56.6120%" y="805" width="0.0560%" height="15" fill="rgb(225,225,68)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (24 samples, 0.06%)</title><rect x="56.6120%" y="789" width="0.0560%" height="15" fill="rgb(227,227,69)" fg:x="24282" fg:w="24"/><text x="56.8620%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (14 samples, 0.03%)</title><rect x="56.6353%" y="773" width="0.0326%" height="15" fill="rgb(218,218,65)" fg:x="24292" fg:w="14"/><text x="56.8853%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (14 samples, 0.03%)</title><rect x="56.6353%" y="757" width="0.0326%" height="15" fill="rgb(180,180,51)" fg:x="24292" fg:w="14"/><text x="56.8853%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (467 samples, 1.09%)</title><rect x="56.6679%" y="773" width="1.0888%" height="15" fill="rgb(220,220,66)" fg:x="24306" fg:w="467"/><text x="56.9179%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (467 samples, 1.09%)</title><rect x="56.6679%" y="757" width="1.0888%" height="15" fill="rgb(185,185,53)" fg:x="24306" fg:w="467"/><text x="56.9179%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (467 samples, 1.09%)</title><rect x="56.6679%" y="741" width="1.0888%" height="15" fill="rgb(185,185,53)" fg:x="24306" fg:w="467"/><text x="56.9179%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (467 samples, 1.09%)</title><rect x="56.6679%" y="725" width="1.0888%" height="15" fill="rgb(196,196,57)" fg:x="24306" fg:w="467"/><text x="56.9179%" y="735.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (471 samples, 1.10%)</title><rect x="56.6679%" y="901" width="1.0981%" height="15" fill="rgb(210,210,62)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="911.50"></text></g><g><title>start_thread (471 samples, 1.10%)</title><rect x="56.6679%" y="885" width="1.0981%" height="15" fill="rgb(235,101,101)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (471 samples, 1.10%)</title><rect x="56.6679%" y="869" width="1.0981%" height="15" fill="rgb(191,191,56)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (471 samples, 1.10%)</title><rect x="56.6679%" y="853" width="1.0981%" height="15" fill="rgb(210,210,62)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (471 samples, 1.10%)</title><rect x="56.6679%" y="837" width="1.0981%" height="15" fill="rgb(205,205,61)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="847.50"></text></g><g><title>java.lang.Thread::run (471 samples, 1.10%)</title><rect x="56.6679%" y="821" width="1.0981%" height="15" fill="rgb(228,228,69)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (471 samples, 1.10%)</title><rect x="56.6679%" y="805" width="1.0981%" height="15" fill="rgb(225,225,68)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (471 samples, 1.10%)</title><rect x="56.6679%" y="789" width="1.0981%" height="15" fill="rgb(227,227,69)" fg:x="24306" fg:w="471"/><text x="56.9179%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="57.7660%" y="901" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="911.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="57.7660%" y="885" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="57.7660%" y="869" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="57.7660%" y="853" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="57.7660%" y="837" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="847.50"></text></g><g><title>java.lang.Thread::run (8 samples, 0.02%)</title><rect x="57.7660%" y="821" width="0.0187%" height="15" fill="rgb(228,228,69)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (8 samples, 0.02%)</title><rect x="57.7660%" y="805" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (8 samples, 0.02%)</title><rect x="57.7660%" y="789" width="0.0187%" height="15" fill="rgb(227,227,69)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (8 samples, 0.02%)</title><rect x="57.7660%" y="773" width="0.0187%" height="15" fill="rgb(218,218,65)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (8 samples, 0.02%)</title><rect x="57.7660%" y="757" width="0.0187%" height="15" fill="rgb(180,180,51)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (8 samples, 0.02%)</title><rect x="57.7660%" y="741" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (8 samples, 0.02%)</title><rect x="57.7660%" y="725" width="0.0187%" height="15" fill="rgb(190,190,55)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (8 samples, 0.02%)</title><rect x="57.7660%" y="709" width="0.0187%" height="15" fill="rgb(208,208,62)" fg:x="24777" fg:w="8"/><text x="58.0160%" y="719.50"></text></g><g><title>enqueue_task_fair (9 samples, 0.02%)</title><rect x="57.8593%" y="485" width="0.0210%" height="15" fill="rgb(218,77,77)" fg:x="24817" fg:w="9"/><text x="58.1093%" y="495.50"></text></g><g><title>enqueue_entity (7 samples, 0.02%)</title><rect x="57.8639%" y="469" width="0.0163%" height="15" fill="rgb(246,117,117)" fg:x="24819" fg:w="7"/><text x="58.1139%" y="479.50"></text></g><g><title>activate_task (21 samples, 0.05%)</title><rect x="57.8593%" y="501" width="0.0490%" height="15" fill="rgb(234,100,100)" fg:x="24817" fg:w="21"/><text x="58.1093%" y="511.50"></text></g><g><title>psi_task_change (12 samples, 0.03%)</title><rect x="57.8803%" y="485" width="0.0280%" height="15" fill="rgb(220,80,80)" fg:x="24826" fg:w="12"/><text x="58.1303%" y="495.50"></text></g><g><title>ttwu_do_activate (24 samples, 0.06%)</title><rect x="57.8593%" y="517" width="0.0560%" height="15" fill="rgb(239,107,107)" fg:x="24817" fg:w="24"/><text x="58.1093%" y="527.50"></text></g><g><title>futex_wake (40 samples, 0.09%)</title><rect x="57.8313%" y="565" width="0.0933%" height="15" fill="rgb(219,78,78)" fg:x="24805" fg:w="40"/><text x="58.0813%" y="575.50"></text></g><g><title>wake_up_q (36 samples, 0.08%)</title><rect x="57.8406%" y="549" width="0.0839%" height="15" fill="rgb(228,90,90)" fg:x="24809" fg:w="36"/><text x="58.0906%" y="559.50"></text></g><g><title>try_to_wake_up (34 samples, 0.08%)</title><rect x="57.8453%" y="533" width="0.0793%" height="15" fill="rgb(229,93,93)" fg:x="24811" fg:w="34"/><text x="58.0953%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.12%)</title><rect x="57.8103%" y="629" width="0.1166%" height="15" fill="rgb(254,128,128)" fg:x="24796" fg:w="50"/><text x="58.0603%" y="639.50"></text></g><g><title>do_syscall_64 (50 samples, 0.12%)</title><rect x="57.8103%" y="613" width="0.1166%" height="15" fill="rgb(217,75,75)" fg:x="24796" fg:w="50"/><text x="58.0603%" y="623.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="57.8290%" y="597" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="24804" fg:w="42"/><text x="58.0790%" y="607.50"></text></g><g><title>do_futex (42 samples, 0.10%)</title><rect x="57.8290%" y="581" width="0.0979%" height="15" fill="rgb(230,94,94)" fg:x="24804" fg:w="42"/><text x="58.0790%" y="591.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (52 samples, 0.12%)</title><rect x="57.8080%" y="677" width="0.1212%" height="15" fill="rgb(223,223,67)" fg:x="24795" fg:w="52"/><text x="58.0580%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (52 samples, 0.12%)</title><rect x="57.8080%" y="661" width="0.1212%" height="15" fill="rgb(219,78,78)" fg:x="24795" fg:w="52"/><text x="58.0580%" y="671.50"></text></g><g><title>futex_wake (52 samples, 0.12%)</title><rect x="57.8080%" y="645" width="0.1212%" height="15" fill="rgb(219,78,78)" fg:x="24795" fg:w="52"/><text x="58.0580%" y="655.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (63 samples, 0.15%)</title><rect x="57.7893%" y="901" width="0.1469%" height="15" fill="rgb(225,225,68)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="911.50"></text></g><g><title>start_thread (63 samples, 0.15%)</title><rect x="57.7893%" y="885" width="0.1469%" height="15" fill="rgb(235,101,101)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (63 samples, 0.15%)</title><rect x="57.7893%" y="869" width="0.1469%" height="15" fill="rgb(191,191,56)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (63 samples, 0.15%)</title><rect x="57.7893%" y="853" width="0.1469%" height="15" fill="rgb(210,210,62)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (63 samples, 0.15%)</title><rect x="57.7893%" y="837" width="0.1469%" height="15" fill="rgb(205,205,61)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="847.50"></text></g><g><title>java.lang.Thread::run (63 samples, 0.15%)</title><rect x="57.7893%" y="821" width="0.1469%" height="15" fill="rgb(228,228,69)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (63 samples, 0.15%)</title><rect x="57.7893%" y="805" width="0.1469%" height="15" fill="rgb(225,225,68)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (63 samples, 0.15%)</title><rect x="57.7893%" y="789" width="0.1469%" height="15" fill="rgb(227,227,69)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (63 samples, 0.15%)</title><rect x="57.7893%" y="773" width="0.1469%" height="15" fill="rgb(218,218,65)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (63 samples, 0.15%)</title><rect x="57.7893%" y="757" width="0.1469%" height="15" fill="rgb(180,180,51)" fg:x="24787" fg:w="63"/><text x="58.0393%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (60 samples, 0.14%)</title><rect x="57.7963%" y="741" width="0.1399%" height="15" fill="rgb(191,191,56)" fg:x="24790" fg:w="60"/><text x="58.0463%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (60 samples, 0.14%)</title><rect x="57.7963%" y="725" width="0.1399%" height="15" fill="rgb(227,227,69)" fg:x="24790" fg:w="60"/><text x="58.0463%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (60 samples, 0.14%)</title><rect x="57.7963%" y="709" width="0.1399%" height="15" fill="rgb(223,223,67)" fg:x="24790" fg:w="60"/><text x="58.0463%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (60 samples, 0.14%)</title><rect x="57.7963%" y="693" width="0.1399%" height="15" fill="rgb(196,196,57)" fg:x="24790" fg:w="60"/><text x="58.0463%" y="703.50"></text></g><g><title>ool-9-thread-11 (687 samples, 1.60%)</title><rect x="56.3368%" y="917" width="1.6017%" height="15" fill="rgb(246,117,117)" fg:x="24164" fg:w="687"/><text x="56.5868%" y="927.50"></text></g><g><title>dequeue_task_fair (10 samples, 0.02%)</title><rect x="58.0714%" y="453" width="0.0233%" height="15" fill="rgb(200,51,51)" fg:x="24908" fg:w="10"/><text x="58.3214%" y="463.50"></text></g><g><title>dequeue_entity (10 samples, 0.02%)</title><rect x="58.0714%" y="437" width="0.0233%" height="15" fill="rgb(250,122,122)" fg:x="24908" fg:w="10"/><text x="58.3214%" y="447.50"></text></g><g><title>update_load_avg (5 samples, 0.01%)</title><rect x="58.0831%" y="421" width="0.0117%" height="15" fill="rgb(226,88,88)" fg:x="24913" fg:w="5"/><text x="58.3331%" y="431.50"></text></g><g><title>psi_task_change (10 samples, 0.02%)</title><rect x="58.0947%" y="453" width="0.0233%" height="15" fill="rgb(220,80,80)" fg:x="24918" fg:w="10"/><text x="58.3447%" y="463.50"></text></g><g><title>deactivate_task (21 samples, 0.05%)</title><rect x="58.0714%" y="469" width="0.0490%" height="15" fill="rgb(213,68,68)" fg:x="24908" fg:w="21"/><text x="58.3214%" y="479.50"></text></g><g><title>__schedule (29 samples, 0.07%)</title><rect x="58.0691%" y="485" width="0.0676%" height="15" fill="rgb(209,64,64)" fg:x="24907" fg:w="29"/><text x="58.3191%" y="495.50"></text></g><g><title>futex_wait_queue_me (34 samples, 0.08%)</title><rect x="58.0598%" y="517" width="0.0793%" height="15" fill="rgb(204,56,56)" fg:x="24903" fg:w="34"/><text x="58.3098%" y="527.50"></text></g><g><title>schedule (32 samples, 0.07%)</title><rect x="58.0644%" y="501" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="24905" fg:w="32"/><text x="58.3144%" y="511.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="58.0505%" y="565" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="24899" fg:w="42"/><text x="58.3005%" y="575.50"></text></g><g><title>do_futex (39 samples, 0.09%)</title><rect x="58.0574%" y="549" width="0.0909%" height="15" fill="rgb(230,94,94)" fg:x="24902" fg:w="39"/><text x="58.3074%" y="559.50"></text></g><g><title>futex_wait (39 samples, 0.09%)</title><rect x="58.0574%" y="533" width="0.0909%" height="15" fill="rgb(219,78,78)" fg:x="24902" fg:w="39"/><text x="58.3074%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.12%)</title><rect x="58.0341%" y="597" width="0.1166%" height="15" fill="rgb(254,128,128)" fg:x="24892" fg:w="50"/><text x="58.2841%" y="607.50"></text></g><g><title>do_syscall_64 (50 samples, 0.12%)</title><rect x="58.0341%" y="581" width="0.1166%" height="15" fill="rgb(217,75,75)" fg:x="24892" fg:w="50"/><text x="58.2841%" y="591.50"></text></g><g><title>__pthread_cond_wait (69 samples, 0.16%)</title><rect x="57.9968%" y="645" width="0.1609%" height="15" fill="rgb(240,109,109)" fg:x="24876" fg:w="69"/><text x="58.2468%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (69 samples, 0.16%)</title><rect x="57.9968%" y="629" width="0.1609%" height="15" fill="rgb(203,55,55)" fg:x="24876" fg:w="69"/><text x="58.2468%" y="639.50"></text></g><g><title>futex_wait_cancelable (59 samples, 0.14%)</title><rect x="58.0201%" y="613" width="0.1376%" height="15" fill="rgb(252,126,126)" fg:x="24886" fg:w="59"/><text x="58.2701%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="58.1670%" y="597" width="0.0210%" height="15" fill="rgb(254,128,128)" fg:x="24949" fg:w="9"/><text x="58.4170%" y="607.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="58.1694%" y="581" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="24950" fg:w="8"/><text x="58.4194%" y="591.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (92 samples, 0.21%)</title><rect x="57.9758%" y="725" width="0.2145%" height="15" fill="rgb(211,211,63)" fg:x="24867" fg:w="92"/><text x="58.2258%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (89 samples, 0.21%)</title><rect x="57.9828%" y="709" width="0.2075%" height="15" fill="rgb(206,206,61)" fg:x="24870" fg:w="89"/><text x="58.2328%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (89 samples, 0.21%)</title><rect x="57.9828%" y="693" width="0.2075%" height="15" fill="rgb(204,204,60)" fg:x="24870" fg:w="89"/><text x="58.2328%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (89 samples, 0.21%)</title><rect x="57.9828%" y="677" width="0.2075%" height="15" fill="rgb(191,191,56)" fg:x="24870" fg:w="89"/><text x="58.2328%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (87 samples, 0.20%)</title><rect x="57.9875%" y="661" width="0.2028%" height="15" fill="rgb(218,218,65)" fg:x="24872" fg:w="87"/><text x="58.2375%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (14 samples, 0.03%)</title><rect x="58.1577%" y="645" width="0.0326%" height="15" fill="rgb(192,192,56)" fg:x="24945" fg:w="14"/><text x="58.4077%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (14 samples, 0.03%)</title><rect x="58.1577%" y="629" width="0.0326%" height="15" fill="rgb(221,81,81)" fg:x="24945" fg:w="14"/><text x="58.4077%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (14 samples, 0.03%)</title><rect x="58.1577%" y="613" width="0.0326%" height="15" fill="rgb(246,117,117)" fg:x="24945" fg:w="14"/><text x="58.4077%" y="623.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (101 samples, 0.24%)</title><rect x="57.9572%" y="773" width="0.2355%" height="15" fill="rgb(218,218,65)" fg:x="24859" fg:w="101"/><text x="58.2072%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (93 samples, 0.22%)</title><rect x="57.9758%" y="757" width="0.2168%" height="15" fill="rgb(180,180,51)" fg:x="24867" fg:w="93"/><text x="58.2258%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (93 samples, 0.22%)</title><rect x="57.9758%" y="741" width="0.2168%" height="15" fill="rgb(210,210,62)" fg:x="24867" fg:w="93"/><text x="58.2258%" y="751.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (105 samples, 0.24%)</title><rect x="57.9572%" y="789" width="0.2448%" height="15" fill="rgb(227,227,69)" fg:x="24859" fg:w="105"/><text x="58.2072%" y="799.50"></text></g><g><title>[anon] (114 samples, 0.27%)</title><rect x="57.9385%" y="901" width="0.2658%" height="15" fill="rgb(252,126,126)" fg:x="24851" fg:w="114"/><text x="58.1885%" y="911.50"></text></g><g><title>start_thread (106 samples, 0.25%)</title><rect x="57.9572%" y="885" width="0.2471%" height="15" fill="rgb(235,101,101)" fg:x="24859" fg:w="106"/><text x="58.2072%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (106 samples, 0.25%)</title><rect x="57.9572%" y="869" width="0.2471%" height="15" fill="rgb(191,191,56)" fg:x="24859" fg:w="106"/><text x="58.2072%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (106 samples, 0.25%)</title><rect x="57.9572%" y="853" width="0.2471%" height="15" fill="rgb(210,210,62)" fg:x="24859" fg:w="106"/><text x="58.2072%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (106 samples, 0.25%)</title><rect x="57.9572%" y="837" width="0.2471%" height="15" fill="rgb(205,205,61)" fg:x="24859" fg:w="106"/><text x="58.2072%" y="847.50"></text></g><g><title>java.lang.Thread::run (106 samples, 0.25%)</title><rect x="57.9572%" y="821" width="0.2471%" height="15" fill="rgb(228,228,69)" fg:x="24859" fg:w="106"/><text x="58.2072%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (106 samples, 0.25%)</title><rect x="57.9572%" y="805" width="0.2471%" height="15" fill="rgb(225,225,68)" fg:x="24859" fg:w="106"/><text x="58.2072%" y="815.50"></text></g><g><title>java.util.concurrent.FutureTask::run (14 samples, 0.03%)</title><rect x="58.2206%" y="773" width="0.0326%" height="15" fill="rgb(220,220,66)" fg:x="24972" fg:w="14"/><text x="58.4706%" y="783.50"></text></g><g><title>[unknown] (26 samples, 0.06%)</title><rect x="58.2043%" y="901" width="0.0606%" height="15" fill="rgb(206,59,59)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="911.50"></text></g><g><title>start_thread (26 samples, 0.06%)</title><rect x="58.2043%" y="885" width="0.0606%" height="15" fill="rgb(235,101,101)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="58.2043%" y="869" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (26 samples, 0.06%)</title><rect x="58.2043%" y="853" width="0.0606%" height="15" fill="rgb(210,210,62)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (26 samples, 0.06%)</title><rect x="58.2043%" y="837" width="0.0606%" height="15" fill="rgb(205,205,61)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="847.50"></text></g><g><title>java.lang.Thread::run (26 samples, 0.06%)</title><rect x="58.2043%" y="821" width="0.0606%" height="15" fill="rgb(228,228,69)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (26 samples, 0.06%)</title><rect x="58.2043%" y="805" width="0.0606%" height="15" fill="rgb(225,225,68)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (26 samples, 0.06%)</title><rect x="58.2043%" y="789" width="0.0606%" height="15" fill="rgb(227,227,69)" fg:x="24965" fg:w="26"/><text x="58.4543%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="58.2533%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="24986" fg:w="5"/><text x="58.5033%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="58.2533%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="24986" fg:w="5"/><text x="58.5033%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (8 samples, 0.02%)</title><rect x="58.2649%" y="773" width="0.0187%" height="15" fill="rgb(220,220,66)" fg:x="24991" fg:w="8"/><text x="58.5149%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (8 samples, 0.02%)</title><rect x="58.2649%" y="757" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="24991" fg:w="8"/><text x="58.5149%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (28 samples, 0.07%)</title><rect x="58.2649%" y="901" width="0.0653%" height="15" fill="rgb(191,191,56)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="911.50"></text></g><g><title>start_thread (28 samples, 0.07%)</title><rect x="58.2649%" y="885" width="0.0653%" height="15" fill="rgb(235,101,101)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (28 samples, 0.07%)</title><rect x="58.2649%" y="869" width="0.0653%" height="15" fill="rgb(191,191,56)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (28 samples, 0.07%)</title><rect x="58.2649%" y="853" width="0.0653%" height="15" fill="rgb(210,210,62)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (28 samples, 0.07%)</title><rect x="58.2649%" y="837" width="0.0653%" height="15" fill="rgb(205,205,61)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="847.50"></text></g><g><title>java.lang.Thread::run (28 samples, 0.07%)</title><rect x="58.2649%" y="821" width="0.0653%" height="15" fill="rgb(228,228,69)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (28 samples, 0.07%)</title><rect x="58.2649%" y="805" width="0.0653%" height="15" fill="rgb(225,225,68)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (28 samples, 0.07%)</title><rect x="58.2649%" y="789" width="0.0653%" height="15" fill="rgb(227,227,69)" fg:x="24991" fg:w="28"/><text x="58.5149%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (20 samples, 0.05%)</title><rect x="58.2836%" y="773" width="0.0466%" height="15" fill="rgb(218,218,65)" fg:x="24999" fg:w="20"/><text x="58.5336%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (20 samples, 0.05%)</title><rect x="58.2836%" y="757" width="0.0466%" height="15" fill="rgb(180,180,51)" fg:x="24999" fg:w="20"/><text x="58.5336%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (433 samples, 1.01%)</title><rect x="58.3302%" y="757" width="1.0095%" height="15" fill="rgb(185,185,53)" fg:x="25019" fg:w="433"/><text x="58.5802%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (433 samples, 1.01%)</title><rect x="58.3302%" y="741" width="1.0095%" height="15" fill="rgb(185,185,53)" fg:x="25019" fg:w="433"/><text x="58.5802%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (433 samples, 1.01%)</title><rect x="58.3302%" y="725" width="1.0095%" height="15" fill="rgb(196,196,57)" fg:x="25019" fg:w="433"/><text x="58.5802%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (434 samples, 1.01%)</title><rect x="58.3302%" y="773" width="1.0118%" height="15" fill="rgb(220,220,66)" fg:x="25019" fg:w="434"/><text x="58.5802%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (438 samples, 1.02%)</title><rect x="58.3302%" y="901" width="1.0212%" height="15" fill="rgb(210,210,62)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="911.50"></text></g><g><title>start_thread (438 samples, 1.02%)</title><rect x="58.3302%" y="885" width="1.0212%" height="15" fill="rgb(235,101,101)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (438 samples, 1.02%)</title><rect x="58.3302%" y="869" width="1.0212%" height="15" fill="rgb(191,191,56)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (438 samples, 1.02%)</title><rect x="58.3302%" y="853" width="1.0212%" height="15" fill="rgb(210,210,62)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (438 samples, 1.02%)</title><rect x="58.3302%" y="837" width="1.0212%" height="15" fill="rgb(205,205,61)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="847.50"></text></g><g><title>java.lang.Thread::run (438 samples, 1.02%)</title><rect x="58.3302%" y="821" width="1.0212%" height="15" fill="rgb(228,228,69)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (438 samples, 1.02%)</title><rect x="58.3302%" y="805" width="1.0212%" height="15" fill="rgb(225,225,68)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (438 samples, 1.02%)</title><rect x="58.3302%" y="789" width="1.0212%" height="15" fill="rgb(227,227,69)" fg:x="25019" fg:w="438"/><text x="58.5802%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (6 samples, 0.01%)</title><rect x="59.3514%" y="901" width="0.0140%" height="15" fill="rgb(205,205,61)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="911.50"></text></g><g><title>start_thread (6 samples, 0.01%)</title><rect x="59.3514%" y="885" width="0.0140%" height="15" fill="rgb(235,101,101)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (6 samples, 0.01%)</title><rect x="59.3514%" y="869" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (6 samples, 0.01%)</title><rect x="59.3514%" y="853" width="0.0140%" height="15" fill="rgb(210,210,62)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (6 samples, 0.01%)</title><rect x="59.3514%" y="837" width="0.0140%" height="15" fill="rgb(205,205,61)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="847.50"></text></g><g><title>java.lang.Thread::run (6 samples, 0.01%)</title><rect x="59.3514%" y="821" width="0.0140%" height="15" fill="rgb(228,228,69)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (6 samples, 0.01%)</title><rect x="59.3514%" y="805" width="0.0140%" height="15" fill="rgb(225,225,68)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (6 samples, 0.01%)</title><rect x="59.3514%" y="789" width="0.0140%" height="15" fill="rgb(227,227,69)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (6 samples, 0.01%)</title><rect x="59.3514%" y="773" width="0.0140%" height="15" fill="rgb(218,218,65)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (6 samples, 0.01%)</title><rect x="59.3514%" y="757" width="0.0140%" height="15" fill="rgb(180,180,51)" fg:x="25457" fg:w="6"/><text x="59.6014%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::addWaiter (5 samples, 0.01%)</title><rect x="59.3770%" y="709" width="0.0117%" height="15" fill="rgb(198,198,58)" fg:x="25468" fg:w="5"/><text x="59.6270%" y="719.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (6 samples, 0.01%)</title><rect x="59.3770%" y="741" width="0.0140%" height="15" fill="rgb(210,210,62)" fg:x="25468" fg:w="6"/><text x="59.6270%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (6 samples, 0.01%)</title><rect x="59.3770%" y="725" width="0.0140%" height="15" fill="rgb(211,211,63)" fg:x="25468" fg:w="6"/><text x="59.6270%" y="735.50"></text></g><g><title>psi_task_change (10 samples, 0.02%)</title><rect x="59.4750%" y="485" width="0.0233%" height="15" fill="rgb(220,80,80)" fg:x="25510" fg:w="10"/><text x="59.7250%" y="495.50"></text></g><g><title>activate_task (15 samples, 0.03%)</title><rect x="59.4656%" y="501" width="0.0350%" height="15" fill="rgb(234,100,100)" fg:x="25506" fg:w="15"/><text x="59.7156%" y="511.50"></text></g><g><title>ttwu_do_activate (18 samples, 0.04%)</title><rect x="59.4656%" y="517" width="0.0420%" height="15" fill="rgb(239,107,107)" fg:x="25506" fg:w="18"/><text x="59.7156%" y="527.50"></text></g><g><title>futex_wake (37 samples, 0.09%)</title><rect x="59.4307%" y="565" width="0.0863%" height="15" fill="rgb(219,78,78)" fg:x="25491" fg:w="37"/><text x="59.6807%" y="575.50"></text></g><g><title>wake_up_q (29 samples, 0.07%)</title><rect x="59.4493%" y="549" width="0.0676%" height="15" fill="rgb(228,90,90)" fg:x="25499" fg:w="29"/><text x="59.6993%" y="559.50"></text></g><g><title>try_to_wake_up (29 samples, 0.07%)</title><rect x="59.4493%" y="533" width="0.0676%" height="15" fill="rgb(229,93,93)" fg:x="25499" fg:w="29"/><text x="59.6993%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.11%)</title><rect x="59.4097%" y="629" width="0.1096%" height="15" fill="rgb(254,128,128)" fg:x="25482" fg:w="47"/><text x="59.6597%" y="639.50"></text></g><g><title>do_syscall_64 (46 samples, 0.11%)</title><rect x="59.4120%" y="613" width="0.1072%" height="15" fill="rgb(217,75,75)" fg:x="25483" fg:w="46"/><text x="59.6620%" y="623.50"></text></g><g><title>__x64_sys_futex (39 samples, 0.09%)</title><rect x="59.4283%" y="597" width="0.0909%" height="15" fill="rgb(248,121,121)" fg:x="25490" fg:w="39"/><text x="59.6783%" y="607.50"></text></g><g><title>do_futex (39 samples, 0.09%)</title><rect x="59.4283%" y="581" width="0.0909%" height="15" fill="rgb(230,94,94)" fg:x="25490" fg:w="39"/><text x="59.6783%" y="591.50"></text></g><g><title>ool-9-thread-12 (680 samples, 1.59%)</title><rect x="57.9385%" y="917" width="1.5854%" height="15" fill="rgb(246,117,117)" fg:x="24851" fg:w="680"/><text x="58.1885%" y="927.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (63 samples, 0.15%)</title><rect x="59.3770%" y="901" width="0.1469%" height="15" fill="rgb(225,225,68)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="911.50"></text></g><g><title>start_thread (63 samples, 0.15%)</title><rect x="59.3770%" y="885" width="0.1469%" height="15" fill="rgb(235,101,101)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (63 samples, 0.15%)</title><rect x="59.3770%" y="869" width="0.1469%" height="15" fill="rgb(191,191,56)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (63 samples, 0.15%)</title><rect x="59.3770%" y="853" width="0.1469%" height="15" fill="rgb(210,210,62)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (63 samples, 0.15%)</title><rect x="59.3770%" y="837" width="0.1469%" height="15" fill="rgb(205,205,61)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="847.50"></text></g><g><title>java.lang.Thread::run (63 samples, 0.15%)</title><rect x="59.3770%" y="821" width="0.1469%" height="15" fill="rgb(228,228,69)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (63 samples, 0.15%)</title><rect x="59.3770%" y="805" width="0.1469%" height="15" fill="rgb(225,225,68)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (63 samples, 0.15%)</title><rect x="59.3770%" y="789" width="0.1469%" height="15" fill="rgb(227,227,69)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (63 samples, 0.15%)</title><rect x="59.3770%" y="773" width="0.1469%" height="15" fill="rgb(218,218,65)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (63 samples, 0.15%)</title><rect x="59.3770%" y="757" width="0.1469%" height="15" fill="rgb(180,180,51)" fg:x="25468" fg:w="63"/><text x="59.6270%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (57 samples, 0.13%)</title><rect x="59.3910%" y="741" width="0.1329%" height="15" fill="rgb(191,191,56)" fg:x="25474" fg:w="57"/><text x="59.6410%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (57 samples, 0.13%)</title><rect x="59.3910%" y="725" width="0.1329%" height="15" fill="rgb(227,227,69)" fg:x="25474" fg:w="57"/><text x="59.6410%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (57 samples, 0.13%)</title><rect x="59.3910%" y="709" width="0.1329%" height="15" fill="rgb(223,223,67)" fg:x="25474" fg:w="57"/><text x="59.6410%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (57 samples, 0.13%)</title><rect x="59.3910%" y="693" width="0.1329%" height="15" fill="rgb(196,196,57)" fg:x="25474" fg:w="57"/><text x="59.6410%" y="703.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (54 samples, 0.13%)</title><rect x="59.3980%" y="677" width="0.1259%" height="15" fill="rgb(223,223,67)" fg:x="25477" fg:w="54"/><text x="59.6480%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (54 samples, 0.13%)</title><rect x="59.3980%" y="661" width="0.1259%" height="15" fill="rgb(219,78,78)" fg:x="25477" fg:w="54"/><text x="59.6480%" y="671.50"></text></g><g><title>futex_wake (50 samples, 0.12%)</title><rect x="59.4073%" y="645" width="0.1166%" height="15" fill="rgb(219,78,78)" fg:x="25481" fg:w="50"/><text x="59.6573%" y="655.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (11 samples, 0.03%)</title><rect x="59.5332%" y="773" width="0.0256%" height="15" fill="rgb(225,225,68)" fg:x="25535" fg:w="11"/><text x="59.7832%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (11 samples, 0.03%)</title><rect x="59.5332%" y="757" width="0.0256%" height="15" fill="rgb(190,190,55)" fg:x="25535" fg:w="11"/><text x="59.7832%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (5 samples, 0.01%)</title><rect x="59.5472%" y="741" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="25541" fg:w="5"/><text x="59.7972%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (27 samples, 0.06%)</title><rect x="59.5589%" y="741" width="0.0629%" height="15" fill="rgb(192,192,56)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (27 samples, 0.06%)</title><rect x="59.5589%" y="725" width="0.0629%" height="15" fill="rgb(204,204,60)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (27 samples, 0.06%)</title><rect x="59.5589%" y="709" width="0.0629%" height="15" fill="rgb(191,191,56)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (27 samples, 0.06%)</title><rect x="59.5589%" y="693" width="0.0629%" height="15" fill="rgb(218,218,65)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="703.50"></text></g><g><title>__pthread_cond_wait (27 samples, 0.06%)</title><rect x="59.5589%" y="677" width="0.0629%" height="15" fill="rgb(240,109,109)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (27 samples, 0.06%)</title><rect x="59.5589%" y="661" width="0.0629%" height="15" fill="rgb(203,55,55)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="671.50"></text></g><g><title>futex_wait_cancelable (27 samples, 0.06%)</title><rect x="59.5589%" y="645" width="0.0629%" height="15" fill="rgb(252,126,126)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27 samples, 0.06%)</title><rect x="59.5589%" y="629" width="0.0629%" height="15" fill="rgb(254,128,128)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="639.50"></text></g><g><title>do_syscall_64 (27 samples, 0.06%)</title><rect x="59.5589%" y="613" width="0.0629%" height="15" fill="rgb(217,75,75)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="623.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.06%)</title><rect x="59.5589%" y="597" width="0.0629%" height="15" fill="rgb(248,121,121)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="607.50"></text></g><g><title>do_futex (27 samples, 0.06%)</title><rect x="59.5589%" y="581" width="0.0629%" height="15" fill="rgb(230,94,94)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="591.50"></text></g><g><title>futex_wait (27 samples, 0.06%)</title><rect x="59.5589%" y="565" width="0.0629%" height="15" fill="rgb(219,78,78)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="575.50"></text></g><g><title>futex_wait_queue_me (27 samples, 0.06%)</title><rect x="59.5589%" y="549" width="0.0629%" height="15" fill="rgb(204,56,56)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="559.50"></text></g><g><title>schedule (27 samples, 0.06%)</title><rect x="59.5589%" y="533" width="0.0629%" height="15" fill="rgb(251,124,124)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="543.50"></text></g><g><title>__schedule (27 samples, 0.06%)</title><rect x="59.5589%" y="517" width="0.0629%" height="15" fill="rgb(209,64,64)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="527.50"></text></g><g><title>finish_task_switch (27 samples, 0.06%)</title><rect x="59.5589%" y="501" width="0.0629%" height="15" fill="rgb(251,124,124)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.06%)</title><rect x="59.5589%" y="485" width="0.0629%" height="15" fill="rgb(240,109,109)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (27 samples, 0.06%)</title><rect x="59.5589%" y="469" width="0.0629%" height="15" fill="rgb(71,219,71)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="479.50"></text></g><g><title>x86_pmu_enable (27 samples, 0.06%)</title><rect x="59.5589%" y="453" width="0.0629%" height="15" fill="rgb(238,105,105)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (27 samples, 0.06%)</title><rect x="59.5589%" y="437" width="0.0629%" height="15" fill="rgb(238,105,105)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="447.50"></text></g><g><title>native_write_msr (27 samples, 0.06%)</title><rect x="59.5589%" y="421" width="0.0629%" height="15" fill="rgb(212,68,68)" fg:x="25546" fg:w="27"/><text x="59.8089%" y="431.50"></text></g><g><title>[anon] (39 samples, 0.09%)</title><rect x="59.5332%" y="901" width="0.0909%" height="15" fill="rgb(252,126,126)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="911.50"></text></g><g><title>start_thread (39 samples, 0.09%)</title><rect x="59.5332%" y="885" width="0.0909%" height="15" fill="rgb(235,101,101)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (39 samples, 0.09%)</title><rect x="59.5332%" y="869" width="0.0909%" height="15" fill="rgb(191,191,56)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (39 samples, 0.09%)</title><rect x="59.5332%" y="853" width="0.0909%" height="15" fill="rgb(210,210,62)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (39 samples, 0.09%)</title><rect x="59.5332%" y="837" width="0.0909%" height="15" fill="rgb(205,205,61)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="847.50"></text></g><g><title>java.lang.Thread::run (39 samples, 0.09%)</title><rect x="59.5332%" y="821" width="0.0909%" height="15" fill="rgb(228,228,69)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (39 samples, 0.09%)</title><rect x="59.5332%" y="805" width="0.0909%" height="15" fill="rgb(225,225,68)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (39 samples, 0.09%)</title><rect x="59.5332%" y="789" width="0.0909%" height="15" fill="rgb(227,227,69)" fg:x="25535" fg:w="39"/><text x="59.7832%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (28 samples, 0.07%)</title><rect x="59.5589%" y="773" width="0.0653%" height="15" fill="rgb(218,218,65)" fg:x="25546" fg:w="28"/><text x="59.8089%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (28 samples, 0.07%)</title><rect x="59.5589%" y="757" width="0.0653%" height="15" fill="rgb(180,180,51)" fg:x="25546" fg:w="28"/><text x="59.8089%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (30 samples, 0.07%)</title><rect x="59.6242%" y="741" width="0.0699%" height="15" fill="rgb(177,177,51)" fg:x="25574" fg:w="30"/><text x="59.8742%" y="751.50"></text></g><g><title>[unknown] (1,125 samples, 2.62%)</title><rect x="59.6242%" y="901" width="2.6229%" height="15" fill="rgb(206,59,59)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="911.50">[u..</text></g><g><title>start_thread (1,125 samples, 2.62%)</title><rect x="59.6242%" y="885" width="2.6229%" height="15" fill="rgb(235,101,101)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,125 samples, 2.62%)</title><rect x="59.6242%" y="869" width="2.6229%" height="15" fill="rgb(191,191,56)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,125 samples, 2.62%)</title><rect x="59.6242%" y="853" width="2.6229%" height="15" fill="rgb(210,210,62)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,125 samples, 2.62%)</title><rect x="59.6242%" y="837" width="2.6229%" height="15" fill="rgb(205,205,61)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,125 samples, 2.62%)</title><rect x="59.6242%" y="821" width="2.6229%" height="15" fill="rgb(228,228,69)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,125 samples, 2.62%)</title><rect x="59.6242%" y="805" width="2.6229%" height="15" fill="rgb(225,225,68)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,125 samples, 2.62%)</title><rect x="59.6242%" y="789" width="2.6229%" height="15" fill="rgb(227,227,69)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,125 samples, 2.62%)</title><rect x="59.6242%" y="773" width="2.6229%" height="15" fill="rgb(225,225,68)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,125 samples, 2.62%)</title><rect x="59.6242%" y="757" width="2.6229%" height="15" fill="rgb(190,190,55)" fg:x="25574" fg:w="1125"/><text x="59.8742%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,095 samples, 2.55%)</title><rect x="59.6941%" y="741" width="2.5529%" height="15" fill="rgb(196,196,57)" fg:x="25604" fg:w="1095"/><text x="59.9441%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,095 samples, 2.55%)</title><rect x="59.6941%" y="725" width="2.5529%" height="15" fill="rgb(217,217,65)" fg:x="25604" fg:w="1095"/><text x="59.9441%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="62.2470%" y="901" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="911.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="62.2470%" y="885" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="62.2470%" y="869" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="62.2470%" y="853" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="62.2470%" y="837" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="847.50"></text></g><g><title>java.lang.Thread::run (8 samples, 0.02%)</title><rect x="62.2470%" y="821" width="0.0187%" height="15" fill="rgb(228,228,69)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (8 samples, 0.02%)</title><rect x="62.2470%" y="805" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (8 samples, 0.02%)</title><rect x="62.2470%" y="789" width="0.0187%" height="15" fill="rgb(227,227,69)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (8 samples, 0.02%)</title><rect x="62.2470%" y="773" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (8 samples, 0.02%)</title><rect x="62.2470%" y="757" width="0.0187%" height="15" fill="rgb(190,190,55)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (8 samples, 0.02%)</title><rect x="62.2470%" y="741" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="26699" fg:w="8"/><text x="62.4970%" y="751.50"></text></g><g><title>pool-3-thread-1 (1,174 samples, 2.74%)</title><rect x="59.5332%" y="917" width="2.7371%" height="15" fill="rgb(208,62,62)" fg:x="25535" fg:w="1174"/><text x="59.7832%" y="927.50">po..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (18 samples, 0.04%)</title><rect x="62.2704%" y="773" width="0.0420%" height="15" fill="rgb(225,225,68)" fg:x="26709" fg:w="18"/><text x="62.5204%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (18 samples, 0.04%)</title><rect x="62.2704%" y="757" width="0.0420%" height="15" fill="rgb(190,190,55)" fg:x="26709" fg:w="18"/><text x="62.5204%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (13 samples, 0.03%)</title><rect x="62.2820%" y="741" width="0.0303%" height="15" fill="rgb(196,196,57)" fg:x="26714" fg:w="13"/><text x="62.5320%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (11 samples, 0.03%)</title><rect x="62.2867%" y="725" width="0.0256%" height="15" fill="rgb(217,217,65)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::enterSlowPathSafepointCheck (11 samples, 0.03%)</title><rect x="62.2867%" y="709" width="0.0256%" height="15" fill="rgb(208,208,62)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="719.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::slowPathSafepointCheck (11 samples, 0.03%)</title><rect x="62.2867%" y="693" width="0.0256%" height="15" fill="rgb(179,179,51)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::freezeAtSafepoint (11 samples, 0.03%)</title><rect x="62.2867%" y="677" width="0.0256%" height="15" fill="rgb(182,182,52)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="687.50"></text></g><g><title>com.oracle.svm.core.thread.Safepoint::notInlinedLockNoTransition (11 samples, 0.03%)</title><rect x="62.2867%" y="661" width="0.0256%" height="15" fill="rgb(184,184,53)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="671.50"></text></g><g><title>__GI___pthread_mutex_lock (11 samples, 0.03%)</title><rect x="62.2867%" y="645" width="0.0256%" height="15" fill="rgb(246,117,117)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="655.50"></text></g><g><title>__lll_lock_wait (11 samples, 0.03%)</title><rect x="62.2867%" y="629" width="0.0256%" height="15" fill="rgb(235,101,101)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (11 samples, 0.03%)</title><rect x="62.2867%" y="613" width="0.0256%" height="15" fill="rgb(254,128,128)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="623.50"></text></g><g><title>do_syscall_64 (11 samples, 0.03%)</title><rect x="62.2867%" y="597" width="0.0256%" height="15" fill="rgb(217,75,75)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="607.50"></text></g><g><title>__x64_sys_futex (11 samples, 0.03%)</title><rect x="62.2867%" y="581" width="0.0256%" height="15" fill="rgb(248,121,121)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="591.50"></text></g><g><title>do_futex (11 samples, 0.03%)</title><rect x="62.2867%" y="565" width="0.0256%" height="15" fill="rgb(230,94,94)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="575.50"></text></g><g><title>futex_wait (11 samples, 0.03%)</title><rect x="62.2867%" y="549" width="0.0256%" height="15" fill="rgb(219,78,78)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="559.50"></text></g><g><title>futex_wait_queue_me (11 samples, 0.03%)</title><rect x="62.2867%" y="533" width="0.0256%" height="15" fill="rgb(204,56,56)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="543.50"></text></g><g><title>schedule (11 samples, 0.03%)</title><rect x="62.2867%" y="517" width="0.0256%" height="15" fill="rgb(251,124,124)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="527.50"></text></g><g><title>__schedule (11 samples, 0.03%)</title><rect x="62.2867%" y="501" width="0.0256%" height="15" fill="rgb(209,64,64)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="511.50"></text></g><g><title>finish_task_switch (11 samples, 0.03%)</title><rect x="62.2867%" y="485" width="0.0256%" height="15" fill="rgb(251,124,124)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="495.50"></text></g><g><title>__perf_event_task_sched_in (11 samples, 0.03%)</title><rect x="62.2867%" y="469" width="0.0256%" height="15" fill="rgb(240,109,109)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="479.50"></text></g><g><title>perf_pmu_enable.part.0 (11 samples, 0.03%)</title><rect x="62.2867%" y="453" width="0.0256%" height="15" fill="rgb(71,219,71)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="463.50"></text></g><g><title>x86_pmu_enable (11 samples, 0.03%)</title><rect x="62.2867%" y="437" width="0.0256%" height="15" fill="rgb(238,105,105)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="447.50"></text></g><g><title>intel_tfa_pmu_enable_all (11 samples, 0.03%)</title><rect x="62.2867%" y="421" width="0.0256%" height="15" fill="rgb(238,105,105)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="431.50"></text></g><g><title>native_write_msr (11 samples, 0.03%)</title><rect x="62.2867%" y="405" width="0.0256%" height="15" fill="rgb(212,68,68)" fg:x="26716" fg:w="11"/><text x="62.5367%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (44 samples, 0.10%)</title><rect x="62.3147%" y="485" width="0.1026%" height="15" fill="rgb(240,109,109)" fg:x="26728" fg:w="44"/><text x="62.5647%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (44 samples, 0.10%)</title><rect x="62.3147%" y="469" width="0.1026%" height="15" fill="rgb(71,219,71)" fg:x="26728" fg:w="44"/><text x="62.5647%" y="479.50"></text></g><g><title>x86_pmu_enable (44 samples, 0.10%)</title><rect x="62.3147%" y="453" width="0.1026%" height="15" fill="rgb(238,105,105)" fg:x="26728" fg:w="44"/><text x="62.5647%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (44 samples, 0.10%)</title><rect x="62.3147%" y="437" width="0.1026%" height="15" fill="rgb(238,105,105)" fg:x="26728" fg:w="44"/><text x="62.5647%" y="447.50"></text></g><g><title>native_write_msr (44 samples, 0.10%)</title><rect x="62.3147%" y="421" width="0.1026%" height="15" fill="rgb(212,68,68)" fg:x="26728" fg:w="44"/><text x="62.5647%" y="431.50"></text></g><g><title>finish_task_switch (45 samples, 0.10%)</title><rect x="62.3147%" y="501" width="0.1049%" height="15" fill="rgb(251,124,124)" fg:x="26728" fg:w="45"/><text x="62.5647%" y="511.50"></text></g><g><title>[anon] (65 samples, 0.15%)</title><rect x="62.2704%" y="901" width="0.1515%" height="15" fill="rgb(252,126,126)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="911.50"></text></g><g><title>start_thread (65 samples, 0.15%)</title><rect x="62.2704%" y="885" width="0.1515%" height="15" fill="rgb(235,101,101)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (65 samples, 0.15%)</title><rect x="62.2704%" y="869" width="0.1515%" height="15" fill="rgb(191,191,56)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (65 samples, 0.15%)</title><rect x="62.2704%" y="853" width="0.1515%" height="15" fill="rgb(210,210,62)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (65 samples, 0.15%)</title><rect x="62.2704%" y="837" width="0.1515%" height="15" fill="rgb(205,205,61)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="847.50"></text></g><g><title>java.lang.Thread::run (65 samples, 0.15%)</title><rect x="62.2704%" y="821" width="0.1515%" height="15" fill="rgb(228,228,69)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (65 samples, 0.15%)</title><rect x="62.2704%" y="805" width="0.1515%" height="15" fill="rgb(225,225,68)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (65 samples, 0.15%)</title><rect x="62.2704%" y="789" width="0.1515%" height="15" fill="rgb(227,227,69)" fg:x="26709" fg:w="65"/><text x="62.5204%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (47 samples, 0.11%)</title><rect x="62.3123%" y="773" width="0.1096%" height="15" fill="rgb(218,218,65)" fg:x="26727" fg:w="47"/><text x="62.5623%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (47 samples, 0.11%)</title><rect x="62.3123%" y="757" width="0.1096%" height="15" fill="rgb(180,180,51)" fg:x="26727" fg:w="47"/><text x="62.5623%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (47 samples, 0.11%)</title><rect x="62.3123%" y="741" width="0.1096%" height="15" fill="rgb(192,192,56)" fg:x="26727" fg:w="47"/><text x="62.5623%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (47 samples, 0.11%)</title><rect x="62.3123%" y="725" width="0.1096%" height="15" fill="rgb(204,204,60)" fg:x="26727" fg:w="47"/><text x="62.5623%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (47 samples, 0.11%)</title><rect x="62.3123%" y="709" width="0.1096%" height="15" fill="rgb(191,191,56)" fg:x="26727" fg:w="47"/><text x="62.5623%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (47 samples, 0.11%)</title><rect x="62.3123%" y="693" width="0.1096%" height="15" fill="rgb(218,218,65)" fg:x="26727" fg:w="47"/><text x="62.5623%" y="703.50"></text></g><g><title>__pthread_cond_wait (46 samples, 0.11%)</title><rect x="62.3147%" y="677" width="0.1072%" height="15" fill="rgb(240,109,109)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (46 samples, 0.11%)</title><rect x="62.3147%" y="661" width="0.1072%" height="15" fill="rgb(203,55,55)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="671.50"></text></g><g><title>futex_wait_cancelable (46 samples, 0.11%)</title><rect x="62.3147%" y="645" width="0.1072%" height="15" fill="rgb(252,126,126)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.11%)</title><rect x="62.3147%" y="629" width="0.1072%" height="15" fill="rgb(254,128,128)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="639.50"></text></g><g><title>do_syscall_64 (46 samples, 0.11%)</title><rect x="62.3147%" y="613" width="0.1072%" height="15" fill="rgb(217,75,75)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="623.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.11%)</title><rect x="62.3147%" y="597" width="0.1072%" height="15" fill="rgb(248,121,121)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="607.50"></text></g><g><title>do_futex (46 samples, 0.11%)</title><rect x="62.3147%" y="581" width="0.1072%" height="15" fill="rgb(230,94,94)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="591.50"></text></g><g><title>futex_wait (46 samples, 0.11%)</title><rect x="62.3147%" y="565" width="0.1072%" height="15" fill="rgb(219,78,78)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="575.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.11%)</title><rect x="62.3147%" y="549" width="0.1072%" height="15" fill="rgb(204,56,56)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="559.50"></text></g><g><title>schedule (46 samples, 0.11%)</title><rect x="62.3147%" y="533" width="0.1072%" height="15" fill="rgb(251,124,124)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="543.50"></text></g><g><title>__schedule (46 samples, 0.11%)</title><rect x="62.3147%" y="517" width="0.1072%" height="15" fill="rgb(209,64,64)" fg:x="26728" fg:w="46"/><text x="62.5647%" y="527.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (27 samples, 0.06%)</title><rect x="62.4242%" y="741" width="0.0629%" height="15" fill="rgb(177,177,51)" fg:x="26775" fg:w="27"/><text x="62.6742%" y="751.50"></text></g><g><title>[unknown] (1,065 samples, 2.48%)</title><rect x="62.4219%" y="901" width="2.4830%" height="15" fill="rgb(206,59,59)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="911.50">[u..</text></g><g><title>start_thread (1,065 samples, 2.48%)</title><rect x="62.4219%" y="885" width="2.4830%" height="15" fill="rgb(235,101,101)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,065 samples, 2.48%)</title><rect x="62.4219%" y="869" width="2.4830%" height="15" fill="rgb(191,191,56)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,065 samples, 2.48%)</title><rect x="62.4219%" y="853" width="2.4830%" height="15" fill="rgb(210,210,62)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,065 samples, 2.48%)</title><rect x="62.4219%" y="837" width="2.4830%" height="15" fill="rgb(205,205,61)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,065 samples, 2.48%)</title><rect x="62.4219%" y="821" width="2.4830%" height="15" fill="rgb(228,228,69)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,065 samples, 2.48%)</title><rect x="62.4219%" y="805" width="2.4830%" height="15" fill="rgb(225,225,68)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,065 samples, 2.48%)</title><rect x="62.4219%" y="789" width="2.4830%" height="15" fill="rgb(227,227,69)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,065 samples, 2.48%)</title><rect x="62.4219%" y="773" width="2.4830%" height="15" fill="rgb(225,225,68)" fg:x="26774" fg:w="1065"/><text x="62.6719%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,064 samples, 2.48%)</title><rect x="62.4242%" y="757" width="2.4806%" height="15" fill="rgb(190,190,55)" fg:x="26775" fg:w="1064"/><text x="62.6742%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,037 samples, 2.42%)</title><rect x="62.4872%" y="741" width="2.4177%" height="15" fill="rgb(196,196,57)" fg:x="26802" fg:w="1037"/><text x="62.7372%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,037 samples, 2.42%)</title><rect x="62.4872%" y="725" width="2.4177%" height="15" fill="rgb(217,217,65)" fg:x="26802" fg:w="1037"/><text x="62.7372%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="64.9049%" y="901" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="911.50"></text></g><g><title>start_thread (9 samples, 0.02%)</title><rect x="64.9049%" y="885" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="64.9049%" y="869" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (9 samples, 0.02%)</title><rect x="64.9049%" y="853" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="64.9049%" y="837" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="847.50"></text></g><g><title>java.lang.Thread::run (9 samples, 0.02%)</title><rect x="64.9049%" y="821" width="0.0210%" height="15" fill="rgb(228,228,69)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (9 samples, 0.02%)</title><rect x="64.9049%" y="805" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (9 samples, 0.02%)</title><rect x="64.9049%" y="789" width="0.0210%" height="15" fill="rgb(227,227,69)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (9 samples, 0.02%)</title><rect x="64.9049%" y="773" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (9 samples, 0.02%)</title><rect x="64.9049%" y="757" width="0.0210%" height="15" fill="rgb(190,190,55)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (9 samples, 0.02%)</title><rect x="64.9049%" y="741" width="0.0210%" height="15" fill="rgb(196,196,57)" fg:x="27839" fg:w="9"/><text x="65.1549%" y="751.50"></text></g><g><title>pool-3-thread-2 (1,141 samples, 2.66%)</title><rect x="62.2704%" y="917" width="2.6602%" height="15" fill="rgb(208,62,62)" fg:x="26709" fg:w="1141"/><text x="62.5204%" y="927.50">po..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (6 samples, 0.01%)</title><rect x="64.9305%" y="773" width="0.0140%" height="15" fill="rgb(225,225,68)" fg:x="27850" fg:w="6"/><text x="65.1805%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (6 samples, 0.01%)</title><rect x="64.9305%" y="757" width="0.0140%" height="15" fill="rgb(190,190,55)" fg:x="27850" fg:w="6"/><text x="65.1805%" y="767.50"></text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="64.9445%" y="501" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="27856" fg:w="20"/><text x="65.1945%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="64.9445%" y="485" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="27856" fg:w="20"/><text x="65.1945%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="64.9445%" y="469" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="27856" fg:w="20"/><text x="65.1945%" y="479.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="64.9445%" y="453" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="27856" fg:w="20"/><text x="65.1945%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="64.9445%" y="437" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="27856" fg:w="20"/><text x="65.1945%" y="447.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="64.9445%" y="421" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="27856" fg:w="20"/><text x="65.1945%" y="431.50"></text></g><g><title>[anon] (27 samples, 0.06%)</title><rect x="64.9305%" y="901" width="0.0629%" height="15" fill="rgb(252,126,126)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="911.50"></text></g><g><title>start_thread (27 samples, 0.06%)</title><rect x="64.9305%" y="885" width="0.0629%" height="15" fill="rgb(235,101,101)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (27 samples, 0.06%)</title><rect x="64.9305%" y="869" width="0.0629%" height="15" fill="rgb(191,191,56)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (27 samples, 0.06%)</title><rect x="64.9305%" y="853" width="0.0629%" height="15" fill="rgb(210,210,62)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (27 samples, 0.06%)</title><rect x="64.9305%" y="837" width="0.0629%" height="15" fill="rgb(205,205,61)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="847.50"></text></g><g><title>java.lang.Thread::run (27 samples, 0.06%)</title><rect x="64.9305%" y="821" width="0.0629%" height="15" fill="rgb(228,228,69)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (27 samples, 0.06%)</title><rect x="64.9305%" y="805" width="0.0629%" height="15" fill="rgb(225,225,68)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (27 samples, 0.06%)</title><rect x="64.9305%" y="789" width="0.0629%" height="15" fill="rgb(227,227,69)" fg:x="27850" fg:w="27"/><text x="65.1805%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (21 samples, 0.05%)</title><rect x="64.9445%" y="773" width="0.0490%" height="15" fill="rgb(218,218,65)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (21 samples, 0.05%)</title><rect x="64.9445%" y="757" width="0.0490%" height="15" fill="rgb(180,180,51)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (21 samples, 0.05%)</title><rect x="64.9445%" y="741" width="0.0490%" height="15" fill="rgb(192,192,56)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (21 samples, 0.05%)</title><rect x="64.9445%" y="725" width="0.0490%" height="15" fill="rgb(204,204,60)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (21 samples, 0.05%)</title><rect x="64.9445%" y="709" width="0.0490%" height="15" fill="rgb(191,191,56)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (21 samples, 0.05%)</title><rect x="64.9445%" y="693" width="0.0490%" height="15" fill="rgb(218,218,65)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="703.50"></text></g><g><title>__pthread_cond_wait (21 samples, 0.05%)</title><rect x="64.9445%" y="677" width="0.0490%" height="15" fill="rgb(240,109,109)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (21 samples, 0.05%)</title><rect x="64.9445%" y="661" width="0.0490%" height="15" fill="rgb(203,55,55)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="671.50"></text></g><g><title>futex_wait_cancelable (21 samples, 0.05%)</title><rect x="64.9445%" y="645" width="0.0490%" height="15" fill="rgb(252,126,126)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.05%)</title><rect x="64.9445%" y="629" width="0.0490%" height="15" fill="rgb(254,128,128)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="639.50"></text></g><g><title>do_syscall_64 (21 samples, 0.05%)</title><rect x="64.9445%" y="613" width="0.0490%" height="15" fill="rgb(217,75,75)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="623.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.05%)</title><rect x="64.9445%" y="597" width="0.0490%" height="15" fill="rgb(248,121,121)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="607.50"></text></g><g><title>do_futex (21 samples, 0.05%)</title><rect x="64.9445%" y="581" width="0.0490%" height="15" fill="rgb(230,94,94)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="591.50"></text></g><g><title>futex_wait (21 samples, 0.05%)</title><rect x="64.9445%" y="565" width="0.0490%" height="15" fill="rgb(219,78,78)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="575.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.05%)</title><rect x="64.9445%" y="549" width="0.0490%" height="15" fill="rgb(204,56,56)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="559.50"></text></g><g><title>schedule (21 samples, 0.05%)</title><rect x="64.9445%" y="533" width="0.0490%" height="15" fill="rgb(251,124,124)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="543.50"></text></g><g><title>__schedule (21 samples, 0.05%)</title><rect x="64.9445%" y="517" width="0.0490%" height="15" fill="rgb(209,64,64)" fg:x="27856" fg:w="21"/><text x="65.1945%" y="527.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (22 samples, 0.05%)</title><rect x="64.9935%" y="741" width="0.0513%" height="15" fill="rgb(177,177,51)" fg:x="27877" fg:w="22"/><text x="65.2435%" y="751.50"></text></g><g><title>[unknown] (1,026 samples, 2.39%)</title><rect x="64.9935%" y="901" width="2.3921%" height="15" fill="rgb(206,59,59)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="911.50">[u..</text></g><g><title>start_thread (1,026 samples, 2.39%)</title><rect x="64.9935%" y="885" width="2.3921%" height="15" fill="rgb(235,101,101)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,026 samples, 2.39%)</title><rect x="64.9935%" y="869" width="2.3921%" height="15" fill="rgb(191,191,56)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,026 samples, 2.39%)</title><rect x="64.9935%" y="853" width="2.3921%" height="15" fill="rgb(210,210,62)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,026 samples, 2.39%)</title><rect x="64.9935%" y="837" width="2.3921%" height="15" fill="rgb(205,205,61)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,026 samples, 2.39%)</title><rect x="64.9935%" y="821" width="2.3921%" height="15" fill="rgb(228,228,69)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,026 samples, 2.39%)</title><rect x="64.9935%" y="805" width="2.3921%" height="15" fill="rgb(225,225,68)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,026 samples, 2.39%)</title><rect x="64.9935%" y="789" width="2.3921%" height="15" fill="rgb(227,227,69)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,026 samples, 2.39%)</title><rect x="64.9935%" y="773" width="2.3921%" height="15" fill="rgb(225,225,68)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,026 samples, 2.39%)</title><rect x="64.9935%" y="757" width="2.3921%" height="15" fill="rgb(190,190,55)" fg:x="27877" fg:w="1026"/><text x="65.2435%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,004 samples, 2.34%)</title><rect x="65.0448%" y="741" width="2.3408%" height="15" fill="rgb(196,196,57)" fg:x="27899" fg:w="1004"/><text x="65.2948%" y="751.50">i..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,004 samples, 2.34%)</title><rect x="65.0448%" y="725" width="2.3408%" height="15" fill="rgb(217,217,65)" fg:x="27899" fg:w="1004"/><text x="65.2948%" y="735.50">i..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="67.3855%" y="901" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="911.50"></text></g><g><title>start_thread (5 samples, 0.01%)</title><rect x="67.3855%" y="885" width="0.0117%" height="15" fill="rgb(235,101,101)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="67.3855%" y="869" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (5 samples, 0.01%)</title><rect x="67.3855%" y="853" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="67.3855%" y="837" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="847.50"></text></g><g><title>java.lang.Thread::run (5 samples, 0.01%)</title><rect x="67.3855%" y="821" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (5 samples, 0.01%)</title><rect x="67.3855%" y="805" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (5 samples, 0.01%)</title><rect x="67.3855%" y="789" width="0.0117%" height="15" fill="rgb(227,227,69)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (5 samples, 0.01%)</title><rect x="67.3855%" y="773" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (5 samples, 0.01%)</title><rect x="67.3855%" y="757" width="0.0117%" height="15" fill="rgb(190,190,55)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (5 samples, 0.01%)</title><rect x="67.3855%" y="741" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="28903" fg:w="5"/><text x="67.6355%" y="751.50"></text></g><g><title>pool-3-thread-3 (1,059 samples, 2.47%)</title><rect x="64.9305%" y="917" width="2.4690%" height="15" fill="rgb(208,62,62)" fg:x="27850" fg:w="1059"/><text x="65.1805%" y="927.50">po..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (11 samples, 0.03%)</title><rect x="67.3995%" y="773" width="0.0256%" height="15" fill="rgb(225,225,68)" fg:x="28909" fg:w="11"/><text x="67.6495%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (11 samples, 0.03%)</title><rect x="67.3995%" y="757" width="0.0256%" height="15" fill="rgb(190,190,55)" fg:x="28909" fg:w="11"/><text x="67.6495%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (5 samples, 0.01%)</title><rect x="67.4135%" y="741" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="28915" fg:w="5"/><text x="67.6635%" y="751.50"></text></g><g><title>finish_task_switch (52 samples, 0.12%)</title><rect x="67.4275%" y="501" width="0.1212%" height="15" fill="rgb(251,124,124)" fg:x="28921" fg:w="52"/><text x="67.6775%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.12%)</title><rect x="67.4275%" y="485" width="0.1212%" height="15" fill="rgb(240,109,109)" fg:x="28921" fg:w="52"/><text x="67.6775%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (52 samples, 0.12%)</title><rect x="67.4275%" y="469" width="0.1212%" height="15" fill="rgb(71,219,71)" fg:x="28921" fg:w="52"/><text x="67.6775%" y="479.50"></text></g><g><title>x86_pmu_enable (52 samples, 0.12%)</title><rect x="67.4275%" y="453" width="0.1212%" height="15" fill="rgb(238,105,105)" fg:x="28921" fg:w="52"/><text x="67.6775%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (52 samples, 0.12%)</title><rect x="67.4275%" y="437" width="0.1212%" height="15" fill="rgb(238,105,105)" fg:x="28921" fg:w="52"/><text x="67.6775%" y="447.50"></text></g><g><title>native_write_msr (52 samples, 0.12%)</title><rect x="67.4275%" y="421" width="0.1212%" height="15" fill="rgb(212,68,68)" fg:x="28921" fg:w="52"/><text x="67.6775%" y="431.50"></text></g><g><title>[anon] (65 samples, 0.15%)</title><rect x="67.3995%" y="901" width="0.1515%" height="15" fill="rgb(252,126,126)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="911.50"></text></g><g><title>start_thread (65 samples, 0.15%)</title><rect x="67.3995%" y="885" width="0.1515%" height="15" fill="rgb(235,101,101)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (65 samples, 0.15%)</title><rect x="67.3995%" y="869" width="0.1515%" height="15" fill="rgb(191,191,56)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (65 samples, 0.15%)</title><rect x="67.3995%" y="853" width="0.1515%" height="15" fill="rgb(210,210,62)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (65 samples, 0.15%)</title><rect x="67.3995%" y="837" width="0.1515%" height="15" fill="rgb(205,205,61)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="847.50"></text></g><g><title>java.lang.Thread::run (65 samples, 0.15%)</title><rect x="67.3995%" y="821" width="0.1515%" height="15" fill="rgb(228,228,69)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (65 samples, 0.15%)</title><rect x="67.3995%" y="805" width="0.1515%" height="15" fill="rgb(225,225,68)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (65 samples, 0.15%)</title><rect x="67.3995%" y="789" width="0.1515%" height="15" fill="rgb(227,227,69)" fg:x="28909" fg:w="65"/><text x="67.6495%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (54 samples, 0.13%)</title><rect x="67.4252%" y="773" width="0.1259%" height="15" fill="rgb(218,218,65)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (54 samples, 0.13%)</title><rect x="67.4252%" y="757" width="0.1259%" height="15" fill="rgb(180,180,51)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (54 samples, 0.13%)</title><rect x="67.4252%" y="741" width="0.1259%" height="15" fill="rgb(192,192,56)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (54 samples, 0.13%)</title><rect x="67.4252%" y="725" width="0.1259%" height="15" fill="rgb(204,204,60)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (54 samples, 0.13%)</title><rect x="67.4252%" y="709" width="0.1259%" height="15" fill="rgb(191,191,56)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (54 samples, 0.13%)</title><rect x="67.4252%" y="693" width="0.1259%" height="15" fill="rgb(218,218,65)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="703.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.13%)</title><rect x="67.4252%" y="677" width="0.1259%" height="15" fill="rgb(240,109,109)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.13%)</title><rect x="67.4252%" y="661" width="0.1259%" height="15" fill="rgb(203,55,55)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="671.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.13%)</title><rect x="67.4252%" y="645" width="0.1259%" height="15" fill="rgb(252,126,126)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.13%)</title><rect x="67.4252%" y="629" width="0.1259%" height="15" fill="rgb(254,128,128)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="639.50"></text></g><g><title>do_syscall_64 (54 samples, 0.13%)</title><rect x="67.4252%" y="613" width="0.1259%" height="15" fill="rgb(217,75,75)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="623.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.13%)</title><rect x="67.4252%" y="597" width="0.1259%" height="15" fill="rgb(248,121,121)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="607.50"></text></g><g><title>do_futex (54 samples, 0.13%)</title><rect x="67.4252%" y="581" width="0.1259%" height="15" fill="rgb(230,94,94)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="591.50"></text></g><g><title>futex_wait (54 samples, 0.13%)</title><rect x="67.4252%" y="565" width="0.1259%" height="15" fill="rgb(219,78,78)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="575.50"></text></g><g><title>futex_wait_queue_me (54 samples, 0.13%)</title><rect x="67.4252%" y="549" width="0.1259%" height="15" fill="rgb(204,56,56)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="559.50"></text></g><g><title>schedule (54 samples, 0.13%)</title><rect x="67.4252%" y="533" width="0.1259%" height="15" fill="rgb(251,124,124)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="543.50"></text></g><g><title>__schedule (54 samples, 0.13%)</title><rect x="67.4252%" y="517" width="0.1259%" height="15" fill="rgb(209,64,64)" fg:x="28920" fg:w="54"/><text x="67.6752%" y="527.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (26 samples, 0.06%)</title><rect x="67.5511%" y="741" width="0.0606%" height="15" fill="rgb(177,177,51)" fg:x="28974" fg:w="26"/><text x="67.8011%" y="751.50"></text></g><g><title>[unknown] (1,070 samples, 2.49%)</title><rect x="67.5511%" y="901" width="2.4946%" height="15" fill="rgb(206,59,59)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="911.50">[u..</text></g><g><title>start_thread (1,070 samples, 2.49%)</title><rect x="67.5511%" y="885" width="2.4946%" height="15" fill="rgb(235,101,101)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,070 samples, 2.49%)</title><rect x="67.5511%" y="869" width="2.4946%" height="15" fill="rgb(191,191,56)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,070 samples, 2.49%)</title><rect x="67.5511%" y="853" width="2.4946%" height="15" fill="rgb(210,210,62)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,070 samples, 2.49%)</title><rect x="67.5511%" y="837" width="2.4946%" height="15" fill="rgb(205,205,61)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,070 samples, 2.49%)</title><rect x="67.5511%" y="821" width="2.4946%" height="15" fill="rgb(228,228,69)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,070 samples, 2.49%)</title><rect x="67.5511%" y="805" width="2.4946%" height="15" fill="rgb(225,225,68)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,070 samples, 2.49%)</title><rect x="67.5511%" y="789" width="2.4946%" height="15" fill="rgb(227,227,69)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,070 samples, 2.49%)</title><rect x="67.5511%" y="773" width="2.4946%" height="15" fill="rgb(225,225,68)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,070 samples, 2.49%)</title><rect x="67.5511%" y="757" width="2.4946%" height="15" fill="rgb(190,190,55)" fg:x="28974" fg:w="1070"/><text x="67.8011%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,044 samples, 2.43%)</title><rect x="67.6117%" y="741" width="2.4340%" height="15" fill="rgb(196,196,57)" fg:x="29000" fg:w="1044"/><text x="67.8617%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,044 samples, 2.43%)</title><rect x="67.6117%" y="725" width="2.4340%" height="15" fill="rgb(217,217,65)" fg:x="29000" fg:w="1044"/><text x="67.8617%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="70.0457%" y="901" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="911.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="70.0457%" y="885" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="70.0457%" y="869" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="70.0457%" y="853" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="70.0457%" y="837" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="847.50"></text></g><g><title>java.lang.Thread::run (8 samples, 0.02%)</title><rect x="70.0457%" y="821" width="0.0187%" height="15" fill="rgb(228,228,69)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (8 samples, 0.02%)</title><rect x="70.0457%" y="805" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (8 samples, 0.02%)</title><rect x="70.0457%" y="789" width="0.0187%" height="15" fill="rgb(227,227,69)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (8 samples, 0.02%)</title><rect x="70.0457%" y="773" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (8 samples, 0.02%)</title><rect x="70.0457%" y="757" width="0.0187%" height="15" fill="rgb(190,190,55)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (8 samples, 0.02%)</title><rect x="70.0457%" y="741" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="30044" fg:w="8"/><text x="70.2957%" y="751.50"></text></g><g><title>pool-3-thread-4 (1,146 samples, 2.67%)</title><rect x="67.3995%" y="917" width="2.6718%" height="15" fill="rgb(208,62,62)" fg:x="28909" fg:w="1146"/><text x="67.6495%" y="927.50">po..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (5 samples, 0.01%)</title><rect x="70.0713%" y="773" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="30055" fg:w="5"/><text x="70.3213%" y="783.50"></text></g><g><title>[anon] (24 samples, 0.06%)</title><rect x="70.0713%" y="901" width="0.0560%" height="15" fill="rgb(252,126,126)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="911.50"></text></g><g><title>start_thread (24 samples, 0.06%)</title><rect x="70.0713%" y="885" width="0.0560%" height="15" fill="rgb(235,101,101)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (24 samples, 0.06%)</title><rect x="70.0713%" y="869" width="0.0560%" height="15" fill="rgb(191,191,56)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (24 samples, 0.06%)</title><rect x="70.0713%" y="853" width="0.0560%" height="15" fill="rgb(210,210,62)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (24 samples, 0.06%)</title><rect x="70.0713%" y="837" width="0.0560%" height="15" fill="rgb(205,205,61)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="847.50"></text></g><g><title>java.lang.Thread::run (24 samples, 0.06%)</title><rect x="70.0713%" y="821" width="0.0560%" height="15" fill="rgb(228,228,69)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (24 samples, 0.06%)</title><rect x="70.0713%" y="805" width="0.0560%" height="15" fill="rgb(225,225,68)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (24 samples, 0.06%)</title><rect x="70.0713%" y="789" width="0.0560%" height="15" fill="rgb(227,227,69)" fg:x="30055" fg:w="24"/><text x="70.3213%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (19 samples, 0.04%)</title><rect x="70.0830%" y="773" width="0.0443%" height="15" fill="rgb(218,218,65)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (19 samples, 0.04%)</title><rect x="70.0830%" y="757" width="0.0443%" height="15" fill="rgb(180,180,51)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (19 samples, 0.04%)</title><rect x="70.0830%" y="741" width="0.0443%" height="15" fill="rgb(192,192,56)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (19 samples, 0.04%)</title><rect x="70.0830%" y="725" width="0.0443%" height="15" fill="rgb(204,204,60)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (19 samples, 0.04%)</title><rect x="70.0830%" y="709" width="0.0443%" height="15" fill="rgb(191,191,56)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (19 samples, 0.04%)</title><rect x="70.0830%" y="693" width="0.0443%" height="15" fill="rgb(218,218,65)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="703.50"></text></g><g><title>__pthread_cond_wait (19 samples, 0.04%)</title><rect x="70.0830%" y="677" width="0.0443%" height="15" fill="rgb(240,109,109)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (19 samples, 0.04%)</title><rect x="70.0830%" y="661" width="0.0443%" height="15" fill="rgb(203,55,55)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="671.50"></text></g><g><title>futex_wait_cancelable (19 samples, 0.04%)</title><rect x="70.0830%" y="645" width="0.0443%" height="15" fill="rgb(252,126,126)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (19 samples, 0.04%)</title><rect x="70.0830%" y="629" width="0.0443%" height="15" fill="rgb(254,128,128)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="639.50"></text></g><g><title>do_syscall_64 (19 samples, 0.04%)</title><rect x="70.0830%" y="613" width="0.0443%" height="15" fill="rgb(217,75,75)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="623.50"></text></g><g><title>__x64_sys_futex (19 samples, 0.04%)</title><rect x="70.0830%" y="597" width="0.0443%" height="15" fill="rgb(248,121,121)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="607.50"></text></g><g><title>do_futex (19 samples, 0.04%)</title><rect x="70.0830%" y="581" width="0.0443%" height="15" fill="rgb(230,94,94)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="591.50"></text></g><g><title>futex_wait (19 samples, 0.04%)</title><rect x="70.0830%" y="565" width="0.0443%" height="15" fill="rgb(219,78,78)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="575.50"></text></g><g><title>futex_wait_queue_me (19 samples, 0.04%)</title><rect x="70.0830%" y="549" width="0.0443%" height="15" fill="rgb(204,56,56)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="559.50"></text></g><g><title>schedule (19 samples, 0.04%)</title><rect x="70.0830%" y="533" width="0.0443%" height="15" fill="rgb(251,124,124)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="543.50"></text></g><g><title>__schedule (19 samples, 0.04%)</title><rect x="70.0830%" y="517" width="0.0443%" height="15" fill="rgb(209,64,64)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="527.50"></text></g><g><title>finish_task_switch (19 samples, 0.04%)</title><rect x="70.0830%" y="501" width="0.0443%" height="15" fill="rgb(251,124,124)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (19 samples, 0.04%)</title><rect x="70.0830%" y="485" width="0.0443%" height="15" fill="rgb(240,109,109)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (19 samples, 0.04%)</title><rect x="70.0830%" y="469" width="0.0443%" height="15" fill="rgb(71,219,71)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="479.50"></text></g><g><title>x86_pmu_enable (19 samples, 0.04%)</title><rect x="70.0830%" y="453" width="0.0443%" height="15" fill="rgb(238,105,105)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (19 samples, 0.04%)</title><rect x="70.0830%" y="437" width="0.0443%" height="15" fill="rgb(238,105,105)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="447.50"></text></g><g><title>native_write_msr (19 samples, 0.04%)</title><rect x="70.0830%" y="421" width="0.0443%" height="15" fill="rgb(212,68,68)" fg:x="30060" fg:w="19"/><text x="70.3330%" y="431.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (31 samples, 0.07%)</title><rect x="70.1273%" y="741" width="0.0723%" height="15" fill="rgb(177,177,51)" fg:x="30079" fg:w="31"/><text x="70.3773%" y="751.50"></text></g><g><title>[unknown] (1,058 samples, 2.47%)</title><rect x="70.1273%" y="901" width="2.4667%" height="15" fill="rgb(206,59,59)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="911.50">[u..</text></g><g><title>start_thread (1,058 samples, 2.47%)</title><rect x="70.1273%" y="885" width="2.4667%" height="15" fill="rgb(235,101,101)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,058 samples, 2.47%)</title><rect x="70.1273%" y="869" width="2.4667%" height="15" fill="rgb(191,191,56)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,058 samples, 2.47%)</title><rect x="70.1273%" y="853" width="2.4667%" height="15" fill="rgb(210,210,62)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,058 samples, 2.47%)</title><rect x="70.1273%" y="837" width="2.4667%" height="15" fill="rgb(205,205,61)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,058 samples, 2.47%)</title><rect x="70.1273%" y="821" width="2.4667%" height="15" fill="rgb(228,228,69)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,058 samples, 2.47%)</title><rect x="70.1273%" y="805" width="2.4667%" height="15" fill="rgb(225,225,68)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,058 samples, 2.47%)</title><rect x="70.1273%" y="789" width="2.4667%" height="15" fill="rgb(227,227,69)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,058 samples, 2.47%)</title><rect x="70.1273%" y="773" width="2.4667%" height="15" fill="rgb(225,225,68)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,058 samples, 2.47%)</title><rect x="70.1273%" y="757" width="2.4667%" height="15" fill="rgb(190,190,55)" fg:x="30079" fg:w="1058"/><text x="70.3773%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,027 samples, 2.39%)</title><rect x="70.1996%" y="741" width="2.3944%" height="15" fill="rgb(196,196,57)" fg:x="30110" fg:w="1027"/><text x="70.4496%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,027 samples, 2.39%)</title><rect x="70.1996%" y="725" width="2.3944%" height="15" fill="rgb(217,217,65)" fg:x="30110" fg:w="1027"/><text x="70.4496%" y="735.50">io..</text></g><g><title>swapgs_restore_regs_and_return_to_usermode (8 samples, 0.02%)</title><rect x="72.5753%" y="709" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="719.50"></text></g><g><title>prepare_exit_to_usermode (8 samples, 0.02%)</title><rect x="72.5753%" y="693" width="0.0187%" height="15" fill="rgb(240,108,108)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="703.50"></text></g><g><title>exit_to_usermode_loop (8 samples, 0.02%)</title><rect x="72.5753%" y="677" width="0.0187%" height="15" fill="rgb(207,60,60)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="687.50"></text></g><g><title>schedule (8 samples, 0.02%)</title><rect x="72.5753%" y="661" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="671.50"></text></g><g><title>__schedule (8 samples, 0.02%)</title><rect x="72.5753%" y="645" width="0.0187%" height="15" fill="rgb(209,64,64)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="655.50"></text></g><g><title>finish_task_switch (8 samples, 0.02%)</title><rect x="72.5753%" y="629" width="0.0187%" height="15" fill="rgb(251,124,124)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (8 samples, 0.02%)</title><rect x="72.5753%" y="613" width="0.0187%" height="15" fill="rgb(240,109,109)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (8 samples, 0.02%)</title><rect x="72.5753%" y="597" width="0.0187%" height="15" fill="rgb(71,219,71)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="607.50"></text></g><g><title>x86_pmu_enable (8 samples, 0.02%)</title><rect x="72.5753%" y="581" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (8 samples, 0.02%)</title><rect x="72.5753%" y="565" width="0.0187%" height="15" fill="rgb(238,105,105)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="575.50"></text></g><g><title>native_write_msr (8 samples, 0.02%)</title><rect x="72.5753%" y="549" width="0.0187%" height="15" fill="rgb(212,68,68)" fg:x="31129" fg:w="8"/><text x="72.8253%" y="559.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="72.5940%" y="901" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="911.50"></text></g><g><title>start_thread (5 samples, 0.01%)</title><rect x="72.5940%" y="885" width="0.0117%" height="15" fill="rgb(235,101,101)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="72.5940%" y="869" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (5 samples, 0.01%)</title><rect x="72.5940%" y="853" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="72.5940%" y="837" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="847.50"></text></g><g><title>java.lang.Thread::run (5 samples, 0.01%)</title><rect x="72.5940%" y="821" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (5 samples, 0.01%)</title><rect x="72.5940%" y="805" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (5 samples, 0.01%)</title><rect x="72.5940%" y="789" width="0.0117%" height="15" fill="rgb(227,227,69)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (5 samples, 0.01%)</title><rect x="72.5940%" y="773" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (5 samples, 0.01%)</title><rect x="72.5940%" y="757" width="0.0117%" height="15" fill="rgb(190,190,55)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (5 samples, 0.01%)</title><rect x="72.5940%" y="741" width="0.0117%" height="15" fill="rgb(196,196,57)" fg:x="31137" fg:w="5"/><text x="72.8440%" y="751.50"></text></g><g><title>pool-3-thread-5 (1,088 samples, 2.54%)</title><rect x="70.0713%" y="917" width="2.5366%" height="15" fill="rgb(208,62,62)" fg:x="30055" fg:w="1088"/><text x="70.3213%" y="927.50">po..</text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="72.6219%" y="501" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="31149" fg:w="20"/><text x="72.8719%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="72.6219%" y="485" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="31149" fg:w="20"/><text x="72.8719%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="72.6219%" y="469" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="31149" fg:w="20"/><text x="72.8719%" y="479.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="72.6219%" y="453" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="31149" fg:w="20"/><text x="72.8719%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="72.6219%" y="437" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="31149" fg:w="20"/><text x="72.8719%" y="447.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="72.6219%" y="421" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="31149" fg:w="20"/><text x="72.8719%" y="431.50"></text></g><g><title>[anon] (27 samples, 0.06%)</title><rect x="72.6079%" y="901" width="0.0629%" height="15" fill="rgb(252,126,126)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="911.50"></text></g><g><title>start_thread (27 samples, 0.06%)</title><rect x="72.6079%" y="885" width="0.0629%" height="15" fill="rgb(235,101,101)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (27 samples, 0.06%)</title><rect x="72.6079%" y="869" width="0.0629%" height="15" fill="rgb(191,191,56)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (27 samples, 0.06%)</title><rect x="72.6079%" y="853" width="0.0629%" height="15" fill="rgb(210,210,62)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (27 samples, 0.06%)</title><rect x="72.6079%" y="837" width="0.0629%" height="15" fill="rgb(205,205,61)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="847.50"></text></g><g><title>java.lang.Thread::run (27 samples, 0.06%)</title><rect x="72.6079%" y="821" width="0.0629%" height="15" fill="rgb(228,228,69)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (27 samples, 0.06%)</title><rect x="72.6079%" y="805" width="0.0629%" height="15" fill="rgb(225,225,68)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (27 samples, 0.06%)</title><rect x="72.6079%" y="789" width="0.0629%" height="15" fill="rgb(227,227,69)" fg:x="31143" fg:w="27"/><text x="72.8579%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (23 samples, 0.05%)</title><rect x="72.6173%" y="773" width="0.0536%" height="15" fill="rgb(218,218,65)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (23 samples, 0.05%)</title><rect x="72.6173%" y="757" width="0.0536%" height="15" fill="rgb(180,180,51)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (23 samples, 0.05%)</title><rect x="72.6173%" y="741" width="0.0536%" height="15" fill="rgb(192,192,56)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (23 samples, 0.05%)</title><rect x="72.6173%" y="725" width="0.0536%" height="15" fill="rgb(204,204,60)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (23 samples, 0.05%)</title><rect x="72.6173%" y="709" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (23 samples, 0.05%)</title><rect x="72.6173%" y="693" width="0.0536%" height="15" fill="rgb(218,218,65)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="703.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.05%)</title><rect x="72.6173%" y="677" width="0.0536%" height="15" fill="rgb(240,109,109)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.05%)</title><rect x="72.6173%" y="661" width="0.0536%" height="15" fill="rgb(203,55,55)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="671.50"></text></g><g><title>futex_wait_cancelable (23 samples, 0.05%)</title><rect x="72.6173%" y="645" width="0.0536%" height="15" fill="rgb(252,126,126)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (23 samples, 0.05%)</title><rect x="72.6173%" y="629" width="0.0536%" height="15" fill="rgb(254,128,128)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="639.50"></text></g><g><title>do_syscall_64 (23 samples, 0.05%)</title><rect x="72.6173%" y="613" width="0.0536%" height="15" fill="rgb(217,75,75)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="623.50"></text></g><g><title>__x64_sys_futex (23 samples, 0.05%)</title><rect x="72.6173%" y="597" width="0.0536%" height="15" fill="rgb(248,121,121)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="607.50"></text></g><g><title>do_futex (23 samples, 0.05%)</title><rect x="72.6173%" y="581" width="0.0536%" height="15" fill="rgb(230,94,94)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="591.50"></text></g><g><title>futex_wait (23 samples, 0.05%)</title><rect x="72.6173%" y="565" width="0.0536%" height="15" fill="rgb(219,78,78)" fg:x="31147" fg:w="23"/><text x="72.8673%" y="575.50"></text></g><g><title>futex_wait_queue_me (22 samples, 0.05%)</title><rect x="72.6196%" y="549" width="0.0513%" height="15" fill="rgb(204,56,56)" fg:x="31148" fg:w="22"/><text x="72.8696%" y="559.50"></text></g><g><title>schedule (22 samples, 0.05%)</title><rect x="72.6196%" y="533" width="0.0513%" height="15" fill="rgb(251,124,124)" fg:x="31148" fg:w="22"/><text x="72.8696%" y="543.50"></text></g><g><title>__schedule (22 samples, 0.05%)</title><rect x="72.6196%" y="517" width="0.0513%" height="15" fill="rgb(209,64,64)" fg:x="31148" fg:w="22"/><text x="72.8696%" y="527.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (25 samples, 0.06%)</title><rect x="72.6732%" y="741" width="0.0583%" height="15" fill="rgb(177,177,51)" fg:x="31171" fg:w="25"/><text x="72.9232%" y="751.50"></text></g><g><title>[unknown] (1,069 samples, 2.49%)</title><rect x="72.6709%" y="901" width="2.4923%" height="15" fill="rgb(206,59,59)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="911.50">[u..</text></g><g><title>start_thread (1,069 samples, 2.49%)</title><rect x="72.6709%" y="885" width="2.4923%" height="15" fill="rgb(235,101,101)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,069 samples, 2.49%)</title><rect x="72.6709%" y="869" width="2.4923%" height="15" fill="rgb(191,191,56)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,069 samples, 2.49%)</title><rect x="72.6709%" y="853" width="2.4923%" height="15" fill="rgb(210,210,62)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,069 samples, 2.49%)</title><rect x="72.6709%" y="837" width="2.4923%" height="15" fill="rgb(205,205,61)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,069 samples, 2.49%)</title><rect x="72.6709%" y="821" width="2.4923%" height="15" fill="rgb(228,228,69)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,069 samples, 2.49%)</title><rect x="72.6709%" y="805" width="2.4923%" height="15" fill="rgb(225,225,68)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,069 samples, 2.49%)</title><rect x="72.6709%" y="789" width="2.4923%" height="15" fill="rgb(227,227,69)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,069 samples, 2.49%)</title><rect x="72.6709%" y="773" width="2.4923%" height="15" fill="rgb(225,225,68)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,069 samples, 2.49%)</title><rect x="72.6709%" y="757" width="2.4923%" height="15" fill="rgb(190,190,55)" fg:x="31170" fg:w="1069"/><text x="72.9209%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,043 samples, 2.43%)</title><rect x="72.7315%" y="741" width="2.4317%" height="15" fill="rgb(196,196,57)" fg:x="31196" fg:w="1043"/><text x="72.9815%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,043 samples, 2.43%)</title><rect x="72.7315%" y="725" width="2.4317%" height="15" fill="rgb(217,217,65)" fg:x="31196" fg:w="1043"/><text x="72.9815%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (7 samples, 0.02%)</title><rect x="75.1632%" y="901" width="0.0163%" height="15" fill="rgb(191,191,56)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="911.50"></text></g><g><title>start_thread (7 samples, 0.02%)</title><rect x="75.1632%" y="885" width="0.0163%" height="15" fill="rgb(235,101,101)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (7 samples, 0.02%)</title><rect x="75.1632%" y="869" width="0.0163%" height="15" fill="rgb(191,191,56)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (7 samples, 0.02%)</title><rect x="75.1632%" y="853" width="0.0163%" height="15" fill="rgb(210,210,62)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (7 samples, 0.02%)</title><rect x="75.1632%" y="837" width="0.0163%" height="15" fill="rgb(205,205,61)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="847.50"></text></g><g><title>java.lang.Thread::run (7 samples, 0.02%)</title><rect x="75.1632%" y="821" width="0.0163%" height="15" fill="rgb(228,228,69)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (7 samples, 0.02%)</title><rect x="75.1632%" y="805" width="0.0163%" height="15" fill="rgb(225,225,68)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (7 samples, 0.02%)</title><rect x="75.1632%" y="789" width="0.0163%" height="15" fill="rgb(227,227,69)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (7 samples, 0.02%)</title><rect x="75.1632%" y="773" width="0.0163%" height="15" fill="rgb(225,225,68)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (7 samples, 0.02%)</title><rect x="75.1632%" y="757" width="0.0163%" height="15" fill="rgb(190,190,55)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (7 samples, 0.02%)</title><rect x="75.1632%" y="741" width="0.0163%" height="15" fill="rgb(196,196,57)" fg:x="32239" fg:w="7"/><text x="75.4132%" y="751.50"></text></g><g><title>pool-3-thread-6 (1,104 samples, 2.57%)</title><rect x="72.6079%" y="917" width="2.5739%" height="15" fill="rgb(208,62,62)" fg:x="31143" fg:w="1104"/><text x="72.8579%" y="927.50">po..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (10 samples, 0.02%)</title><rect x="75.1819%" y="773" width="0.0233%" height="15" fill="rgb(225,225,68)" fg:x="32247" fg:w="10"/><text x="75.4319%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (10 samples, 0.02%)</title><rect x="75.1819%" y="757" width="0.0233%" height="15" fill="rgb(190,190,55)" fg:x="32247" fg:w="10"/><text x="75.4319%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (26 samples, 0.06%)</title><rect x="75.2052%" y="741" width="0.0606%" height="15" fill="rgb(192,192,56)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (26 samples, 0.06%)</title><rect x="75.2052%" y="725" width="0.0606%" height="15" fill="rgb(204,204,60)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (26 samples, 0.06%)</title><rect x="75.2052%" y="709" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (26 samples, 0.06%)</title><rect x="75.2052%" y="693" width="0.0606%" height="15" fill="rgb(218,218,65)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="703.50"></text></g><g><title>__pthread_cond_wait (26 samples, 0.06%)</title><rect x="75.2052%" y="677" width="0.0606%" height="15" fill="rgb(240,109,109)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (26 samples, 0.06%)</title><rect x="75.2052%" y="661" width="0.0606%" height="15" fill="rgb(203,55,55)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="671.50"></text></g><g><title>futex_wait_cancelable (26 samples, 0.06%)</title><rect x="75.2052%" y="645" width="0.0606%" height="15" fill="rgb(252,126,126)" fg:x="32257" fg:w="26"/><text x="75.4552%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (25 samples, 0.06%)</title><rect x="75.2075%" y="629" width="0.0583%" height="15" fill="rgb(254,128,128)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="639.50"></text></g><g><title>do_syscall_64 (25 samples, 0.06%)</title><rect x="75.2075%" y="613" width="0.0583%" height="15" fill="rgb(217,75,75)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="623.50"></text></g><g><title>__x64_sys_futex (25 samples, 0.06%)</title><rect x="75.2075%" y="597" width="0.0583%" height="15" fill="rgb(248,121,121)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="607.50"></text></g><g><title>do_futex (25 samples, 0.06%)</title><rect x="75.2075%" y="581" width="0.0583%" height="15" fill="rgb(230,94,94)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="591.50"></text></g><g><title>futex_wait (25 samples, 0.06%)</title><rect x="75.2075%" y="565" width="0.0583%" height="15" fill="rgb(219,78,78)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="575.50"></text></g><g><title>futex_wait_queue_me (25 samples, 0.06%)</title><rect x="75.2075%" y="549" width="0.0583%" height="15" fill="rgb(204,56,56)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="559.50"></text></g><g><title>schedule (25 samples, 0.06%)</title><rect x="75.2075%" y="533" width="0.0583%" height="15" fill="rgb(251,124,124)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="543.50"></text></g><g><title>__schedule (25 samples, 0.06%)</title><rect x="75.2075%" y="517" width="0.0583%" height="15" fill="rgb(209,64,64)" fg:x="32258" fg:w="25"/><text x="75.4575%" y="527.50"></text></g><g><title>finish_task_switch (24 samples, 0.06%)</title><rect x="75.2098%" y="501" width="0.0560%" height="15" fill="rgb(251,124,124)" fg:x="32259" fg:w="24"/><text x="75.4598%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (24 samples, 0.06%)</title><rect x="75.2098%" y="485" width="0.0560%" height="15" fill="rgb(240,109,109)" fg:x="32259" fg:w="24"/><text x="75.4598%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (24 samples, 0.06%)</title><rect x="75.2098%" y="469" width="0.0560%" height="15" fill="rgb(71,219,71)" fg:x="32259" fg:w="24"/><text x="75.4598%" y="479.50"></text></g><g><title>x86_pmu_enable (24 samples, 0.06%)</title><rect x="75.2098%" y="453" width="0.0560%" height="15" fill="rgb(238,105,105)" fg:x="32259" fg:w="24"/><text x="75.4598%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (24 samples, 0.06%)</title><rect x="75.2098%" y="437" width="0.0560%" height="15" fill="rgb(238,105,105)" fg:x="32259" fg:w="24"/><text x="75.4598%" y="447.50"></text></g><g><title>native_write_msr (24 samples, 0.06%)</title><rect x="75.2098%" y="421" width="0.0560%" height="15" fill="rgb(212,68,68)" fg:x="32259" fg:w="24"/><text x="75.4598%" y="431.50"></text></g><g><title>[anon] (40 samples, 0.09%)</title><rect x="75.1819%" y="901" width="0.0933%" height="15" fill="rgb(252,126,126)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="911.50"></text></g><g><title>start_thread (40 samples, 0.09%)</title><rect x="75.1819%" y="885" width="0.0933%" height="15" fill="rgb(235,101,101)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (40 samples, 0.09%)</title><rect x="75.1819%" y="869" width="0.0933%" height="15" fill="rgb(191,191,56)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (40 samples, 0.09%)</title><rect x="75.1819%" y="853" width="0.0933%" height="15" fill="rgb(210,210,62)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (40 samples, 0.09%)</title><rect x="75.1819%" y="837" width="0.0933%" height="15" fill="rgb(205,205,61)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="847.50"></text></g><g><title>java.lang.Thread::run (40 samples, 0.09%)</title><rect x="75.1819%" y="821" width="0.0933%" height="15" fill="rgb(228,228,69)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (40 samples, 0.09%)</title><rect x="75.1819%" y="805" width="0.0933%" height="15" fill="rgb(225,225,68)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (40 samples, 0.09%)</title><rect x="75.1819%" y="789" width="0.0933%" height="15" fill="rgb(227,227,69)" fg:x="32247" fg:w="40"/><text x="75.4319%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (30 samples, 0.07%)</title><rect x="75.2052%" y="773" width="0.0699%" height="15" fill="rgb(218,218,65)" fg:x="32257" fg:w="30"/><text x="75.4552%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (30 samples, 0.07%)</title><rect x="75.2052%" y="757" width="0.0699%" height="15" fill="rgb(180,180,51)" fg:x="32257" fg:w="30"/><text x="75.4552%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (28 samples, 0.07%)</title><rect x="75.2774%" y="741" width="0.0653%" height="15" fill="rgb(177,177,51)" fg:x="32288" fg:w="28"/><text x="75.5274%" y="751.50"></text></g><g><title>[unknown] (1,104 samples, 2.57%)</title><rect x="75.2751%" y="901" width="2.5739%" height="15" fill="rgb(206,59,59)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="911.50">[u..</text></g><g><title>start_thread (1,104 samples, 2.57%)</title><rect x="75.2751%" y="885" width="2.5739%" height="15" fill="rgb(235,101,101)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,104 samples, 2.57%)</title><rect x="75.2751%" y="869" width="2.5739%" height="15" fill="rgb(191,191,56)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,104 samples, 2.57%)</title><rect x="75.2751%" y="853" width="2.5739%" height="15" fill="rgb(210,210,62)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,104 samples, 2.57%)</title><rect x="75.2751%" y="837" width="2.5739%" height="15" fill="rgb(205,205,61)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,104 samples, 2.57%)</title><rect x="75.2751%" y="821" width="2.5739%" height="15" fill="rgb(228,228,69)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,104 samples, 2.57%)</title><rect x="75.2751%" y="805" width="2.5739%" height="15" fill="rgb(225,225,68)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,104 samples, 2.57%)</title><rect x="75.2751%" y="789" width="2.5739%" height="15" fill="rgb(227,227,69)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,104 samples, 2.57%)</title><rect x="75.2751%" y="773" width="2.5739%" height="15" fill="rgb(225,225,68)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,104 samples, 2.57%)</title><rect x="75.2751%" y="757" width="2.5739%" height="15" fill="rgb(190,190,55)" fg:x="32287" fg:w="1104"/><text x="75.5251%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,075 samples, 2.51%)</title><rect x="75.3427%" y="741" width="2.5063%" height="15" fill="rgb(196,196,57)" fg:x="32316" fg:w="1075"/><text x="75.5927%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,075 samples, 2.51%)</title><rect x="75.3427%" y="725" width="2.5063%" height="15" fill="rgb(217,217,65)" fg:x="32316" fg:w="1075"/><text x="75.5927%" y="735.50">io..</text></g><g><title>swapgs_restore_regs_and_return_to_usermode (12 samples, 0.03%)</title><rect x="77.8210%" y="709" width="0.0280%" height="15" fill="rgb(212,68,68)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="719.50"></text></g><g><title>prepare_exit_to_usermode (12 samples, 0.03%)</title><rect x="77.8210%" y="693" width="0.0280%" height="15" fill="rgb(240,108,108)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="703.50"></text></g><g><title>exit_to_usermode_loop (12 samples, 0.03%)</title><rect x="77.8210%" y="677" width="0.0280%" height="15" fill="rgb(207,60,60)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="687.50"></text></g><g><title>schedule (12 samples, 0.03%)</title><rect x="77.8210%" y="661" width="0.0280%" height="15" fill="rgb(251,124,124)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="671.50"></text></g><g><title>__schedule (12 samples, 0.03%)</title><rect x="77.8210%" y="645" width="0.0280%" height="15" fill="rgb(209,64,64)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="655.50"></text></g><g><title>finish_task_switch (12 samples, 0.03%)</title><rect x="77.8210%" y="629" width="0.0280%" height="15" fill="rgb(251,124,124)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (12 samples, 0.03%)</title><rect x="77.8210%" y="613" width="0.0280%" height="15" fill="rgb(240,109,109)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="623.50"></text></g><g><title>perf_pmu_enable.part.0 (12 samples, 0.03%)</title><rect x="77.8210%" y="597" width="0.0280%" height="15" fill="rgb(71,219,71)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="607.50"></text></g><g><title>x86_pmu_enable (12 samples, 0.03%)</title><rect x="77.8210%" y="581" width="0.0280%" height="15" fill="rgb(238,105,105)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="591.50"></text></g><g><title>intel_tfa_pmu_enable_all (12 samples, 0.03%)</title><rect x="77.8210%" y="565" width="0.0280%" height="15" fill="rgb(238,105,105)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="575.50"></text></g><g><title>native_write_msr (12 samples, 0.03%)</title><rect x="77.8210%" y="549" width="0.0280%" height="15" fill="rgb(212,68,68)" fg:x="33379" fg:w="12"/><text x="78.0710%" y="559.50"></text></g><g><title>pool-3-thread-7 (1,152 samples, 2.69%)</title><rect x="75.1819%" y="917" width="2.6858%" height="15" fill="rgb(208,62,62)" fg:x="32247" fg:w="1152"/><text x="75.4319%" y="927.50">po..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="77.8490%" y="901" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="911.50"></text></g><g><title>start_thread (8 samples, 0.02%)</title><rect x="77.8490%" y="885" width="0.0187%" height="15" fill="rgb(235,101,101)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (8 samples, 0.02%)</title><rect x="77.8490%" y="869" width="0.0187%" height="15" fill="rgb(191,191,56)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (8 samples, 0.02%)</title><rect x="77.8490%" y="853" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (8 samples, 0.02%)</title><rect x="77.8490%" y="837" width="0.0187%" height="15" fill="rgb(205,205,61)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="847.50"></text></g><g><title>java.lang.Thread::run (8 samples, 0.02%)</title><rect x="77.8490%" y="821" width="0.0187%" height="15" fill="rgb(228,228,69)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (8 samples, 0.02%)</title><rect x="77.8490%" y="805" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (8 samples, 0.02%)</title><rect x="77.8490%" y="789" width="0.0187%" height="15" fill="rgb(227,227,69)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (8 samples, 0.02%)</title><rect x="77.8490%" y="773" width="0.0187%" height="15" fill="rgb(225,225,68)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (8 samples, 0.02%)</title><rect x="77.8490%" y="757" width="0.0187%" height="15" fill="rgb(190,190,55)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (8 samples, 0.02%)</title><rect x="77.8490%" y="741" width="0.0187%" height="15" fill="rgb(196,196,57)" fg:x="33391" fg:w="8"/><text x="78.0990%" y="751.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (5 samples, 0.01%)</title><rect x="77.8677%" y="773" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="33399" fg:w="5"/><text x="78.1177%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (5 samples, 0.01%)</title><rect x="77.8677%" y="757" width="0.0117%" height="15" fill="rgb(190,190,55)" fg:x="33399" fg:w="5"/><text x="78.1177%" y="767.50"></text></g><g><title>[anon] (48 samples, 0.11%)</title><rect x="77.8677%" y="901" width="0.1119%" height="15" fill="rgb(252,126,126)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="911.50"></text></g><g><title>start_thread (48 samples, 0.11%)</title><rect x="77.8677%" y="885" width="0.1119%" height="15" fill="rgb(235,101,101)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (48 samples, 0.11%)</title><rect x="77.8677%" y="869" width="0.1119%" height="15" fill="rgb(191,191,56)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (48 samples, 0.11%)</title><rect x="77.8677%" y="853" width="0.1119%" height="15" fill="rgb(210,210,62)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (48 samples, 0.11%)</title><rect x="77.8677%" y="837" width="0.1119%" height="15" fill="rgb(205,205,61)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="847.50"></text></g><g><title>java.lang.Thread::run (48 samples, 0.11%)</title><rect x="77.8677%" y="821" width="0.1119%" height="15" fill="rgb(228,228,69)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (48 samples, 0.11%)</title><rect x="77.8677%" y="805" width="0.1119%" height="15" fill="rgb(225,225,68)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (48 samples, 0.11%)</title><rect x="77.8677%" y="789" width="0.1119%" height="15" fill="rgb(227,227,69)" fg:x="33399" fg:w="48"/><text x="78.1177%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (43 samples, 0.10%)</title><rect x="77.8793%" y="773" width="0.1003%" height="15" fill="rgb(218,218,65)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (43 samples, 0.10%)</title><rect x="77.8793%" y="757" width="0.1003%" height="15" fill="rgb(180,180,51)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (43 samples, 0.10%)</title><rect x="77.8793%" y="741" width="0.1003%" height="15" fill="rgb(192,192,56)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (43 samples, 0.10%)</title><rect x="77.8793%" y="725" width="0.1003%" height="15" fill="rgb(204,204,60)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (43 samples, 0.10%)</title><rect x="77.8793%" y="709" width="0.1003%" height="15" fill="rgb(191,191,56)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (43 samples, 0.10%)</title><rect x="77.8793%" y="693" width="0.1003%" height="15" fill="rgb(218,218,65)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="703.50"></text></g><g><title>__pthread_cond_wait (43 samples, 0.10%)</title><rect x="77.8793%" y="677" width="0.1003%" height="15" fill="rgb(240,109,109)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (43 samples, 0.10%)</title><rect x="77.8793%" y="661" width="0.1003%" height="15" fill="rgb(203,55,55)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="671.50"></text></g><g><title>futex_wait_cancelable (43 samples, 0.10%)</title><rect x="77.8793%" y="645" width="0.1003%" height="15" fill="rgb(252,126,126)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.10%)</title><rect x="77.8793%" y="629" width="0.1003%" height="15" fill="rgb(254,128,128)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="639.50"></text></g><g><title>do_syscall_64 (43 samples, 0.10%)</title><rect x="77.8793%" y="613" width="0.1003%" height="15" fill="rgb(217,75,75)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="623.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.10%)</title><rect x="77.8793%" y="597" width="0.1003%" height="15" fill="rgb(248,121,121)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="607.50"></text></g><g><title>do_futex (43 samples, 0.10%)</title><rect x="77.8793%" y="581" width="0.1003%" height="15" fill="rgb(230,94,94)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="591.50"></text></g><g><title>futex_wait (43 samples, 0.10%)</title><rect x="77.8793%" y="565" width="0.1003%" height="15" fill="rgb(219,78,78)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="575.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.10%)</title><rect x="77.8793%" y="549" width="0.1003%" height="15" fill="rgb(204,56,56)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="559.50"></text></g><g><title>schedule (43 samples, 0.10%)</title><rect x="77.8793%" y="533" width="0.1003%" height="15" fill="rgb(251,124,124)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="543.50"></text></g><g><title>__schedule (43 samples, 0.10%)</title><rect x="77.8793%" y="517" width="0.1003%" height="15" fill="rgb(209,64,64)" fg:x="33404" fg:w="43"/><text x="78.1293%" y="527.50"></text></g><g><title>finish_task_switch (42 samples, 0.10%)</title><rect x="77.8817%" y="501" width="0.0979%" height="15" fill="rgb(251,124,124)" fg:x="33405" fg:w="42"/><text x="78.1317%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (42 samples, 0.10%)</title><rect x="77.8817%" y="485" width="0.0979%" height="15" fill="rgb(240,109,109)" fg:x="33405" fg:w="42"/><text x="78.1317%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (42 samples, 0.10%)</title><rect x="77.8817%" y="469" width="0.0979%" height="15" fill="rgb(71,219,71)" fg:x="33405" fg:w="42"/><text x="78.1317%" y="479.50"></text></g><g><title>x86_pmu_enable (42 samples, 0.10%)</title><rect x="77.8817%" y="453" width="0.0979%" height="15" fill="rgb(238,105,105)" fg:x="33405" fg:w="42"/><text x="78.1317%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (42 samples, 0.10%)</title><rect x="77.8817%" y="437" width="0.0979%" height="15" fill="rgb(238,105,105)" fg:x="33405" fg:w="42"/><text x="78.1317%" y="447.50"></text></g><g><title>native_write_msr (42 samples, 0.10%)</title><rect x="77.8817%" y="421" width="0.0979%" height="15" fill="rgb(212,68,68)" fg:x="33405" fg:w="42"/><text x="78.1317%" y="431.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (28 samples, 0.07%)</title><rect x="77.9796%" y="741" width="0.0653%" height="15" fill="rgb(177,177,51)" fg:x="33447" fg:w="28"/><text x="78.2296%" y="751.50"></text></g><g><title>swapgs_restore_regs_and_return_to_usermode (5 samples, 0.01%)</title><rect x="80.6281%" y="709" width="0.0117%" height="15" fill="rgb(212,68,68)" fg:x="34583" fg:w="5"/><text x="80.8781%" y="719.50"></text></g><g><title>prepare_exit_to_usermode (5 samples, 0.01%)</title><rect x="80.6281%" y="693" width="0.0117%" height="15" fill="rgb(240,108,108)" fg:x="34583" fg:w="5"/><text x="80.8781%" y="703.50"></text></g><g><title>exit_to_usermode_loop (5 samples, 0.01%)</title><rect x="80.6281%" y="677" width="0.0117%" height="15" fill="rgb(207,60,60)" fg:x="34583" fg:w="5"/><text x="80.8781%" y="687.50"></text></g><g><title>[unknown] (1,142 samples, 2.66%)</title><rect x="77.9796%" y="901" width="2.6625%" height="15" fill="rgb(206,59,59)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="911.50">[u..</text></g><g><title>start_thread (1,142 samples, 2.66%)</title><rect x="77.9796%" y="885" width="2.6625%" height="15" fill="rgb(235,101,101)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,142 samples, 2.66%)</title><rect x="77.9796%" y="869" width="2.6625%" height="15" fill="rgb(191,191,56)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,142 samples, 2.66%)</title><rect x="77.9796%" y="853" width="2.6625%" height="15" fill="rgb(210,210,62)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,142 samples, 2.66%)</title><rect x="77.9796%" y="837" width="2.6625%" height="15" fill="rgb(205,205,61)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,142 samples, 2.66%)</title><rect x="77.9796%" y="821" width="2.6625%" height="15" fill="rgb(228,228,69)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,142 samples, 2.66%)</title><rect x="77.9796%" y="805" width="2.6625%" height="15" fill="rgb(225,225,68)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,142 samples, 2.66%)</title><rect x="77.9796%" y="789" width="2.6625%" height="15" fill="rgb(227,227,69)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,142 samples, 2.66%)</title><rect x="77.9796%" y="773" width="2.6625%" height="15" fill="rgb(225,225,68)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,142 samples, 2.66%)</title><rect x="77.9796%" y="757" width="2.6625%" height="15" fill="rgb(190,190,55)" fg:x="33447" fg:w="1142"/><text x="78.2296%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,114 samples, 2.60%)</title><rect x="78.0449%" y="741" width="2.5972%" height="15" fill="rgb(196,196,57)" fg:x="33475" fg:w="1114"/><text x="78.2949%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,114 samples, 2.60%)</title><rect x="78.0449%" y="725" width="2.5972%" height="15" fill="rgb(217,217,65)" fg:x="33475" fg:w="1114"/><text x="78.2949%" y="735.50">io..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (6 samples, 0.01%)</title><rect x="80.6421%" y="901" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="911.50"></text></g><g><title>start_thread (6 samples, 0.01%)</title><rect x="80.6421%" y="885" width="0.0140%" height="15" fill="rgb(235,101,101)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (6 samples, 0.01%)</title><rect x="80.6421%" y="869" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (6 samples, 0.01%)</title><rect x="80.6421%" y="853" width="0.0140%" height="15" fill="rgb(210,210,62)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (6 samples, 0.01%)</title><rect x="80.6421%" y="837" width="0.0140%" height="15" fill="rgb(205,205,61)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="847.50"></text></g><g><title>java.lang.Thread::run (6 samples, 0.01%)</title><rect x="80.6421%" y="821" width="0.0140%" height="15" fill="rgb(228,228,69)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (6 samples, 0.01%)</title><rect x="80.6421%" y="805" width="0.0140%" height="15" fill="rgb(225,225,68)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (6 samples, 0.01%)</title><rect x="80.6421%" y="789" width="0.0140%" height="15" fill="rgb(227,227,69)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (6 samples, 0.01%)</title><rect x="80.6421%" y="773" width="0.0140%" height="15" fill="rgb(225,225,68)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (6 samples, 0.01%)</title><rect x="80.6421%" y="757" width="0.0140%" height="15" fill="rgb(190,190,55)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (6 samples, 0.01%)</title><rect x="80.6421%" y="741" width="0.0140%" height="15" fill="rgb(196,196,57)" fg:x="34589" fg:w="6"/><text x="80.8921%" y="751.50"></text></g><g><title>pool-3-thread-8 (1,199 samples, 2.80%)</title><rect x="77.8677%" y="917" width="2.7954%" height="15" fill="rgb(208,62,62)" fg:x="33399" fg:w="1199"/><text x="78.1177%" y="927.50">po..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (9 samples, 0.02%)</title><rect x="80.6654%" y="773" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="34599" fg:w="9"/><text x="80.9154%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (8 samples, 0.02%)</title><rect x="80.6677%" y="757" width="0.0187%" height="15" fill="rgb(190,190,55)" fg:x="34600" fg:w="8"/><text x="80.9177%" y="767.50"></text></g><g><title>[anon] (33 samples, 0.08%)</title><rect x="80.6631%" y="901" width="0.0769%" height="15" fill="rgb(252,126,126)" fg:x="34598" fg:w="33"/><text x="80.9131%" y="911.50"></text></g><g><title>start_thread (32 samples, 0.07%)</title><rect x="80.6654%" y="885" width="0.0746%" height="15" fill="rgb(235,101,101)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (32 samples, 0.07%)</title><rect x="80.6654%" y="869" width="0.0746%" height="15" fill="rgb(191,191,56)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (32 samples, 0.07%)</title><rect x="80.6654%" y="853" width="0.0746%" height="15" fill="rgb(210,210,62)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (32 samples, 0.07%)</title><rect x="80.6654%" y="837" width="0.0746%" height="15" fill="rgb(205,205,61)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="847.50"></text></g><g><title>java.lang.Thread::run (32 samples, 0.07%)</title><rect x="80.6654%" y="821" width="0.0746%" height="15" fill="rgb(228,228,69)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (32 samples, 0.07%)</title><rect x="80.6654%" y="805" width="0.0746%" height="15" fill="rgb(225,225,68)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (32 samples, 0.07%)</title><rect x="80.6654%" y="789" width="0.0746%" height="15" fill="rgb(227,227,69)" fg:x="34599" fg:w="32"/><text x="80.9154%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (23 samples, 0.05%)</title><rect x="80.6864%" y="773" width="0.0536%" height="15" fill="rgb(218,218,65)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (23 samples, 0.05%)</title><rect x="80.6864%" y="757" width="0.0536%" height="15" fill="rgb(180,180,51)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject::await (23 samples, 0.05%)</title><rect x="80.6864%" y="741" width="0.0536%" height="15" fill="rgb(192,192,56)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="751.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (23 samples, 0.05%)</title><rect x="80.6864%" y="725" width="0.0536%" height="15" fill="rgb(204,204,60)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (23 samples, 0.05%)</title><rect x="80.6864%" y="709" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (23 samples, 0.05%)</title><rect x="80.6864%" y="693" width="0.0536%" height="15" fill="rgb(218,218,65)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="703.50"></text></g><g><title>__pthread_cond_wait (23 samples, 0.05%)</title><rect x="80.6864%" y="677" width="0.0536%" height="15" fill="rgb(240,109,109)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (23 samples, 0.05%)</title><rect x="80.6864%" y="661" width="0.0536%" height="15" fill="rgb(203,55,55)" fg:x="34608" fg:w="23"/><text x="80.9364%" y="671.50"></text></g><g><title>futex_wait_cancelable (22 samples, 0.05%)</title><rect x="80.6887%" y="645" width="0.0513%" height="15" fill="rgb(252,126,126)" fg:x="34609" fg:w="22"/><text x="80.9387%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (21 samples, 0.05%)</title><rect x="80.6910%" y="629" width="0.0490%" height="15" fill="rgb(254,128,128)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="639.50"></text></g><g><title>do_syscall_64 (21 samples, 0.05%)</title><rect x="80.6910%" y="613" width="0.0490%" height="15" fill="rgb(217,75,75)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="623.50"></text></g><g><title>__x64_sys_futex (21 samples, 0.05%)</title><rect x="80.6910%" y="597" width="0.0490%" height="15" fill="rgb(248,121,121)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="607.50"></text></g><g><title>do_futex (21 samples, 0.05%)</title><rect x="80.6910%" y="581" width="0.0490%" height="15" fill="rgb(230,94,94)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="591.50"></text></g><g><title>futex_wait (21 samples, 0.05%)</title><rect x="80.6910%" y="565" width="0.0490%" height="15" fill="rgb(219,78,78)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="575.50"></text></g><g><title>futex_wait_queue_me (21 samples, 0.05%)</title><rect x="80.6910%" y="549" width="0.0490%" height="15" fill="rgb(204,56,56)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="559.50"></text></g><g><title>schedule (21 samples, 0.05%)</title><rect x="80.6910%" y="533" width="0.0490%" height="15" fill="rgb(251,124,124)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="543.50"></text></g><g><title>__schedule (21 samples, 0.05%)</title><rect x="80.6910%" y="517" width="0.0490%" height="15" fill="rgb(209,64,64)" fg:x="34610" fg:w="21"/><text x="80.9410%" y="527.50"></text></g><g><title>finish_task_switch (20 samples, 0.05%)</title><rect x="80.6934%" y="501" width="0.0466%" height="15" fill="rgb(251,124,124)" fg:x="34611" fg:w="20"/><text x="80.9434%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (20 samples, 0.05%)</title><rect x="80.6934%" y="485" width="0.0466%" height="15" fill="rgb(240,109,109)" fg:x="34611" fg:w="20"/><text x="80.9434%" y="495.50"></text></g><g><title>perf_pmu_enable.part.0 (20 samples, 0.05%)</title><rect x="80.6934%" y="469" width="0.0466%" height="15" fill="rgb(71,219,71)" fg:x="34611" fg:w="20"/><text x="80.9434%" y="479.50"></text></g><g><title>x86_pmu_enable (20 samples, 0.05%)</title><rect x="80.6934%" y="453" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="34611" fg:w="20"/><text x="80.9434%" y="463.50"></text></g><g><title>intel_tfa_pmu_enable_all (20 samples, 0.05%)</title><rect x="80.6934%" y="437" width="0.0466%" height="15" fill="rgb(238,105,105)" fg:x="34611" fg:w="20"/><text x="80.9434%" y="447.50"></text></g><g><title>native_write_msr (20 samples, 0.05%)</title><rect x="80.6934%" y="421" width="0.0466%" height="15" fill="rgb(212,68,68)" fg:x="34611" fg:w="20"/><text x="80.9434%" y="431.50"></text></g><g><title>io.reactivex.rxjava3.internal.queue.MpscLinkedQueue::poll (25 samples, 0.06%)</title><rect x="80.7400%" y="741" width="0.0583%" height="15" fill="rgb(177,177,51)" fg:x="34631" fg:w="25"/><text x="80.9900%" y="751.50"></text></g><g><title>[unknown] (1,159 samples, 2.70%)</title><rect x="80.7400%" y="901" width="2.7021%" height="15" fill="rgb(206,59,59)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="911.50">[u..</text></g><g><title>start_thread (1,159 samples, 2.70%)</title><rect x="80.7400%" y="885" width="2.7021%" height="15" fill="rgb(235,101,101)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="895.50">st..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (1,159 samples, 2.70%)</title><rect x="80.7400%" y="869" width="2.7021%" height="15" fill="rgb(191,191,56)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="879.50">co..</text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (1,159 samples, 2.70%)</title><rect x="80.7400%" y="853" width="2.7021%" height="15" fill="rgb(210,210,62)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="863.50">co..</text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (1,159 samples, 2.70%)</title><rect x="80.7400%" y="837" width="2.7021%" height="15" fill="rgb(205,205,61)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="847.50">co..</text></g><g><title>java.lang.Thread::run (1,159 samples, 2.70%)</title><rect x="80.7400%" y="821" width="2.7021%" height="15" fill="rgb(228,228,69)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="831.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (1,159 samples, 2.70%)</title><rect x="80.7400%" y="805" width="2.7021%" height="15" fill="rgb(225,225,68)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="815.50">ja..</text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (1,159 samples, 2.70%)</title><rect x="80.7400%" y="789" width="2.7021%" height="15" fill="rgb(227,227,69)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="799.50">ja..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (1,159 samples, 2.70%)</title><rect x="80.7400%" y="773" width="2.7021%" height="15" fill="rgb(225,225,68)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="783.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (1,159 samples, 2.70%)</title><rect x="80.7400%" y="757" width="2.7021%" height="15" fill="rgb(190,190,55)" fg:x="34631" fg:w="1159"/><text x="80.9900%" y="767.50">io..</text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (1,134 samples, 2.64%)</title><rect x="80.7983%" y="741" width="2.6438%" height="15" fill="rgb(196,196,57)" fg:x="34656" fg:w="1134"/><text x="81.0483%" y="751.50">io..</text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$993/1649824306::run (1,134 samples, 2.64%)</title><rect x="80.7983%" y="725" width="2.6438%" height="15" fill="rgb(217,217,65)" fg:x="34656" fg:w="1134"/><text x="81.0483%" y="735.50">io..</text></g><g><title>pool-3-thread-9 (1,201 samples, 2.80%)</title><rect x="80.6631%" y="917" width="2.8001%" height="15" fill="rgb(208,62,62)" fg:x="34598" fg:w="1201"/><text x="80.9131%" y="927.50">po..</text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="83.4421%" y="901" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="911.50"></text></g><g><title>start_thread (9 samples, 0.02%)</title><rect x="83.4421%" y="885" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="83.4421%" y="869" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (9 samples, 0.02%)</title><rect x="83.4421%" y="853" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="83.4421%" y="837" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="847.50"></text></g><g><title>java.lang.Thread::run (9 samples, 0.02%)</title><rect x="83.4421%" y="821" width="0.0210%" height="15" fill="rgb(228,228,69)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (9 samples, 0.02%)</title><rect x="83.4421%" y="805" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (9 samples, 0.02%)</title><rect x="83.4421%" y="789" width="0.0210%" height="15" fill="rgb(227,227,69)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="799.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::run (9 samples, 0.02%)</title><rect x="83.4421%" y="773" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker::runEager (9 samples, 0.02%)</title><rect x="83.4421%" y="757" width="0.0210%" height="15" fill="rgb(190,190,55)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable::run (9 samples, 0.02%)</title><rect x="83.4421%" y="741" width="0.0210%" height="15" fill="rgb(196,196,57)" fg:x="35790" fg:w="9"/><text x="83.6921%" y="751.50"></text></g><g><title>__pthread_cond_broadcast (5 samples, 0.01%)</title><rect x="83.4654%" y="885" width="0.0117%" height="15" fill="rgb(219,78,78)" fg:x="35800" fg:w="5"/><text x="83.7154%" y="895.50"></text></g><g><title>futex_wake (5 samples, 0.01%)</title><rect x="83.4654%" y="869" width="0.0117%" height="15" fill="rgb(219,78,78)" fg:x="35800" fg:w="5"/><text x="83.7154%" y="879.50"></text></g><g><title>entry_SYSCALL_64 (5 samples, 0.01%)</title><rect x="83.4654%" y="853" width="0.0117%" height="15" fill="rgb(253,128,128)" fg:x="35800" fg:w="5"/><text x="83.7154%" y="863.50"></text></g><g><title>__condvar_dec_grefs (5 samples, 0.01%)</title><rect x="83.5144%" y="613" width="0.0117%" height="15" fill="rgb(245,116,116)" fg:x="35821" fg:w="5"/><text x="83.7644%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (7 samples, 0.02%)</title><rect x="83.5844%" y="469" width="0.0163%" height="15" fill="rgb(207,60,60)" fg:x="35851" fg:w="7"/><text x="83.8344%" y="479.50"></text></g><g><title>task_ctx_sched_out (5 samples, 0.01%)</title><rect x="83.5890%" y="453" width="0.0117%" height="15" fill="rgb(219,78,78)" fg:x="35853" fg:w="5"/><text x="83.8390%" y="463.50"></text></g><g><title>ctx_sched_out (5 samples, 0.01%)</title><rect x="83.5890%" y="437" width="0.0117%" height="15" fill="rgb(225,86,86)" fg:x="35853" fg:w="5"/><text x="83.8390%" y="447.50"></text></g><g><title>dequeue_task_fair (5 samples, 0.01%)</title><rect x="83.6030%" y="453" width="0.0117%" height="15" fill="rgb(200,51,51)" fg:x="35859" fg:w="5"/><text x="83.8530%" y="463.50"></text></g><g><title>deactivate_task (17 samples, 0.04%)</title><rect x="83.6007%" y="469" width="0.0396%" height="15" fill="rgb(213,68,68)" fg:x="35858" fg:w="17"/><text x="83.8507%" y="479.50"></text></g><g><title>psi_task_change (11 samples, 0.03%)</title><rect x="83.6147%" y="453" width="0.0256%" height="15" fill="rgb(220,80,80)" fg:x="35864" fg:w="11"/><text x="83.8647%" y="463.50"></text></g><g><title>__schedule (35 samples, 0.08%)</title><rect x="83.5844%" y="485" width="0.0816%" height="15" fill="rgb(209,64,64)" fg:x="35851" fg:w="35"/><text x="83.8344%" y="495.50"></text></g><g><title>futex_wait_queue_me (40 samples, 0.09%)</title><rect x="83.5750%" y="517" width="0.0933%" height="15" fill="rgb(204,56,56)" fg:x="35847" fg:w="40"/><text x="83.8250%" y="527.50"></text></g><g><title>schedule (37 samples, 0.09%)</title><rect x="83.5820%" y="501" width="0.0863%" height="15" fill="rgb(251,124,124)" fg:x="35850" fg:w="37"/><text x="83.8320%" y="511.50"></text></g><g><title>__x64_sys_futex (44 samples, 0.10%)</title><rect x="83.5680%" y="565" width="0.1026%" height="15" fill="rgb(248,121,121)" fg:x="35844" fg:w="44"/><text x="83.8180%" y="575.50"></text></g><g><title>do_futex (44 samples, 0.10%)</title><rect x="83.5680%" y="549" width="0.1026%" height="15" fill="rgb(230,94,94)" fg:x="35844" fg:w="44"/><text x="83.8180%" y="559.50"></text></g><g><title>futex_wait (43 samples, 0.10%)</title><rect x="83.5704%" y="533" width="0.1003%" height="15" fill="rgb(219,78,78)" fg:x="35845" fg:w="43"/><text x="83.8204%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.12%)</title><rect x="83.5517%" y="597" width="0.1212%" height="15" fill="rgb(254,128,128)" fg:x="35837" fg:w="52"/><text x="83.8017%" y="607.50"></text></g><g><title>do_syscall_64 (52 samples, 0.12%)</title><rect x="83.5517%" y="581" width="0.1212%" height="15" fill="rgb(217,75,75)" fg:x="35837" fg:w="52"/><text x="83.8017%" y="591.50"></text></g><g><title>__pthread_cond_wait (73 samples, 0.17%)</title><rect x="83.5121%" y="645" width="0.1702%" height="15" fill="rgb(240,109,109)" fg:x="35820" fg:w="73"/><text x="83.7621%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (73 samples, 0.17%)</title><rect x="83.5121%" y="629" width="0.1702%" height="15" fill="rgb(203,55,55)" fg:x="35820" fg:w="73"/><text x="83.7621%" y="639.50"></text></g><g><title>futex_wait_cancelable (63 samples, 0.15%)</title><rect x="83.5354%" y="613" width="0.1469%" height="15" fill="rgb(252,126,126)" fg:x="35830" fg:w="63"/><text x="83.7854%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="83.6823%" y="597" width="0.0140%" height="15" fill="rgb(254,128,128)" fg:x="35893" fg:w="6"/><text x="83.9323%" y="607.50"></text></g><g><title>do_syscall_64 (5 samples, 0.01%)</title><rect x="83.6846%" y="581" width="0.0117%" height="15" fill="rgb(217,75,75)" fg:x="35894" fg:w="5"/><text x="83.9346%" y="591.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (87 samples, 0.20%)</title><rect x="83.5004%" y="677" width="0.2028%" height="15" fill="rgb(191,191,56)" fg:x="35815" fg:w="87"/><text x="83.7504%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (84 samples, 0.20%)</title><rect x="83.5074%" y="661" width="0.1958%" height="15" fill="rgb(218,218,65)" fg:x="35818" fg:w="84"/><text x="83.7574%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (9 samples, 0.02%)</title><rect x="83.6823%" y="645" width="0.0210%" height="15" fill="rgb(192,192,56)" fg:x="35893" fg:w="9"/><text x="83.9323%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (9 samples, 0.02%)</title><rect x="83.6823%" y="629" width="0.0210%" height="15" fill="rgb(221,81,81)" fg:x="35893" fg:w="9"/><text x="83.9323%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (9 samples, 0.02%)</title><rect x="83.6823%" y="613" width="0.0210%" height="15" fill="rgb(246,117,117)" fg:x="35893" fg:w="9"/><text x="83.9323%" y="623.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (88 samples, 0.21%)</title><rect x="83.5004%" y="709" width="0.2052%" height="15" fill="rgb(206,206,61)" fg:x="35815" fg:w="88"/><text x="83.7504%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (88 samples, 0.21%)</title><rect x="83.5004%" y="693" width="0.2052%" height="15" fill="rgb(204,204,60)" fg:x="35815" fg:w="88"/><text x="83.7504%" y="703.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (96 samples, 0.22%)</title><rect x="83.4841%" y="773" width="0.2238%" height="15" fill="rgb(218,218,65)" fg:x="35808" fg:w="96"/><text x="83.7341%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (92 samples, 0.21%)</title><rect x="83.4934%" y="757" width="0.2145%" height="15" fill="rgb(180,180,51)" fg:x="35812" fg:w="92"/><text x="83.7434%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (92 samples, 0.21%)</title><rect x="83.4934%" y="741" width="0.2145%" height="15" fill="rgb(210,210,62)" fg:x="35812" fg:w="92"/><text x="83.7434%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (92 samples, 0.21%)</title><rect x="83.4934%" y="725" width="0.2145%" height="15" fill="rgb(211,211,63)" fg:x="35812" fg:w="92"/><text x="83.7434%" y="735.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (97 samples, 0.23%)</title><rect x="83.4841%" y="789" width="0.2261%" height="15" fill="rgb(227,227,69)" fg:x="35808" fg:w="97"/><text x="83.7341%" y="799.50"></text></g><g><title>[anon] (106 samples, 0.25%)</title><rect x="83.4654%" y="901" width="0.2471%" height="15" fill="rgb(252,126,126)" fg:x="35800" fg:w="106"/><text x="83.7154%" y="911.50"></text></g><g><title>start_thread (99 samples, 0.23%)</title><rect x="83.4818%" y="885" width="0.2308%" height="15" fill="rgb(235,101,101)" fg:x="35807" fg:w="99"/><text x="83.7318%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (99 samples, 0.23%)</title><rect x="83.4818%" y="869" width="0.2308%" height="15" fill="rgb(191,191,56)" fg:x="35807" fg:w="99"/><text x="83.7318%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (99 samples, 0.23%)</title><rect x="83.4818%" y="853" width="0.2308%" height="15" fill="rgb(210,210,62)" fg:x="35807" fg:w="99"/><text x="83.7318%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (99 samples, 0.23%)</title><rect x="83.4818%" y="837" width="0.2308%" height="15" fill="rgb(205,205,61)" fg:x="35807" fg:w="99"/><text x="83.7318%" y="847.50"></text></g><g><title>java.lang.Thread::run (98 samples, 0.23%)</title><rect x="83.4841%" y="821" width="0.2285%" height="15" fill="rgb(228,228,69)" fg:x="35808" fg:w="98"/><text x="83.7341%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (98 samples, 0.23%)</title><rect x="83.4841%" y="805" width="0.2285%" height="15" fill="rgb(225,225,68)" fg:x="35808" fg:w="98"/><text x="83.7341%" y="815.50"></text></g><g><title>java.util.concurrent.FutureTask::run (12 samples, 0.03%)</title><rect x="83.7219%" y="773" width="0.0280%" height="15" fill="rgb(220,220,66)" fg:x="35910" fg:w="12"/><text x="83.9719%" y="783.50"></text></g><g><title>[unknown] (23 samples, 0.05%)</title><rect x="83.7126%" y="901" width="0.0536%" height="15" fill="rgb(206,59,59)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="911.50"></text></g><g><title>start_thread (23 samples, 0.05%)</title><rect x="83.7126%" y="885" width="0.0536%" height="15" fill="rgb(235,101,101)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (23 samples, 0.05%)</title><rect x="83.7126%" y="869" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (23 samples, 0.05%)</title><rect x="83.7126%" y="853" width="0.0536%" height="15" fill="rgb(210,210,62)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (23 samples, 0.05%)</title><rect x="83.7126%" y="837" width="0.0536%" height="15" fill="rgb(205,205,61)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="847.50"></text></g><g><title>java.lang.Thread::run (23 samples, 0.05%)</title><rect x="83.7126%" y="821" width="0.0536%" height="15" fill="rgb(228,228,69)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (23 samples, 0.05%)</title><rect x="83.7126%" y="805" width="0.0536%" height="15" fill="rgb(225,225,68)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (23 samples, 0.05%)</title><rect x="83.7126%" y="789" width="0.0536%" height="15" fill="rgb(227,227,69)" fg:x="35906" fg:w="23"/><text x="83.9626%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (7 samples, 0.02%)</title><rect x="83.7499%" y="773" width="0.0163%" height="15" fill="rgb(218,218,65)" fg:x="35922" fg:w="7"/><text x="83.9999%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (7 samples, 0.02%)</title><rect x="83.7499%" y="757" width="0.0163%" height="15" fill="rgb(180,180,51)" fg:x="35922" fg:w="7"/><text x="83.9999%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (6 samples, 0.01%)</title><rect x="83.7522%" y="741" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="35923" fg:w="6"/><text x="84.0022%" y="751.50"></text></g><g><title>java.util.concurrent.FutureTask::run (8 samples, 0.02%)</title><rect x="83.7662%" y="773" width="0.0187%" height="15" fill="rgb(220,220,66)" fg:x="35929" fg:w="8"/><text x="84.0162%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (8 samples, 0.02%)</title><rect x="83.7662%" y="757" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="35929" fg:w="8"/><text x="84.0162%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="83.7662%" y="901" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="911.50"></text></g><g><title>start_thread (33 samples, 0.08%)</title><rect x="83.7662%" y="885" width="0.0769%" height="15" fill="rgb(235,101,101)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="83.7662%" y="869" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (33 samples, 0.08%)</title><rect x="83.7662%" y="853" width="0.0769%" height="15" fill="rgb(210,210,62)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (33 samples, 0.08%)</title><rect x="83.7662%" y="837" width="0.0769%" height="15" fill="rgb(205,205,61)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="847.50"></text></g><g><title>java.lang.Thread::run (33 samples, 0.08%)</title><rect x="83.7662%" y="821" width="0.0769%" height="15" fill="rgb(228,228,69)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (33 samples, 0.08%)</title><rect x="83.7662%" y="805" width="0.0769%" height="15" fill="rgb(225,225,68)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (33 samples, 0.08%)</title><rect x="83.7662%" y="789" width="0.0769%" height="15" fill="rgb(227,227,69)" fg:x="35929" fg:w="33"/><text x="84.0162%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (24 samples, 0.06%)</title><rect x="83.7872%" y="773" width="0.0560%" height="15" fill="rgb(218,218,65)" fg:x="35938" fg:w="24"/><text x="84.0372%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (24 samples, 0.06%)</title><rect x="83.7872%" y="757" width="0.0560%" height="15" fill="rgb(180,180,51)" fg:x="35938" fg:w="24"/><text x="84.0372%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (453 samples, 1.06%)</title><rect x="83.8431%" y="773" width="1.0561%" height="15" fill="rgb(220,220,66)" fg:x="35962" fg:w="453"/><text x="84.0931%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (453 samples, 1.06%)</title><rect x="83.8431%" y="757" width="1.0561%" height="15" fill="rgb(185,185,53)" fg:x="35962" fg:w="453"/><text x="84.0931%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (453 samples, 1.06%)</title><rect x="83.8431%" y="741" width="1.0561%" height="15" fill="rgb(185,185,53)" fg:x="35962" fg:w="453"/><text x="84.0931%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (453 samples, 1.06%)</title><rect x="83.8431%" y="725" width="1.0561%" height="15" fill="rgb(196,196,57)" fg:x="35962" fg:w="453"/><text x="84.0931%" y="735.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (456 samples, 1.06%)</title><rect x="83.8431%" y="901" width="1.0631%" height="15" fill="rgb(210,210,62)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="911.50"></text></g><g><title>start_thread (456 samples, 1.06%)</title><rect x="83.8431%" y="885" width="1.0631%" height="15" fill="rgb(235,101,101)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (456 samples, 1.06%)</title><rect x="83.8431%" y="869" width="1.0631%" height="15" fill="rgb(191,191,56)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (456 samples, 1.06%)</title><rect x="83.8431%" y="853" width="1.0631%" height="15" fill="rgb(210,210,62)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (456 samples, 1.06%)</title><rect x="83.8431%" y="837" width="1.0631%" height="15" fill="rgb(205,205,61)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="847.50"></text></g><g><title>java.lang.Thread::run (456 samples, 1.06%)</title><rect x="83.8431%" y="821" width="1.0631%" height="15" fill="rgb(228,228,69)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (456 samples, 1.06%)</title><rect x="83.8431%" y="805" width="1.0631%" height="15" fill="rgb(225,225,68)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (456 samples, 1.06%)</title><rect x="83.8431%" y="789" width="1.0631%" height="15" fill="rgb(227,227,69)" fg:x="35962" fg:w="456"/><text x="84.0931%" y="799.50"></text></g><g><title>enqueue_entity (9 samples, 0.02%)</title><rect x="85.0089%" y="469" width="0.0210%" height="15" fill="rgb(246,117,117)" fg:x="36462" fg:w="9"/><text x="85.2589%" y="479.50"></text></g><g><title>enqueue_task_fair (12 samples, 0.03%)</title><rect x="85.0042%" y="485" width="0.0280%" height="15" fill="rgb(218,77,77)" fg:x="36460" fg:w="12"/><text x="85.2542%" y="495.50"></text></g><g><title>activate_task (24 samples, 0.06%)</title><rect x="85.0042%" y="501" width="0.0560%" height="15" fill="rgb(234,100,100)" fg:x="36460" fg:w="24"/><text x="85.2542%" y="511.50"></text></g><g><title>psi_task_change (12 samples, 0.03%)</title><rect x="85.0322%" y="485" width="0.0280%" height="15" fill="rgb(220,80,80)" fg:x="36472" fg:w="12"/><text x="85.2822%" y="495.50"></text></g><g><title>ttwu_do_activate (27 samples, 0.06%)</title><rect x="85.0042%" y="517" width="0.0629%" height="15" fill="rgb(239,107,107)" fg:x="36460" fg:w="27"/><text x="85.2542%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.12%)</title><rect x="84.9459%" y="629" width="0.1236%" height="15" fill="rgb(254,128,128)" fg:x="36435" fg:w="53"/><text x="85.1959%" y="639.50"></text></g><g><title>do_syscall_64 (53 samples, 0.12%)</title><rect x="84.9459%" y="613" width="0.1236%" height="15" fill="rgb(217,75,75)" fg:x="36435" fg:w="53"/><text x="85.1959%" y="623.50"></text></g><g><title>__x64_sys_futex (47 samples, 0.11%)</title><rect x="84.9599%" y="597" width="0.1096%" height="15" fill="rgb(248,121,121)" fg:x="36441" fg:w="47"/><text x="85.2099%" y="607.50"></text></g><g><title>do_futex (47 samples, 0.11%)</title><rect x="84.9599%" y="581" width="0.1096%" height="15" fill="rgb(230,94,94)" fg:x="36441" fg:w="47"/><text x="85.2099%" y="591.50"></text></g><g><title>futex_wake (44 samples, 0.10%)</title><rect x="84.9669%" y="565" width="0.1026%" height="15" fill="rgb(219,78,78)" fg:x="36444" fg:w="44"/><text x="85.2169%" y="575.50"></text></g><g><title>wake_up_q (38 samples, 0.09%)</title><rect x="84.9809%" y="549" width="0.0886%" height="15" fill="rgb(228,90,90)" fg:x="36450" fg:w="38"/><text x="85.2309%" y="559.50"></text></g><g><title>try_to_wake_up (36 samples, 0.08%)</title><rect x="84.9855%" y="533" width="0.0839%" height="15" fill="rgb(229,93,93)" fg:x="36452" fg:w="36"/><text x="85.2355%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (57 samples, 0.13%)</title><rect x="84.9389%" y="677" width="0.1329%" height="15" fill="rgb(223,223,67)" fg:x="36432" fg:w="57"/><text x="85.1889%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (57 samples, 0.13%)</title><rect x="84.9389%" y="661" width="0.1329%" height="15" fill="rgb(219,78,78)" fg:x="36432" fg:w="57"/><text x="85.1889%" y="671.50"></text></g><g><title>futex_wake (54 samples, 0.13%)</title><rect x="84.9459%" y="645" width="0.1259%" height="15" fill="rgb(219,78,78)" fg:x="36435" fg:w="54"/><text x="85.1959%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (65 samples, 0.15%)</title><rect x="84.9296%" y="693" width="0.1515%" height="15" fill="rgb(196,196,57)" fg:x="36428" fg:w="65"/><text x="85.1796%" y="703.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (70 samples, 0.16%)</title><rect x="84.9203%" y="901" width="0.1632%" height="15" fill="rgb(225,225,68)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="911.50"></text></g><g><title>start_thread (70 samples, 0.16%)</title><rect x="84.9203%" y="885" width="0.1632%" height="15" fill="rgb(235,101,101)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (70 samples, 0.16%)</title><rect x="84.9203%" y="869" width="0.1632%" height="15" fill="rgb(191,191,56)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (70 samples, 0.16%)</title><rect x="84.9203%" y="853" width="0.1632%" height="15" fill="rgb(210,210,62)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (70 samples, 0.16%)</title><rect x="84.9203%" y="837" width="0.1632%" height="15" fill="rgb(205,205,61)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="847.50"></text></g><g><title>java.lang.Thread::run (70 samples, 0.16%)</title><rect x="84.9203%" y="821" width="0.1632%" height="15" fill="rgb(228,228,69)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (70 samples, 0.16%)</title><rect x="84.9203%" y="805" width="0.1632%" height="15" fill="rgb(225,225,68)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (70 samples, 0.16%)</title><rect x="84.9203%" y="789" width="0.1632%" height="15" fill="rgb(227,227,69)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (70 samples, 0.16%)</title><rect x="84.9203%" y="773" width="0.1632%" height="15" fill="rgb(218,218,65)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (70 samples, 0.16%)</title><rect x="84.9203%" y="757" width="0.1632%" height="15" fill="rgb(180,180,51)" fg:x="36424" fg:w="70"/><text x="85.1703%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (66 samples, 0.15%)</title><rect x="84.9296%" y="741" width="0.1539%" height="15" fill="rgb(191,191,56)" fg:x="36428" fg:w="66"/><text x="85.1796%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (66 samples, 0.15%)</title><rect x="84.9296%" y="725" width="0.1539%" height="15" fill="rgb(227,227,69)" fg:x="36428" fg:w="66"/><text x="85.1796%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (66 samples, 0.15%)</title><rect x="84.9296%" y="709" width="0.1539%" height="15" fill="rgb(223,223,67)" fg:x="36428" fg:w="66"/><text x="85.1796%" y="719.50"></text></g><g><title>pool-9-thread-1 (696 samples, 1.62%)</title><rect x="83.4631%" y="917" width="1.6227%" height="15" fill="rgb(226,88,88)" fg:x="35799" fg:w="696"/><text x="83.7131%" y="927.50"></text></g><g><title>dequeue_task_fair (8 samples, 0.02%)</title><rect x="85.1697%" y="453" width="0.0187%" height="15" fill="rgb(200,51,51)" fg:x="36531" fg:w="8"/><text x="85.4197%" y="463.50"></text></g><g><title>dequeue_entity (8 samples, 0.02%)</title><rect x="85.1697%" y="437" width="0.0187%" height="15" fill="rgb(250,122,122)" fg:x="36531" fg:w="8"/><text x="85.4197%" y="447.50"></text></g><g><title>deactivate_task (24 samples, 0.06%)</title><rect x="85.1697%" y="469" width="0.0560%" height="15" fill="rgb(213,68,68)" fg:x="36531" fg:w="24"/><text x="85.4197%" y="479.50"></text></g><g><title>psi_task_change (16 samples, 0.04%)</title><rect x="85.1884%" y="453" width="0.0373%" height="15" fill="rgb(220,80,80)" fg:x="36539" fg:w="16"/><text x="85.4384%" y="463.50"></text></g><g><title>finish_task_switch (7 samples, 0.02%)</title><rect x="85.2257%" y="469" width="0.0163%" height="15" fill="rgb(251,124,124)" fg:x="36555" fg:w="7"/><text x="85.4757%" y="479.50"></text></g><g><title>__schedule (41 samples, 0.10%)</title><rect x="85.1581%" y="485" width="0.0956%" height="15" fill="rgb(209,64,64)" fg:x="36526" fg:w="41"/><text x="85.4081%" y="495.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.10%)</title><rect x="85.1557%" y="517" width="0.1003%" height="15" fill="rgb(204,56,56)" fg:x="36525" fg:w="43"/><text x="85.4057%" y="527.50"></text></g><g><title>schedule (43 samples, 0.10%)</title><rect x="85.1557%" y="501" width="0.1003%" height="15" fill="rgb(251,124,124)" fg:x="36525" fg:w="43"/><text x="85.4057%" y="511.50"></text></g><g><title>__x64_sys_futex (47 samples, 0.11%)</title><rect x="85.1487%" y="565" width="0.1096%" height="15" fill="rgb(248,121,121)" fg:x="36522" fg:w="47"/><text x="85.3987%" y="575.50"></text></g><g><title>do_futex (47 samples, 0.11%)</title><rect x="85.1487%" y="549" width="0.1096%" height="15" fill="rgb(230,94,94)" fg:x="36522" fg:w="47"/><text x="85.3987%" y="559.50"></text></g><g><title>futex_wait (46 samples, 0.11%)</title><rect x="85.1511%" y="533" width="0.1072%" height="15" fill="rgb(219,78,78)" fg:x="36523" fg:w="46"/><text x="85.4011%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.13%)</title><rect x="85.1324%" y="597" width="0.1306%" height="15" fill="rgb(254,128,128)" fg:x="36515" fg:w="56"/><text x="85.3824%" y="607.50"></text></g><g><title>do_syscall_64 (55 samples, 0.13%)</title><rect x="85.1348%" y="581" width="0.1282%" height="15" fill="rgb(217,75,75)" fg:x="36516" fg:w="55"/><text x="85.3848%" y="591.50"></text></g><g><title>__pthread_cond_wait (65 samples, 0.15%)</title><rect x="85.1138%" y="645" width="0.1515%" height="15" fill="rgb(240,109,109)" fg:x="36507" fg:w="65"/><text x="85.3638%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.15%)</title><rect x="85.1138%" y="629" width="0.1515%" height="15" fill="rgb(203,55,55)" fg:x="36507" fg:w="65"/><text x="85.3638%" y="639.50"></text></g><g><title>futex_wait_cancelable (59 samples, 0.14%)</title><rect x="85.1278%" y="613" width="0.1376%" height="15" fill="rgb(252,126,126)" fg:x="36513" fg:w="59"/><text x="85.3778%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="85.2653%" y="597" width="0.0187%" height="15" fill="rgb(254,128,128)" fg:x="36572" fg:w="8"/><text x="85.5153%" y="607.50"></text></g><g><title>do_syscall_64 (5 samples, 0.01%)</title><rect x="85.2723%" y="581" width="0.0117%" height="15" fill="rgb(217,75,75)" fg:x="36575" fg:w="5"/><text x="85.5223%" y="591.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (83 samples, 0.19%)</title><rect x="85.0928%" y="773" width="0.1935%" height="15" fill="rgb(218,218,65)" fg:x="36498" fg:w="83"/><text x="85.3428%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (81 samples, 0.19%)</title><rect x="85.0975%" y="757" width="0.1888%" height="15" fill="rgb(180,180,51)" fg:x="36500" fg:w="81"/><text x="85.3475%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (81 samples, 0.19%)</title><rect x="85.0975%" y="741" width="0.1888%" height="15" fill="rgb(210,210,62)" fg:x="36500" fg:w="81"/><text x="85.3475%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (81 samples, 0.19%)</title><rect x="85.0975%" y="725" width="0.1888%" height="15" fill="rgb(211,211,63)" fg:x="36500" fg:w="81"/><text x="85.3475%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (79 samples, 0.18%)</title><rect x="85.1021%" y="709" width="0.1842%" height="15" fill="rgb(206,206,61)" fg:x="36502" fg:w="79"/><text x="85.3521%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (79 samples, 0.18%)</title><rect x="85.1021%" y="693" width="0.1842%" height="15" fill="rgb(204,204,60)" fg:x="36502" fg:w="79"/><text x="85.3521%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (79 samples, 0.18%)</title><rect x="85.1021%" y="677" width="0.1842%" height="15" fill="rgb(191,191,56)" fg:x="36502" fg:w="79"/><text x="85.3521%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (76 samples, 0.18%)</title><rect x="85.1091%" y="661" width="0.1772%" height="15" fill="rgb(218,218,65)" fg:x="36505" fg:w="76"/><text x="85.3591%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (9 samples, 0.02%)</title><rect x="85.2653%" y="645" width="0.0210%" height="15" fill="rgb(192,192,56)" fg:x="36572" fg:w="9"/><text x="85.5153%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (9 samples, 0.02%)</title><rect x="85.2653%" y="629" width="0.0210%" height="15" fill="rgb(221,81,81)" fg:x="36572" fg:w="9"/><text x="85.5153%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (9 samples, 0.02%)</title><rect x="85.2653%" y="613" width="0.0210%" height="15" fill="rgb(246,117,117)" fg:x="36572" fg:w="9"/><text x="85.5153%" y="623.50"></text></g><g><title>[anon] (88 samples, 0.21%)</title><rect x="85.0858%" y="901" width="0.2052%" height="15" fill="rgb(252,126,126)" fg:x="36495" fg:w="88"/><text x="85.3358%" y="911.50"></text></g><g><title>start_thread (85 samples, 0.20%)</title><rect x="85.0928%" y="885" width="0.1982%" height="15" fill="rgb(235,101,101)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (85 samples, 0.20%)</title><rect x="85.0928%" y="869" width="0.1982%" height="15" fill="rgb(191,191,56)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (85 samples, 0.20%)</title><rect x="85.0928%" y="853" width="0.1982%" height="15" fill="rgb(210,210,62)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (85 samples, 0.20%)</title><rect x="85.0928%" y="837" width="0.1982%" height="15" fill="rgb(205,205,61)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="847.50"></text></g><g><title>java.lang.Thread::run (85 samples, 0.20%)</title><rect x="85.0928%" y="821" width="0.1982%" height="15" fill="rgb(228,228,69)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (85 samples, 0.20%)</title><rect x="85.0928%" y="805" width="0.1982%" height="15" fill="rgb(225,225,68)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (85 samples, 0.20%)</title><rect x="85.0928%" y="789" width="0.1982%" height="15" fill="rgb(227,227,69)" fg:x="36498" fg:w="85"/><text x="85.3428%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (9 samples, 0.02%)</title><rect x="85.3050%" y="773" width="0.0210%" height="15" fill="rgb(220,220,66)" fg:x="36589" fg:w="9"/><text x="85.5550%" y="783.50"></text></g><g><title>[unknown] (19 samples, 0.04%)</title><rect x="85.2910%" y="901" width="0.0443%" height="15" fill="rgb(206,59,59)" fg:x="36583" fg:w="19"/><text x="85.5410%" y="911.50"></text></g><g><title>start_thread (16 samples, 0.04%)</title><rect x="85.2980%" y="885" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (16 samples, 0.04%)</title><rect x="85.2980%" y="869" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (16 samples, 0.04%)</title><rect x="85.2980%" y="853" width="0.0373%" height="15" fill="rgb(210,210,62)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (16 samples, 0.04%)</title><rect x="85.2980%" y="837" width="0.0373%" height="15" fill="rgb(205,205,61)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="847.50"></text></g><g><title>java.lang.Thread::run (16 samples, 0.04%)</title><rect x="85.2980%" y="821" width="0.0373%" height="15" fill="rgb(228,228,69)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (16 samples, 0.04%)</title><rect x="85.2980%" y="805" width="0.0373%" height="15" fill="rgb(225,225,68)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (16 samples, 0.04%)</title><rect x="85.2980%" y="789" width="0.0373%" height="15" fill="rgb(227,227,69)" fg:x="36586" fg:w="16"/><text x="85.5480%" y="799.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="85.3353%" y="901" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="911.50"></text></g><g><title>start_thread (33 samples, 0.08%)</title><rect x="85.3353%" y="885" width="0.0769%" height="15" fill="rgb(235,101,101)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="85.3353%" y="869" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (33 samples, 0.08%)</title><rect x="85.3353%" y="853" width="0.0769%" height="15" fill="rgb(210,210,62)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (33 samples, 0.08%)</title><rect x="85.3353%" y="837" width="0.0769%" height="15" fill="rgb(205,205,61)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="847.50"></text></g><g><title>java.lang.Thread::run (33 samples, 0.08%)</title><rect x="85.3353%" y="821" width="0.0769%" height="15" fill="rgb(228,228,69)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (33 samples, 0.08%)</title><rect x="85.3353%" y="805" width="0.0769%" height="15" fill="rgb(225,225,68)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (33 samples, 0.08%)</title><rect x="85.3353%" y="789" width="0.0769%" height="15" fill="rgb(227,227,69)" fg:x="36602" fg:w="33"/><text x="85.5853%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (29 samples, 0.07%)</title><rect x="85.3446%" y="773" width="0.0676%" height="15" fill="rgb(218,218,65)" fg:x="36606" fg:w="29"/><text x="85.5946%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (29 samples, 0.07%)</title><rect x="85.3446%" y="757" width="0.0676%" height="15" fill="rgb(180,180,51)" fg:x="36606" fg:w="29"/><text x="85.5946%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (463 samples, 1.08%)</title><rect x="85.4122%" y="757" width="1.0795%" height="15" fill="rgb(185,185,53)" fg:x="36635" fg:w="463"/><text x="85.6622%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (463 samples, 1.08%)</title><rect x="85.4122%" y="741" width="1.0795%" height="15" fill="rgb(185,185,53)" fg:x="36635" fg:w="463"/><text x="85.6622%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (463 samples, 1.08%)</title><rect x="85.4122%" y="725" width="1.0795%" height="15" fill="rgb(196,196,57)" fg:x="36635" fg:w="463"/><text x="85.6622%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (464 samples, 1.08%)</title><rect x="85.4122%" y="773" width="1.0818%" height="15" fill="rgb(220,220,66)" fg:x="36635" fg:w="464"/><text x="85.6622%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (469 samples, 1.09%)</title><rect x="85.4122%" y="901" width="1.0934%" height="15" fill="rgb(210,210,62)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="911.50"></text></g><g><title>start_thread (469 samples, 1.09%)</title><rect x="85.4122%" y="885" width="1.0934%" height="15" fill="rgb(235,101,101)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (469 samples, 1.09%)</title><rect x="85.4122%" y="869" width="1.0934%" height="15" fill="rgb(191,191,56)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (469 samples, 1.09%)</title><rect x="85.4122%" y="853" width="1.0934%" height="15" fill="rgb(210,210,62)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (469 samples, 1.09%)</title><rect x="85.4122%" y="837" width="1.0934%" height="15" fill="rgb(205,205,61)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="847.50"></text></g><g><title>java.lang.Thread::run (469 samples, 1.09%)</title><rect x="85.4122%" y="821" width="1.0934%" height="15" fill="rgb(228,228,69)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (469 samples, 1.09%)</title><rect x="85.4122%" y="805" width="1.0934%" height="15" fill="rgb(225,225,68)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (469 samples, 1.09%)</title><rect x="85.4122%" y="789" width="1.0934%" height="15" fill="rgb(227,227,69)" fg:x="36635" fg:w="469"/><text x="85.6622%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="86.4940%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="37099" fg:w="5"/><text x="86.7440%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="86.4940%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="37099" fg:w="5"/><text x="86.7440%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (5 samples, 0.01%)</title><rect x="86.4940%" y="741" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="37099" fg:w="5"/><text x="86.7440%" y="751.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="86.5056%" y="901" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="911.50"></text></g><g><title>start_thread (5 samples, 0.01%)</title><rect x="86.5056%" y="885" width="0.0117%" height="15" fill="rgb(235,101,101)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="86.5056%" y="869" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (5 samples, 0.01%)</title><rect x="86.5056%" y="853" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="86.5056%" y="837" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="847.50"></text></g><g><title>java.lang.Thread::run (5 samples, 0.01%)</title><rect x="86.5056%" y="821" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (5 samples, 0.01%)</title><rect x="86.5056%" y="805" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (5 samples, 0.01%)</title><rect x="86.5056%" y="789" width="0.0117%" height="15" fill="rgb(227,227,69)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="86.5056%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="86.5056%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (5 samples, 0.01%)</title><rect x="86.5056%" y="741" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (5 samples, 0.01%)</title><rect x="86.5056%" y="725" width="0.0117%" height="15" fill="rgb(190,190,55)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (5 samples, 0.01%)</title><rect x="86.5056%" y="709" width="0.0117%" height="15" fill="rgb(208,208,62)" fg:x="37104" fg:w="5"/><text x="86.7556%" y="719.50"></text></g><g><title>enqueue_task_fair (10 samples, 0.02%)</title><rect x="86.5802%" y="485" width="0.0233%" height="15" fill="rgb(218,77,77)" fg:x="37136" fg:w="10"/><text x="86.8302%" y="495.50"></text></g><g><title>enqueue_entity (8 samples, 0.02%)</title><rect x="86.5849%" y="469" width="0.0187%" height="15" fill="rgb(246,117,117)" fg:x="37138" fg:w="8"/><text x="86.8349%" y="479.50"></text></g><g><title>activate_task (19 samples, 0.04%)</title><rect x="86.5802%" y="501" width="0.0443%" height="15" fill="rgb(234,100,100)" fg:x="37136" fg:w="19"/><text x="86.8302%" y="511.50"></text></g><g><title>psi_task_change (9 samples, 0.02%)</title><rect x="86.6036%" y="485" width="0.0210%" height="15" fill="rgb(220,80,80)" fg:x="37146" fg:w="9"/><text x="86.8536%" y="495.50"></text></g><g><title>futex_wake (34 samples, 0.08%)</title><rect x="86.5523%" y="565" width="0.0793%" height="15" fill="rgb(219,78,78)" fg:x="37124" fg:w="34"/><text x="86.8023%" y="575.50"></text></g><g><title>wake_up_q (30 samples, 0.07%)</title><rect x="86.5616%" y="549" width="0.0699%" height="15" fill="rgb(228,90,90)" fg:x="37128" fg:w="30"/><text x="86.8116%" y="559.50"></text></g><g><title>try_to_wake_up (29 samples, 0.07%)</title><rect x="86.5639%" y="533" width="0.0676%" height="15" fill="rgb(229,93,93)" fg:x="37129" fg:w="29"/><text x="86.8139%" y="543.50"></text></g><g><title>ttwu_do_activate (22 samples, 0.05%)</title><rect x="86.5802%" y="517" width="0.0513%" height="15" fill="rgb(239,107,107)" fg:x="37136" fg:w="22"/><text x="86.8302%" y="527.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.08%)</title><rect x="86.5523%" y="597" width="0.0839%" height="15" fill="rgb(248,121,121)" fg:x="37124" fg:w="36"/><text x="86.8023%" y="607.50"></text></g><g><title>do_futex (36 samples, 0.08%)</title><rect x="86.5523%" y="581" width="0.0839%" height="15" fill="rgb(230,94,94)" fg:x="37124" fg:w="36"/><text x="86.8023%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.09%)</title><rect x="86.5453%" y="629" width="0.0933%" height="15" fill="rgb(254,128,128)" fg:x="37121" fg:w="40"/><text x="86.7953%" y="639.50"></text></g><g><title>do_syscall_64 (40 samples, 0.09%)</title><rect x="86.5453%" y="613" width="0.0933%" height="15" fill="rgb(217,75,75)" fg:x="37121" fg:w="40"/><text x="86.7953%" y="623.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (46 samples, 0.11%)</title><rect x="86.5406%" y="677" width="0.1072%" height="15" fill="rgb(223,223,67)" fg:x="37119" fg:w="46"/><text x="86.7906%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (46 samples, 0.11%)</title><rect x="86.5406%" y="661" width="0.1072%" height="15" fill="rgb(219,78,78)" fg:x="37119" fg:w="46"/><text x="86.7906%" y="671.50"></text></g><g><title>futex_wake (45 samples, 0.10%)</title><rect x="86.5429%" y="645" width="0.1049%" height="15" fill="rgb(219,78,78)" fg:x="37120" fg:w="45"/><text x="86.7929%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (51 samples, 0.12%)</title><rect x="86.5313%" y="693" width="0.1189%" height="15" fill="rgb(196,196,57)" fg:x="37115" fg:w="51"/><text x="86.7813%" y="703.50"></text></g><g><title>pool-9-thread-2 (672 samples, 1.57%)</title><rect x="85.0858%" y="917" width="1.5667%" height="15" fill="rgb(226,88,88)" fg:x="36495" fg:w="672"/><text x="85.3358%" y="927.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (54 samples, 0.13%)</title><rect x="86.5266%" y="901" width="0.1259%" height="15" fill="rgb(225,225,68)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="911.50"></text></g><g><title>start_thread (54 samples, 0.13%)</title><rect x="86.5266%" y="885" width="0.1259%" height="15" fill="rgb(235,101,101)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (54 samples, 0.13%)</title><rect x="86.5266%" y="869" width="0.1259%" height="15" fill="rgb(191,191,56)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (54 samples, 0.13%)</title><rect x="86.5266%" y="853" width="0.1259%" height="15" fill="rgb(210,210,62)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (54 samples, 0.13%)</title><rect x="86.5266%" y="837" width="0.1259%" height="15" fill="rgb(205,205,61)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="847.50"></text></g><g><title>java.lang.Thread::run (54 samples, 0.13%)</title><rect x="86.5266%" y="821" width="0.1259%" height="15" fill="rgb(228,228,69)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (54 samples, 0.13%)</title><rect x="86.5266%" y="805" width="0.1259%" height="15" fill="rgb(225,225,68)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (54 samples, 0.13%)</title><rect x="86.5266%" y="789" width="0.1259%" height="15" fill="rgb(227,227,69)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (54 samples, 0.13%)</title><rect x="86.5266%" y="773" width="0.1259%" height="15" fill="rgb(218,218,65)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (54 samples, 0.13%)</title><rect x="86.5266%" y="757" width="0.1259%" height="15" fill="rgb(180,180,51)" fg:x="37113" fg:w="54"/><text x="86.7766%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (52 samples, 0.12%)</title><rect x="86.5313%" y="741" width="0.1212%" height="15" fill="rgb(191,191,56)" fg:x="37115" fg:w="52"/><text x="86.7813%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (52 samples, 0.12%)</title><rect x="86.5313%" y="725" width="0.1212%" height="15" fill="rgb(227,227,69)" fg:x="37115" fg:w="52"/><text x="86.7813%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (52 samples, 0.12%)</title><rect x="86.5313%" y="709" width="0.1212%" height="15" fill="rgb(223,223,67)" fg:x="37115" fg:w="52"/><text x="86.7813%" y="719.50"></text></g><g><title>dequeue_task_fair (5 samples, 0.01%)</title><rect x="86.7388%" y="453" width="0.0117%" height="15" fill="rgb(200,51,51)" fg:x="37204" fg:w="5"/><text x="86.9888%" y="463.50"></text></g><g><title>psi_task_change (15 samples, 0.03%)</title><rect x="86.7504%" y="453" width="0.0350%" height="15" fill="rgb(220,80,80)" fg:x="37209" fg:w="15"/><text x="87.0004%" y="463.50"></text></g><g><title>deactivate_task (21 samples, 0.05%)</title><rect x="86.7388%" y="469" width="0.0490%" height="15" fill="rgb(213,68,68)" fg:x="37204" fg:w="21"/><text x="86.9888%" y="479.50"></text></g><g><title>__schedule (34 samples, 0.08%)</title><rect x="86.7248%" y="485" width="0.0793%" height="15" fill="rgb(209,64,64)" fg:x="37198" fg:w="34"/><text x="86.9748%" y="495.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.08%)</title><rect x="86.7225%" y="517" width="0.0839%" height="15" fill="rgb(204,56,56)" fg:x="37197" fg:w="36"/><text x="86.9725%" y="527.50"></text></g><g><title>schedule (36 samples, 0.08%)</title><rect x="86.7225%" y="501" width="0.0839%" height="15" fill="rgb(251,124,124)" fg:x="37197" fg:w="36"/><text x="86.9725%" y="511.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="86.7178%" y="565" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="37195" fg:w="42"/><text x="86.9678%" y="575.50"></text></g><g><title>do_futex (42 samples, 0.10%)</title><rect x="86.7178%" y="549" width="0.0979%" height="15" fill="rgb(230,94,94)" fg:x="37195" fg:w="42"/><text x="86.9678%" y="559.50"></text></g><g><title>futex_wait (42 samples, 0.10%)</title><rect x="86.7178%" y="533" width="0.0979%" height="15" fill="rgb(219,78,78)" fg:x="37195" fg:w="42"/><text x="86.9678%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.10%)</title><rect x="86.7178%" y="597" width="0.1003%" height="15" fill="rgb(254,128,128)" fg:x="37195" fg:w="43"/><text x="86.9678%" y="607.50"></text></g><g><title>do_syscall_64 (43 samples, 0.10%)</title><rect x="86.7178%" y="581" width="0.1003%" height="15" fill="rgb(217,75,75)" fg:x="37195" fg:w="43"/><text x="86.9678%" y="591.50"></text></g><g><title>__pthread_cond_wait (53 samples, 0.12%)</title><rect x="86.6968%" y="645" width="0.1236%" height="15" fill="rgb(240,109,109)" fg:x="37186" fg:w="53"/><text x="86.9468%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (53 samples, 0.12%)</title><rect x="86.6968%" y="629" width="0.1236%" height="15" fill="rgb(203,55,55)" fg:x="37186" fg:w="53"/><text x="86.9468%" y="639.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.12%)</title><rect x="86.7038%" y="613" width="0.1166%" height="15" fill="rgb(252,126,126)" fg:x="37189" fg:w="50"/><text x="86.9538%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="86.8204%" y="597" width="0.0117%" height="15" fill="rgb(254,128,128)" fg:x="37239" fg:w="5"/><text x="87.0704%" y="607.50"></text></g><g><title>do_syscall_64 (5 samples, 0.01%)</title><rect x="86.8204%" y="581" width="0.0117%" height="15" fill="rgb(217,75,75)" fg:x="37239" fg:w="5"/><text x="87.0704%" y="591.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (77 samples, 0.18%)</title><rect x="86.6595%" y="773" width="0.1795%" height="15" fill="rgb(218,218,65)" fg:x="37170" fg:w="77"/><text x="86.9095%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (72 samples, 0.17%)</title><rect x="86.6712%" y="757" width="0.1679%" height="15" fill="rgb(180,180,51)" fg:x="37175" fg:w="72"/><text x="86.9212%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (72 samples, 0.17%)</title><rect x="86.6712%" y="741" width="0.1679%" height="15" fill="rgb(210,210,62)" fg:x="37175" fg:w="72"/><text x="86.9212%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (72 samples, 0.17%)</title><rect x="86.6712%" y="725" width="0.1679%" height="15" fill="rgb(211,211,63)" fg:x="37175" fg:w="72"/><text x="86.9212%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (66 samples, 0.15%)</title><rect x="86.6852%" y="709" width="0.1539%" height="15" fill="rgb(206,206,61)" fg:x="37181" fg:w="66"/><text x="86.9352%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (66 samples, 0.15%)</title><rect x="86.6852%" y="693" width="0.1539%" height="15" fill="rgb(204,204,60)" fg:x="37181" fg:w="66"/><text x="86.9352%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (66 samples, 0.15%)</title><rect x="86.6852%" y="677" width="0.1539%" height="15" fill="rgb(191,191,56)" fg:x="37181" fg:w="66"/><text x="86.9352%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (64 samples, 0.15%)</title><rect x="86.6898%" y="661" width="0.1492%" height="15" fill="rgb(218,218,65)" fg:x="37183" fg:w="64"/><text x="86.9398%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (8 samples, 0.02%)</title><rect x="86.8204%" y="645" width="0.0187%" height="15" fill="rgb(192,192,56)" fg:x="37239" fg:w="8"/><text x="87.0704%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (8 samples, 0.02%)</title><rect x="86.8204%" y="629" width="0.0187%" height="15" fill="rgb(221,81,81)" fg:x="37239" fg:w="8"/><text x="87.0704%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (8 samples, 0.02%)</title><rect x="86.8204%" y="613" width="0.0187%" height="15" fill="rgb(246,117,117)" fg:x="37239" fg:w="8"/><text x="87.0704%" y="623.50"></text></g><g><title>[anon] (86 samples, 0.20%)</title><rect x="86.6525%" y="901" width="0.2005%" height="15" fill="rgb(252,126,126)" fg:x="37167" fg:w="86"/><text x="86.9025%" y="911.50"></text></g><g><title>start_thread (84 samples, 0.20%)</title><rect x="86.6572%" y="885" width="0.1958%" height="15" fill="rgb(235,101,101)" fg:x="37169" fg:w="84"/><text x="86.9072%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (84 samples, 0.20%)</title><rect x="86.6572%" y="869" width="0.1958%" height="15" fill="rgb(191,191,56)" fg:x="37169" fg:w="84"/><text x="86.9072%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (84 samples, 0.20%)</title><rect x="86.6572%" y="853" width="0.1958%" height="15" fill="rgb(210,210,62)" fg:x="37169" fg:w="84"/><text x="86.9072%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (84 samples, 0.20%)</title><rect x="86.6572%" y="837" width="0.1958%" height="15" fill="rgb(205,205,61)" fg:x="37169" fg:w="84"/><text x="86.9072%" y="847.50"></text></g><g><title>java.lang.Thread::run (84 samples, 0.20%)</title><rect x="86.6572%" y="821" width="0.1958%" height="15" fill="rgb(228,228,69)" fg:x="37169" fg:w="84"/><text x="86.9072%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (84 samples, 0.20%)</title><rect x="86.6572%" y="805" width="0.1958%" height="15" fill="rgb(225,225,68)" fg:x="37169" fg:w="84"/><text x="86.9072%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (83 samples, 0.19%)</title><rect x="86.6595%" y="789" width="0.1935%" height="15" fill="rgb(227,227,69)" fg:x="37170" fg:w="83"/><text x="86.9095%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (9 samples, 0.02%)</title><rect x="86.8624%" y="773" width="0.0210%" height="15" fill="rgb(220,220,66)" fg:x="37257" fg:w="9"/><text x="87.1124%" y="783.50"></text></g><g><title>[unknown] (18 samples, 0.04%)</title><rect x="86.8530%" y="901" width="0.0420%" height="15" fill="rgb(206,59,59)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="911.50"></text></g><g><title>start_thread (18 samples, 0.04%)</title><rect x="86.8530%" y="885" width="0.0420%" height="15" fill="rgb(235,101,101)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (18 samples, 0.04%)</title><rect x="86.8530%" y="869" width="0.0420%" height="15" fill="rgb(191,191,56)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (18 samples, 0.04%)</title><rect x="86.8530%" y="853" width="0.0420%" height="15" fill="rgb(210,210,62)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (18 samples, 0.04%)</title><rect x="86.8530%" y="837" width="0.0420%" height="15" fill="rgb(205,205,61)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="847.50"></text></g><g><title>java.lang.Thread::run (18 samples, 0.04%)</title><rect x="86.8530%" y="821" width="0.0420%" height="15" fill="rgb(228,228,69)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (18 samples, 0.04%)</title><rect x="86.8530%" y="805" width="0.0420%" height="15" fill="rgb(225,225,68)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (18 samples, 0.04%)</title><rect x="86.8530%" y="789" width="0.0420%" height="15" fill="rgb(227,227,69)" fg:x="37253" fg:w="18"/><text x="87.1030%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="86.8833%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="37266" fg:w="5"/><text x="87.1333%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="86.8833%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="37266" fg:w="5"/><text x="87.1333%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (23 samples, 0.05%)</title><rect x="86.8950%" y="901" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="911.50"></text></g><g><title>start_thread (23 samples, 0.05%)</title><rect x="86.8950%" y="885" width="0.0536%" height="15" fill="rgb(235,101,101)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (23 samples, 0.05%)</title><rect x="86.8950%" y="869" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (23 samples, 0.05%)</title><rect x="86.8950%" y="853" width="0.0536%" height="15" fill="rgb(210,210,62)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (23 samples, 0.05%)</title><rect x="86.8950%" y="837" width="0.0536%" height="15" fill="rgb(205,205,61)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="847.50"></text></g><g><title>java.lang.Thread::run (23 samples, 0.05%)</title><rect x="86.8950%" y="821" width="0.0536%" height="15" fill="rgb(228,228,69)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (23 samples, 0.05%)</title><rect x="86.8950%" y="805" width="0.0536%" height="15" fill="rgb(225,225,68)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (23 samples, 0.05%)</title><rect x="86.8950%" y="789" width="0.0536%" height="15" fill="rgb(227,227,69)" fg:x="37271" fg:w="23"/><text x="87.1450%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (20 samples, 0.05%)</title><rect x="86.9020%" y="773" width="0.0466%" height="15" fill="rgb(218,218,65)" fg:x="37274" fg:w="20"/><text x="87.1520%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (20 samples, 0.05%)</title><rect x="86.9020%" y="757" width="0.0466%" height="15" fill="rgb(180,180,51)" fg:x="37274" fg:w="20"/><text x="87.1520%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (488 samples, 1.14%)</title><rect x="86.9486%" y="773" width="1.1377%" height="15" fill="rgb(220,220,66)" fg:x="37294" fg:w="488"/><text x="87.1986%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (488 samples, 1.14%)</title><rect x="86.9486%" y="757" width="1.1377%" height="15" fill="rgb(185,185,53)" fg:x="37294" fg:w="488"/><text x="87.1986%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (488 samples, 1.14%)</title><rect x="86.9486%" y="741" width="1.1377%" height="15" fill="rgb(185,185,53)" fg:x="37294" fg:w="488"/><text x="87.1986%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (488 samples, 1.14%)</title><rect x="86.9486%" y="725" width="1.1377%" height="15" fill="rgb(196,196,57)" fg:x="37294" fg:w="488"/><text x="87.1986%" y="735.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (491 samples, 1.14%)</title><rect x="86.9486%" y="901" width="1.1447%" height="15" fill="rgb(210,210,62)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="911.50"></text></g><g><title>start_thread (491 samples, 1.14%)</title><rect x="86.9486%" y="885" width="1.1447%" height="15" fill="rgb(235,101,101)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (491 samples, 1.14%)</title><rect x="86.9486%" y="869" width="1.1447%" height="15" fill="rgb(191,191,56)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (491 samples, 1.14%)</title><rect x="86.9486%" y="853" width="1.1447%" height="15" fill="rgb(210,210,62)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (491 samples, 1.14%)</title><rect x="86.9486%" y="837" width="1.1447%" height="15" fill="rgb(205,205,61)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="847.50"></text></g><g><title>java.lang.Thread::run (491 samples, 1.14%)</title><rect x="86.9486%" y="821" width="1.1447%" height="15" fill="rgb(228,228,69)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (491 samples, 1.14%)</title><rect x="86.9486%" y="805" width="1.1447%" height="15" fill="rgb(225,225,68)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (491 samples, 1.14%)</title><rect x="86.9486%" y="789" width="1.1447%" height="15" fill="rgb(227,227,69)" fg:x="37294" fg:w="491"/><text x="87.1986%" y="799.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (5 samples, 0.01%)</title><rect x="88.0934%" y="741" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="37785" fg:w="5"/><text x="88.3434%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (5 samples, 0.01%)</title><rect x="88.0934%" y="725" width="0.0117%" height="15" fill="rgb(190,190,55)" fg:x="37785" fg:w="5"/><text x="88.3434%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (5 samples, 0.01%)</title><rect x="88.0934%" y="709" width="0.0117%" height="15" fill="rgb(208,208,62)" fg:x="37785" fg:w="5"/><text x="88.3434%" y="719.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (6 samples, 0.01%)</title><rect x="88.0934%" y="901" width="0.0140%" height="15" fill="rgb(205,205,61)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="911.50"></text></g><g><title>start_thread (6 samples, 0.01%)</title><rect x="88.0934%" y="885" width="0.0140%" height="15" fill="rgb(235,101,101)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (6 samples, 0.01%)</title><rect x="88.0934%" y="869" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (6 samples, 0.01%)</title><rect x="88.0934%" y="853" width="0.0140%" height="15" fill="rgb(210,210,62)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (6 samples, 0.01%)</title><rect x="88.0934%" y="837" width="0.0140%" height="15" fill="rgb(205,205,61)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="847.50"></text></g><g><title>java.lang.Thread::run (6 samples, 0.01%)</title><rect x="88.0934%" y="821" width="0.0140%" height="15" fill="rgb(228,228,69)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (6 samples, 0.01%)</title><rect x="88.0934%" y="805" width="0.0140%" height="15" fill="rgb(225,225,68)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (6 samples, 0.01%)</title><rect x="88.0934%" y="789" width="0.0140%" height="15" fill="rgb(227,227,69)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (6 samples, 0.01%)</title><rect x="88.0934%" y="773" width="0.0140%" height="15" fill="rgb(218,218,65)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (6 samples, 0.01%)</title><rect x="88.0934%" y="757" width="0.0140%" height="15" fill="rgb(180,180,51)" fg:x="37785" fg:w="6"/><text x="88.3434%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (5 samples, 0.01%)</title><rect x="88.1143%" y="741" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="37794" fg:w="5"/><text x="88.3643%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (5 samples, 0.01%)</title><rect x="88.1143%" y="725" width="0.0117%" height="15" fill="rgb(211,211,63)" fg:x="37794" fg:w="5"/><text x="88.3643%" y="735.50"></text></g><g><title>select_task_rq_fair (6 samples, 0.01%)</title><rect x="88.1656%" y="517" width="0.0140%" height="15" fill="rgb(205,57,57)" fg:x="37816" fg:w="6"/><text x="88.4156%" y="527.50"></text></g><g><title>enqueue_task_fair (6 samples, 0.01%)</title><rect x="88.1866%" y="485" width="0.0140%" height="15" fill="rgb(218,77,77)" fg:x="37825" fg:w="6"/><text x="88.4366%" y="495.50"></text></g><g><title>enqueue_entity (5 samples, 0.01%)</title><rect x="88.1889%" y="469" width="0.0117%" height="15" fill="rgb(246,117,117)" fg:x="37826" fg:w="5"/><text x="88.4389%" y="479.50"></text></g><g><title>activate_task (18 samples, 0.04%)</title><rect x="88.1866%" y="501" width="0.0420%" height="15" fill="rgb(234,100,100)" fg:x="37825" fg:w="18"/><text x="88.4366%" y="511.50"></text></g><g><title>psi_task_change (12 samples, 0.03%)</title><rect x="88.2006%" y="485" width="0.0280%" height="15" fill="rgb(220,80,80)" fg:x="37831" fg:w="12"/><text x="88.4506%" y="495.50"></text></g><g><title>ttwu_do_activate (23 samples, 0.05%)</title><rect x="88.1796%" y="517" width="0.0536%" height="15" fill="rgb(239,107,107)" fg:x="37822" fg:w="23"/><text x="88.4296%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.10%)</title><rect x="88.1400%" y="629" width="0.1003%" height="15" fill="rgb(254,128,128)" fg:x="37805" fg:w="43"/><text x="88.3900%" y="639.50"></text></g><g><title>do_syscall_64 (43 samples, 0.10%)</title><rect x="88.1400%" y="613" width="0.1003%" height="15" fill="rgb(217,75,75)" fg:x="37805" fg:w="43"/><text x="88.3900%" y="623.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="88.1423%" y="597" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="37806" fg:w="42"/><text x="88.3923%" y="607.50"></text></g><g><title>do_futex (42 samples, 0.10%)</title><rect x="88.1423%" y="581" width="0.0979%" height="15" fill="rgb(230,94,94)" fg:x="37806" fg:w="42"/><text x="88.3923%" y="591.50"></text></g><g><title>futex_wake (40 samples, 0.09%)</title><rect x="88.1470%" y="565" width="0.0933%" height="15" fill="rgb(219,78,78)" fg:x="37808" fg:w="40"/><text x="88.3970%" y="575.50"></text></g><g><title>wake_up_q (36 samples, 0.08%)</title><rect x="88.1563%" y="549" width="0.0839%" height="15" fill="rgb(228,90,90)" fg:x="37812" fg:w="36"/><text x="88.4063%" y="559.50"></text></g><g><title>try_to_wake_up (34 samples, 0.08%)</title><rect x="88.1610%" y="533" width="0.0793%" height="15" fill="rgb(229,93,93)" fg:x="37814" fg:w="34"/><text x="88.4110%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (49 samples, 0.11%)</title><rect x="88.1307%" y="677" width="0.1142%" height="15" fill="rgb(223,223,67)" fg:x="37801" fg:w="49"/><text x="88.3807%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (49 samples, 0.11%)</title><rect x="88.1307%" y="661" width="0.1142%" height="15" fill="rgb(219,78,78)" fg:x="37801" fg:w="49"/><text x="88.3807%" y="671.50"></text></g><g><title>futex_wake (46 samples, 0.11%)</title><rect x="88.1376%" y="645" width="0.1072%" height="15" fill="rgb(219,78,78)" fg:x="37804" fg:w="46"/><text x="88.3876%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (53 samples, 0.12%)</title><rect x="88.1260%" y="693" width="0.1236%" height="15" fill="rgb(196,196,57)" fg:x="37799" fg:w="53"/><text x="88.3760%" y="703.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (59 samples, 0.14%)</title><rect x="88.1143%" y="901" width="0.1376%" height="15" fill="rgb(225,225,68)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="911.50"></text></g><g><title>start_thread (59 samples, 0.14%)</title><rect x="88.1143%" y="885" width="0.1376%" height="15" fill="rgb(235,101,101)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (59 samples, 0.14%)</title><rect x="88.1143%" y="869" width="0.1376%" height="15" fill="rgb(191,191,56)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (59 samples, 0.14%)</title><rect x="88.1143%" y="853" width="0.1376%" height="15" fill="rgb(210,210,62)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (59 samples, 0.14%)</title><rect x="88.1143%" y="837" width="0.1376%" height="15" fill="rgb(205,205,61)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="847.50"></text></g><g><title>java.lang.Thread::run (59 samples, 0.14%)</title><rect x="88.1143%" y="821" width="0.1376%" height="15" fill="rgb(228,228,69)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (59 samples, 0.14%)</title><rect x="88.1143%" y="805" width="0.1376%" height="15" fill="rgb(225,225,68)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (59 samples, 0.14%)</title><rect x="88.1143%" y="789" width="0.1376%" height="15" fill="rgb(227,227,69)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (59 samples, 0.14%)</title><rect x="88.1143%" y="773" width="0.1376%" height="15" fill="rgb(218,218,65)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (59 samples, 0.14%)</title><rect x="88.1143%" y="757" width="0.1376%" height="15" fill="rgb(180,180,51)" fg:x="37794" fg:w="59"/><text x="88.3643%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (54 samples, 0.13%)</title><rect x="88.1260%" y="741" width="0.1259%" height="15" fill="rgb(191,191,56)" fg:x="37799" fg:w="54"/><text x="88.3760%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (54 samples, 0.13%)</title><rect x="88.1260%" y="725" width="0.1259%" height="15" fill="rgb(227,227,69)" fg:x="37799" fg:w="54"/><text x="88.3760%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (54 samples, 0.13%)</title><rect x="88.1260%" y="709" width="0.1259%" height="15" fill="rgb(223,223,67)" fg:x="37799" fg:w="54"/><text x="88.3760%" y="719.50"></text></g><g><title>pool-9-thread-3 (687 samples, 1.60%)</title><rect x="86.6525%" y="917" width="1.6017%" height="15" fill="rgb(226,88,88)" fg:x="37167" fg:w="687"/><text x="86.9025%" y="927.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (5 samples, 0.01%)</title><rect x="88.2635%" y="885" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="37858" fg:w="5"/><text x="88.5135%" y="895.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (5 samples, 0.01%)</title><rect x="88.2635%" y="869" width="0.0117%" height="15" fill="rgb(192,192,56)" fg:x="37858" fg:w="5"/><text x="88.5135%" y="879.50"></text></g><g><title>__GI___pthread_mutex_unlock (5 samples, 0.01%)</title><rect x="88.2635%" y="853" width="0.0117%" height="15" fill="rgb(221,81,81)" fg:x="37858" fg:w="5"/><text x="88.5135%" y="863.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (5 samples, 0.01%)</title><rect x="88.2635%" y="837" width="0.0117%" height="15" fill="rgb(246,117,117)" fg:x="37858" fg:w="5"/><text x="88.5135%" y="847.50"></text></g><g><title>entry_SYSCALL_64 (5 samples, 0.01%)</title><rect x="88.2635%" y="821" width="0.0117%" height="15" fill="rgb(253,128,128)" fg:x="37858" fg:w="5"/><text x="88.5135%" y="831.50"></text></g><g><title>dequeue_task_fair (9 samples, 0.02%)</title><rect x="88.3638%" y="453" width="0.0210%" height="15" fill="rgb(200,51,51)" fg:x="37901" fg:w="9"/><text x="88.6138%" y="463.50"></text></g><g><title>dequeue_entity (8 samples, 0.02%)</title><rect x="88.3661%" y="437" width="0.0187%" height="15" fill="rgb(250,122,122)" fg:x="37902" fg:w="8"/><text x="88.6161%" y="447.50"></text></g><g><title>deactivate_task (25 samples, 0.06%)</title><rect x="88.3638%" y="469" width="0.0583%" height="15" fill="rgb(213,68,68)" fg:x="37901" fg:w="25"/><text x="88.6138%" y="479.50"></text></g><g><title>psi_task_change (16 samples, 0.04%)</title><rect x="88.3848%" y="453" width="0.0373%" height="15" fill="rgb(220,80,80)" fg:x="37910" fg:w="16"/><text x="88.6348%" y="463.50"></text></g><g><title>__schedule (35 samples, 0.08%)</title><rect x="88.3568%" y="485" width="0.0816%" height="15" fill="rgb(209,64,64)" fg:x="37898" fg:w="35"/><text x="88.6068%" y="495.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.09%)</title><rect x="88.3545%" y="517" width="0.0863%" height="15" fill="rgb(204,56,56)" fg:x="37897" fg:w="37"/><text x="88.6045%" y="527.50"></text></g><g><title>schedule (36 samples, 0.08%)</title><rect x="88.3568%" y="501" width="0.0839%" height="15" fill="rgb(251,124,124)" fg:x="37898" fg:w="36"/><text x="88.6068%" y="511.50"></text></g><g><title>__x64_sys_futex (41 samples, 0.10%)</title><rect x="88.3498%" y="565" width="0.0956%" height="15" fill="rgb(248,121,121)" fg:x="37895" fg:w="41"/><text x="88.5998%" y="575.50"></text></g><g><title>do_futex (40 samples, 0.09%)</title><rect x="88.3521%" y="549" width="0.0933%" height="15" fill="rgb(230,94,94)" fg:x="37896" fg:w="40"/><text x="88.6021%" y="559.50"></text></g><g><title>futex_wait (40 samples, 0.09%)</title><rect x="88.3521%" y="533" width="0.0933%" height="15" fill="rgb(219,78,78)" fg:x="37896" fg:w="40"/><text x="88.6021%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.11%)</title><rect x="88.3405%" y="597" width="0.1096%" height="15" fill="rgb(254,128,128)" fg:x="37891" fg:w="47"/><text x="88.5905%" y="607.50"></text></g><g><title>do_syscall_64 (47 samples, 0.11%)</title><rect x="88.3405%" y="581" width="0.1096%" height="15" fill="rgb(217,75,75)" fg:x="37891" fg:w="47"/><text x="88.5905%" y="591.50"></text></g><g><title>__pthread_cond_wait (63 samples, 0.15%)</title><rect x="88.3078%" y="645" width="0.1469%" height="15" fill="rgb(240,109,109)" fg:x="37877" fg:w="63"/><text x="88.5578%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (63 samples, 0.15%)</title><rect x="88.3078%" y="629" width="0.1469%" height="15" fill="rgb(203,55,55)" fg:x="37877" fg:w="63"/><text x="88.5578%" y="639.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.13%)</title><rect x="88.3242%" y="613" width="0.1306%" height="15" fill="rgb(252,126,126)" fg:x="37884" fg:w="56"/><text x="88.5742%" y="623.50"></text></g><g><title>do_syscall_64 (10 samples, 0.02%)</title><rect x="88.4594%" y="581" width="0.0233%" height="15" fill="rgb(217,75,75)" fg:x="37942" fg:w="10"/><text x="88.7094%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (12 samples, 0.03%)</title><rect x="88.4571%" y="597" width="0.0280%" height="15" fill="rgb(254,128,128)" fg:x="37941" fg:w="12"/><text x="88.7071%" y="607.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (82 samples, 0.19%)</title><rect x="88.3008%" y="661" width="0.1912%" height="15" fill="rgb(218,218,65)" fg:x="37874" fg:w="82"/><text x="88.5508%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (16 samples, 0.04%)</title><rect x="88.4547%" y="645" width="0.0373%" height="15" fill="rgb(192,192,56)" fg:x="37940" fg:w="16"/><text x="88.7047%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (16 samples, 0.04%)</title><rect x="88.4547%" y="629" width="0.0373%" height="15" fill="rgb(221,81,81)" fg:x="37940" fg:w="16"/><text x="88.7047%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (16 samples, 0.04%)</title><rect x="88.4547%" y="613" width="0.0373%" height="15" fill="rgb(246,117,117)" fg:x="37940" fg:w="16"/><text x="88.7047%" y="623.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (88 samples, 0.21%)</title><rect x="88.2892%" y="741" width="0.2052%" height="15" fill="rgb(210,210,62)" fg:x="37869" fg:w="88"/><text x="88.5392%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (88 samples, 0.21%)</title><rect x="88.2892%" y="725" width="0.2052%" height="15" fill="rgb(211,211,63)" fg:x="37869" fg:w="88"/><text x="88.5392%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (87 samples, 0.20%)</title><rect x="88.2915%" y="709" width="0.2028%" height="15" fill="rgb(206,206,61)" fg:x="37870" fg:w="87"/><text x="88.5415%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (87 samples, 0.20%)</title><rect x="88.2915%" y="693" width="0.2028%" height="15" fill="rgb(204,204,60)" fg:x="37870" fg:w="87"/><text x="88.5415%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (87 samples, 0.20%)</title><rect x="88.2915%" y="677" width="0.2028%" height="15" fill="rgb(191,191,56)" fg:x="37870" fg:w="87"/><text x="88.5415%" y="687.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (95 samples, 0.22%)</title><rect x="88.2775%" y="773" width="0.2215%" height="15" fill="rgb(218,218,65)" fg:x="37864" fg:w="95"/><text x="88.5275%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (91 samples, 0.21%)</title><rect x="88.2869%" y="757" width="0.2122%" height="15" fill="rgb(180,180,51)" fg:x="37868" fg:w="91"/><text x="88.5369%" y="767.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (99 samples, 0.23%)</title><rect x="88.2752%" y="789" width="0.2308%" height="15" fill="rgb(227,227,69)" fg:x="37863" fg:w="99"/><text x="88.5252%" y="799.50"></text></g><g><title>[anon] (109 samples, 0.25%)</title><rect x="88.2542%" y="901" width="0.2541%" height="15" fill="rgb(252,126,126)" fg:x="37854" fg:w="109"/><text x="88.5042%" y="911.50"></text></g><g><title>start_thread (100 samples, 0.23%)</title><rect x="88.2752%" y="885" width="0.2331%" height="15" fill="rgb(235,101,101)" fg:x="37863" fg:w="100"/><text x="88.5252%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (100 samples, 0.23%)</title><rect x="88.2752%" y="869" width="0.2331%" height="15" fill="rgb(191,191,56)" fg:x="37863" fg:w="100"/><text x="88.5252%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (100 samples, 0.23%)</title><rect x="88.2752%" y="853" width="0.2331%" height="15" fill="rgb(210,210,62)" fg:x="37863" fg:w="100"/><text x="88.5252%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (100 samples, 0.23%)</title><rect x="88.2752%" y="837" width="0.2331%" height="15" fill="rgb(205,205,61)" fg:x="37863" fg:w="100"/><text x="88.5252%" y="847.50"></text></g><g><title>java.lang.Thread::run (100 samples, 0.23%)</title><rect x="88.2752%" y="821" width="0.2331%" height="15" fill="rgb(228,228,69)" fg:x="37863" fg:w="100"/><text x="88.5252%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (100 samples, 0.23%)</title><rect x="88.2752%" y="805" width="0.2331%" height="15" fill="rgb(225,225,68)" fg:x="37863" fg:w="100"/><text x="88.5252%" y="815.50"></text></g><g><title>java.util.concurrent.FutureTask::run (11 samples, 0.03%)</title><rect x="88.5200%" y="773" width="0.0256%" height="15" fill="rgb(220,220,66)" fg:x="37968" fg:w="11"/><text x="88.7700%" y="783.50"></text></g><g><title>[unknown] (22 samples, 0.05%)</title><rect x="88.5083%" y="901" width="0.0513%" height="15" fill="rgb(206,59,59)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="911.50"></text></g><g><title>start_thread (22 samples, 0.05%)</title><rect x="88.5083%" y="885" width="0.0513%" height="15" fill="rgb(235,101,101)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (22 samples, 0.05%)</title><rect x="88.5083%" y="869" width="0.0513%" height="15" fill="rgb(191,191,56)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (22 samples, 0.05%)</title><rect x="88.5083%" y="853" width="0.0513%" height="15" fill="rgb(210,210,62)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (22 samples, 0.05%)</title><rect x="88.5083%" y="837" width="0.0513%" height="15" fill="rgb(205,205,61)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="847.50"></text></g><g><title>java.lang.Thread::run (22 samples, 0.05%)</title><rect x="88.5083%" y="821" width="0.0513%" height="15" fill="rgb(228,228,69)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (22 samples, 0.05%)</title><rect x="88.5083%" y="805" width="0.0513%" height="15" fill="rgb(225,225,68)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (22 samples, 0.05%)</title><rect x="88.5083%" y="789" width="0.0513%" height="15" fill="rgb(227,227,69)" fg:x="37963" fg:w="22"/><text x="88.7583%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (6 samples, 0.01%)</title><rect x="88.5456%" y="773" width="0.0140%" height="15" fill="rgb(218,218,65)" fg:x="37979" fg:w="6"/><text x="88.7956%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (6 samples, 0.01%)</title><rect x="88.5456%" y="757" width="0.0140%" height="15" fill="rgb(180,180,51)" fg:x="37979" fg:w="6"/><text x="88.7956%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (6 samples, 0.01%)</title><rect x="88.5456%" y="741" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="37979" fg:w="6"/><text x="88.7956%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::tryRelease (5 samples, 0.01%)</title><rect x="88.5480%" y="725" width="0.0117%" height="15" fill="rgb(179,179,51)" fg:x="37980" fg:w="5"/><text x="88.7980%" y="735.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="88.5596%" y="901" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="911.50"></text></g><g><title>start_thread (26 samples, 0.06%)</title><rect x="88.5596%" y="885" width="0.0606%" height="15" fill="rgb(235,101,101)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="88.5596%" y="869" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (26 samples, 0.06%)</title><rect x="88.5596%" y="853" width="0.0606%" height="15" fill="rgb(210,210,62)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (26 samples, 0.06%)</title><rect x="88.5596%" y="837" width="0.0606%" height="15" fill="rgb(205,205,61)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="847.50"></text></g><g><title>java.lang.Thread::run (26 samples, 0.06%)</title><rect x="88.5596%" y="821" width="0.0606%" height="15" fill="rgb(228,228,69)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (26 samples, 0.06%)</title><rect x="88.5596%" y="805" width="0.0606%" height="15" fill="rgb(225,225,68)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (26 samples, 0.06%)</title><rect x="88.5596%" y="789" width="0.0606%" height="15" fill="rgb(227,227,69)" fg:x="37985" fg:w="26"/><text x="88.8096%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (22 samples, 0.05%)</title><rect x="88.5690%" y="773" width="0.0513%" height="15" fill="rgb(218,218,65)" fg:x="37989" fg:w="22"/><text x="88.8190%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (22 samples, 0.05%)</title><rect x="88.5690%" y="757" width="0.0513%" height="15" fill="rgb(180,180,51)" fg:x="37989" fg:w="22"/><text x="88.8190%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (456 samples, 1.06%)</title><rect x="88.6203%" y="773" width="1.0631%" height="15" fill="rgb(220,220,66)" fg:x="38011" fg:w="456"/><text x="88.8703%" y="783.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (456 samples, 1.06%)</title><rect x="88.6203%" y="757" width="1.0631%" height="15" fill="rgb(185,185,53)" fg:x="38011" fg:w="456"/><text x="88.8703%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (456 samples, 1.06%)</title><rect x="88.6203%" y="741" width="1.0631%" height="15" fill="rgb(185,185,53)" fg:x="38011" fg:w="456"/><text x="88.8703%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (456 samples, 1.06%)</title><rect x="88.6203%" y="725" width="1.0631%" height="15" fill="rgb(196,196,57)" fg:x="38011" fg:w="456"/><text x="88.8703%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (8 samples, 0.02%)</title><rect x="89.6834%" y="741" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="38467" fg:w="8"/><text x="89.9334%" y="751.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (465 samples, 1.08%)</title><rect x="88.6203%" y="901" width="1.0841%" height="15" fill="rgb(210,210,62)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="911.50"></text></g><g><title>start_thread (465 samples, 1.08%)</title><rect x="88.6203%" y="885" width="1.0841%" height="15" fill="rgb(235,101,101)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (465 samples, 1.08%)</title><rect x="88.6203%" y="869" width="1.0841%" height="15" fill="rgb(191,191,56)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (465 samples, 1.08%)</title><rect x="88.6203%" y="853" width="1.0841%" height="15" fill="rgb(210,210,62)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (465 samples, 1.08%)</title><rect x="88.6203%" y="837" width="1.0841%" height="15" fill="rgb(205,205,61)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="847.50"></text></g><g><title>java.lang.Thread::run (465 samples, 1.08%)</title><rect x="88.6203%" y="821" width="1.0841%" height="15" fill="rgb(228,228,69)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (465 samples, 1.08%)</title><rect x="88.6203%" y="805" width="1.0841%" height="15" fill="rgb(225,225,68)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (465 samples, 1.08%)</title><rect x="88.6203%" y="789" width="1.0841%" height="15" fill="rgb(227,227,69)" fg:x="38011" fg:w="465"/><text x="88.8703%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (9 samples, 0.02%)</title><rect x="89.6834%" y="773" width="0.0210%" height="15" fill="rgb(218,218,65)" fg:x="38467" fg:w="9"/><text x="89.9334%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (9 samples, 0.02%)</title><rect x="89.6834%" y="757" width="0.0210%" height="15" fill="rgb(180,180,51)" fg:x="38467" fg:w="9"/><text x="89.9334%" y="767.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="89.7044%" y="901" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="911.50"></text></g><g><title>start_thread (5 samples, 0.01%)</title><rect x="89.7044%" y="885" width="0.0117%" height="15" fill="rgb(235,101,101)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (5 samples, 0.01%)</title><rect x="89.7044%" y="869" width="0.0117%" height="15" fill="rgb(191,191,56)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (5 samples, 0.01%)</title><rect x="89.7044%" y="853" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (5 samples, 0.01%)</title><rect x="89.7044%" y="837" width="0.0117%" height="15" fill="rgb(205,205,61)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="847.50"></text></g><g><title>java.lang.Thread::run (5 samples, 0.01%)</title><rect x="89.7044%" y="821" width="0.0117%" height="15" fill="rgb(228,228,69)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (5 samples, 0.01%)</title><rect x="89.7044%" y="805" width="0.0117%" height="15" fill="rgb(225,225,68)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (5 samples, 0.01%)</title><rect x="89.7044%" y="789" width="0.0117%" height="15" fill="rgb(227,227,69)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="89.7044%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="89.7044%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (5 samples, 0.01%)</title><rect x="89.7044%" y="741" width="0.0117%" height="15" fill="rgb(210,210,62)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (5 samples, 0.01%)</title><rect x="89.7044%" y="725" width="0.0117%" height="15" fill="rgb(190,190,55)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (5 samples, 0.01%)</title><rect x="89.7044%" y="709" width="0.0117%" height="15" fill="rgb(208,208,62)" fg:x="38476" fg:w="5"/><text x="89.9544%" y="719.50"></text></g><g><title>enqueue_task_fair (5 samples, 0.01%)</title><rect x="89.7743%" y="485" width="0.0117%" height="15" fill="rgb(218,77,77)" fg:x="38506" fg:w="5"/><text x="90.0243%" y="495.50"></text></g><g><title>activate_task (17 samples, 0.04%)</title><rect x="89.7743%" y="501" width="0.0396%" height="15" fill="rgb(234,100,100)" fg:x="38506" fg:w="17"/><text x="90.0243%" y="511.50"></text></g><g><title>psi_task_change (12 samples, 0.03%)</title><rect x="89.7860%" y="485" width="0.0280%" height="15" fill="rgb(220,80,80)" fg:x="38511" fg:w="12"/><text x="90.0360%" y="495.50"></text></g><g><title>ttwu_do_activate (18 samples, 0.04%)</title><rect x="89.7743%" y="517" width="0.0420%" height="15" fill="rgb(239,107,107)" fg:x="38506" fg:w="18"/><text x="90.0243%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.09%)</title><rect x="89.7370%" y="629" width="0.0863%" height="15" fill="rgb(254,128,128)" fg:x="38490" fg:w="37"/><text x="89.9870%" y="639.50"></text></g><g><title>do_syscall_64 (36 samples, 0.08%)</title><rect x="89.7393%" y="613" width="0.0839%" height="15" fill="rgb(217,75,75)" fg:x="38491" fg:w="36"/><text x="89.9893%" y="623.50"></text></g><g><title>__x64_sys_futex (32 samples, 0.07%)</title><rect x="89.7487%" y="597" width="0.0746%" height="15" fill="rgb(248,121,121)" fg:x="38495" fg:w="32"/><text x="89.9987%" y="607.50"></text></g><g><title>do_futex (32 samples, 0.07%)</title><rect x="89.7487%" y="581" width="0.0746%" height="15" fill="rgb(230,94,94)" fg:x="38495" fg:w="32"/><text x="89.9987%" y="591.50"></text></g><g><title>futex_wake (32 samples, 0.07%)</title><rect x="89.7487%" y="565" width="0.0746%" height="15" fill="rgb(219,78,78)" fg:x="38495" fg:w="32"/><text x="89.9987%" y="575.50"></text></g><g><title>wake_up_q (31 samples, 0.07%)</title><rect x="89.7510%" y="549" width="0.0723%" height="15" fill="rgb(228,90,90)" fg:x="38496" fg:w="31"/><text x="90.0010%" y="559.50"></text></g><g><title>try_to_wake_up (27 samples, 0.06%)</title><rect x="89.7603%" y="533" width="0.0629%" height="15" fill="rgb(229,93,93)" fg:x="38500" fg:w="27"/><text x="90.0103%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (44 samples, 0.10%)</title><rect x="89.7277%" y="677" width="0.1026%" height="15" fill="rgb(223,223,67)" fg:x="38486" fg:w="44"/><text x="89.9777%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (44 samples, 0.10%)</title><rect x="89.7277%" y="661" width="0.1026%" height="15" fill="rgb(219,78,78)" fg:x="38486" fg:w="44"/><text x="89.9777%" y="671.50"></text></g><g><title>futex_wake (41 samples, 0.10%)</title><rect x="89.7347%" y="645" width="0.0956%" height="15" fill="rgb(219,78,78)" fg:x="38489" fg:w="41"/><text x="89.9847%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (48 samples, 0.11%)</title><rect x="89.7254%" y="693" width="0.1119%" height="15" fill="rgb(196,196,57)" fg:x="38485" fg:w="48"/><text x="89.9754%" y="703.50"></text></g><g><title>pool-9-thread-4 (680 samples, 1.59%)</title><rect x="88.2542%" y="917" width="1.5854%" height="15" fill="rgb(226,88,88)" fg:x="37854" fg:w="680"/><text x="88.5042%" y="927.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (51 samples, 0.12%)</title><rect x="89.7207%" y="901" width="0.1189%" height="15" fill="rgb(225,225,68)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="911.50"></text></g><g><title>start_thread (51 samples, 0.12%)</title><rect x="89.7207%" y="885" width="0.1189%" height="15" fill="rgb(235,101,101)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (51 samples, 0.12%)</title><rect x="89.7207%" y="869" width="0.1189%" height="15" fill="rgb(191,191,56)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (51 samples, 0.12%)</title><rect x="89.7207%" y="853" width="0.1189%" height="15" fill="rgb(210,210,62)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (51 samples, 0.12%)</title><rect x="89.7207%" y="837" width="0.1189%" height="15" fill="rgb(205,205,61)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="847.50"></text></g><g><title>java.lang.Thread::run (51 samples, 0.12%)</title><rect x="89.7207%" y="821" width="0.1189%" height="15" fill="rgb(228,228,69)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (51 samples, 0.12%)</title><rect x="89.7207%" y="805" width="0.1189%" height="15" fill="rgb(225,225,68)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (51 samples, 0.12%)</title><rect x="89.7207%" y="789" width="0.1189%" height="15" fill="rgb(227,227,69)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (51 samples, 0.12%)</title><rect x="89.7207%" y="773" width="0.1189%" height="15" fill="rgb(218,218,65)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (51 samples, 0.12%)</title><rect x="89.7207%" y="757" width="0.1189%" height="15" fill="rgb(180,180,51)" fg:x="38483" fg:w="51"/><text x="89.9707%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (49 samples, 0.11%)</title><rect x="89.7254%" y="741" width="0.1142%" height="15" fill="rgb(191,191,56)" fg:x="38485" fg:w="49"/><text x="89.9754%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (49 samples, 0.11%)</title><rect x="89.7254%" y="725" width="0.1142%" height="15" fill="rgb(227,227,69)" fg:x="38485" fg:w="49"/><text x="89.9754%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (49 samples, 0.11%)</title><rect x="89.7254%" y="709" width="0.1142%" height="15" fill="rgb(223,223,67)" fg:x="38485" fg:w="49"/><text x="89.9754%" y="719.50"></text></g><g><title>__pthread_cond_broadcast (5 samples, 0.01%)</title><rect x="89.8396%" y="885" width="0.0117%" height="15" fill="rgb(219,78,78)" fg:x="38534" fg:w="5"/><text x="90.0896%" y="895.50"></text></g><g><title>futex_wake (5 samples, 0.01%)</title><rect x="89.8396%" y="869" width="0.0117%" height="15" fill="rgb(219,78,78)" fg:x="38534" fg:w="5"/><text x="90.0896%" y="879.50"></text></g><g><title>entry_SYSCALL_64 (5 samples, 0.01%)</title><rect x="89.8396%" y="853" width="0.0117%" height="15" fill="rgb(253,128,128)" fg:x="38534" fg:w="5"/><text x="90.0896%" y="863.50"></text></g><g><title>dequeue_task_fair (7 samples, 0.02%)</title><rect x="89.9422%" y="453" width="0.0163%" height="15" fill="rgb(200,51,51)" fg:x="38578" fg:w="7"/><text x="90.1922%" y="463.50"></text></g><g><title>dequeue_entity (7 samples, 0.02%)</title><rect x="89.9422%" y="437" width="0.0163%" height="15" fill="rgb(250,122,122)" fg:x="38578" fg:w="7"/><text x="90.1922%" y="447.50"></text></g><g><title>deactivate_task (20 samples, 0.05%)</title><rect x="89.9398%" y="469" width="0.0466%" height="15" fill="rgb(213,68,68)" fg:x="38577" fg:w="20"/><text x="90.1898%" y="479.50"></text></g><g><title>psi_task_change (12 samples, 0.03%)</title><rect x="89.9585%" y="453" width="0.0280%" height="15" fill="rgb(220,80,80)" fg:x="38585" fg:w="12"/><text x="90.2085%" y="463.50"></text></g><g><title>finish_task_switch (6 samples, 0.01%)</title><rect x="89.9865%" y="469" width="0.0140%" height="15" fill="rgb(251,124,124)" fg:x="38597" fg:w="6"/><text x="90.2365%" y="479.50"></text></g><g><title>__schedule (34 samples, 0.08%)</title><rect x="89.9259%" y="485" width="0.0793%" height="15" fill="rgb(209,64,64)" fg:x="38571" fg:w="34"/><text x="90.1759%" y="495.50"></text></g><g><title>futex_wait_queue_me (36 samples, 0.08%)</title><rect x="89.9235%" y="517" width="0.0839%" height="15" fill="rgb(204,56,56)" fg:x="38570" fg:w="36"/><text x="90.1735%" y="527.50"></text></g><g><title>schedule (35 samples, 0.08%)</title><rect x="89.9259%" y="501" width="0.0816%" height="15" fill="rgb(251,124,124)" fg:x="38571" fg:w="35"/><text x="90.1759%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.11%)</title><rect x="89.9025%" y="597" width="0.1142%" height="15" fill="rgb(254,128,128)" fg:x="38561" fg:w="49"/><text x="90.1525%" y="607.50"></text></g><g><title>do_syscall_64 (49 samples, 0.11%)</title><rect x="89.9025%" y="581" width="0.1142%" height="15" fill="rgb(217,75,75)" fg:x="38561" fg:w="49"/><text x="90.1525%" y="591.50"></text></g><g><title>__x64_sys_futex (42 samples, 0.10%)</title><rect x="89.9189%" y="565" width="0.0979%" height="15" fill="rgb(248,121,121)" fg:x="38568" fg:w="42"/><text x="90.1689%" y="575.50"></text></g><g><title>do_futex (42 samples, 0.10%)</title><rect x="89.9189%" y="549" width="0.0979%" height="15" fill="rgb(230,94,94)" fg:x="38568" fg:w="42"/><text x="90.1689%" y="559.50"></text></g><g><title>futex_wait (42 samples, 0.10%)</title><rect x="89.9189%" y="533" width="0.0979%" height="15" fill="rgb(219,78,78)" fg:x="38568" fg:w="42"/><text x="90.1689%" y="543.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.14%)</title><rect x="89.8816%" y="645" width="0.1376%" height="15" fill="rgb(240,109,109)" fg:x="38552" fg:w="59"/><text x="90.1316%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.14%)</title><rect x="89.8816%" y="629" width="0.1376%" height="15" fill="rgb(203,55,55)" fg:x="38552" fg:w="59"/><text x="90.1316%" y="639.50"></text></g><g><title>futex_wait_cancelable (53 samples, 0.12%)</title><rect x="89.8956%" y="613" width="0.1236%" height="15" fill="rgb(252,126,126)" fg:x="38558" fg:w="53"/><text x="90.1456%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="90.0238%" y="597" width="0.0210%" height="15" fill="rgb(254,128,128)" fg:x="38613" fg:w="9"/><text x="90.2738%" y="607.50"></text></g><g><title>do_syscall_64 (8 samples, 0.02%)</title><rect x="90.0261%" y="581" width="0.0187%" height="15" fill="rgb(217,75,75)" fg:x="38614" fg:w="8"/><text x="90.2761%" y="591.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (74 samples, 0.17%)</title><rect x="89.8769%" y="709" width="0.1725%" height="15" fill="rgb(206,206,61)" fg:x="38550" fg:w="74"/><text x="90.1269%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (74 samples, 0.17%)</title><rect x="89.8769%" y="693" width="0.1725%" height="15" fill="rgb(204,204,60)" fg:x="38550" fg:w="74"/><text x="90.1269%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (74 samples, 0.17%)</title><rect x="89.8769%" y="677" width="0.1725%" height="15" fill="rgb(191,191,56)" fg:x="38550" fg:w="74"/><text x="90.1269%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (74 samples, 0.17%)</title><rect x="89.8769%" y="661" width="0.1725%" height="15" fill="rgb(218,218,65)" fg:x="38550" fg:w="74"/><text x="90.1269%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (12 samples, 0.03%)</title><rect x="90.0214%" y="645" width="0.0280%" height="15" fill="rgb(192,192,56)" fg:x="38612" fg:w="12"/><text x="90.2714%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (12 samples, 0.03%)</title><rect x="90.0214%" y="629" width="0.0280%" height="15" fill="rgb(221,81,81)" fg:x="38612" fg:w="12"/><text x="90.2714%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (12 samples, 0.03%)</title><rect x="90.0214%" y="613" width="0.0280%" height="15" fill="rgb(246,117,117)" fg:x="38612" fg:w="12"/><text x="90.2714%" y="623.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (78 samples, 0.18%)</title><rect x="89.8699%" y="741" width="0.1819%" height="15" fill="rgb(210,210,62)" fg:x="38547" fg:w="78"/><text x="90.1199%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (78 samples, 0.18%)</title><rect x="89.8699%" y="725" width="0.1819%" height="15" fill="rgb(211,211,63)" fg:x="38547" fg:w="78"/><text x="90.1199%" y="735.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (86 samples, 0.20%)</title><rect x="89.8536%" y="773" width="0.2005%" height="15" fill="rgb(218,218,65)" fg:x="38540" fg:w="86"/><text x="90.1036%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (79 samples, 0.18%)</title><rect x="89.8699%" y="757" width="0.1842%" height="15" fill="rgb(180,180,51)" fg:x="38547" fg:w="79"/><text x="90.1199%" y="767.50"></text></g><g><title>[anon] (98 samples, 0.23%)</title><rect x="89.8396%" y="901" width="0.2285%" height="15" fill="rgb(252,126,126)" fg:x="38534" fg:w="98"/><text x="90.0896%" y="911.50"></text></g><g><title>start_thread (93 samples, 0.22%)</title><rect x="89.8513%" y="885" width="0.2168%" height="15" fill="rgb(235,101,101)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (93 samples, 0.22%)</title><rect x="89.8513%" y="869" width="0.2168%" height="15" fill="rgb(191,191,56)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (93 samples, 0.22%)</title><rect x="89.8513%" y="853" width="0.2168%" height="15" fill="rgb(210,210,62)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (93 samples, 0.22%)</title><rect x="89.8513%" y="837" width="0.2168%" height="15" fill="rgb(205,205,61)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="847.50"></text></g><g><title>java.lang.Thread::run (93 samples, 0.22%)</title><rect x="89.8513%" y="821" width="0.2168%" height="15" fill="rgb(228,228,69)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (93 samples, 0.22%)</title><rect x="89.8513%" y="805" width="0.2168%" height="15" fill="rgb(225,225,68)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (93 samples, 0.22%)</title><rect x="89.8513%" y="789" width="0.2168%" height="15" fill="rgb(227,227,69)" fg:x="38539" fg:w="93"/><text x="90.1013%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (10 samples, 0.02%)</title><rect x="90.0681%" y="773" width="0.0233%" height="15" fill="rgb(220,220,66)" fg:x="38632" fg:w="10"/><text x="90.3181%" y="783.50"></text></g><g><title>[unknown] (17 samples, 0.04%)</title><rect x="90.0681%" y="901" width="0.0396%" height="15" fill="rgb(206,59,59)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="911.50"></text></g><g><title>start_thread (17 samples, 0.04%)</title><rect x="90.0681%" y="885" width="0.0396%" height="15" fill="rgb(235,101,101)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (17 samples, 0.04%)</title><rect x="90.0681%" y="869" width="0.0396%" height="15" fill="rgb(191,191,56)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (17 samples, 0.04%)</title><rect x="90.0681%" y="853" width="0.0396%" height="15" fill="rgb(210,210,62)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (17 samples, 0.04%)</title><rect x="90.0681%" y="837" width="0.0396%" height="15" fill="rgb(205,205,61)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="847.50"></text></g><g><title>java.lang.Thread::run (17 samples, 0.04%)</title><rect x="90.0681%" y="821" width="0.0396%" height="15" fill="rgb(228,228,69)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (17 samples, 0.04%)</title><rect x="90.0681%" y="805" width="0.0396%" height="15" fill="rgb(225,225,68)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (17 samples, 0.04%)</title><rect x="90.0681%" y="789" width="0.0396%" height="15" fill="rgb(227,227,69)" fg:x="38632" fg:w="17"/><text x="90.3181%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (6 samples, 0.01%)</title><rect x="90.0937%" y="773" width="0.0140%" height="15" fill="rgb(218,218,65)" fg:x="38643" fg:w="6"/><text x="90.3437%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (6 samples, 0.01%)</title><rect x="90.0937%" y="757" width="0.0140%" height="15" fill="rgb(180,180,51)" fg:x="38643" fg:w="6"/><text x="90.3437%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (7 samples, 0.02%)</title><rect x="90.1077%" y="773" width="0.0163%" height="15" fill="rgb(220,220,66)" fg:x="38649" fg:w="7"/><text x="90.3577%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (7 samples, 0.02%)</title><rect x="90.1077%" y="757" width="0.0163%" height="15" fill="rgb(222,222,67)" fg:x="38649" fg:w="7"/><text x="90.3577%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (23 samples, 0.05%)</title><rect x="90.1077%" y="901" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="911.50"></text></g><g><title>start_thread (23 samples, 0.05%)</title><rect x="90.1077%" y="885" width="0.0536%" height="15" fill="rgb(235,101,101)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (23 samples, 0.05%)</title><rect x="90.1077%" y="869" width="0.0536%" height="15" fill="rgb(191,191,56)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (23 samples, 0.05%)</title><rect x="90.1077%" y="853" width="0.0536%" height="15" fill="rgb(210,210,62)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (23 samples, 0.05%)</title><rect x="90.1077%" y="837" width="0.0536%" height="15" fill="rgb(205,205,61)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="847.50"></text></g><g><title>java.lang.Thread::run (23 samples, 0.05%)</title><rect x="90.1077%" y="821" width="0.0536%" height="15" fill="rgb(228,228,69)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (23 samples, 0.05%)</title><rect x="90.1077%" y="805" width="0.0536%" height="15" fill="rgb(225,225,68)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (23 samples, 0.05%)</title><rect x="90.1077%" y="789" width="0.0536%" height="15" fill="rgb(227,227,69)" fg:x="38649" fg:w="23"/><text x="90.3577%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (15 samples, 0.03%)</title><rect x="90.1264%" y="773" width="0.0350%" height="15" fill="rgb(218,218,65)" fg:x="38657" fg:w="15"/><text x="90.3764%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (15 samples, 0.03%)</title><rect x="90.1264%" y="757" width="0.0350%" height="15" fill="rgb(180,180,51)" fg:x="38657" fg:w="15"/><text x="90.3764%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (487 samples, 1.14%)</title><rect x="90.1637%" y="757" width="1.1354%" height="15" fill="rgb(185,185,53)" fg:x="38673" fg:w="487"/><text x="90.4137%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (487 samples, 1.14%)</title><rect x="90.1637%" y="741" width="1.1354%" height="15" fill="rgb(185,185,53)" fg:x="38673" fg:w="487"/><text x="90.4137%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (487 samples, 1.14%)</title><rect x="90.1637%" y="725" width="1.1354%" height="15" fill="rgb(196,196,57)" fg:x="38673" fg:w="487"/><text x="90.4137%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (489 samples, 1.14%)</title><rect x="90.1637%" y="773" width="1.1401%" height="15" fill="rgb(220,220,66)" fg:x="38673" fg:w="489"/><text x="90.4137%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (494 samples, 1.15%)</title><rect x="90.1637%" y="901" width="1.1517%" height="15" fill="rgb(210,210,62)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="911.50"></text></g><g><title>start_thread (494 samples, 1.15%)</title><rect x="90.1637%" y="885" width="1.1517%" height="15" fill="rgb(235,101,101)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (494 samples, 1.15%)</title><rect x="90.1637%" y="869" width="1.1517%" height="15" fill="rgb(191,191,56)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (494 samples, 1.15%)</title><rect x="90.1637%" y="853" width="1.1517%" height="15" fill="rgb(210,210,62)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (494 samples, 1.15%)</title><rect x="90.1637%" y="837" width="1.1517%" height="15" fill="rgb(205,205,61)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="847.50"></text></g><g><title>java.lang.Thread::run (494 samples, 1.15%)</title><rect x="90.1637%" y="821" width="1.1517%" height="15" fill="rgb(228,228,69)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (494 samples, 1.15%)</title><rect x="90.1637%" y="805" width="1.1517%" height="15" fill="rgb(225,225,68)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (494 samples, 1.15%)</title><rect x="90.1637%" y="789" width="1.1517%" height="15" fill="rgb(227,227,69)" fg:x="38673" fg:w="494"/><text x="90.4137%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="91.3037%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="39162" fg:w="5"/><text x="91.5537%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="91.3037%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="39162" fg:w="5"/><text x="91.5537%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (10 samples, 0.02%)</title><rect x="91.3154%" y="741" width="0.0233%" height="15" fill="rgb(210,210,62)" fg:x="39167" fg:w="10"/><text x="91.5654%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (10 samples, 0.02%)</title><rect x="91.3154%" y="725" width="0.0233%" height="15" fill="rgb(190,190,55)" fg:x="39167" fg:w="10"/><text x="91.5654%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (10 samples, 0.02%)</title><rect x="91.3154%" y="709" width="0.0233%" height="15" fill="rgb(208,208,62)" fg:x="39167" fg:w="10"/><text x="91.5654%" y="719.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (12 samples, 0.03%)</title><rect x="91.3154%" y="901" width="0.0280%" height="15" fill="rgb(205,205,61)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="911.50"></text></g><g><title>start_thread (12 samples, 0.03%)</title><rect x="91.3154%" y="885" width="0.0280%" height="15" fill="rgb(235,101,101)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (12 samples, 0.03%)</title><rect x="91.3154%" y="869" width="0.0280%" height="15" fill="rgb(191,191,56)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (12 samples, 0.03%)</title><rect x="91.3154%" y="853" width="0.0280%" height="15" fill="rgb(210,210,62)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (12 samples, 0.03%)</title><rect x="91.3154%" y="837" width="0.0280%" height="15" fill="rgb(205,205,61)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="847.50"></text></g><g><title>java.lang.Thread::run (12 samples, 0.03%)</title><rect x="91.3154%" y="821" width="0.0280%" height="15" fill="rgb(228,228,69)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (12 samples, 0.03%)</title><rect x="91.3154%" y="805" width="0.0280%" height="15" fill="rgb(225,225,68)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (12 samples, 0.03%)</title><rect x="91.3154%" y="789" width="0.0280%" height="15" fill="rgb(227,227,69)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (12 samples, 0.03%)</title><rect x="91.3154%" y="773" width="0.0280%" height="15" fill="rgb(218,218,65)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (12 samples, 0.03%)</title><rect x="91.3154%" y="757" width="0.0280%" height="15" fill="rgb(180,180,51)" fg:x="39167" fg:w="12"/><text x="91.5654%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (8 samples, 0.02%)</title><rect x="91.3504%" y="741" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="39182" fg:w="8"/><text x="91.6004%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (8 samples, 0.02%)</title><rect x="91.3504%" y="725" width="0.0187%" height="15" fill="rgb(211,211,63)" fg:x="39182" fg:w="8"/><text x="91.6004%" y="735.50"></text></g><g><title>enqueue_task_fair (8 samples, 0.02%)</title><rect x="91.4110%" y="485" width="0.0187%" height="15" fill="rgb(218,77,77)" fg:x="39208" fg:w="8"/><text x="91.6610%" y="495.50"></text></g><g><title>psi_task_change (7 samples, 0.02%)</title><rect x="91.4296%" y="485" width="0.0163%" height="15" fill="rgb(220,80,80)" fg:x="39216" fg:w="7"/><text x="91.6796%" y="495.50"></text></g><g><title>activate_task (16 samples, 0.04%)</title><rect x="91.4110%" y="501" width="0.0373%" height="15" fill="rgb(234,100,100)" fg:x="39208" fg:w="16"/><text x="91.6610%" y="511.50"></text></g><g><title>ttwu_do_activate (21 samples, 0.05%)</title><rect x="91.4110%" y="517" width="0.0490%" height="15" fill="rgb(239,107,107)" fg:x="39208" fg:w="21"/><text x="91.6610%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.09%)</title><rect x="91.3783%" y="629" width="0.0933%" height="15" fill="rgb(254,128,128)" fg:x="39194" fg:w="40"/><text x="91.6283%" y="639.50"></text></g><g><title>do_syscall_64 (40 samples, 0.09%)</title><rect x="91.3783%" y="613" width="0.0933%" height="15" fill="rgb(217,75,75)" fg:x="39194" fg:w="40"/><text x="91.6283%" y="623.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.09%)</title><rect x="91.3830%" y="597" width="0.0886%" height="15" fill="rgb(248,121,121)" fg:x="39196" fg:w="38"/><text x="91.6330%" y="607.50"></text></g><g><title>do_futex (38 samples, 0.09%)</title><rect x="91.3830%" y="581" width="0.0886%" height="15" fill="rgb(230,94,94)" fg:x="39196" fg:w="38"/><text x="91.6330%" y="591.50"></text></g><g><title>futex_wake (37 samples, 0.09%)</title><rect x="91.3853%" y="565" width="0.0863%" height="15" fill="rgb(219,78,78)" fg:x="39197" fg:w="37"/><text x="91.6353%" y="575.50"></text></g><g><title>wake_up_q (33 samples, 0.08%)</title><rect x="91.3947%" y="549" width="0.0769%" height="15" fill="rgb(228,90,90)" fg:x="39201" fg:w="33"/><text x="91.6447%" y="559.50"></text></g><g><title>try_to_wake_up (32 samples, 0.07%)</title><rect x="91.3970%" y="533" width="0.0746%" height="15" fill="rgb(229,93,93)" fg:x="39202" fg:w="32"/><text x="91.6470%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (46 samples, 0.11%)</title><rect x="91.3737%" y="677" width="0.1072%" height="15" fill="rgb(223,223,67)" fg:x="39192" fg:w="46"/><text x="91.6237%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (46 samples, 0.11%)</title><rect x="91.3737%" y="661" width="0.1072%" height="15" fill="rgb(219,78,78)" fg:x="39192" fg:w="46"/><text x="91.6237%" y="671.50"></text></g><g><title>futex_wake (44 samples, 0.10%)</title><rect x="91.3783%" y="645" width="0.1026%" height="15" fill="rgb(219,78,78)" fg:x="39194" fg:w="44"/><text x="91.6283%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (50 samples, 0.12%)</title><rect x="91.3690%" y="693" width="0.1166%" height="15" fill="rgb(196,196,57)" fg:x="39190" fg:w="50"/><text x="91.6190%" y="703.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (61 samples, 0.14%)</title><rect x="91.3504%" y="901" width="0.1422%" height="15" fill="rgb(225,225,68)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="911.50"></text></g><g><title>start_thread (61 samples, 0.14%)</title><rect x="91.3504%" y="885" width="0.1422%" height="15" fill="rgb(235,101,101)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (61 samples, 0.14%)</title><rect x="91.3504%" y="869" width="0.1422%" height="15" fill="rgb(191,191,56)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (61 samples, 0.14%)</title><rect x="91.3504%" y="853" width="0.1422%" height="15" fill="rgb(210,210,62)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (61 samples, 0.14%)</title><rect x="91.3504%" y="837" width="0.1422%" height="15" fill="rgb(205,205,61)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="847.50"></text></g><g><title>java.lang.Thread::run (61 samples, 0.14%)</title><rect x="91.3504%" y="821" width="0.1422%" height="15" fill="rgb(228,228,69)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (61 samples, 0.14%)</title><rect x="91.3504%" y="805" width="0.1422%" height="15" fill="rgb(225,225,68)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (61 samples, 0.14%)</title><rect x="91.3504%" y="789" width="0.1422%" height="15" fill="rgb(227,227,69)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (61 samples, 0.14%)</title><rect x="91.3504%" y="773" width="0.1422%" height="15" fill="rgb(218,218,65)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (61 samples, 0.14%)</title><rect x="91.3504%" y="757" width="0.1422%" height="15" fill="rgb(180,180,51)" fg:x="39182" fg:w="61"/><text x="91.6004%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (53 samples, 0.12%)</title><rect x="91.3690%" y="741" width="0.1236%" height="15" fill="rgb(191,191,56)" fg:x="39190" fg:w="53"/><text x="91.6190%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (53 samples, 0.12%)</title><rect x="91.3690%" y="725" width="0.1236%" height="15" fill="rgb(227,227,69)" fg:x="39190" fg:w="53"/><text x="91.6190%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (53 samples, 0.12%)</title><rect x="91.3690%" y="709" width="0.1236%" height="15" fill="rgb(223,223,67)" fg:x="39190" fg:w="53"/><text x="91.6190%" y="719.50"></text></g><g><title>pool-9-thread-5 (711 samples, 1.66%)</title><rect x="89.8396%" y="917" width="1.6577%" height="15" fill="rgb(226,88,88)" fg:x="38534" fg:w="711"/><text x="90.0896%" y="927.50"></text></g><g><title>update_curr (5 samples, 0.01%)</title><rect x="91.6022%" y="421" width="0.0117%" height="15" fill="rgb(215,72,72)" fg:x="39290" fg:w="5"/><text x="91.8522%" y="431.50"></text></g><g><title>dequeue_task_fair (11 samples, 0.03%)</title><rect x="91.5905%" y="453" width="0.0256%" height="15" fill="rgb(200,51,51)" fg:x="39285" fg:w="11"/><text x="91.8405%" y="463.50"></text></g><g><title>dequeue_entity (9 samples, 0.02%)</title><rect x="91.5952%" y="437" width="0.0210%" height="15" fill="rgb(250,122,122)" fg:x="39287" fg:w="9"/><text x="91.8452%" y="447.50"></text></g><g><title>deactivate_task (22 samples, 0.05%)</title><rect x="91.5905%" y="469" width="0.0513%" height="15" fill="rgb(213,68,68)" fg:x="39285" fg:w="22"/><text x="91.8405%" y="479.50"></text></g><g><title>psi_task_change (11 samples, 0.03%)</title><rect x="91.6162%" y="453" width="0.0256%" height="15" fill="rgb(220,80,80)" fg:x="39296" fg:w="11"/><text x="91.8662%" y="463.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.08%)</title><rect x="91.5788%" y="517" width="0.0769%" height="15" fill="rgb(204,56,56)" fg:x="39280" fg:w="33"/><text x="91.8288%" y="527.50"></text></g><g><title>schedule (32 samples, 0.07%)</title><rect x="91.5812%" y="501" width="0.0746%" height="15" fill="rgb(251,124,124)" fg:x="39281" fg:w="32"/><text x="91.8312%" y="511.50"></text></g><g><title>__schedule (31 samples, 0.07%)</title><rect x="91.5835%" y="485" width="0.0723%" height="15" fill="rgb(209,64,64)" fg:x="39282" fg:w="31"/><text x="91.8335%" y="495.50"></text></g><g><title>__x64_sys_futex (36 samples, 0.08%)</title><rect x="91.5742%" y="565" width="0.0839%" height="15" fill="rgb(248,121,121)" fg:x="39278" fg:w="36"/><text x="91.8242%" y="575.50"></text></g><g><title>do_futex (35 samples, 0.08%)</title><rect x="91.5765%" y="549" width="0.0816%" height="15" fill="rgb(230,94,94)" fg:x="39279" fg:w="35"/><text x="91.8265%" y="559.50"></text></g><g><title>futex_wait (35 samples, 0.08%)</title><rect x="91.5765%" y="533" width="0.0816%" height="15" fill="rgb(219,78,78)" fg:x="39279" fg:w="35"/><text x="91.8265%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.11%)</title><rect x="91.5532%" y="597" width="0.1072%" height="15" fill="rgb(254,128,128)" fg:x="39269" fg:w="46"/><text x="91.8032%" y="607.50"></text></g><g><title>do_syscall_64 (45 samples, 0.10%)</title><rect x="91.5555%" y="581" width="0.1049%" height="15" fill="rgb(217,75,75)" fg:x="39270" fg:w="45"/><text x="91.8055%" y="591.50"></text></g><g><title>__pthread_cond_wait (56 samples, 0.13%)</title><rect x="91.5369%" y="645" width="0.1306%" height="15" fill="rgb(240,109,109)" fg:x="39262" fg:w="56"/><text x="91.7869%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (56 samples, 0.13%)</title><rect x="91.5369%" y="629" width="0.1306%" height="15" fill="rgb(203,55,55)" fg:x="39262" fg:w="56"/><text x="91.7869%" y="639.50"></text></g><g><title>futex_wait_cancelable (52 samples, 0.12%)</title><rect x="91.5462%" y="613" width="0.1212%" height="15" fill="rgb(252,126,126)" fg:x="39266" fg:w="52"/><text x="91.7962%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="91.6698%" y="597" width="0.0163%" height="15" fill="rgb(254,128,128)" fg:x="39319" fg:w="7"/><text x="91.9198%" y="607.50"></text></g><g><title>do_syscall_64 (6 samples, 0.01%)</title><rect x="91.6721%" y="581" width="0.0140%" height="15" fill="rgb(217,75,75)" fg:x="39320" fg:w="6"/><text x="91.9221%" y="591.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (77 samples, 0.18%)</title><rect x="91.5182%" y="741" width="0.1795%" height="15" fill="rgb(210,210,62)" fg:x="39254" fg:w="77"/><text x="91.7682%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (77 samples, 0.18%)</title><rect x="91.5182%" y="725" width="0.1795%" height="15" fill="rgb(211,211,63)" fg:x="39254" fg:w="77"/><text x="91.7682%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (73 samples, 0.17%)</title><rect x="91.5276%" y="709" width="0.1702%" height="15" fill="rgb(206,206,61)" fg:x="39258" fg:w="73"/><text x="91.7776%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (73 samples, 0.17%)</title><rect x="91.5276%" y="693" width="0.1702%" height="15" fill="rgb(204,204,60)" fg:x="39258" fg:w="73"/><text x="91.7776%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (73 samples, 0.17%)</title><rect x="91.5276%" y="677" width="0.1702%" height="15" fill="rgb(191,191,56)" fg:x="39258" fg:w="73"/><text x="91.7776%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (71 samples, 0.17%)</title><rect x="91.5322%" y="661" width="0.1655%" height="15" fill="rgb(218,218,65)" fg:x="39260" fg:w="71"/><text x="91.7822%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (13 samples, 0.03%)</title><rect x="91.6674%" y="645" width="0.0303%" height="15" fill="rgb(192,192,56)" fg:x="39318" fg:w="13"/><text x="91.9174%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (13 samples, 0.03%)</title><rect x="91.6674%" y="629" width="0.0303%" height="15" fill="rgb(221,81,81)" fg:x="39318" fg:w="13"/><text x="91.9174%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (13 samples, 0.03%)</title><rect x="91.6674%" y="613" width="0.0303%" height="15" fill="rgb(246,117,117)" fg:x="39318" fg:w="13"/><text x="91.9174%" y="623.50"></text></g><g><title>syscall_return_via_sysret (5 samples, 0.01%)</title><rect x="91.6861%" y="597" width="0.0117%" height="15" fill="rgb(253,127,127)" fg:x="39326" fg:w="5"/><text x="91.9361%" y="607.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (83 samples, 0.19%)</title><rect x="91.5066%" y="773" width="0.1935%" height="15" fill="rgb(218,218,65)" fg:x="39249" fg:w="83"/><text x="91.7566%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (78 samples, 0.18%)</title><rect x="91.5182%" y="757" width="0.1819%" height="15" fill="rgb(180,180,51)" fg:x="39254" fg:w="78"/><text x="91.7682%" y="767.50"></text></g><g><title>[anon] (91 samples, 0.21%)</title><rect x="91.4972%" y="901" width="0.2122%" height="15" fill="rgb(252,126,126)" fg:x="39245" fg:w="91"/><text x="91.7472%" y="911.50"></text></g><g><title>start_thread (87 samples, 0.20%)</title><rect x="91.5066%" y="885" width="0.2028%" height="15" fill="rgb(235,101,101)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (87 samples, 0.20%)</title><rect x="91.5066%" y="869" width="0.2028%" height="15" fill="rgb(191,191,56)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (87 samples, 0.20%)</title><rect x="91.5066%" y="853" width="0.2028%" height="15" fill="rgb(210,210,62)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (87 samples, 0.20%)</title><rect x="91.5066%" y="837" width="0.2028%" height="15" fill="rgb(205,205,61)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="847.50"></text></g><g><title>java.lang.Thread::run (87 samples, 0.20%)</title><rect x="91.5066%" y="821" width="0.2028%" height="15" fill="rgb(228,228,69)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (87 samples, 0.20%)</title><rect x="91.5066%" y="805" width="0.2028%" height="15" fill="rgb(225,225,68)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (87 samples, 0.20%)</title><rect x="91.5066%" y="789" width="0.2028%" height="15" fill="rgb(227,227,69)" fg:x="39249" fg:w="87"/><text x="91.7566%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (8 samples, 0.02%)</title><rect x="91.7117%" y="773" width="0.0187%" height="15" fill="rgb(220,220,66)" fg:x="39337" fg:w="8"/><text x="91.9617%" y="783.50"></text></g><g><title>[unknown] (15 samples, 0.03%)</title><rect x="91.7094%" y="901" width="0.0350%" height="15" fill="rgb(206,59,59)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="911.50"></text></g><g><title>start_thread (15 samples, 0.03%)</title><rect x="91.7094%" y="885" width="0.0350%" height="15" fill="rgb(235,101,101)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (15 samples, 0.03%)</title><rect x="91.7094%" y="869" width="0.0350%" height="15" fill="rgb(191,191,56)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (15 samples, 0.03%)</title><rect x="91.7094%" y="853" width="0.0350%" height="15" fill="rgb(210,210,62)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (15 samples, 0.03%)</title><rect x="91.7094%" y="837" width="0.0350%" height="15" fill="rgb(205,205,61)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="847.50"></text></g><g><title>java.lang.Thread::run (15 samples, 0.03%)</title><rect x="91.7094%" y="821" width="0.0350%" height="15" fill="rgb(228,228,69)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (15 samples, 0.03%)</title><rect x="91.7094%" y="805" width="0.0350%" height="15" fill="rgb(225,225,68)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (15 samples, 0.03%)</title><rect x="91.7094%" y="789" width="0.0350%" height="15" fill="rgb(227,227,69)" fg:x="39336" fg:w="15"/><text x="91.9594%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (6 samples, 0.01%)</title><rect x="91.7304%" y="773" width="0.0140%" height="15" fill="rgb(218,218,65)" fg:x="39345" fg:w="6"/><text x="91.9804%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (6 samples, 0.01%)</title><rect x="91.7304%" y="757" width="0.0140%" height="15" fill="rgb(180,180,51)" fg:x="39345" fg:w="6"/><text x="91.9804%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (8 samples, 0.02%)</title><rect x="91.7444%" y="773" width="0.0187%" height="15" fill="rgb(220,220,66)" fg:x="39351" fg:w="8"/><text x="91.9944%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (8 samples, 0.02%)</title><rect x="91.7444%" y="757" width="0.0187%" height="15" fill="rgb(222,222,67)" fg:x="39351" fg:w="8"/><text x="91.9944%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (29 samples, 0.07%)</title><rect x="91.7444%" y="901" width="0.0676%" height="15" fill="rgb(191,191,56)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="911.50"></text></g><g><title>start_thread (29 samples, 0.07%)</title><rect x="91.7444%" y="885" width="0.0676%" height="15" fill="rgb(235,101,101)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (29 samples, 0.07%)</title><rect x="91.7444%" y="869" width="0.0676%" height="15" fill="rgb(191,191,56)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (29 samples, 0.07%)</title><rect x="91.7444%" y="853" width="0.0676%" height="15" fill="rgb(210,210,62)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (29 samples, 0.07%)</title><rect x="91.7444%" y="837" width="0.0676%" height="15" fill="rgb(205,205,61)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="847.50"></text></g><g><title>java.lang.Thread::run (29 samples, 0.07%)</title><rect x="91.7444%" y="821" width="0.0676%" height="15" fill="rgb(228,228,69)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (29 samples, 0.07%)</title><rect x="91.7444%" y="805" width="0.0676%" height="15" fill="rgb(225,225,68)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (29 samples, 0.07%)</title><rect x="91.7444%" y="789" width="0.0676%" height="15" fill="rgb(227,227,69)" fg:x="39351" fg:w="29"/><text x="91.9944%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (21 samples, 0.05%)</title><rect x="91.7630%" y="773" width="0.0490%" height="15" fill="rgb(218,218,65)" fg:x="39359" fg:w="21"/><text x="92.0130%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (21 samples, 0.05%)</title><rect x="91.7630%" y="757" width="0.0490%" height="15" fill="rgb(180,180,51)" fg:x="39359" fg:w="21"/><text x="92.0130%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (381 samples, 0.89%)</title><rect x="91.8120%" y="757" width="0.8883%" height="15" fill="rgb(185,185,53)" fg:x="39380" fg:w="381"/><text x="92.0620%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (381 samples, 0.89%)</title><rect x="91.8120%" y="741" width="0.8883%" height="15" fill="rgb(185,185,53)" fg:x="39380" fg:w="381"/><text x="92.0620%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (381 samples, 0.89%)</title><rect x="91.8120%" y="725" width="0.8883%" height="15" fill="rgb(196,196,57)" fg:x="39380" fg:w="381"/><text x="92.0620%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (382 samples, 0.89%)</title><rect x="91.8120%" y="773" width="0.8906%" height="15" fill="rgb(220,220,66)" fg:x="39380" fg:w="382"/><text x="92.0620%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (386 samples, 0.90%)</title><rect x="91.8120%" y="901" width="0.8999%" height="15" fill="rgb(210,210,62)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="911.50"></text></g><g><title>start_thread (386 samples, 0.90%)</title><rect x="91.8120%" y="885" width="0.8999%" height="15" fill="rgb(235,101,101)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (386 samples, 0.90%)</title><rect x="91.8120%" y="869" width="0.8999%" height="15" fill="rgb(191,191,56)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (386 samples, 0.90%)</title><rect x="91.8120%" y="853" width="0.8999%" height="15" fill="rgb(210,210,62)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (386 samples, 0.90%)</title><rect x="91.8120%" y="837" width="0.8999%" height="15" fill="rgb(205,205,61)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="847.50"></text></g><g><title>java.lang.Thread::run (386 samples, 0.90%)</title><rect x="91.8120%" y="821" width="0.8999%" height="15" fill="rgb(228,228,69)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (386 samples, 0.90%)</title><rect x="91.8120%" y="805" width="0.8999%" height="15" fill="rgb(225,225,68)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (386 samples, 0.90%)</title><rect x="91.8120%" y="789" width="0.8999%" height="15" fill="rgb(227,227,69)" fg:x="39380" fg:w="386"/><text x="92.0620%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="92.7119%" y="901" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="911.50"></text></g><g><title>start_thread (9 samples, 0.02%)</title><rect x="92.7119%" y="885" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="92.7119%" y="869" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (9 samples, 0.02%)</title><rect x="92.7119%" y="853" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="92.7119%" y="837" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="847.50"></text></g><g><title>java.lang.Thread::run (9 samples, 0.02%)</title><rect x="92.7119%" y="821" width="0.0210%" height="15" fill="rgb(228,228,69)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (9 samples, 0.02%)</title><rect x="92.7119%" y="805" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (9 samples, 0.02%)</title><rect x="92.7119%" y="789" width="0.0210%" height="15" fill="rgb(227,227,69)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (9 samples, 0.02%)</title><rect x="92.7119%" y="773" width="0.0210%" height="15" fill="rgb(218,218,65)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (9 samples, 0.02%)</title><rect x="92.7119%" y="757" width="0.0210%" height="15" fill="rgb(180,180,51)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (9 samples, 0.02%)</title><rect x="92.7119%" y="741" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (9 samples, 0.02%)</title><rect x="92.7119%" y="725" width="0.0210%" height="15" fill="rgb(190,190,55)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (9 samples, 0.02%)</title><rect x="92.7119%" y="709" width="0.0210%" height="15" fill="rgb(208,208,62)" fg:x="39766" fg:w="9"/><text x="92.9619%" y="719.50"></text></g><g><title>enqueue_task_fair (5 samples, 0.01%)</title><rect x="92.7912%" y="485" width="0.0117%" height="15" fill="rgb(218,77,77)" fg:x="39800" fg:w="5"/><text x="93.0412%" y="495.50"></text></g><g><title>enqueue_entity (5 samples, 0.01%)</title><rect x="92.7912%" y="469" width="0.0117%" height="15" fill="rgb(246,117,117)" fg:x="39800" fg:w="5"/><text x="93.0412%" y="479.50"></text></g><g><title>activate_task (14 samples, 0.03%)</title><rect x="92.7912%" y="501" width="0.0326%" height="15" fill="rgb(234,100,100)" fg:x="39800" fg:w="14"/><text x="93.0412%" y="511.50"></text></g><g><title>psi_task_change (9 samples, 0.02%)</title><rect x="92.8029%" y="485" width="0.0210%" height="15" fill="rgb(220,80,80)" fg:x="39805" fg:w="9"/><text x="93.0529%" y="495.50"></text></g><g><title>ttwu_do_activate (15 samples, 0.03%)</title><rect x="92.7912%" y="517" width="0.0350%" height="15" fill="rgb(239,107,107)" fg:x="39800" fg:w="15"/><text x="93.0412%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (32 samples, 0.07%)</title><rect x="92.7539%" y="629" width="0.0746%" height="15" fill="rgb(254,128,128)" fg:x="39784" fg:w="32"/><text x="93.0039%" y="639.50"></text></g><g><title>do_syscall_64 (31 samples, 0.07%)</title><rect x="92.7562%" y="613" width="0.0723%" height="15" fill="rgb(217,75,75)" fg:x="39785" fg:w="31"/><text x="93.0062%" y="623.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.06%)</title><rect x="92.7656%" y="597" width="0.0629%" height="15" fill="rgb(248,121,121)" fg:x="39789" fg:w="27"/><text x="93.0156%" y="607.50"></text></g><g><title>do_futex (27 samples, 0.06%)</title><rect x="92.7656%" y="581" width="0.0629%" height="15" fill="rgb(230,94,94)" fg:x="39789" fg:w="27"/><text x="93.0156%" y="591.50"></text></g><g><title>futex_wake (26 samples, 0.06%)</title><rect x="92.7679%" y="565" width="0.0606%" height="15" fill="rgb(219,78,78)" fg:x="39790" fg:w="26"/><text x="93.0179%" y="575.50"></text></g><g><title>wake_up_q (24 samples, 0.06%)</title><rect x="92.7725%" y="549" width="0.0560%" height="15" fill="rgb(228,90,90)" fg:x="39792" fg:w="24"/><text x="93.0225%" y="559.50"></text></g><g><title>try_to_wake_up (22 samples, 0.05%)</title><rect x="92.7772%" y="533" width="0.0513%" height="15" fill="rgb(229,93,93)" fg:x="39794" fg:w="22"/><text x="93.0272%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (35 samples, 0.08%)</title><rect x="92.7516%" y="677" width="0.0816%" height="15" fill="rgb(223,223,67)" fg:x="39783" fg:w="35"/><text x="93.0016%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (35 samples, 0.08%)</title><rect x="92.7516%" y="661" width="0.0816%" height="15" fill="rgb(219,78,78)" fg:x="39783" fg:w="35"/><text x="93.0016%" y="671.50"></text></g><g><title>futex_wake (34 samples, 0.08%)</title><rect x="92.7539%" y="645" width="0.0793%" height="15" fill="rgb(219,78,78)" fg:x="39784" fg:w="34"/><text x="93.0039%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (41 samples, 0.10%)</title><rect x="92.7422%" y="693" width="0.0956%" height="15" fill="rgb(196,196,57)" fg:x="39779" fg:w="41"/><text x="92.9922%" y="703.50"></text></g><g><title>pool-9-thread-6 (576 samples, 1.34%)</title><rect x="91.4972%" y="917" width="1.3429%" height="15" fill="rgb(226,88,88)" fg:x="39245" fg:w="576"/><text x="91.7472%" y="927.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (45 samples, 0.10%)</title><rect x="92.7352%" y="901" width="0.1049%" height="15" fill="rgb(225,225,68)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="911.50"></text></g><g><title>start_thread (45 samples, 0.10%)</title><rect x="92.7352%" y="885" width="0.1049%" height="15" fill="rgb(235,101,101)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (45 samples, 0.10%)</title><rect x="92.7352%" y="869" width="0.1049%" height="15" fill="rgb(191,191,56)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (45 samples, 0.10%)</title><rect x="92.7352%" y="853" width="0.1049%" height="15" fill="rgb(210,210,62)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (45 samples, 0.10%)</title><rect x="92.7352%" y="837" width="0.1049%" height="15" fill="rgb(205,205,61)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="847.50"></text></g><g><title>java.lang.Thread::run (45 samples, 0.10%)</title><rect x="92.7352%" y="821" width="0.1049%" height="15" fill="rgb(228,228,69)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (45 samples, 0.10%)</title><rect x="92.7352%" y="805" width="0.1049%" height="15" fill="rgb(225,225,68)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (45 samples, 0.10%)</title><rect x="92.7352%" y="789" width="0.1049%" height="15" fill="rgb(227,227,69)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (45 samples, 0.10%)</title><rect x="92.7352%" y="773" width="0.1049%" height="15" fill="rgb(218,218,65)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (45 samples, 0.10%)</title><rect x="92.7352%" y="757" width="0.1049%" height="15" fill="rgb(180,180,51)" fg:x="39776" fg:w="45"/><text x="92.9852%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (42 samples, 0.10%)</title><rect x="92.7422%" y="741" width="0.0979%" height="15" fill="rgb(191,191,56)" fg:x="39779" fg:w="42"/><text x="92.9922%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (42 samples, 0.10%)</title><rect x="92.7422%" y="725" width="0.0979%" height="15" fill="rgb(227,227,69)" fg:x="39779" fg:w="42"/><text x="92.9922%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (42 samples, 0.10%)</title><rect x="92.7422%" y="709" width="0.0979%" height="15" fill="rgb(223,223,67)" fg:x="39779" fg:w="42"/><text x="92.9922%" y="719.50"></text></g><g><title>update_curr (5 samples, 0.01%)</title><rect x="92.9451%" y="421" width="0.0117%" height="15" fill="rgb(215,72,72)" fg:x="39866" fg:w="5"/><text x="93.1951%" y="431.50"></text></g><g><title>dequeue_task_fair (12 samples, 0.03%)</title><rect x="92.9381%" y="453" width="0.0280%" height="15" fill="rgb(200,51,51)" fg:x="39863" fg:w="12"/><text x="93.1881%" y="463.50"></text></g><g><title>dequeue_entity (11 samples, 0.03%)</title><rect x="92.9404%" y="437" width="0.0256%" height="15" fill="rgb(250,122,122)" fg:x="39864" fg:w="11"/><text x="93.1904%" y="447.50"></text></g><g><title>deactivate_task (25 samples, 0.06%)</title><rect x="92.9381%" y="469" width="0.0583%" height="15" fill="rgb(213,68,68)" fg:x="39863" fg:w="25"/><text x="93.1881%" y="479.50"></text></g><g><title>psi_task_change (13 samples, 0.03%)</title><rect x="92.9661%" y="453" width="0.0303%" height="15" fill="rgb(220,80,80)" fg:x="39875" fg:w="13"/><text x="93.2161%" y="463.50"></text></g><g><title>__schedule (39 samples, 0.09%)</title><rect x="92.9241%" y="485" width="0.0909%" height="15" fill="rgb(209,64,64)" fg:x="39857" fg:w="39"/><text x="93.1741%" y="495.50"></text></g><g><title>futex_wait_queue_me (41 samples, 0.10%)</title><rect x="92.9218%" y="517" width="0.0956%" height="15" fill="rgb(204,56,56)" fg:x="39856" fg:w="41"/><text x="93.1718%" y="527.50"></text></g><g><title>schedule (41 samples, 0.10%)</title><rect x="92.9218%" y="501" width="0.0956%" height="15" fill="rgb(251,124,124)" fg:x="39856" fg:w="41"/><text x="93.1718%" y="511.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.11%)</title><rect x="92.9171%" y="565" width="0.1072%" height="15" fill="rgb(248,121,121)" fg:x="39854" fg:w="46"/><text x="93.1671%" y="575.50"></text></g><g><title>do_futex (45 samples, 0.10%)</title><rect x="92.9194%" y="549" width="0.1049%" height="15" fill="rgb(230,94,94)" fg:x="39855" fg:w="45"/><text x="93.1694%" y="559.50"></text></g><g><title>futex_wait (45 samples, 0.10%)</title><rect x="92.9194%" y="533" width="0.1049%" height="15" fill="rgb(219,78,78)" fg:x="39855" fg:w="45"/><text x="93.1694%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.14%)</title><rect x="92.8938%" y="597" width="0.1352%" height="15" fill="rgb(254,128,128)" fg:x="39844" fg:w="58"/><text x="93.1438%" y="607.50"></text></g><g><title>do_syscall_64 (56 samples, 0.13%)</title><rect x="92.8984%" y="581" width="0.1306%" height="15" fill="rgb(217,75,75)" fg:x="39846" fg:w="56"/><text x="93.1484%" y="591.50"></text></g><g><title>__pthread_cond_wait (69 samples, 0.16%)</title><rect x="92.8775%" y="645" width="0.1609%" height="15" fill="rgb(240,109,109)" fg:x="39837" fg:w="69"/><text x="93.1275%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (69 samples, 0.16%)</title><rect x="92.8775%" y="629" width="0.1609%" height="15" fill="rgb(203,55,55)" fg:x="39837" fg:w="69"/><text x="93.1275%" y="639.50"></text></g><g><title>futex_wait_cancelable (66 samples, 0.15%)</title><rect x="92.8845%" y="613" width="0.1539%" height="15" fill="rgb(252,126,126)" fg:x="39840" fg:w="66"/><text x="93.1345%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10 samples, 0.02%)</title><rect x="93.0407%" y="597" width="0.0233%" height="15" fill="rgb(254,128,128)" fg:x="39907" fg:w="10"/><text x="93.2907%" y="607.50"></text></g><g><title>do_syscall_64 (7 samples, 0.02%)</title><rect x="93.0477%" y="581" width="0.0163%" height="15" fill="rgb(217,75,75)" fg:x="39910" fg:w="7"/><text x="93.2977%" y="591.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (90 samples, 0.21%)</title><rect x="92.8565%" y="741" width="0.2098%" height="15" fill="rgb(210,210,62)" fg:x="39828" fg:w="90"/><text x="93.1065%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (90 samples, 0.21%)</title><rect x="92.8565%" y="725" width="0.2098%" height="15" fill="rgb(211,211,63)" fg:x="39828" fg:w="90"/><text x="93.1065%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (87 samples, 0.20%)</title><rect x="92.8635%" y="709" width="0.2028%" height="15" fill="rgb(206,206,61)" fg:x="39831" fg:w="87"/><text x="93.1135%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (87 samples, 0.20%)</title><rect x="92.8635%" y="693" width="0.2028%" height="15" fill="rgb(204,204,60)" fg:x="39831" fg:w="87"/><text x="93.1135%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (87 samples, 0.20%)</title><rect x="92.8635%" y="677" width="0.2028%" height="15" fill="rgb(191,191,56)" fg:x="39831" fg:w="87"/><text x="93.1135%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (84 samples, 0.20%)</title><rect x="92.8705%" y="661" width="0.1958%" height="15" fill="rgb(218,218,65)" fg:x="39834" fg:w="84"/><text x="93.1205%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (12 samples, 0.03%)</title><rect x="93.0383%" y="645" width="0.0280%" height="15" fill="rgb(192,192,56)" fg:x="39906" fg:w="12"/><text x="93.2883%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (12 samples, 0.03%)</title><rect x="93.0383%" y="629" width="0.0280%" height="15" fill="rgb(221,81,81)" fg:x="39906" fg:w="12"/><text x="93.2883%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (12 samples, 0.03%)</title><rect x="93.0383%" y="613" width="0.0280%" height="15" fill="rgb(246,117,117)" fg:x="39906" fg:w="12"/><text x="93.2883%" y="623.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (96 samples, 0.22%)</title><rect x="92.8448%" y="773" width="0.2238%" height="15" fill="rgb(218,218,65)" fg:x="39823" fg:w="96"/><text x="93.0948%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (91 samples, 0.21%)</title><rect x="92.8565%" y="757" width="0.2122%" height="15" fill="rgb(180,180,51)" fg:x="39828" fg:w="91"/><text x="93.1065%" y="767.50"></text></g><g><title>[anon] (106 samples, 0.25%)</title><rect x="92.8402%" y="901" width="0.2471%" height="15" fill="rgb(252,126,126)" fg:x="39821" fg:w="106"/><text x="93.0902%" y="911.50"></text></g><g><title>start_thread (104 samples, 0.24%)</title><rect x="92.8448%" y="885" width="0.2425%" height="15" fill="rgb(235,101,101)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (104 samples, 0.24%)</title><rect x="92.8448%" y="869" width="0.2425%" height="15" fill="rgb(191,191,56)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (104 samples, 0.24%)</title><rect x="92.8448%" y="853" width="0.2425%" height="15" fill="rgb(210,210,62)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (104 samples, 0.24%)</title><rect x="92.8448%" y="837" width="0.2425%" height="15" fill="rgb(205,205,61)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="847.50"></text></g><g><title>java.lang.Thread::run (104 samples, 0.24%)</title><rect x="92.8448%" y="821" width="0.2425%" height="15" fill="rgb(228,228,69)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (104 samples, 0.24%)</title><rect x="92.8448%" y="805" width="0.2425%" height="15" fill="rgb(225,225,68)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (104 samples, 0.24%)</title><rect x="92.8448%" y="789" width="0.2425%" height="15" fill="rgb(227,227,69)" fg:x="39823" fg:w="104"/><text x="93.0948%" y="799.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (6 samples, 0.01%)</title><rect x="93.0733%" y="773" width="0.0140%" height="15" fill="rgb(191,191,56)" fg:x="39921" fg:w="6"/><text x="93.3233%" y="783.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::tryRelease (6 samples, 0.01%)</title><rect x="93.0733%" y="757" width="0.0140%" height="15" fill="rgb(210,210,63)" fg:x="39921" fg:w="6"/><text x="93.3233%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (9 samples, 0.02%)</title><rect x="93.0920%" y="773" width="0.0210%" height="15" fill="rgb(220,220,66)" fg:x="39929" fg:w="9"/><text x="93.3420%" y="783.50"></text></g><g><title>[unknown] (16 samples, 0.04%)</title><rect x="93.0873%" y="901" width="0.0373%" height="15" fill="rgb(206,59,59)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="911.50"></text></g><g><title>start_thread (16 samples, 0.04%)</title><rect x="93.0873%" y="885" width="0.0373%" height="15" fill="rgb(235,101,101)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (16 samples, 0.04%)</title><rect x="93.0873%" y="869" width="0.0373%" height="15" fill="rgb(191,191,56)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (16 samples, 0.04%)</title><rect x="93.0873%" y="853" width="0.0373%" height="15" fill="rgb(210,210,62)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (16 samples, 0.04%)</title><rect x="93.0873%" y="837" width="0.0373%" height="15" fill="rgb(205,205,61)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="847.50"></text></g><g><title>java.lang.Thread::run (16 samples, 0.04%)</title><rect x="93.0873%" y="821" width="0.0373%" height="15" fill="rgb(228,228,69)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (16 samples, 0.04%)</title><rect x="93.0873%" y="805" width="0.0373%" height="15" fill="rgb(225,225,68)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (16 samples, 0.04%)</title><rect x="93.0873%" y="789" width="0.0373%" height="15" fill="rgb(227,227,69)" fg:x="39927" fg:w="16"/><text x="93.3373%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="93.1129%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="39938" fg:w="5"/><text x="93.3629%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="93.1129%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="39938" fg:w="5"/><text x="93.3629%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (5 samples, 0.01%)</title><rect x="93.1246%" y="773" width="0.0117%" height="15" fill="rgb(220,220,66)" fg:x="39943" fg:w="5"/><text x="93.3746%" y="783.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="93.1246%" y="901" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="911.50"></text></g><g><title>start_thread (26 samples, 0.06%)</title><rect x="93.1246%" y="885" width="0.0606%" height="15" fill="rgb(235,101,101)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="93.1246%" y="869" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (26 samples, 0.06%)</title><rect x="93.1246%" y="853" width="0.0606%" height="15" fill="rgb(210,210,62)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (26 samples, 0.06%)</title><rect x="93.1246%" y="837" width="0.0606%" height="15" fill="rgb(205,205,61)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="847.50"></text></g><g><title>java.lang.Thread::run (26 samples, 0.06%)</title><rect x="93.1246%" y="821" width="0.0606%" height="15" fill="rgb(228,228,69)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (26 samples, 0.06%)</title><rect x="93.1246%" y="805" width="0.0606%" height="15" fill="rgb(225,225,68)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (26 samples, 0.06%)</title><rect x="93.1246%" y="789" width="0.0606%" height="15" fill="rgb(227,227,69)" fg:x="39943" fg:w="26"/><text x="93.3746%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (21 samples, 0.05%)</title><rect x="93.1362%" y="773" width="0.0490%" height="15" fill="rgb(218,218,65)" fg:x="39948" fg:w="21"/><text x="93.3862%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (21 samples, 0.05%)</title><rect x="93.1362%" y="757" width="0.0490%" height="15" fill="rgb(180,180,51)" fg:x="39948" fg:w="21"/><text x="93.3862%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (437 samples, 1.02%)</title><rect x="93.1852%" y="757" width="1.0188%" height="15" fill="rgb(185,185,53)" fg:x="39969" fg:w="437"/><text x="93.4352%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (437 samples, 1.02%)</title><rect x="93.1852%" y="741" width="1.0188%" height="15" fill="rgb(185,185,53)" fg:x="39969" fg:w="437"/><text x="93.4352%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (437 samples, 1.02%)</title><rect x="93.1852%" y="725" width="1.0188%" height="15" fill="rgb(196,196,57)" fg:x="39969" fg:w="437"/><text x="93.4352%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (438 samples, 1.02%)</title><rect x="93.1852%" y="773" width="1.0212%" height="15" fill="rgb(220,220,66)" fg:x="39969" fg:w="438"/><text x="93.4352%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (440 samples, 1.03%)</title><rect x="93.1852%" y="901" width="1.0258%" height="15" fill="rgb(210,210,62)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="911.50"></text></g><g><title>start_thread (440 samples, 1.03%)</title><rect x="93.1852%" y="885" width="1.0258%" height="15" fill="rgb(235,101,101)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (440 samples, 1.03%)</title><rect x="93.1852%" y="869" width="1.0258%" height="15" fill="rgb(191,191,56)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (440 samples, 1.03%)</title><rect x="93.1852%" y="853" width="1.0258%" height="15" fill="rgb(210,210,62)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (440 samples, 1.03%)</title><rect x="93.1852%" y="837" width="1.0258%" height="15" fill="rgb(205,205,61)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="847.50"></text></g><g><title>java.lang.Thread::run (440 samples, 1.03%)</title><rect x="93.1852%" y="821" width="1.0258%" height="15" fill="rgb(228,228,69)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (440 samples, 1.03%)</title><rect x="93.1852%" y="805" width="1.0258%" height="15" fill="rgb(225,225,68)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (440 samples, 1.03%)</title><rect x="93.1852%" y="789" width="1.0258%" height="15" fill="rgb(227,227,69)" fg:x="39969" fg:w="440"/><text x="93.4352%" y="799.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="94.2110%" y="901" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="911.50"></text></g><g><title>start_thread (9 samples, 0.02%)</title><rect x="94.2110%" y="885" width="0.0210%" height="15" fill="rgb(235,101,101)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (9 samples, 0.02%)</title><rect x="94.2110%" y="869" width="0.0210%" height="15" fill="rgb(191,191,56)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (9 samples, 0.02%)</title><rect x="94.2110%" y="853" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (9 samples, 0.02%)</title><rect x="94.2110%" y="837" width="0.0210%" height="15" fill="rgb(205,205,61)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="847.50"></text></g><g><title>java.lang.Thread::run (9 samples, 0.02%)</title><rect x="94.2110%" y="821" width="0.0210%" height="15" fill="rgb(228,228,69)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (9 samples, 0.02%)</title><rect x="94.2110%" y="805" width="0.0210%" height="15" fill="rgb(225,225,68)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (9 samples, 0.02%)</title><rect x="94.2110%" y="789" width="0.0210%" height="15" fill="rgb(227,227,69)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (9 samples, 0.02%)</title><rect x="94.2110%" y="773" width="0.0210%" height="15" fill="rgb(218,218,65)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (9 samples, 0.02%)</title><rect x="94.2110%" y="757" width="0.0210%" height="15" fill="rgb(180,180,51)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (9 samples, 0.02%)</title><rect x="94.2110%" y="741" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (9 samples, 0.02%)</title><rect x="94.2110%" y="725" width="0.0210%" height="15" fill="rgb(190,190,55)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (9 samples, 0.02%)</title><rect x="94.2110%" y="709" width="0.0210%" height="15" fill="rgb(208,208,62)" fg:x="40409" fg:w="9"/><text x="94.4610%" y="719.50"></text></g><g><title>select_task_rq_fair (6 samples, 0.01%)</title><rect x="94.3043%" y="517" width="0.0140%" height="15" fill="rgb(205,57,57)" fg:x="40449" fg:w="6"/><text x="94.5543%" y="527.50"></text></g><g><title>enqueue_task_fair (8 samples, 0.02%)</title><rect x="94.3206%" y="485" width="0.0187%" height="15" fill="rgb(218,77,77)" fg:x="40456" fg:w="8"/><text x="94.5706%" y="495.50"></text></g><g><title>enqueue_entity (5 samples, 0.01%)</title><rect x="94.3276%" y="469" width="0.0117%" height="15" fill="rgb(246,117,117)" fg:x="40459" fg:w="5"/><text x="94.5776%" y="479.50"></text></g><g><title>activate_task (20 samples, 0.05%)</title><rect x="94.3206%" y="501" width="0.0466%" height="15" fill="rgb(234,100,100)" fg:x="40456" fg:w="20"/><text x="94.5706%" y="511.50"></text></g><g><title>psi_task_change (12 samples, 0.03%)</title><rect x="94.3393%" y="485" width="0.0280%" height="15" fill="rgb(220,80,80)" fg:x="40464" fg:w="12"/><text x="94.5893%" y="495.50"></text></g><g><title>ttwu_do_activate (22 samples, 0.05%)</title><rect x="94.3183%" y="517" width="0.0513%" height="15" fill="rgb(239,107,107)" fg:x="40455" fg:w="22"/><text x="94.5683%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.12%)</title><rect x="94.2530%" y="629" width="0.1212%" height="15" fill="rgb(254,128,128)" fg:x="40427" fg:w="52"/><text x="94.5030%" y="639.50"></text></g><g><title>do_syscall_64 (52 samples, 0.12%)</title><rect x="94.2530%" y="613" width="0.1212%" height="15" fill="rgb(217,75,75)" fg:x="40427" fg:w="52"/><text x="94.5030%" y="623.50"></text></g><g><title>__x64_sys_futex (40 samples, 0.09%)</title><rect x="94.2810%" y="597" width="0.0933%" height="15" fill="rgb(248,121,121)" fg:x="40439" fg:w="40"/><text x="94.5310%" y="607.50"></text></g><g><title>do_futex (40 samples, 0.09%)</title><rect x="94.2810%" y="581" width="0.0933%" height="15" fill="rgb(230,94,94)" fg:x="40439" fg:w="40"/><text x="94.5310%" y="591.50"></text></g><g><title>futex_wake (39 samples, 0.09%)</title><rect x="94.2833%" y="565" width="0.0909%" height="15" fill="rgb(219,78,78)" fg:x="40440" fg:w="39"/><text x="94.5333%" y="575.50"></text></g><g><title>wake_up_q (34 samples, 0.08%)</title><rect x="94.2950%" y="549" width="0.0793%" height="15" fill="rgb(228,90,90)" fg:x="40445" fg:w="34"/><text x="94.5450%" y="559.50"></text></g><g><title>try_to_wake_up (34 samples, 0.08%)</title><rect x="94.2950%" y="533" width="0.0793%" height="15" fill="rgb(229,93,93)" fg:x="40445" fg:w="34"/><text x="94.5450%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (57 samples, 0.13%)</title><rect x="94.2437%" y="677" width="0.1329%" height="15" fill="rgb(223,223,67)" fg:x="40423" fg:w="57"/><text x="94.4937%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (57 samples, 0.13%)</title><rect x="94.2437%" y="661" width="0.1329%" height="15" fill="rgb(219,78,78)" fg:x="40423" fg:w="57"/><text x="94.4937%" y="671.50"></text></g><g><title>futex_wake (55 samples, 0.13%)</title><rect x="94.2483%" y="645" width="0.1282%" height="15" fill="rgb(219,78,78)" fg:x="40425" fg:w="55"/><text x="94.4983%" y="655.50"></text></g><g><title>pool-9-thread-7 (662 samples, 1.54%)</title><rect x="92.8402%" y="917" width="1.5434%" height="15" fill="rgb(226,88,88)" fg:x="39821" fg:w="662"/><text x="93.0902%" y="927.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (64 samples, 0.15%)</title><rect x="94.2344%" y="901" width="0.1492%" height="15" fill="rgb(225,225,68)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="911.50"></text></g><g><title>start_thread (64 samples, 0.15%)</title><rect x="94.2344%" y="885" width="0.1492%" height="15" fill="rgb(235,101,101)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (64 samples, 0.15%)</title><rect x="94.2344%" y="869" width="0.1492%" height="15" fill="rgb(191,191,56)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (64 samples, 0.15%)</title><rect x="94.2344%" y="853" width="0.1492%" height="15" fill="rgb(210,210,62)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (64 samples, 0.15%)</title><rect x="94.2344%" y="837" width="0.1492%" height="15" fill="rgb(205,205,61)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="847.50"></text></g><g><title>java.lang.Thread::run (64 samples, 0.15%)</title><rect x="94.2344%" y="821" width="0.1492%" height="15" fill="rgb(228,228,69)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (64 samples, 0.15%)</title><rect x="94.2344%" y="805" width="0.1492%" height="15" fill="rgb(225,225,68)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (64 samples, 0.15%)</title><rect x="94.2344%" y="789" width="0.1492%" height="15" fill="rgb(227,227,69)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (64 samples, 0.15%)</title><rect x="94.2344%" y="773" width="0.1492%" height="15" fill="rgb(218,218,65)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (64 samples, 0.15%)</title><rect x="94.2344%" y="757" width="0.1492%" height="15" fill="rgb(180,180,51)" fg:x="40419" fg:w="64"/><text x="94.4844%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (60 samples, 0.14%)</title><rect x="94.2437%" y="741" width="0.1399%" height="15" fill="rgb(191,191,56)" fg:x="40423" fg:w="60"/><text x="94.4937%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (60 samples, 0.14%)</title><rect x="94.2437%" y="725" width="0.1399%" height="15" fill="rgb(227,227,69)" fg:x="40423" fg:w="60"/><text x="94.4937%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (60 samples, 0.14%)</title><rect x="94.2437%" y="709" width="0.1399%" height="15" fill="rgb(223,223,67)" fg:x="40423" fg:w="60"/><text x="94.4937%" y="719.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (60 samples, 0.14%)</title><rect x="94.2437%" y="693" width="0.1399%" height="15" fill="rgb(196,196,57)" fg:x="40423" fg:w="60"/><text x="94.4937%" y="703.50"></text></g><g><title>update_curr (6 samples, 0.01%)</title><rect x="94.4675%" y="421" width="0.0140%" height="15" fill="rgb(215,72,72)" fg:x="40519" fg:w="6"/><text x="94.7175%" y="431.50"></text></g><g><title>dequeue_entity (9 samples, 0.02%)</title><rect x="94.4652%" y="437" width="0.0210%" height="15" fill="rgb(250,122,122)" fg:x="40518" fg:w="9"/><text x="94.7152%" y="447.50"></text></g><g><title>dequeue_task_fair (11 samples, 0.03%)</title><rect x="94.4628%" y="453" width="0.0256%" height="15" fill="rgb(200,51,51)" fg:x="40517" fg:w="11"/><text x="94.7128%" y="463.50"></text></g><g><title>deactivate_task (26 samples, 0.06%)</title><rect x="94.4628%" y="469" width="0.0606%" height="15" fill="rgb(213,68,68)" fg:x="40517" fg:w="26"/><text x="94.7128%" y="479.50"></text></g><g><title>psi_task_change (15 samples, 0.03%)</title><rect x="94.4885%" y="453" width="0.0350%" height="15" fill="rgb(220,80,80)" fg:x="40528" fg:w="15"/><text x="94.7385%" y="463.50"></text></g><g><title>finish_task_switch (37 samples, 0.09%)</title><rect x="94.5235%" y="469" width="0.0863%" height="15" fill="rgb(251,124,124)" fg:x="40543" fg:w="37"/><text x="94.7735%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.07%)</title><rect x="94.5351%" y="453" width="0.0746%" height="15" fill="rgb(240,109,109)" fg:x="40548" fg:w="32"/><text x="94.7851%" y="463.50"></text></g><g><title>perf_pmu_enable.part.0 (32 samples, 0.07%)</title><rect x="94.5351%" y="437" width="0.0746%" height="15" fill="rgb(71,219,71)" fg:x="40548" fg:w="32"/><text x="94.7851%" y="447.50"></text></g><g><title>x86_pmu_enable (32 samples, 0.07%)</title><rect x="94.5351%" y="421" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="40548" fg:w="32"/><text x="94.7851%" y="431.50"></text></g><g><title>intel_tfa_pmu_enable_all (32 samples, 0.07%)</title><rect x="94.5351%" y="405" width="0.0746%" height="15" fill="rgb(238,105,105)" fg:x="40548" fg:w="32"/><text x="94.7851%" y="415.50"></text></g><g><title>native_write_msr (32 samples, 0.07%)</title><rect x="94.5351%" y="389" width="0.0746%" height="15" fill="rgb(212,68,68)" fg:x="40548" fg:w="32"/><text x="94.7851%" y="399.50"></text></g><g><title>__schedule (67 samples, 0.16%)</title><rect x="94.4605%" y="485" width="0.1562%" height="15" fill="rgb(209,64,64)" fg:x="40516" fg:w="67"/><text x="94.7105%" y="495.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.16%)</title><rect x="94.4605%" y="517" width="0.1585%" height="15" fill="rgb(204,56,56)" fg:x="40516" fg:w="68"/><text x="94.7105%" y="527.50"></text></g><g><title>schedule (68 samples, 0.16%)</title><rect x="94.4605%" y="501" width="0.1585%" height="15" fill="rgb(251,124,124)" fg:x="40516" fg:w="68"/><text x="94.7105%" y="511.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.18%)</title><rect x="94.4465%" y="565" width="0.1772%" height="15" fill="rgb(248,121,121)" fg:x="40510" fg:w="76"/><text x="94.6965%" y="575.50"></text></g><g><title>do_futex (75 samples, 0.17%)</title><rect x="94.4488%" y="549" width="0.1749%" height="15" fill="rgb(230,94,94)" fg:x="40511" fg:w="75"/><text x="94.6988%" y="559.50"></text></g><g><title>futex_wait (75 samples, 0.17%)</title><rect x="94.4488%" y="533" width="0.1749%" height="15" fill="rgb(219,78,78)" fg:x="40511" fg:w="75"/><text x="94.6988%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.20%)</title><rect x="94.4279%" y="597" width="0.2028%" height="15" fill="rgb(254,128,128)" fg:x="40502" fg:w="87"/><text x="94.6779%" y="607.50"></text></g><g><title>do_syscall_64 (85 samples, 0.20%)</title><rect x="94.4325%" y="581" width="0.1982%" height="15" fill="rgb(217,75,75)" fg:x="40504" fg:w="85"/><text x="94.6825%" y="591.50"></text></g><g><title>__pthread_cond_wait (96 samples, 0.22%)</title><rect x="94.4162%" y="645" width="0.2238%" height="15" fill="rgb(240,109,109)" fg:x="40497" fg:w="96"/><text x="94.6662%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (96 samples, 0.22%)</title><rect x="94.4162%" y="629" width="0.2238%" height="15" fill="rgb(203,55,55)" fg:x="40497" fg:w="96"/><text x="94.6662%" y="639.50"></text></g><g><title>futex_wait_cancelable (94 samples, 0.22%)</title><rect x="94.4209%" y="613" width="0.2192%" height="15" fill="rgb(252,126,126)" fg:x="40499" fg:w="94"/><text x="94.6709%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (12 samples, 0.03%)</title><rect x="94.6424%" y="597" width="0.0280%" height="15" fill="rgb(254,128,128)" fg:x="40594" fg:w="12"/><text x="94.8924%" y="607.50"></text></g><g><title>do_syscall_64 (11 samples, 0.03%)</title><rect x="94.6447%" y="581" width="0.0256%" height="15" fill="rgb(217,75,75)" fg:x="40595" fg:w="11"/><text x="94.8947%" y="591.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (118 samples, 0.28%)</title><rect x="94.4022%" y="709" width="0.2751%" height="15" fill="rgb(206,206,61)" fg:x="40491" fg:w="118"/><text x="94.6522%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (118 samples, 0.28%)</title><rect x="94.4022%" y="693" width="0.2751%" height="15" fill="rgb(204,204,60)" fg:x="40491" fg:w="118"/><text x="94.6522%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (118 samples, 0.28%)</title><rect x="94.4022%" y="677" width="0.2751%" height="15" fill="rgb(191,191,56)" fg:x="40491" fg:w="118"/><text x="94.6522%" y="687.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (113 samples, 0.26%)</title><rect x="94.4139%" y="661" width="0.2635%" height="15" fill="rgb(218,218,65)" fg:x="40496" fg:w="113"/><text x="94.6639%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (16 samples, 0.04%)</title><rect x="94.6400%" y="645" width="0.0373%" height="15" fill="rgb(192,192,56)" fg:x="40593" fg:w="16"/><text x="94.8900%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (16 samples, 0.04%)</title><rect x="94.6400%" y="629" width="0.0373%" height="15" fill="rgb(221,81,81)" fg:x="40593" fg:w="16"/><text x="94.8900%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (16 samples, 0.04%)</title><rect x="94.6400%" y="613" width="0.0373%" height="15" fill="rgb(246,117,117)" fg:x="40593" fg:w="16"/><text x="94.8900%" y="623.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (123 samples, 0.29%)</title><rect x="94.3929%" y="773" width="0.2868%" height="15" fill="rgb(218,218,65)" fg:x="40487" fg:w="123"/><text x="94.6429%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (120 samples, 0.28%)</title><rect x="94.3999%" y="757" width="0.2798%" height="15" fill="rgb(180,180,51)" fg:x="40490" fg:w="120"/><text x="94.6499%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (120 samples, 0.28%)</title><rect x="94.3999%" y="741" width="0.2798%" height="15" fill="rgb(210,210,62)" fg:x="40490" fg:w="120"/><text x="94.6499%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (120 samples, 0.28%)</title><rect x="94.3999%" y="725" width="0.2798%" height="15" fill="rgb(211,211,63)" fg:x="40490" fg:w="120"/><text x="94.6499%" y="735.50"></text></g><g><title>[anon] (130 samples, 0.30%)</title><rect x="94.3836%" y="901" width="0.3031%" height="15" fill="rgb(252,126,126)" fg:x="40483" fg:w="130"/><text x="94.6336%" y="911.50"></text></g><g><title>start_thread (128 samples, 0.30%)</title><rect x="94.3882%" y="885" width="0.2984%" height="15" fill="rgb(235,101,101)" fg:x="40485" fg:w="128"/><text x="94.6382%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (128 samples, 0.30%)</title><rect x="94.3882%" y="869" width="0.2984%" height="15" fill="rgb(191,191,56)" fg:x="40485" fg:w="128"/><text x="94.6382%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (128 samples, 0.30%)</title><rect x="94.3882%" y="853" width="0.2984%" height="15" fill="rgb(210,210,62)" fg:x="40485" fg:w="128"/><text x="94.6382%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (128 samples, 0.30%)</title><rect x="94.3882%" y="837" width="0.2984%" height="15" fill="rgb(205,205,61)" fg:x="40485" fg:w="128"/><text x="94.6382%" y="847.50"></text></g><g><title>java.lang.Thread::run (128 samples, 0.30%)</title><rect x="94.3882%" y="821" width="0.2984%" height="15" fill="rgb(228,228,69)" fg:x="40485" fg:w="128"/><text x="94.6382%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (128 samples, 0.30%)</title><rect x="94.3882%" y="805" width="0.2984%" height="15" fill="rgb(225,225,68)" fg:x="40485" fg:w="128"/><text x="94.6382%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (127 samples, 0.30%)</title><rect x="94.3906%" y="789" width="0.2961%" height="15" fill="rgb(227,227,69)" fg:x="40486" fg:w="127"/><text x="94.6406%" y="799.50"></text></g><g><title>[unknown] (17 samples, 0.04%)</title><rect x="94.6867%" y="901" width="0.0396%" height="15" fill="rgb(206,59,59)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="911.50"></text></g><g><title>start_thread (17 samples, 0.04%)</title><rect x="94.6867%" y="885" width="0.0396%" height="15" fill="rgb(235,101,101)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (17 samples, 0.04%)</title><rect x="94.6867%" y="869" width="0.0396%" height="15" fill="rgb(191,191,56)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (17 samples, 0.04%)</title><rect x="94.6867%" y="853" width="0.0396%" height="15" fill="rgb(210,210,62)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (17 samples, 0.04%)</title><rect x="94.6867%" y="837" width="0.0396%" height="15" fill="rgb(205,205,61)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="847.50"></text></g><g><title>java.lang.Thread::run (17 samples, 0.04%)</title><rect x="94.6867%" y="821" width="0.0396%" height="15" fill="rgb(228,228,69)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (17 samples, 0.04%)</title><rect x="94.6867%" y="805" width="0.0396%" height="15" fill="rgb(225,225,68)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (17 samples, 0.04%)</title><rect x="94.6867%" y="789" width="0.0396%" height="15" fill="rgb(227,227,69)" fg:x="40613" fg:w="17"/><text x="94.9367%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (7 samples, 0.02%)</title><rect x="94.7100%" y="773" width="0.0163%" height="15" fill="rgb(218,218,65)" fg:x="40623" fg:w="7"/><text x="94.9600%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (7 samples, 0.02%)</title><rect x="94.7100%" y="757" width="0.0163%" height="15" fill="rgb(180,180,51)" fg:x="40623" fg:w="7"/><text x="94.9600%" y="767.50"></text></g><g><title>java.util.concurrent.FutureTask::run (7 samples, 0.02%)</title><rect x="94.7263%" y="773" width="0.0163%" height="15" fill="rgb(220,220,66)" fg:x="40630" fg:w="7"/><text x="94.9763%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (7 samples, 0.02%)</title><rect x="94.7263%" y="757" width="0.0163%" height="15" fill="rgb(222,222,67)" fg:x="40630" fg:w="7"/><text x="94.9763%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="94.7263%" y="901" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="911.50"></text></g><g><title>start_thread (33 samples, 0.08%)</title><rect x="94.7263%" y="885" width="0.0769%" height="15" fill="rgb(235,101,101)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (33 samples, 0.08%)</title><rect x="94.7263%" y="869" width="0.0769%" height="15" fill="rgb(191,191,56)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (33 samples, 0.08%)</title><rect x="94.7263%" y="853" width="0.0769%" height="15" fill="rgb(210,210,62)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (33 samples, 0.08%)</title><rect x="94.7263%" y="837" width="0.0769%" height="15" fill="rgb(205,205,61)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="847.50"></text></g><g><title>java.lang.Thread::run (33 samples, 0.08%)</title><rect x="94.7263%" y="821" width="0.0769%" height="15" fill="rgb(228,228,69)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (33 samples, 0.08%)</title><rect x="94.7263%" y="805" width="0.0769%" height="15" fill="rgb(225,225,68)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (33 samples, 0.08%)</title><rect x="94.7263%" y="789" width="0.0769%" height="15" fill="rgb(227,227,69)" fg:x="40630" fg:w="33"/><text x="94.9763%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (26 samples, 0.06%)</title><rect x="94.7426%" y="773" width="0.0606%" height="15" fill="rgb(218,218,65)" fg:x="40637" fg:w="26"/><text x="94.9926%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (26 samples, 0.06%)</title><rect x="94.7426%" y="757" width="0.0606%" height="15" fill="rgb(180,180,51)" fg:x="40637" fg:w="26"/><text x="94.9926%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (440 samples, 1.03%)</title><rect x="94.8032%" y="757" width="1.0258%" height="15" fill="rgb(185,185,53)" fg:x="40663" fg:w="440"/><text x="95.0532%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (440 samples, 1.03%)</title><rect x="94.8032%" y="741" width="1.0258%" height="15" fill="rgb(185,185,53)" fg:x="40663" fg:w="440"/><text x="95.0532%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (440 samples, 1.03%)</title><rect x="94.8032%" y="725" width="1.0258%" height="15" fill="rgb(196,196,57)" fg:x="40663" fg:w="440"/><text x="95.0532%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (441 samples, 1.03%)</title><rect x="94.8032%" y="773" width="1.0282%" height="15" fill="rgb(220,220,66)" fg:x="40663" fg:w="441"/><text x="95.0532%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (446 samples, 1.04%)</title><rect x="94.8032%" y="901" width="1.0398%" height="15" fill="rgb(210,210,62)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="911.50"></text></g><g><title>start_thread (446 samples, 1.04%)</title><rect x="94.8032%" y="885" width="1.0398%" height="15" fill="rgb(235,101,101)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (446 samples, 1.04%)</title><rect x="94.8032%" y="869" width="1.0398%" height="15" fill="rgb(191,191,56)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (446 samples, 1.04%)</title><rect x="94.8032%" y="853" width="1.0398%" height="15" fill="rgb(210,210,62)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (446 samples, 1.04%)</title><rect x="94.8032%" y="837" width="1.0398%" height="15" fill="rgb(205,205,61)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="847.50"></text></g><g><title>java.lang.Thread::run (446 samples, 1.04%)</title><rect x="94.8032%" y="821" width="1.0398%" height="15" fill="rgb(228,228,69)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (446 samples, 1.04%)</title><rect x="94.8032%" y="805" width="1.0398%" height="15" fill="rgb(225,225,68)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (446 samples, 1.04%)</title><rect x="94.8032%" y="789" width="1.0398%" height="15" fill="rgb(227,227,69)" fg:x="40663" fg:w="446"/><text x="95.0532%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (5 samples, 0.01%)</title><rect x="95.8314%" y="773" width="0.0117%" height="15" fill="rgb(218,218,65)" fg:x="41104" fg:w="5"/><text x="96.0814%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (5 samples, 0.01%)</title><rect x="95.8314%" y="757" width="0.0117%" height="15" fill="rgb(180,180,51)" fg:x="41104" fg:w="5"/><text x="96.0814%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (10 samples, 0.02%)</title><rect x="95.8430%" y="741" width="0.0233%" height="15" fill="rgb(210,210,62)" fg:x="41109" fg:w="10"/><text x="96.0930%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (10 samples, 0.02%)</title><rect x="95.8430%" y="725" width="0.0233%" height="15" fill="rgb(190,190,55)" fg:x="41109" fg:w="10"/><text x="96.0930%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (10 samples, 0.02%)</title><rect x="95.8430%" y="709" width="0.0233%" height="15" fill="rgb(208,208,62)" fg:x="41109" fg:w="10"/><text x="96.0930%" y="719.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (11 samples, 0.03%)</title><rect x="95.8430%" y="901" width="0.0256%" height="15" fill="rgb(205,205,61)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="911.50"></text></g><g><title>start_thread (11 samples, 0.03%)</title><rect x="95.8430%" y="885" width="0.0256%" height="15" fill="rgb(235,101,101)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (11 samples, 0.03%)</title><rect x="95.8430%" y="869" width="0.0256%" height="15" fill="rgb(191,191,56)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (11 samples, 0.03%)</title><rect x="95.8430%" y="853" width="0.0256%" height="15" fill="rgb(210,210,62)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (11 samples, 0.03%)</title><rect x="95.8430%" y="837" width="0.0256%" height="15" fill="rgb(205,205,61)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="847.50"></text></g><g><title>java.lang.Thread::run (11 samples, 0.03%)</title><rect x="95.8430%" y="821" width="0.0256%" height="15" fill="rgb(228,228,69)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (11 samples, 0.03%)</title><rect x="95.8430%" y="805" width="0.0256%" height="15" fill="rgb(225,225,68)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (11 samples, 0.03%)</title><rect x="95.8430%" y="789" width="0.0256%" height="15" fill="rgb(227,227,69)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (11 samples, 0.03%)</title><rect x="95.8430%" y="773" width="0.0256%" height="15" fill="rgb(218,218,65)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (11 samples, 0.03%)</title><rect x="95.8430%" y="757" width="0.0256%" height="15" fill="rgb(180,180,51)" fg:x="41109" fg:w="11"/><text x="96.0930%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (6 samples, 0.01%)</title><rect x="95.8710%" y="741" width="0.0140%" height="15" fill="rgb(210,210,62)" fg:x="41121" fg:w="6"/><text x="96.1210%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (6 samples, 0.01%)</title><rect x="95.8710%" y="725" width="0.0140%" height="15" fill="rgb(211,211,63)" fg:x="41121" fg:w="6"/><text x="96.1210%" y="735.50"></text></g><g><title>enqueue_task_fair (7 samples, 0.02%)</title><rect x="95.9270%" y="485" width="0.0163%" height="15" fill="rgb(218,77,77)" fg:x="41145" fg:w="7"/><text x="96.1770%" y="495.50"></text></g><g><title>activate_task (25 samples, 0.06%)</title><rect x="95.9270%" y="501" width="0.0583%" height="15" fill="rgb(234,100,100)" fg:x="41145" fg:w="25"/><text x="96.1770%" y="511.50"></text></g><g><title>psi_task_change (18 samples, 0.04%)</title><rect x="95.9433%" y="485" width="0.0420%" height="15" fill="rgb(220,80,80)" fg:x="41152" fg:w="18"/><text x="96.1933%" y="495.50"></text></g><g><title>ttwu_do_activate (28 samples, 0.07%)</title><rect x="95.9270%" y="517" width="0.0653%" height="15" fill="rgb(239,107,107)" fg:x="41145" fg:w="28"/><text x="96.1770%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.10%)</title><rect x="95.8920%" y="629" width="0.1049%" height="15" fill="rgb(254,128,128)" fg:x="41130" fg:w="45"/><text x="96.1420%" y="639.50"></text></g><g><title>do_syscall_64 (44 samples, 0.10%)</title><rect x="95.8943%" y="613" width="0.1026%" height="15" fill="rgb(217,75,75)" fg:x="41131" fg:w="44"/><text x="96.1443%" y="623.50"></text></g><g><title>__x64_sys_futex (41 samples, 0.10%)</title><rect x="95.9013%" y="597" width="0.0956%" height="15" fill="rgb(248,121,121)" fg:x="41134" fg:w="41"/><text x="96.1513%" y="607.50"></text></g><g><title>do_futex (41 samples, 0.10%)</title><rect x="95.9013%" y="581" width="0.0956%" height="15" fill="rgb(230,94,94)" fg:x="41134" fg:w="41"/><text x="96.1513%" y="591.50"></text></g><g><title>futex_wake (41 samples, 0.10%)</title><rect x="95.9013%" y="565" width="0.0956%" height="15" fill="rgb(219,78,78)" fg:x="41134" fg:w="41"/><text x="96.1513%" y="575.50"></text></g><g><title>wake_up_q (37 samples, 0.09%)</title><rect x="95.9107%" y="549" width="0.0863%" height="15" fill="rgb(228,90,90)" fg:x="41138" fg:w="37"/><text x="96.1607%" y="559.50"></text></g><g><title>try_to_wake_up (36 samples, 0.08%)</title><rect x="95.9130%" y="533" width="0.0839%" height="15" fill="rgb(229,93,93)" fg:x="41139" fg:w="36"/><text x="96.1630%" y="543.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_cond_broadcast (49 samples, 0.11%)</title><rect x="95.8920%" y="677" width="0.1142%" height="15" fill="rgb(223,223,67)" fg:x="41130" fg:w="49"/><text x="96.1420%" y="687.50"></text></g><g><title>__pthread_cond_broadcast (49 samples, 0.11%)</title><rect x="95.8920%" y="661" width="0.1142%" height="15" fill="rgb(219,78,78)" fg:x="41130" fg:w="49"/><text x="96.1420%" y="671.50"></text></g><g><title>futex_wake (49 samples, 0.11%)</title><rect x="95.8920%" y="645" width="0.1142%" height="15" fill="rgb(219,78,78)" fg:x="41130" fg:w="49"/><text x="96.1420%" y="655.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::unpark (53 samples, 0.12%)</title><rect x="95.8850%" y="693" width="0.1236%" height="15" fill="rgb(196,196,57)" fg:x="41127" fg:w="53"/><text x="96.1350%" y="703.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (60 samples, 0.14%)</title><rect x="95.8710%" y="901" width="0.1399%" height="15" fill="rgb(225,225,68)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="911.50"></text></g><g><title>start_thread (60 samples, 0.14%)</title><rect x="95.8710%" y="885" width="0.1399%" height="15" fill="rgb(235,101,101)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (60 samples, 0.14%)</title><rect x="95.8710%" y="869" width="0.1399%" height="15" fill="rgb(191,191,56)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (60 samples, 0.14%)</title><rect x="95.8710%" y="853" width="0.1399%" height="15" fill="rgb(210,210,62)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (60 samples, 0.14%)</title><rect x="95.8710%" y="837" width="0.1399%" height="15" fill="rgb(205,205,61)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="847.50"></text></g><g><title>java.lang.Thread::run (60 samples, 0.14%)</title><rect x="95.8710%" y="821" width="0.1399%" height="15" fill="rgb(228,228,69)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (60 samples, 0.14%)</title><rect x="95.8710%" y="805" width="0.1399%" height="15" fill="rgb(225,225,68)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (60 samples, 0.14%)</title><rect x="95.8710%" y="789" width="0.1399%" height="15" fill="rgb(227,227,69)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (60 samples, 0.14%)</title><rect x="95.8710%" y="773" width="0.1399%" height="15" fill="rgb(218,218,65)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (60 samples, 0.14%)</title><rect x="95.8710%" y="757" width="0.1399%" height="15" fill="rgb(180,180,51)" fg:x="41121" fg:w="60"/><text x="96.1210%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (54 samples, 0.13%)</title><rect x="95.8850%" y="741" width="0.1259%" height="15" fill="rgb(191,191,56)" fg:x="41127" fg:w="54"/><text x="96.1350%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::unparkSuccessor (54 samples, 0.13%)</title><rect x="95.8850%" y="725" width="0.1259%" height="15" fill="rgb(227,227,69)" fg:x="41127" fg:w="54"/><text x="96.1350%" y="735.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::unpark (54 samples, 0.13%)</title><rect x="95.8850%" y="709" width="0.1259%" height="15" fill="rgb(223,223,67)" fg:x="41127" fg:w="54"/><text x="96.1350%" y="719.50"></text></g><g><title>pool-9-thread-8 (699 samples, 1.63%)</title><rect x="94.3836%" y="917" width="1.6297%" height="15" fill="rgb(226,88,88)" fg:x="40483" fg:w="699"/><text x="94.6336%" y="927.50"></text></g><g><title>dequeue_entity (6 samples, 0.01%)</title><rect x="96.1042%" y="437" width="0.0140%" height="15" fill="rgb(250,122,122)" fg:x="41221" fg:w="6"/><text x="96.3542%" y="447.50"></text></g><g><title>dequeue_task_fair (8 samples, 0.02%)</title><rect x="96.1018%" y="453" width="0.0187%" height="15" fill="rgb(200,51,51)" fg:x="41220" fg:w="8"/><text x="96.3518%" y="463.50"></text></g><g><title>deactivate_task (23 samples, 0.05%)</title><rect x="96.0995%" y="469" width="0.0536%" height="15" fill="rgb(213,68,68)" fg:x="41219" fg:w="23"/><text x="96.3495%" y="479.50"></text></g><g><title>psi_task_change (14 samples, 0.03%)</title><rect x="96.1205%" y="453" width="0.0326%" height="15" fill="rgb(220,80,80)" fg:x="41228" fg:w="14"/><text x="96.3705%" y="463.50"></text></g><g><title>finish_task_switch (5 samples, 0.01%)</title><rect x="96.1555%" y="469" width="0.0117%" height="15" fill="rgb(251,124,124)" fg:x="41243" fg:w="5"/><text x="96.4055%" y="479.50"></text></g><g><title>__schedule (37 samples, 0.09%)</title><rect x="96.0902%" y="485" width="0.0863%" height="15" fill="rgb(209,64,64)" fg:x="41215" fg:w="37"/><text x="96.3402%" y="495.50"></text></g><g><title>futex_wait_queue_me (43 samples, 0.10%)</title><rect x="96.0832%" y="517" width="0.1003%" height="15" fill="rgb(204,56,56)" fg:x="41212" fg:w="43"/><text x="96.3332%" y="527.50"></text></g><g><title>schedule (42 samples, 0.10%)</title><rect x="96.0855%" y="501" width="0.0979%" height="15" fill="rgb(251,124,124)" fg:x="41213" fg:w="42"/><text x="96.3355%" y="511.50"></text></g><g><title>__pthread_cond_wait (62 samples, 0.14%)</title><rect x="96.0412%" y="645" width="0.1445%" height="15" fill="rgb(240,109,109)" fg:x="41194" fg:w="62"/><text x="96.2912%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (62 samples, 0.14%)</title><rect x="96.0412%" y="629" width="0.1445%" height="15" fill="rgb(203,55,55)" fg:x="41194" fg:w="62"/><text x="96.2912%" y="639.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.13%)</title><rect x="96.0575%" y="613" width="0.1282%" height="15" fill="rgb(252,126,126)" fg:x="41201" fg:w="55"/><text x="96.3075%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.12%)</title><rect x="96.0669%" y="597" width="0.1189%" height="15" fill="rgb(254,128,128)" fg:x="41205" fg:w="51"/><text x="96.3169%" y="607.50"></text></g><g><title>do_syscall_64 (51 samples, 0.12%)</title><rect x="96.0669%" y="581" width="0.1189%" height="15" fill="rgb(217,75,75)" fg:x="41205" fg:w="51"/><text x="96.3169%" y="591.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.11%)</title><rect x="96.0785%" y="565" width="0.1072%" height="15" fill="rgb(248,121,121)" fg:x="41210" fg:w="46"/><text x="96.3285%" y="575.50"></text></g><g><title>do_futex (46 samples, 0.11%)</title><rect x="96.0785%" y="549" width="0.1072%" height="15" fill="rgb(230,94,94)" fg:x="41210" fg:w="46"/><text x="96.3285%" y="559.50"></text></g><g><title>futex_wait (46 samples, 0.11%)</title><rect x="96.0785%" y="533" width="0.1072%" height="15" fill="rgb(219,78,78)" fg:x="41210" fg:w="46"/><text x="96.3285%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (12 samples, 0.03%)</title><rect x="96.1951%" y="597" width="0.0280%" height="15" fill="rgb(254,128,128)" fg:x="41260" fg:w="12"/><text x="96.4451%" y="607.50"></text></g><g><title>do_syscall_64 (12 samples, 0.03%)</title><rect x="96.1951%" y="581" width="0.0280%" height="15" fill="rgb(217,75,75)" fg:x="41260" fg:w="12"/><text x="96.4451%" y="591.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixParkEvent::condWait (82 samples, 0.19%)</title><rect x="96.0412%" y="661" width="0.1912%" height="15" fill="rgb(218,218,65)" fg:x="41194" fg:w="82"/><text x="96.2912%" y="671.50"></text></g><g><title>com.oracle.svm.core.posix.headers.Pthread::pthread_mutex_unlock (20 samples, 0.05%)</title><rect x="96.1858%" y="645" width="0.0466%" height="15" fill="rgb(192,192,56)" fg:x="41256" fg:w="20"/><text x="96.4358%" y="655.50"></text></g><g><title>__GI___pthread_mutex_unlock (20 samples, 0.05%)</title><rect x="96.1858%" y="629" width="0.0466%" height="15" fill="rgb(221,81,81)" fg:x="41256" fg:w="20"/><text x="96.4358%" y="639.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (20 samples, 0.05%)</title><rect x="96.1858%" y="613" width="0.0466%" height="15" fill="rgb(246,117,117)" fg:x="41256" fg:w="20"/><text x="96.4358%" y="623.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (85 samples, 0.20%)</title><rect x="96.0366%" y="741" width="0.1982%" height="15" fill="rgb(210,210,62)" fg:x="41192" fg:w="85"/><text x="96.2866%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (85 samples, 0.20%)</title><rect x="96.0366%" y="725" width="0.1982%" height="15" fill="rgb(211,211,63)" fg:x="41192" fg:w="85"/><text x="96.2866%" y="735.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::parkAndCheckInterrupt (83 samples, 0.19%)</title><rect x="96.0412%" y="709" width="0.1935%" height="15" fill="rgb(206,206,61)" fg:x="41194" fg:w="83"/><text x="96.2912%" y="719.50"></text></g><g><title>java.util.concurrent.locks.LockSupport::park (83 samples, 0.19%)</title><rect x="96.0412%" y="693" width="0.1935%" height="15" fill="rgb(204,204,60)" fg:x="41194" fg:w="83"/><text x="96.2912%" y="703.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::parkCurrentPlatformOrCarrierThread (83 samples, 0.19%)</title><rect x="96.0412%" y="677" width="0.1935%" height="15" fill="rgb(191,191,56)" fg:x="41194" fg:w="83"/><text x="96.2912%" y="687.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (89 samples, 0.21%)</title><rect x="96.0296%" y="773" width="0.2075%" height="15" fill="rgb(218,218,65)" fg:x="41189" fg:w="89"/><text x="96.2796%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (87 samples, 0.20%)</title><rect x="96.0342%" y="757" width="0.2028%" height="15" fill="rgb(180,180,51)" fg:x="41191" fg:w="87"/><text x="96.2842%" y="767.50"></text></g><g><title>[anon] (106 samples, 0.25%)</title><rect x="96.0132%" y="901" width="0.2471%" height="15" fill="rgb(252,126,126)" fg:x="41182" fg:w="106"/><text x="96.2632%" y="911.50"></text></g><g><title>start_thread (101 samples, 0.24%)</title><rect x="96.0249%" y="885" width="0.2355%" height="15" fill="rgb(235,101,101)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (101 samples, 0.24%)</title><rect x="96.0249%" y="869" width="0.2355%" height="15" fill="rgb(191,191,56)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (101 samples, 0.24%)</title><rect x="96.0249%" y="853" width="0.2355%" height="15" fill="rgb(210,210,62)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (101 samples, 0.24%)</title><rect x="96.0249%" y="837" width="0.2355%" height="15" fill="rgb(205,205,61)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="847.50"></text></g><g><title>java.lang.Thread::run (101 samples, 0.24%)</title><rect x="96.0249%" y="821" width="0.2355%" height="15" fill="rgb(228,228,69)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (101 samples, 0.24%)</title><rect x="96.0249%" y="805" width="0.2355%" height="15" fill="rgb(225,225,68)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (101 samples, 0.24%)</title><rect x="96.0249%" y="789" width="0.2355%" height="15" fill="rgb(227,227,69)" fg:x="41187" fg:w="101"/><text x="96.2749%" y="799.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::release (7 samples, 0.02%)</title><rect x="96.2441%" y="773" width="0.0163%" height="15" fill="rgb(191,191,56)" fg:x="41281" fg:w="7"/><text x="96.4941%" y="783.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::tryRelease (7 samples, 0.02%)</title><rect x="96.2441%" y="757" width="0.0163%" height="15" fill="rgb(210,210,63)" fg:x="41281" fg:w="7"/><text x="96.4941%" y="767.50"></text></g><g><title>[unknown] (14 samples, 0.03%)</title><rect x="96.2604%" y="901" width="0.0326%" height="15" fill="rgb(206,59,59)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="911.50"></text></g><g><title>start_thread (14 samples, 0.03%)</title><rect x="96.2604%" y="885" width="0.0326%" height="15" fill="rgb(235,101,101)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (14 samples, 0.03%)</title><rect x="96.2604%" y="869" width="0.0326%" height="15" fill="rgb(191,191,56)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (14 samples, 0.03%)</title><rect x="96.2604%" y="853" width="0.0326%" height="15" fill="rgb(210,210,62)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (14 samples, 0.03%)</title><rect x="96.2604%" y="837" width="0.0326%" height="15" fill="rgb(205,205,61)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="847.50"></text></g><g><title>java.lang.Thread::run (14 samples, 0.03%)</title><rect x="96.2604%" y="821" width="0.0326%" height="15" fill="rgb(228,228,69)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (14 samples, 0.03%)</title><rect x="96.2604%" y="805" width="0.0326%" height="15" fill="rgb(225,225,68)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (14 samples, 0.03%)</title><rect x="96.2604%" y="789" width="0.0326%" height="15" fill="rgb(227,227,69)" fg:x="41288" fg:w="14"/><text x="96.5104%" y="799.50"></text></g><g><title>java.util.concurrent.FutureTask::run (7 samples, 0.02%)</title><rect x="96.2930%" y="773" width="0.0163%" height="15" fill="rgb(220,220,66)" fg:x="41302" fg:w="7"/><text x="96.5430%" y="783.50"></text></g><g><title>java.util.concurrent.FutureTask::set (7 samples, 0.02%)</title><rect x="96.2930%" y="757" width="0.0163%" height="15" fill="rgb(222,222,67)" fg:x="41302" fg:w="7"/><text x="96.5430%" y="767.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="96.2930%" y="901" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="911.50"></text></g><g><title>start_thread (26 samples, 0.06%)</title><rect x="96.2930%" y="885" width="0.0606%" height="15" fill="rgb(235,101,101)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (26 samples, 0.06%)</title><rect x="96.2930%" y="869" width="0.0606%" height="15" fill="rgb(191,191,56)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (26 samples, 0.06%)</title><rect x="96.2930%" y="853" width="0.0606%" height="15" fill="rgb(210,210,62)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (26 samples, 0.06%)</title><rect x="96.2930%" y="837" width="0.0606%" height="15" fill="rgb(205,205,61)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="847.50"></text></g><g><title>java.lang.Thread::run (26 samples, 0.06%)</title><rect x="96.2930%" y="821" width="0.0606%" height="15" fill="rgb(228,228,69)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (26 samples, 0.06%)</title><rect x="96.2930%" y="805" width="0.0606%" height="15" fill="rgb(225,225,68)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (26 samples, 0.06%)</title><rect x="96.2930%" y="789" width="0.0606%" height="15" fill="rgb(227,227,69)" fg:x="41302" fg:w="26"/><text x="96.5430%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (19 samples, 0.04%)</title><rect x="96.3093%" y="773" width="0.0443%" height="15" fill="rgb(218,218,65)" fg:x="41309" fg:w="19"/><text x="96.5593%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (19 samples, 0.04%)</title><rect x="96.3093%" y="757" width="0.0443%" height="15" fill="rgb(180,180,51)" fg:x="41309" fg:w="19"/><text x="96.5593%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (465 samples, 1.08%)</title><rect x="96.3560%" y="757" width="1.0841%" height="15" fill="rgb(185,185,53)" fg:x="41329" fg:w="465"/><text x="96.6060%" y="767.50"></text></g><g><title>io.reactivex.rxjava3.internal.schedulers.ScheduledDirectTask::call (465 samples, 1.08%)</title><rect x="96.3560%" y="741" width="1.0841%" height="15" fill="rgb(185,185,53)" fg:x="41329" fg:w="465"/><text x="96.6060%" y="751.50"></text></g><g><title>io.sergejisbrecht.DispatcherBenchmark$$Lambda$997/402339723::run (465 samples, 1.08%)</title><rect x="96.3560%" y="725" width="1.0841%" height="15" fill="rgb(196,196,57)" fg:x="41329" fg:w="465"/><text x="96.6060%" y="735.50"></text></g><g><title>java.util.concurrent.FutureTask::run (467 samples, 1.09%)</title><rect x="96.3560%" y="773" width="1.0888%" height="15" fill="rgb(220,220,66)" fg:x="41329" fg:w="467"/><text x="96.6060%" y="783.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (470 samples, 1.10%)</title><rect x="96.3560%" y="901" width="1.0958%" height="15" fill="rgb(210,210,62)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="911.50"></text></g><g><title>start_thread (470 samples, 1.10%)</title><rect x="96.3560%" y="885" width="1.0958%" height="15" fill="rgb(235,101,101)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (470 samples, 1.10%)</title><rect x="96.3560%" y="869" width="1.0958%" height="15" fill="rgb(191,191,56)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (470 samples, 1.10%)</title><rect x="96.3560%" y="853" width="1.0958%" height="15" fill="rgb(210,210,62)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (470 samples, 1.10%)</title><rect x="96.3560%" y="837" width="1.0958%" height="15" fill="rgb(205,205,61)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="847.50"></text></g><g><title>java.lang.Thread::run (470 samples, 1.10%)</title><rect x="96.3560%" y="821" width="1.0958%" height="15" fill="rgb(228,228,69)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (470 samples, 1.10%)</title><rect x="96.3560%" y="805" width="1.0958%" height="15" fill="rgb(225,225,68)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (470 samples, 1.10%)</title><rect x="96.3560%" y="789" width="1.0958%" height="15" fill="rgb(227,227,69)" fg:x="41329" fg:w="470"/><text x="96.6060%" y="799.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (9 samples, 0.02%)</title><rect x="97.4517%" y="741" width="0.0210%" height="15" fill="rgb(210,210,62)" fg:x="41799" fg:w="9"/><text x="97.7017%" y="751.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$NonfairSync::tryAcquire (9 samples, 0.02%)</title><rect x="97.4517%" y="725" width="0.0210%" height="15" fill="rgb(190,190,55)" fg:x="41799" fg:w="9"/><text x="97.7017%" y="735.50"></text></g><g><title>java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (9 samples, 0.02%)</title><rect x="97.4517%" y="709" width="0.0210%" height="15" fill="rgb(208,208,62)" fg:x="41799" fg:w="9"/><text x="97.7017%" y="719.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (10 samples, 0.02%)</title><rect x="97.4517%" y="901" width="0.0233%" height="15" fill="rgb(205,205,61)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="911.50"></text></g><g><title>start_thread (10 samples, 0.02%)</title><rect x="97.4517%" y="885" width="0.0233%" height="15" fill="rgb(235,101,101)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="895.50"></text></g><g><title>com.oracle.svm.core.code.IsolateEnterStub::PosixPlatformThreads_pthreadStartRoutine_38d96cbc1a188a6051c29be1299afe681d67942e (10 samples, 0.02%)</title><rect x="97.4517%" y="869" width="0.0233%" height="15" fill="rgb(191,191,56)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="879.50"></text></g><g><title>com.oracle.svm.core.posix.thread.PosixPlatformThreads::pthreadStartRoutine (10 samples, 0.02%)</title><rect x="97.4517%" y="853" width="0.0233%" height="15" fill="rgb(210,210,62)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="863.50"></text></g><g><title>com.oracle.svm.core.thread.PlatformThreads::threadStartRoutine (10 samples, 0.02%)</title><rect x="97.4517%" y="837" width="0.0233%" height="15" fill="rgb(205,205,61)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="847.50"></text></g><g><title>java.lang.Thread::run (10 samples, 0.02%)</title><rect x="97.4517%" y="821" width="0.0233%" height="15" fill="rgb(228,228,69)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="831.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor$Worker::run (10 samples, 0.02%)</title><rect x="97.4517%" y="805" width="0.0233%" height="15" fill="rgb(225,225,68)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="815.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::runWorker (10 samples, 0.02%)</title><rect x="97.4517%" y="789" width="0.0233%" height="15" fill="rgb(227,227,69)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="799.50"></text></g><g><title>java.util.concurrent.ThreadPoolExecutor::getTask (10 samples, 0.02%)</title><rect x="97.4517%" y="773" width="0.0233%" height="15" fill="rgb(218,218,65)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="783.50"></text></g><g><title>java.util.concurrent.LinkedBlockingQueue::take (10 samples, 0.02%)</title><rect x="97.4517%" y="757" width="0.0233%" height="15" fill="rgb(180,180,51)" fg:x="41799" fg:w="10"/><text x="97.7017%" y="767.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::addWaiter (7 samples, 0.02%)</title><rect x="97.4867%" y="709" width="0.0163%" height="15" fill="rgb(198,198,58)" fg:x="41814" fg:w="7"/><text x="97.7367%" y="719.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::acquireInterruptibly (8 samples, 0.02%)</title><rect x="97.4867%" y="741" width="0.0187%" height="15" fill="rgb(210,210,62)" fg:x="41814" fg:w="8"/><text x="97.7367%" y="751.50"></text></g><g><title>java.util.concurrent.locks.AbstractQueuedSynchronizer::doAcquireInterruptibly (8 samples, 0.02%)</title><rect x="97.4867%" y="725" width="0.0187%" height="15" fill="rgb(211,211,63)" fg:x="41814" fg:w="8"/><text x="97.7367%" y="735.50"></text></g><g><title>enqueue_task_fair (12 samples, 0.03%)</title><rect x="97.5683%" y="485" width="0.0280%" height="15" fill="rgb(218,77,77)" fg:x="41849" fg:w="12"/><text x="97.8183%" y="495.50"></text></g><g><title>enqueue_entity (7 samples, 0.02%)</title><rect x="97.5800%" y="469" width="0.0163%" height="15" fill="rgb(246,117,117)" fg:x="41854" fg:w="7"/><text x="97.8300%" y="479.50"></text></g><g><title>activate_task (23 samples, 0.05%)</title><rect x="97.5683%" y="501" width="0.0536%" height="15" fill="rgb(234,100,100)" fg:x="41849" fg:w="23"/><text x="97.8183%" y="511.50"></text></g><g><title>psi_task_change (11 samples, 0.03%)</title><rect x="97.5963%" y="485" width="0.0256%" height="15" fill="rgb(220,80,80)" fg:x="41861" fg:w="11"/><text x="97.8463%" y="495.50"></text></g><g><title>ttwu_do_activate (26 samples, 0.06%)</title><rect x="97.5683%" y="517" width="0.0606%" height="15" fill="rgb(239,107,107)" fg:x="41849" fg:w="26"/><text x="97.8183%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment