Skip to content

Instantly share code, notes, and snippets.

@bfritz
Last active February 2, 2017 20:19
Show Gist options
  • Save bfritz/f4294097e0ee77bef466a149a30851df to your computer and use it in GitHub Desktop.
Save bfritz/f4294097e0ee77bef466a149a30851df to your computer and use it in GitHub Desktop.
http4s string vs szb benchmark flamegraph with 16 headers
package org.http4s
package bench
import org.http4s.util.StringWriter
import java.nio.ByteBuffer
import java.nio.charset.StandardCharsets
import java.util.concurrent.TimeUnit
import org.openjdk.jmh.annotations._
@BenchmarkMode(Array(Mode.AverageTime))
@OutputTimeUnit(TimeUnit.MICROSECONDS)
@State(Scope.Benchmark)
class HeaderStringsBench {
@Benchmark
def string(in: HeadersInput2) = {
val w = new StringWriter(512)
w append "HTTP/1.1" append "200 OK" append "\r\n"
in.headers.foreach { h =>
w append h append "\r\n"
}
w append "Connection:close\r\n"
ByteBuffer.wrap(w.result.getBytes(StandardCharsets.ISO_8859_1))
}
@Benchmark
def szb(in: HeadersInput2) = {
val w = new StringBuilder(512)
w append "HTTP/1.1" append "200 OK" append "\r\n"
in.headers.foreach { h =>
w append h append "\r\n"
}
w append "Connection:close\r\n"
ByteBuffer.wrap(w.toString.getBytes(StandardCharsets.ISO_8859_1))
}
}
@State(Scope.Thread)
class HeadersInput2 {
// @Param(Array("2", "4", "8", "16", "32", "64"))
@Param(Array("16"))
var size: Int = _
var headerSeq: Seq[Header] = _
var headers: Headers = _
var replacement: Header = _
@Setup
def setup(): Unit = {
headerSeq = (0 until size) map { i =>
Header(s"X-Headers-Benchmark-$i", i.toString)
}
headers = Headers(headerSeq:_*)
replacement = Header(s"X-Headers-Benchmark-${headers.size / 2}", "replacement")
}
}

Captured 30 seconds of second 40 second iteration for each benchmark with:

JMH_PID=$(ps aux | grep -i java | grep org.openjdk.jmh.runner.ForkedMain | awk '{print $2}')
echo $JMH_PID
sudo perf record -F 99 -p $JMH_PID -g -- sleep 30 ; \
  java -cp /home/brad/projects/perf-map-agent/code/out/attach-main.jar:/usr/lib/jvm/java-8-openjdk/lib/tools.jar net.virtualvoid.perf.AttachOnce $JMH_PID

In SBT:

> ;bench/jmh:run -i 3 -wi 3 -f1 -t1 -r 40 org.http4s.bench.HeaderStringsBench -jvmArgs -XX:+PreserveFramePointer
[info] Running org.openjdk.jmh.Main -i 3 -wi 3 -f1 -t1 -r 40 org.http4s.bench.HeaderStringsBench -jvmArgs -XX:+PreserveFramePointer
[info] # JMH 1.17.4 (released 15 days ago)
[info] # VM version: JDK 1.8.0_121, VM 25.121-b13
[info] # VM invoker: /usr/lib/jvm/java-8-openjdk/jre/bin/java
[info] # VM options: -XX:+PreserveFramePointer
[info] # Warmup: 3 iterations, 1 s each
[info] # Measurement: 3 iterations, 40 s each
[info] # Timeout: 10 min per iteration
[info] # Threads: 1 thread, will synchronize iterations
[info] # Benchmark mode: Average time, time/op
[info] # Benchmark: org.http4s.bench.HeaderStringsBench.string
[info] # Parameters: (size = 16)
[info] 
[info] # Run progress: 0.00% complete, ETA 00:04:06
[info] # Fork: 1 of 1
[info] # Warmup Iteration   1: 0.903 us/op
[info] # Warmup Iteration   2: 0.865 us/op
[info] # Warmup Iteration   3: 0.815 us/op
[info] Iteration   1: 0.818 us/op
[info] Iteration   2: 0.810 us/op
[info] Iteration   3: 0.820 us/op
[info] 
[info] 
[info] Result "org.http4s.bench.HeaderStringsBench.string":
[info]   0.816 ±(99.9%) 0.103 us/op [Average]
[info]   (min, avg, max) = (0.810, 0.816, 0.820), stdev = 0.006
[info]   CI (99.9%): [0.713, 0.919] (assumes normal distribution)
[info] 
[info] 
[info] # JMH 1.17.4 (released 15 days ago)
[info] # VM version: JDK 1.8.0_121, VM 25.121-b13
[info] # VM invoker: /usr/lib/jvm/java-8-openjdk/jre/bin/java
[info] # VM options: -XX:+PreserveFramePointer
[info] # Warmup: 3 iterations, 1 s each
[info] # Measurement: 3 iterations, 40 s each
[info] # Timeout: 10 min per iteration
[info] # Threads: 1 thread, will synchronize iterations
[info] # Benchmark mode: Average time, time/op
[info] # Benchmark: org.http4s.bench.HeaderStringsBench.szb
[info] # Parameters: (size = 16)
[info] 
[info] # Run progress: 50.00% complete, ETA 00:02:03
[info] # Fork: 1 of 1
[info] # Warmup Iteration   1: 2.935 us/op
[info] # Warmup Iteration   2: 2.719 us/op
[info] # Warmup Iteration   3: 2.652 us/op
[info] Iteration   1: 2.526 us/op
[info] Iteration   2: 2.476 us/op
[info] Iteration   3: 2.501 us/op
[info] 
[info] 
[info] Result "org.http4s.bench.HeaderStringsBench.szb":
[info]   2.501 ±(99.9%) 0.450 us/op [Average]
[info]   (min, avg, max) = (2.476, 2.501, 2.526), stdev = 0.025
[info]   CI (99.9%): [2.051, 2.951] (assumes normal distribution)
[info] 
[info] 
[info] # Run complete. Total time: 00:04:07
[info] 
[info] Benchmark                  (size)  Mode  Cnt  Score   Error  Units
[info] HeaderStringsBench.string      16  avgt    3  0.816 ± 0.103  us/op
[info] HeaderStringsBench.szb         16  avgt    3  2.501 ± 0.450  us/op
[success] Total time: 248 s, completed Feb 2, 2017 3:06:06 PM
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="770" onload="init(evt)" viewBox="0 0 1200 770" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
if (func != null)
func = func.replace(/ .*/, "");
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
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.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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 = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="770.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="753" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="753" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (176 samples, 5.36%)</title><rect x="21.9" y="497" width="63.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="24.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="1169.2" y="225" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.03%)</title><rect x="88.3" y="433" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (28 samples, 0.85%)</title><rect x="95.9" y="481" width="10.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="17.9" y="433" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.03%)</title><rect x="1016.4" y="65" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,886 samples, 87.88%)</title><rect x="137.9" y="609" width="1037.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="140.92" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_entity_load_avg (1 samples, 0.03%)</title><rect x="19.7" y="529" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="22.70" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="14.7" y="545" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="88.3" y="449" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1173.5" y="593" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (2 samples, 0.06%)</title><rect x="21.9" y="449" width="0.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="24.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.24%)</title><rect x="91.2" y="497" width="2.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (12 samples, 0.37%)</title><rect x="143.3" y="401" width="4.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1173.1" y="561" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1155.5" y="113" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (12 samples, 0.37%)</title><rect x="143.3" y="417" width="4.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="16.1" y="625" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_arraycopy (29 samples, 0.88%)</title><rect x="779.3" y="209" width="10.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="782.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (47 samples, 1.43%)</title><rect x="402.0" y="241" width="16.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="405.02" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.15%)</title><rect x="17.5" y="641" width="1.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="15.0" y="417" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="18.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1173.8" y="385" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1176.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1177.8" y="449" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="91.6" y="417" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="94.57" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="94.1" y="625" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.06%)</title><rect x="1001.7" y="193" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_nmi_exit (1 samples, 0.03%)</title><rect x="95.2" y="449" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="98.16" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1155.5" y="65" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter:::$less$less (100 samples, 3.05%)</title><rect x="451.6" y="241" width="35.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="454.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="1179.2" y="625" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1182.22" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="10.4" y="465" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="13.36" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="14.7" y="577" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.18%)</title><rect x="12.2" y="433" width="2.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="15.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="17.9" y="417" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,991 samples, 91.08%)</title><rect x="115.3" y="673" width="1074.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="118.28" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1177.8" y="529" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="10.0" y="577" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1169.2" y="49" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.03%)</title><rect x="487.2" y="225" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="490.17" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (9 samples, 0.27%)</title><rect x="11.4" y="657" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.12%)</title><rect x="17.9" y="545" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="17.9" y="481" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (12 samples, 0.37%)</title><rect x="143.3" y="353" width="4.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.24%)</title><rect x="1174.9" y="561" width="2.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="1174.9" y="433" width="2.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_arraycopy (36 samples, 1.10%)</title><rect x="1003.9" y="209" width="12.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1006.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_smp_call_function_single_interrupt (4 samples, 0.12%)</title><rect x="1002.4" y="177" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (3 samples, 0.09%)</title><rect x="20.1" y="529" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.24%)</title><rect x="1174.9" y="481" width="2.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_entity (1 samples, 0.03%)</title><rect x="1016.4" y="81" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (30 samples, 0.91%)</title><rect x="95.9" y="561" width="10.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1188.6" y="449" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___preempt_schedule (4 samples, 0.12%)</title><rect x="17.9" y="529" width="1.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1178.1" y="449" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1181.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.24%)</title><rect x="88.3" y="641" width="2.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="1174.9" y="417" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (5 samples, 0.15%)</title><rect x="19.3" y="609" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="22.34" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/openjdk/jmh/infra/Blackhole:::consume (34 samples, 1.04%)</title><rect x="1156.9" y="257" width="12.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1159.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1173.1" y="577" width="0.4" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="1174.9" y="465" width="2.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="1173.5" y="529" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (20 samples, 0.61%)</title><rect x="1179.9" y="545" width="7.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_array_nozero_Java (2 samples, 0.06%)</title><rect x="401.3" y="241" width="0.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="404.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.24%)</title><rect x="85.5" y="577" width="2.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.24%)</title><rect x="1174.9" y="497" width="2.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1169.2" y="241" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (24 samples, 0.73%)</title><rect x="106.7" y="577" width="8.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="1155.5" y="33" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1169.2" y="65" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="273" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="1173.1" y="529" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (132 samples, 4.02%)</title><rect x="34.8" y="449" width="47.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="37.79" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >nati..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="529" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (8 samples, 0.24%)</title><rect x="85.5" y="609" width="2.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="85.1" y="513" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="88.10" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (4 samples, 0.12%)</title><rect x="1155.5" y="161" width="1.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="10.0" y="657" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.03%)</title><rect x="1179.6" y="561" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="1182.58" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="94.1" y="577" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="401.3" y="225" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="404.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (20 samples, 0.61%)</title><rect x="1179.9" y="561" width="7.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="492.6" y="113" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.4 (1 samples, 0.03%)</title><rect x="1001.7" y="113" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.24%)</title><rect x="91.2" y="657" width="2.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="1169.2" y="145" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (178 samples, 5.42%)</title><rect x="21.5" y="545" width="64.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sched..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (178 samples, 5.42%)</title><rect x="21.5" y="625" width="64.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.03%)</title><rect x="107.0" y="465" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="110.02" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="16.1" y="529" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="492.6" y="161" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="14.3" y="497" width="0.4" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (4 samples, 0.12%)</title><rect x="1177.8" y="609" width="1.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="16.1" y="513" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (30 samples, 0.91%)</title><rect x="95.9" y="577" width="10.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.03%)</title><rect x="21.5" y="513" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="14.3" y="401" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="94.1" y="545" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="401" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (30 samples, 0.91%)</title><rect x="95.9" y="625" width="10.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="492.6" y="177" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (17 samples, 0.52%)</title><rect x="108.1" y="465" width="6.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="111.09" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (30 samples, 0.91%)</title><rect x="95.9" y="593" width="10.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_arraycopy (43 samples, 1.31%)</title><rect x="649.2" y="225" width="15.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="652.23" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="17.9" y="449" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (8 samples, 0.24%)</title><rect x="91.2" y="465" width="2.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="513" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1187.1" y="481" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.24%)</title><rect x="91.2" y="609" width="2.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header$Raw:::renderValue (29 samples, 0.88%)</title><rect x="440.8" y="241" width="10.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="443.82" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (20 samples, 0.61%)</title><rect x="1179.9" y="481" width="7.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="10.0" y="593" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="385" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (24 samples, 0.73%)</title><rect x="106.7" y="641" width="8.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (178 samples, 5.42%)</title><rect x="21.5" y="577" width="64.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rebalance_domains (1 samples, 0.03%)</title><rect x="14.3" y="417" width="0.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 0.24%)</title><rect x="88.3" y="561" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,982 samples, 90.80%)</title><rect x="115.6" y="641" width="1071.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="118.64" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,853 samples, 86.88%)</title><rect x="148.0" y="305" width="1025.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (2,853 samples, 86.88%)</title><rect x="148.0" y="353" width="1025.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JVM_InvokeMethod</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="10.0" y="609" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="10.0" y="625" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (4 samples, 0.12%)</title><rect x="1002.4" y="209" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="1173.5" y="497" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (6 samples, 0.18%)</title><rect x="82.6" y="449" width="2.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="85.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.03%)</title><rect x="14.3" y="449" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (9 samples, 0.27%)</title><rect x="11.4" y="561" width="3.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (9 samples, 0.27%)</title><rect x="11.4" y="609" width="3.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="481" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="94.1" y="513" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (12 samples, 0.37%)</title><rect x="143.3" y="513" width="4.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="14.7" y="529" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.24%)</title><rect x="1174.9" y="593" width="2.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_function (4 samples, 0.12%)</title><rect x="1002.4" y="129" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.24%)</title><rect x="85.5" y="481" width="2.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="14.7" y="481" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="492.6" y="129" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.03%)</title><rect x="1179.6" y="609" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1182.58" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (2,991 samples, 91.08%)</title><rect x="115.3" y="689" width="1074.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="118.28" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (24 samples, 0.73%)</title><rect x="106.7" y="593" width="8.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="1188.6" y="593" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="14.7" y="497" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (9 samples, 0.27%)</title><rect x="11.4" y="593" width="3.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (289 samples, 8.80%)</title><rect x="11.4" y="689" width="103.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.03%)</title><rect x="82.2" y="449" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="85.22" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1002.4" y="65" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.03%)</title><rect x="105.2" y="465" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="108.22" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (2 samples, 0.06%)</title><rect x="105.9" y="545" width="0.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="108.94" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (20 samples, 0.61%)</title><rect x="1179.9" y="593" width="7.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 0.24%)</title><rect x="85.5" y="513" width="2.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (4 samples, 0.12%)</title><rect x="17.9" y="577" width="1.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="11.4" y="449" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.24%)</title><rect x="88.3" y="529" width="2.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="91.2" y="449" width="2.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (3 samples, 0.09%)</title><rect x="20.1" y="545" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (57 samples, 1.74%)</title><rect x="420.3" y="241" width="20.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="423.34" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="1177.8" y="561" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.24%)</title><rect x="1174.9" y="513" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="16.1" y="449" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="17.9" y="465" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (2 samples, 0.06%)</title><rect x="105.9" y="529" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="108.94" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="16.1" y="609" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (4 samples, 0.12%)</title><rect x="1002.4" y="113" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (18 samples, 0.55%)</title><rect x="141.2" y="545" width="6.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="144.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.03%)</title><rect x="1016.4" y="145" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="1187.1" y="609" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (12 samples, 0.37%)</title><rect x="143.3" y="449" width="4.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.24%)</title><rect x="88.3" y="577" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="1155.5" y="145" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (176 samples, 5.36%)</title><rect x="21.9" y="481" width="63.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="24.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pm..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (1 samples, 0.03%)</title><rect x="151.2" y="257" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="154.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (3 samples, 0.09%)</title><rect x="114.2" y="465" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="117.20" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="1188.6" y="609" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.03%)</title><rect x="1016.4" y="161" width="0.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (4 samples, 0.12%)</title><rect x="1155.5" y="177" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1002.8" y="33" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1005.80" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (8 samples, 0.24%)</title><rect x="148.0" y="257" width="2.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="545" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (2 samples, 0.06%)</title><rect x="1001.7" y="161" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List:::foreach (7 samples, 0.21%)</title><rect x="1170.6" y="257" width="2.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1173.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="10.0" y="513" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="10.0" y="529" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1169.2" y="113" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="1187.1" y="593" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_elision (1 samples, 0.03%)</title><rect x="1173.1" y="593" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (2 samples, 0.06%)</title><rect x="1180.3" y="417" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1183.30" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (12 samples, 0.37%)</title><rect x="143.3" y="497" width="4.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1173.5" y="513" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (9 samples, 0.27%)</title><rect x="11.4" y="641" width="3.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/List:::foreach (1,845 samples, 56.18%)</title><rect x="494.0" y="241" width="662.9" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="497.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >scala/collection/immutable/List:::foreach</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1169.2" y="129" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (176 samples, 5.36%)</title><rect x="21.9" y="513" width="63.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="24.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1187.1" y="513" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1173.5" y="577" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1177.8" y="513" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="1173.1" y="497" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="17.9" y="401" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.03%)</title><rect x="147.3" y="321" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="150.26" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="14.7" y="625" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (5 samples, 0.15%)</title><rect x="17.5" y="609" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (20 samples, 0.61%)</title><rect x="1179.9" y="625" width="7.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (6 samples, 0.18%)</title><rect x="19.3" y="657" width="2.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="22.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1173.5" y="401" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="16.1" y="481" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (12 samples, 0.37%)</title><rect x="143.3" y="465" width="4.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.03%)</title><rect x="95.9" y="465" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1155.9" y="33" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1158.86" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.12%)</title><rect x="14.7" y="641" width="1.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.24%)</title><rect x="85.5" y="561" width="2.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (4 samples, 0.12%)</title><rect x="1177.8" y="577" width="1.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (1 samples, 0.03%)</title><rect x="1016.4" y="177" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (2 samples, 0.06%)</title><rect x="107.4" y="465" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="110.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="14.7" y="513" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="14.7" y="561" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="1187.1" y="529" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_nmi_exit (1 samples, 0.03%)</title><rect x="1177.4" y="401" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1180.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1002.4" y="81" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/util/StringWriter:::$less$less (920 samples, 28.01%)</title><rect x="826.4" y="225" width="330.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="829.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/http4s/util/StringWriter:::$less$less</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1169.2" y="97" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/bench/generated/HeaderStringsBench_string_jmhTest:::string_avgt_jmhStub (2,798 samples, 85.20%)</title><rect x="151.6" y="257" width="1005.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="154.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/http4s/bench/generated/HeaderStringsBench_string_jmhTest:::string_avgt_jmhStub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="1002.4" y="33" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="492.6" y="65" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 0.24%)</title><rect x="1174.9" y="529" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="14.7" y="433" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (5 samples, 0.15%)</title><rect x="17.5" y="593" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.03%)</title><rect x="21.5" y="497" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_smp_call_function_queue (4 samples, 0.12%)</title><rect x="1002.4" y="161" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,876 samples, 87.58%)</title><rect x="139.7" y="593" width="1033.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="142.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (21 samples, 0.64%)</title><rect x="140.1" y="561" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="143.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="94.1" y="481" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.24%)</title><rect x="88.3" y="609" width="2.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (8 samples, 0.24%)</title><rect x="85.5" y="641" width="2.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1187.1" y="625" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="449" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (2,853 samples, 86.88%)</title><rect x="148.0" y="561" width="1025.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (2 samples, 0.06%)</title><rect x="1001.7" y="177" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_check_callbacks (1 samples, 0.03%)</title><rect x="1001.7" y="81" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (4 samples, 0.12%)</title><rect x="19.7" y="593" width="1.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="22.70" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="492.6" y="209" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.24%)</title><rect x="91.2" y="625" width="2.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (390 samples, 11.88%)</title><rect x="1016.8" y="209" width="140.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1019.81" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jshort_disjoint_a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.24%)</title><rect x="1174.9" y="609" width="2.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="85.5" y="417" width="2.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (4 samples, 0.12%)</title><rect x="1002.4" y="193" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1187.1" y="561" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1155.5" y="49" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1173.5" y="433" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,853 samples, 86.88%)</title><rect x="148.0" y="337" width="1025.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="1169.2" y="209" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.03%)</title><rect x="91.2" y="417" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="492.6" y="97" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.03%)</title><rect x="14.7" y="417" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.24%)</title><rect x="88.3" y="593" width="2.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (30 samples, 0.91%)</title><rect x="95.9" y="657" width="10.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (178 samples, 5.42%)</title><rect x="21.5" y="593" width="64.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (178 samples, 5.42%)</title><rect x="21.5" y="641" width="64.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_S..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="14.7" y="449" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1187.1" y="465" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="16.1" y="497" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="91.2" y="433" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="492.6" y="81" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1188.6" y="497" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="16.1" y="545" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.03%)</title><rect x="10.0" y="465" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (4 samples, 0.12%)</title><rect x="19.7" y="577" width="1.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="22.70" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,958 samples, 90.07%)</title><rect x="116.4" y="625" width="1062.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="119.36" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (4 samples, 0.12%)</title><rect x="1177.8" y="593" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_task_cpu (1 samples, 0.03%)</title><rect x="19.7" y="561" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="22.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1187.1" y="433" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_nmi_exit (1 samples, 0.03%)</title><rect x="105.6" y="465" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="108.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.03%)</title><rect x="1001.7" y="145" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.18%)</title><rect x="88.7" y="433" width="2.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="91.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (8 samples, 0.24%)</title><rect x="91.2" y="641" width="2.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="1187.1" y="545" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.24%)</title><rect x="91.2" y="577" width="2.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="10.0" y="641" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.03%)</title><rect x="85.1" y="529" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="88.10" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1187.5" y="433" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1190.48" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.24%)</title><rect x="91.2" y="593" width="2.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1174.9" y="401" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (24 samples, 0.73%)</title><rect x="106.7" y="609" width="8.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (12 samples, 0.37%)</title><rect x="143.3" y="337" width="4.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (20 samples, 0.61%)</title><rect x="1179.9" y="609" width="7.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="88.3" y="465" width="2.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.03%)</title><rect x="1173.1" y="417" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="1173.5" y="481" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (8 samples, 0.24%)</title><rect x="1174.9" y="449" width="2.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1173.5" y="449" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="94.1" y="465" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1188.6" y="529" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.03%)</title><rect x="90.8" y="433" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="93.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.03%)</title><rect x="1179.6" y="625" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1182.58" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (14 samples, 0.43%)</title><rect x="1181.0" y="417" width="5.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1184.02" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (8 samples, 0.24%)</title><rect x="91.2" y="545" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_rt (1 samples, 0.03%)</title><rect x="1016.4" y="113" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="94.1" y="641" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="16.1" y="641" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="1169.2" y="161" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (5 samples, 0.15%)</title><rect x="22.6" y="449" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="25.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="401.7" y="193" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="404.66" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="492.6" y="33" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.18%)</title><rect x="91.9" y="417" width="2.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="94.92" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/bench/generated/HeaderStringsBench_string_jmhTest:::string_avgt_jmhStub (1 samples, 0.03%)</title><rect x="451.2" y="241" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="454.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.18%)</title><rect x="19.3" y="625" width="2.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="22.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="1188.6" y="561" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (5 samples, 0.15%)</title><rect x="17.5" y="657" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>printk_nmi_exit (1 samples, 0.03%)</title><rect x="84.7" y="449" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="87.74" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1177.8" y="497" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (7 samples, 0.21%)</title><rect x="26.2" y="449" width="2.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="29.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (6 samples, 0.18%)</title><rect x="141.2" y="529" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="144.15" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1188.6" y="481" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="492.6" y="49" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (3,284 samples, 100%)</title><rect x="10.0" y="721" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_rebalance_domains (1 samples, 0.03%)</title><rect x="14.3" y="433" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="94.1" y="561" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/openjdk/jmh/infra/Blackhole:::consume (14 samples, 0.43%)</title><rect x="487.5" y="241" width="5.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="490.53" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.4 (1 samples, 0.03%)</title><rect x="1173.1" y="481" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_futex (1 samples, 0.03%)</title><rect x="21.1" y="609" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="24.14" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="14.3" y="481" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1188.6" y="577" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.03%)</title><rect x="1016.4" y="193" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (8 samples, 0.24%)</title><rect x="11.4" y="481" width="2.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (4 samples, 0.12%)</title><rect x="96.2" y="465" width="1.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="99.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.24%)</title><rect x="85.5" y="529" width="2.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1169.2" y="81" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (126 samples, 3.84%)</title><rect x="664.7" y="225" width="45.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="667.68" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jsho..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="14.7" y="609" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.27%)</title><rect x="11.4" y="529" width="3.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,987 samples, 90.96%)</title><rect x="115.3" y="657" width="1073.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="118.28" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.03%)</title><rect x="1173.1" y="513" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,853 samples, 86.88%)</title><rect x="148.0" y="321" width="1025.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_resched (4 samples, 0.12%)</title><rect x="1002.4" y="97" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="492.6" y="193" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="401.7" y="177" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="404.66" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="16.1" y="577" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (8 samples, 0.24%)</title><rect x="85.5" y="625" width="2.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.03%)</title><rect x="1179.6" y="593" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1182.58" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.18%)</title><rect x="86.2" y="385" width="2.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="89.18" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="94.1" y="593" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (12 samples, 0.37%)</title><rect x="143.3" y="385" width="4.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (4 samples, 0.12%)</title><rect x="24.7" y="449" width="1.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="27.73" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>org/http4s/Header$Raw:::renderValue (324 samples, 9.87%)</title><rect x="710.0" y="225" width="116.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="712.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/http4s/Hea..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.03%)</title><rect x="21.5" y="481" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1169.5" y="49" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1172.52" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="94.1" y="529" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (24 samples, 0.73%)</title><rect x="106.7" y="497" width="8.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.18%)</title><rect x="19.3" y="641" width="2.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="22.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (17 samples, 0.52%)</title><rect x="28.7" y="449" width="6.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="31.68" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="1188.6" y="545" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="16.1" y="593" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clockevents_program_event (1 samples, 0.03%)</title><rect x="1002.1" y="129" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="1005.08" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="451.2" y="225" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="454.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2,875 samples, 87.55%)</title><rect x="140.1" y="577" width="1033.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="143.07" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (30 samples, 0.91%)</title><rect x="95.9" y="609" width="10.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (20 samples, 0.61%)</title><rect x="1179.9" y="433" width="7.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.24%)</title><rect x="88.3" y="545" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (102 samples, 3.11%)</title><rect x="789.7" y="209" width="36.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="792.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jsh..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="1179.9" y="417" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="369" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="465" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="91.2" y="481" width="2.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="16.1" y="561" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (12 samples, 0.37%)</title><rect x="143.3" y="369" width="4.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="1179.6" y="545" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1182.58" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="11.4" y="497" width="2.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.03%)</title><rect x="1001.7" y="97" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="1155.5" y="129" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.24%)</title><rect x="88.3" y="625" width="2.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="1173.5" y="561" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>preempt_schedule (4 samples, 0.12%)</title><rect x="17.9" y="513" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1169.2" y="177" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.03%)</title><rect x="1173.1" y="465" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.03%)</title><rect x="14.3" y="465" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="17.31" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1173.5" y="465" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.24%)</title><rect x="88.3" y="513" width="2.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="492.6" y="225" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.03%)</title><rect x="1173.1" y="449" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_clock_gettime (1 samples, 0.03%)</title><rect x="95.5" y="673" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="98.52" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (5 samples, 0.15%)</title><rect x="17.5" y="625" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (1 samples, 0.03%)</title><rect x="1002.1" y="113" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1005.08" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (12 samples, 0.37%)</title><rect x="143.3" y="481" width="4.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="143.7" y="321" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="146.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="18.3" y="385" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="21.26" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1187.1" y="497" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (20 samples, 0.61%)</title><rect x="1179.9" y="497" width="7.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.27%)</title><rect x="11.4" y="625" width="3.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (28 samples, 0.85%)</title><rect x="95.9" y="529" width="10.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="492.6" y="241" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.24%)</title><rect x="91.2" y="529" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1002.4" y="49" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (24 samples, 0.73%)</title><rect x="106.7" y="673" width="8.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="14.7" y="465" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (20 samples, 0.61%)</title><rect x="1179.9" y="577" width="7.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_program_event (1 samples, 0.03%)</title><rect x="1002.1" y="145" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1005.08" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.24%)</title><rect x="91.2" y="561" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (8 samples, 0.24%)</title><rect x="1174.9" y="577" width="2.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.03%)</title><rect x="1179.6" y="577" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1182.58" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (2,853 samples, 86.88%)</title><rect x="148.0" y="289" width="1025.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (3 samples, 0.09%)</title><rect x="20.1" y="513" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="10.0" y="497" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (178 samples, 5.42%)</title><rect x="21.5" y="609" width="64.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (28 samples, 0.85%)</title><rect x="85.5" y="673" width="10.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1187.1" y="449" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.24%)</title><rect x="1174.9" y="545" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="106.7" y="465" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="1169.2" y="193" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1188.9" y="449" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1191.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (178 samples, 5.42%)</title><rect x="21.5" y="657" width="64.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (24 samples, 0.73%)</title><rect x="106.7" y="545" width="8.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java (3,284 samples, 100.00%)</title><rect x="10.0" y="705" width="1180.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (9 samples, 0.27%)</title><rect x="11.4" y="545" width="3.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1188.6" y="465" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (24 samples, 0.73%)</title><rect x="106.7" y="513" width="8.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (206 samples, 6.27%)</title><rect x="11.4" y="673" width="74.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm...</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1188.6" y="641" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (2 samples, 0.06%)</title><rect x="85.5" y="385" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.24%)</title><rect x="85.5" y="497" width="2.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>preempt_schedule_common (4 samples, 0.12%)</title><rect x="17.9" y="497" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="401.3" y="209" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="404.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (178 samples, 5.42%)</title><rect x="21.5" y="561" width="64.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="94.1" y="449" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1155.5" y="97" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="10.0" y="673" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (8 samples, 0.24%)</title><rect x="85.5" y="545" width="2.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (8 samples, 0.24%)</title><rect x="85.5" y="433" width="2.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (24 samples, 0.73%)</title><rect x="106.7" y="481" width="8.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (176 samples, 5.36%)</title><rect x="21.9" y="465" width="63.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="24.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (30 samples, 0.91%)</title><rect x="95.9" y="673" width="10.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.03%)</title><rect x="21.5" y="529" width="0.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="24.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="1188.6" y="625" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (2 samples, 0.06%)</title><rect x="11.4" y="433" width="0.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="17.9" y="385" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (16 samples, 0.49%)</title><rect x="85.5" y="657" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (12 samples, 0.37%)</title><rect x="143.3" y="529" width="4.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="85.5" y="449" width="2.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (20 samples, 0.61%)</title><rect x="1179.9" y="529" width="7.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.03%)</title><rect x="400.9" y="241" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="403.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (3 samples, 0.09%)</title><rect x="20.1" y="561" width="1.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="23.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="10.0" y="689" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="10.0" y="545" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="492.9" y="33" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="495.92" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (20 samples, 0.61%)</title><rect x="1179.9" y="465" width="7.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (24 samples, 0.73%)</title><rect x="106.7" y="529" width="8.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="85.5" y="401" width="2.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (8 samples, 0.24%)</title><rect x="88.3" y="481" width="2.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (28 samples, 0.85%)</title><rect x="95.9" y="513" width="10.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (24 samples, 0.73%)</title><rect x="106.7" y="625" width="8.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.24%)</title><rect x="85.5" y="593" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remote_function (4 samples, 0.12%)</title><rect x="1002.4" y="145" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1005.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.06%)</title><rect x="1001.7" y="209" width="0.7" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.03%)</title><rect x="1173.1" y="433" width="0.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (21 samples, 0.64%)</title><rect x="97.7" y="465" width="7.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="100.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (24 samples, 0.73%)</title><rect x="106.7" y="561" width="8.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="94.1" y="609" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (3 samples, 0.09%)</title><rect x="16.1" y="433" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.12%)</title><rect x="492.6" y="145" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="495.56" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="11.4" y="465" width="2.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="16.1" y="465" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="19.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (1 samples, 0.03%)</title><rect x="147.6" y="561" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="150.62" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.03%)</title><rect x="1016.4" y="129" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="433" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (12 samples, 0.37%)</title><rect x="143.3" y="433" width="4.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (20 samples, 0.61%)</title><rect x="1179.9" y="449" width="7.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (24 samples, 0.73%)</title><rect x="106.7" y="657" width="8.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="109.66" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (9 samples, 0.27%)</title><rect x="11.4" y="513" width="3.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.24%)</title><rect x="91.2" y="513" width="2.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="94.21" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (9 samples, 0.27%)</title><rect x="144.0" y="321" width="3.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="147.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_arraycopy (1 samples, 0.03%)</title><rect x="150.9" y="257" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="153.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (20 samples, 0.61%)</title><rect x="1179.9" y="513" width="7.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1182.94" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (2 samples, 0.06%)</title><rect x="1186.0" y="417" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1189.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1177.8" y="465" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1173.5" y="385" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.12%)</title><rect x="1187.1" y="577" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="94.1" y="497" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_nmi_exit (1 samples, 0.03%)</title><rect x="17.2" y="433" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="20.19" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="497" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1173.1" y="545" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1176.11" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_restore (1 samples, 0.03%)</title><rect x="1186.8" y="417" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1189.77" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (176 samples, 5.36%)</title><rect x="21.9" y="529" width="63.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="24.86" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="10.0" y="561" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1155.5" y="81" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2,853 samples, 86.88%)</title><rect x="148.0" y="417" width="1025.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="150.98" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1169.2" y="257" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.24%)</title><rect x="85.5" y="465" width="2.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="88.46" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.12%)</title><rect x="14.7" y="593" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_arraycopy (4 samples, 0.12%)</title><rect x="418.9" y="241" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="421.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="10.0" y="481" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (28 samples, 0.85%)</title><rect x="95.9" y="497" width="10.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.03%)</title><rect x="143.3" y="321" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="146.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1188.6" y="513" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (1 samples, 0.03%)</title><rect x="19.7" y="545" width="0.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="22.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (9 samples, 0.27%)</title><rect x="11.4" y="577" width="3.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="14.44" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.03%)</title><rect x="1016.4" y="97" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1019.45" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="94.1" y="657" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="97.08" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (28 samples, 0.85%)</title><rect x="95.9" y="545" width="10.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1173.5" y="417" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (30 samples, 0.91%)</title><rect x="95.9" y="641" width="10.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="98.88" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="88.3" y="497" width="2.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1177.8" y="481" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="1001.7" y="129" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1004.72" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (4 samples, 0.12%)</title><rect x="17.9" y="561" width="1.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="20.90" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (8 samples, 0.24%)</title><rect x="14.7" y="657" width="2.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="17.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1187.1" y="641" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1190.13" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1188.6" y="657" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1191.56" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (4 samples, 0.12%)</title><rect x="1155.5" y="193" width="1.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1158.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (1 samples, 0.03%)</title><rect x="24.4" y="449" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="27.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.12%)</title><rect x="1177.8" y="545" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1180.78" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.18%)</title><rect x="1175.3" y="401" width="2.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1178.27" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.12%)</title><rect x="1173.5" y="545" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1176.47" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment