Skip to content

Instantly share code, notes, and snippets.

@eed3si9n
Last active April 4, 2018 02:43
Show Gist options
  • Save eed3si9n/b5856ff3d987655513380d1a551aa0df to your computer and use it in GitHub Desktop.
Save eed3si9n/b5856ff3d987655513380d1a551aa0df to your computer and use it in GitHub Desktop.
sbt exit on Linux
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="2118" onload="init(evt)" viewBox="0 0 1200 2118" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.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 there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// 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;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.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="2118.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="2101" 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="2101" 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>LinkResolver::runtime_resolve_virtual_method (1 samples, 0.03%)</title><rect x="397.6" y="213" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="400.64" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="33.2" y="741" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="751.5" font-size="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_java_lang_UNIXProcess_forkAndExec (3 samples, 0.09%)</title><rect x="50.0" y="85" width="1.0" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::allocate (4 samples, 0.12%)</title><rect x="368.2" y="373" width="1.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="371.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="532.7" y="1349" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="535.66" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.2" y="1461" width="0.3" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="1471.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1269" width="1.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1279.5" font-size="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/TraversableLike:::flatMap$ (1 samples, 0.03%)</title><rect x="410.6" y="613" width="0.4" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="413.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (1 samples, 0.03%)</title><rect x="942.5" y="965" width="0.4" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="945.51" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (44 samples, 1.27%)</title><rect x="926.1" y="1573" width="15.0" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="929.11" y="1583.5" font-size="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_page_fault (1 samples, 0.03%)</title><rect x="603.1" y="1893" width="0.3" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text text-anchor="" x="606.08" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="25.7" y="309" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::runtime_resolve_special_method (1 samples, 0.03%)</title><rect x="407.5" y="821" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="410.55" y="831.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="181" width="3.1" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="493.0" y="1365" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="496.01" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PredictedCallGenerator::generate (2 samples, 0.06%)</title><rect x="949.7" y="1605" width="0.7" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="952.69" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (2 samples, 0.06%)</title><rect x="938.4" y="1349" width="0.7" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="941.41" y="1359.5" font-size="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 samples, 0.06%)</title><rect x="369.9" y="517" width="0.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="372.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="528.2" y="661" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="671.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.4" y="293" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="323.38" y="303.5" font-size="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 (2 samples, 0.06%)</title><rect x="229.1" y="1973" width="0.7" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="232.11" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::store_oop (1 samples, 0.03%)</title><rect x="946.3" y="1605" width="0.3" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="949.27" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$:::visit$1 (1 samples, 0.03%)</title><rect x="439.3" y="949" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="442.34" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/SettingKey:::mapReferenced (1 samples, 0.03%)</title><rect x="32.6" y="1013" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="1023.5" font-size="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_mmap (1 samples, 0.03%)</title><rect x="380.5" y="549" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="383.54" y="559.5" font-size="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 (1 samples, 0.03%)</title><rect x="466.3" y="453" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="463.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="68.8" y="261" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="271.5" font-size="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 (1 samples, 0.03%)</title><rect x="396.3" y="357" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="367.5" font-size="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 (2 samples, 0.06%)</title><rect x="1045.1" y="1653" width="0.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1048.06" y="1663.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="421" width="1.0" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="533.0" y="1413" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1423.5" font-size="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 samples, 0.06%)</title><rect x="61.3" y="437" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="447.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="63.0" y="197" width="0.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="207.5" font-size="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/tools/nsc/ast/parser/Parsers$Parser:::simpleExpr (1 samples, 0.03%)</title><rect x="323.1" y="373" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="326.12" y="383.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="357" width="2.0" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="367.5" font-size="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/lang/invoke/MethodHandleNatives:::linkMethodHandleConstant (1 samples, 0.03%)</title><rect x="366.9" y="501" width="0.3" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="369.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::throw_to_exit (1 samples, 0.03%)</title><rect x="916.9" y="1829" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="919.88" y="1839.5" font-size="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 (3 samples, 0.09%)</title><rect x="50.0" y="933" width="1.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="943.5" font-size="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/AbstractIterable:::foreach (2 samples, 0.06%)</title><rect x="1100.8" y="821" width="0.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="1103.78" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="49.7" y="917" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="52.65" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="530.3" y="613" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="69.8" y="661" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="21.3" y="197" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="24.28" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="526.5" y="581" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.1" y="357" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="32.14" y="367.5" font-size="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 (4 samples, 0.12%)</title><rect x="393.9" y="565" width="1.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="575.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="117.0" y="1749" width="0.7" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="119.99" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="479.0" y="1429" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="481.99" y="1439.5" font-size="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="1165.4" y="1749" width="1.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="1759.5" font-size="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 (78 samples, 2.26%)</title><rect x="1081.0" y="1301" width="26.6" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="1083.96" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (1 samples, 0.03%)</title><rect x="528.2" y="805" width="0.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="27.8" y="661" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="671.5" font-size="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 (6 samples, 0.17%)</title><rect x="51.4" y="789" width="2.0" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="373" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="383.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.9" y="1013" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$1:::$anonfun$read$1 (1 samples, 0.03%)</title><rect x="1089.8" y="757" width="0.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1092.84" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="521.0" y="1029" width="0.4" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="524.04" y="1039.5" font-size="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/Option:::map (1 samples, 0.03%)</title><rect x="1151.4" y="1701" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1154.37" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="440.4" y="1205" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="443.37" y="1215.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="480.4" y="1205" width="0.3" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_cp_type (1 samples, 0.03%)</title><rect x="365.8" y="53" width="0.4" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="368.85" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find (1 samples, 0.03%)</title><rect x="476.9" y="1157" width="0.4" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="479.94" y="1167.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="149" width="1.0" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="159.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="24.0" y="725" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="27.02" y="735.5" font-size="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_sigmask (1 samples, 0.03%)</title><rect x="308.4" y="2021" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="311.42" y="2031.5" font-size="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/TraversableOnce$$Lambda$855/664656217:::apply (9 samples, 0.26%)</title><rect x="377.5" y="501" width="3.0" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="380.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokespecial (1 samples, 0.03%)</title><rect x="391.1" y="645" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="394.14" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="1079.2" y="1557" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="1082.25" y="1567.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSite (8 samples, 0.23%)</title><rect x="1114.5" y="1541" width="2.7" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text text-anchor="" x="1117.46" y="1551.5" font-size="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 (3 samples, 0.09%)</title><rect x="78.0" y="821" width="1.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="831.5" font-size="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:::map (2 samples, 0.06%)</title><rect x="1088.8" y="805" width="0.7" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="1091.82" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="323.5" y="245" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="326.46" y="255.5" font-size="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 (1 samples, 0.03%)</title><rect x="407.2" y="1045" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="410.21" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AttributeKey$$anon$1:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="402.4" y="405" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="405.42" y="415.5" font-size="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 (5 samples, 0.14%)</title><rect x="321.1" y="693" width="1.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="703.5" font-size="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 samples, 0.06%)</title><rect x="34.3" y="949" width="0.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="37.27" y="959.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1813" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1823.5" font-size="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/security/DigestInputStream:::read (1 samples, 0.03%)</title><rect x="390.1" y="885" width="0.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="393.12" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$7:::transform (1 samples, 0.03%)</title><rect x="442.1" y="853" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="445.07" y="863.5" font-size="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/Set$Set2:::foreach (1 samples, 0.03%)</title><rect x="1098.4" y="725" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1101.39" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="533.0" y="1269" width="0.3" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.7" y="517" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="79.66" y="527.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="773" width="0.3" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::get_method_blocks (1 samples, 0.03%)</title><rect x="921.7" y="1637" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="924.66" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_special (1 samples, 0.03%)</title><rect x="440.4" y="1013" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="443.37" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_special (1 samples, 0.03%)</title><rect x="445.5" y="1061" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="448.49" y="1071.5" font-size="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="83.8" y="1893" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="86.84" y="1903.5" font-size="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/lang/String:::codePointAt (3 samples, 0.09%)</title><rect x="531.6" y="1365" width="1.1" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="1375.5" font-size="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-25316.map] (2 samples, 0.06%)</title><rect x="1095.0" y="773" width="0.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1097.97" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.03%)</title><rect x="164.5" y="1973" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="167.51" y="1983.5" font-size="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="180.6" y="1925" width="1.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="183.57" y="1935.5" font-size="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 (2 samples, 0.06%)</title><rect x="1159.2" y="1653" width="0.7" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1162.24" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::clone_loop (1 samples, 0.03%)</title><rect x="826.6" y="1765" width="0.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="829.63" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_static_call_or_null (1 samples, 0.03%)</title><rect x="987.0" y="1413" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="989.95" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (2 samples, 0.06%)</title><rect x="79.7" y="565" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="575.5" font-size="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/reflect/internal/Symbols$Symbol:::info (1 samples, 0.03%)</title><rect x="21.3" y="293" width="0.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="24.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/IsoFormats$$anon$2:::write (1 samples, 0.03%)</title><rect x="1101.1" y="645" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="1104.12" y="655.5" font-size="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 (2 samples, 0.06%)</title><rect x="1148.0" y="1365" width="0.6" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1150.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (1 samples, 0.03%)</title><rect x="914.8" y="1653" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="917.83" y="1663.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="59.9" y="53" width="0.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="62.91" y="63.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="436.3" y="213" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="223.5" font-size="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="1055.3" y="1765" width="0.4" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1058.32" y="1775.5" font-size="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/lang/invoke/MethodHandles$Lookup:::getDirectMethodForConstant (1 samples, 0.03%)</title><rect x="450.3" y="1173" width="0.3" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="453.28" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_dynamic_call_site_invoker (1 samples, 0.03%)</title><rect x="33.2" y="341" width="0.4" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="32.9" y="277" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (2 samples, 0.06%)</title><rect x="71.2" y="1141" width="0.7" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (9 samples, 0.26%)</title><rect x="932.3" y="1157" width="3.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="935.26" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.03%)</title><rect x="205.9" y="1765" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="208.87" y="1775.5" font-size="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="1009.5" y="1797" width="1.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1012.51" y="1807.5" font-size="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$$Lambda$1475/1137401656:::apply (2 samples, 0.06%)</title><rect x="53.4" y="949" width="0.7" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="959.5" font-size="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 (1 samples, 0.03%)</title><rect x="28.8" y="485" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="320.7" y="581" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="591.5" font-size="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/reflect/internal/tpe/FindMembers$FindMemberBase:::searchConcreteThenDeferred (1 samples, 0.03%)</title><rect x="473.2" y="1125" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="476.18" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1525" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1535.5" font-size="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/lang/Class:::getConstructor0 (1 samples, 0.03%)</title><rect x="437.3" y="1189" width="0.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="1199.5" font-size="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="149.8" y="1893" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="152.81" y="1903.5" font-size="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="1114.8" y="1077" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="1117.80" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="27.8" y="821" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokestatic (1 samples, 0.03%)</title><rect x="70.2" y="629" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.5" y="613" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="623.5" font-size="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 samples, 0.06%)</title><rect x="72.2" y="917" width="0.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="75.21" y="927.5" font-size="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 (1 samples, 0.03%)</title><rect x="171.0" y="1877" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="174.00" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="458.1" y="437" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="447.5" font-size="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 (2 samples, 0.06%)</title><rect x="229.1" y="1925" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="232.11" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (3 samples, 0.09%)</title><rect x="66.7" y="933" width="1.1" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="1154.4" y="1509" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="1157.45" y="1519.5" font-size="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 (1 samples, 0.03%)</title><rect x="395.9" y="613" width="0.4" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="398.93" y="623.5" font-size="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 samples, 0.06%)</title><rect x="63.3" y="1173" width="0.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="27.8" y="901" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="911.5" font-size="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 samples, 0.06%)</title><rect x="63.3" y="581" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="591.5" font-size="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 (7 samples, 0.20%)</title><rect x="460.5" y="1365" width="2.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="1375.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="661" width="1.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="671.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="492.0" y="1141" width="0.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="494.98" y="1151.5" font-size="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 (1 samples, 0.03%)</title><rect x="450.6" y="1141" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1151.5" font-size="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 (8 samples, 0.23%)</title><rect x="51.4" y="1157" width="2.7" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPoolCacheEntry::set_direct_call (1 samples, 0.03%)</title><rect x="380.5" y="693" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="383.54" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder:::addField (7 samples, 0.20%)</title><rect x="1101.5" y="949" width="2.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="1104.47" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (2 samples, 0.06%)</title><rect x="446.9" y="693" width="0.6" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_method (4 samples, 0.12%)</title><rect x="988.3" y="1605" width="1.4" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="991.32" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GenericGrowableArray::raw_allocate (1 samples, 0.03%)</title><rect x="819.8" y="1861" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="822.80" y="1871.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="1109.3" y="1253" width="0.4" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1263.5" font-size="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 (6 samples, 0.17%)</title><rect x="329.3" y="2037" width="2.0" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="332.27" y="2047.5" font-size="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/StringLike$$Lambda$602/1419166053:::apply (1 samples, 0.03%)</title><rect x="319.7" y="421" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="71.9" y="469" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="529.9" y="789" width="0.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="532.92" y="799.5" font-size="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="1048.1" y="1845" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1051.14" y="1855.5" font-size="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 (1 samples, 0.03%)</title><rect x="399.3" y="645" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="402.35" y="655.5" font-size="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 (3 samples, 0.09%)</title><rect x="58.9" y="181" width="1.0" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (2 samples, 0.06%)</title><rect x="488.9" y="1589" width="0.7" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="491.90" y="1599.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::spinInnerClass (1 samples, 0.03%)</title><rect x="33.2" y="149" width="0.4" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder:::beginObject (1 samples, 0.03%)</title><rect x="1084.7" y="597" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="607.5" font-size="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="173.1" y="1925" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="176.05" y="1935.5" font-size="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 (1 samples, 0.03%)</title><rect x="526.5" y="389" width="0.3" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="399.5" font-size="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/reflect/internal/Types$Type:::findMember (1 samples, 0.03%)</title><rect x="36.0" y="325" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="38.98" y="335.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.6" y="1685" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1695.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="319.7" y="501" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="24.4" y="165" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="27.36" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AdvancedThresholdPolicy::call_event (1 samples, 0.03%)</title><rect x="386.0" y="725" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="389.01" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_field_instructions (1 samples, 0.03%)</title><rect x="1109.0" y="1413" width="0.3" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="1111.99" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="49.3" y="421" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="1109.3" y="1189" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unmap_single_vma (1 samples, 0.03%)</title><rect x="125.2" y="1909" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="128.20" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (4 samples, 0.12%)</title><rect x="471.1" y="853" width="1.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="474.13" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (3 samples, 0.09%)</title><rect x="436.3" y="901" width="1.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="459.5" y="581" width="0.3" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="462.51" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="66.7" y="357" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="367.5" font-size="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 (1 samples, 0.03%)</title><rect x="68.8" y="789" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::clone (1 samples, 0.03%)</title><rect x="927.8" y="1461" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="930.82" y="1471.5" font-size="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 (1 samples, 0.03%)</title><rect x="376.8" y="725" width="0.3" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="379.78" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (10 samples, 0.29%)</title><rect x="527.9" y="1429" width="3.4" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="530.87" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1797" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1807.5" font-size="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 (1 samples, 0.03%)</title><rect x="447.9" y="885" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="450.89" y="895.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="597" width="1.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.0" y="1013" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="38.98" y="1023.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.5" y="1125" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="73.50" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="277" width="0.4" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="287.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="458.1" y="421" width="0.4" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="431.5" font-size="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_many (1 samples, 0.03%)</title><rect x="254.4" y="1861" width="0.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="257.41" y="1871.5" font-size="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="148.4" y="1925" width="0.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="151.44" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dict::Insert (1 samples, 0.03%)</title><rect x="638.3" y="1749" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="641.29" y="1759.5" font-size="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.14%)</title><rect x="208.6" y="1989" width="1.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="211.60" y="1999.5" font-size="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 (1 samples, 0.03%)</title><rect x="459.5" y="693" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="462.51" y="703.5" font-size="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/runtime/BoxesRunTime:::equals2 (1 samples, 0.03%)</title><rect x="32.2" y="37" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.03%)</title><rect x="943.2" y="1189" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="946.20" y="1199.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="613" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="623.5" font-size="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 (1 samples, 0.03%)</title><rect x="526.2" y="1093" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="529.16" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList:::$anonfun$toList$1 (6 samples, 0.17%)</title><rect x="484.1" y="1525" width="2.1" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="487.12" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (2 samples, 0.06%)</title><rect x="1185.2" y="1765" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1188.21" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (2 samples, 0.06%)</title><rect x="37.0" y="533" width="0.7" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="76.3" y="133" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="492.7" y="1221" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="495.67" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.7" y="1045" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RegionNode::Ideal (3 samples, 0.09%)</title><rect x="907.0" y="1861" width="1.0" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="909.96" y="1871.5" font-size="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 (1 samples, 0.03%)</title><rect x="21.3" y="229" width="0.3" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="24.28" y="239.5" font-size="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 (6 samples, 0.17%)</title><rect x="40.1" y="949" width="2.0" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="36.3" y="405" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="415.5" font-size="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 (35 samples, 1.01%)</title><rect x="331.7" y="1845" width="11.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="334.66" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="520.4" y="1605" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="523.35" y="1615.5" font-size="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="182.3" y="1685" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="185.28" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="70.2" y="565" width="0.3" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="575.5" font-size="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_open (1 samples, 0.03%)</title><rect x="498.5" y="1317" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="501.48" y="1327.5" font-size="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/lang/String:::codePointAt (1 samples, 0.03%)</title><rect x="533.0" y="1365" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1375.5" font-size="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 (24 samples, 0.70%)</title><rect x="1089.8" y="981" width="8.2" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="1092.84" y="991.5" font-size="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:::map (1 samples, 0.03%)</title><rect x="1084.7" y="773" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="783.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSite (1 samples, 0.03%)</title><rect x="322.8" y="645" width="0.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="494.0" y="1477" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="497.03" y="1487.5" font-size="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 (1 samples, 0.03%)</title><rect x="445.2" y="1109" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="32.9" y="245" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="255.5" font-size="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="1132.6" y="1189" width="0.3" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1135.57" y="1199.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="457.1" y="949" width="0.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="460.11" y="959.5" font-size="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 samples, 0.06%)</title><rect x="78.0" y="709" width="0.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::allocate (1 samples, 0.03%)</title><rect x="530.6" y="389" width="0.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="20.3" y="501" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="23.25" y="511.5" font-size="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 (5 samples, 0.14%)</title><rect x="38.4" y="101" width="1.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="456.1" y="1013" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="459.09" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/URLClassPath:::access$100 (1 samples, 0.03%)</title><rect x="35.0" y="469" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply:::mapReferenced (1 samples, 0.03%)</title><rect x="441.7" y="565" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="444.73" y="575.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="933" width="2.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="943.5" font-size="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="181.9" y="1925" width="1.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="184.94" y="1935.5" font-size="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="1042.0" y="1845" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1044.99" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="486.9" y="645" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="489.85" y="655.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="17.2" y="69" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="20.18" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply:::apply (2 samples, 0.06%)</title><rect x="1088.1" y="853" width="0.7" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="1091.13" y="863.5" font-size="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 (5 samples, 0.14%)</title><rect x="49.3" y="1093" width="1.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="1103.5" font-size="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 (6 samples, 0.17%)</title><rect x="317.0" y="1781" width="2.0" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_special_call (1 samples, 0.03%)</title><rect x="33.6" y="117" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="73.6" y="917" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="927.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope:::lookupEntry (1 samples, 0.03%)</title><rect x="446.2" y="1221" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="449.18" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.2" y="757" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke (6 samples, 0.17%)</title><rect x="40.1" y="741" width="2.0" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="751.5" font-size="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 (1 samples, 0.03%)</title><rect x="496.4" y="1653" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="499.43" y="1663.5" font-size="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_mmap (1 samples, 0.03%)</title><rect x="174.8" y="1861" width="0.3" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="177.76" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="495.1" y="1509" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="498.06" y="1519.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1333" width="1.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1343.5" font-size="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-25316.map] (3 samples, 0.09%)</title><rect x="317.0" y="581" width="1.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="591.5" font-size="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 samples, 0.06%)</title><rect x="63.3" y="1077" width="0.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::kill_dead_locals (1 samples, 0.03%)</title><rect x="963.7" y="1781" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="966.71" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (5 samples, 0.14%)</title><rect x="435.6" y="1141" width="1.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="438.58" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$:::directDeps (1 samples, 0.03%)</title><rect x="1107.3" y="981" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="454.0" y="1269" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="457.04" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="381.9" y="789" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="384.91" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="24.0" y="613" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="27.02" y="623.5" font-size="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.26%)</title><rect x="185.7" y="1941" width="3.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="188.70" y="1951.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1781" width="2.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="450.6" y="1285" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1295.5" font-size="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/AbstractIterator:::foreach (3 samples, 0.09%)</title><rect x="1102.5" y="757" width="1.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1105.49" y="767.5" font-size="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/net/URLClassLoader$1:::run (6 samples, 0.17%)</title><rect x="1139.8" y="1381" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1142.75" y="1391.5" font-size="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="69.5" y="229" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="239.5" font-size="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 (1 samples, 0.03%)</title><rect x="78.4" y="165" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="81.37" y="175.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="437.3" y="853" width="0.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="863.5" font-size="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_java_lang_UNIXProcess_forkAndExec (1 samples, 0.03%)</title><rect x="60.6" y="245" width="0.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="63.59" y="255.5" font-size="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 (1 samples, 0.03%)</title><rect x="1163.3" y="1765" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1166.34" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.3" y="885" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="531.0" y="1157" width="0.3" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="533.95" y="1167.5" font-size="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 (11 samples, 0.32%)</title><rect x="55.1" y="1061" width="3.8" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="1071.5" font-size="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="40.4" y="53" width="0.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="43.42" y="63.5" font-size="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/Set$Set3:::contains (1 samples, 0.03%)</title><rect x="36.3" y="805" width="0.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::match_sfpt (2 samples, 0.06%)</title><rect x="631.8" y="1861" width="0.7" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="634.79" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="530.3" y="1237" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstMethod::allocate (1 samples, 0.03%)</title><rect x="485.8" y="933" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="488.83" y="943.5" font-size="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 samples, 0.06%)</title><rect x="79.7" y="661" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (21 samples, 0.61%)</title><rect x="953.5" y="1797" width="7.1" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="956.45" y="1807.5" font-size="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 (1 samples, 0.03%)</title><rect x="405.2" y="693" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="408.16" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="33.6" y="165" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="175.5" font-size="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 (1 samples, 0.03%)</title><rect x="62.6" y="101" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="65.64" y="111.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.0" y="533" width="0.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="38.98" y="543.5" font-size="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 (1 samples, 0.03%)</title><rect x="437.6" y="917" width="0.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="440.63" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.03%)</title><rect x="1165.4" y="1509" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1168.39" y="1519.5" font-size="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 (5 samples, 0.14%)</title><rect x="1132.6" y="1349" width="1.7" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text text-anchor="" x="1135.57" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="366.2" y="373" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="369.19" y="383.5" font-size="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 samples, 0.06%)</title><rect x="26.4" y="149" width="0.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="29.41" y="159.5" font-size="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$$Lambda$1475/1137401656:::apply (1 samples, 0.03%)</title><rect x="78.4" y="325" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="81.37" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="466.7" y="517" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="469.69" y="527.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.0" y="629" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (2 samples, 0.06%)</title><rect x="53.4" y="581" width="0.7" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (2 samples, 0.06%)</title><rect x="520.7" y="1701" width="0.7" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1711.5" font-size="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 (1 samples, 0.03%)</title><rect x="474.5" y="1093" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (2 samples, 0.06%)</title><rect x="61.3" y="629" width="0.7" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SignatureVerifier::is_valid_type (1 samples, 0.03%)</title><rect x="491.0" y="1445" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="493.96" y="1455.5" font-size="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/util/jar/JarFile:::getInputStream (1 samples, 0.03%)</title><rect x="532.7" y="1301" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="535.66" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___execve (1 samples, 0.03%)</title><rect x="61.6" y="197" width="0.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="64.62" y="207.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="77.7" y="453" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="463.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="31.2" y="293" width="0.3" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="69.8" y="757" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="767.5" font-size="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 (27 samples, 0.78%)</title><rect x="510.8" y="1461" width="9.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="513.78" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invokedynamic (1 samples, 0.03%)</title><rect x="321.1" y="101" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="111.5" font-size="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/reflect/internal/Positions:::atPos (1 samples, 0.03%)</title><rect x="35.6" y="69" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="38.64" y="79.5" font-size="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="179.2" y="1765" width="1.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="480.4" y="917" width="0.3" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="927.5" font-size="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="1159.2" y="1509" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1162.24" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::iterate_all_blocks (57 samples, 1.65%)</title><rect x="981.8" y="1813" width="19.5" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="984.83" y="1823.5" font-size="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 (52 samples, 1.51%)</title><rect x="264.3" y="1941" width="17.8" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="267.32" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="1081.3" y="469" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="374.0" y="773" width="0.4" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="377.05" y="783.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="459.2" y="901" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="462.17" y="911.5" font-size="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 (3 samples, 0.09%)</title><rect x="460.5" y="837" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="847.5" font-size="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 samples, 0.06%)</title><rect x="78.0" y="405" width="0.7" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="32.6" y="117" width="0.3" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1552/1252204540:::apply (1 samples, 0.03%)</title><rect x="417.5" y="773" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="420.46" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (1 samples, 0.03%)</title><rect x="69.8" y="53" width="0.4" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="375.1" y="645" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="655.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="34.3" y="213" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="37.27" y="223.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="869" width="3.1" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PredictedCallGenerator::generate (1 samples, 0.03%)</title><rect x="949.0" y="1301" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="952.01" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="386.7" y="597" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="389.70" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="68.8" y="981" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find (1 samples, 0.03%)</title><rect x="985.2" y="1445" width="0.4" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="988.24" y="1455.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.2" y="437" width="0.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.03%)</title><rect x="405.2" y="389" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="408.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_dynamic_call_site_invoker (2 samples, 0.06%)</title><rect x="458.5" y="901" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="461.48" y="911.5" font-size="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 samples, 0.06%)</title><rect x="53.4" y="453" width="0.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="463.5" font-size="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 (223 samples, 6.46%)</title><rect x="362.1" y="1205" width="76.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="365.09" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpre..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/IO$:::directoryURI (1 samples, 0.03%)</title><rect x="442.4" y="597" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="445.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project:::copy (1 samples, 0.03%)</title><rect x="74.3" y="101" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="77.26" y="111.5" font-size="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 (1 samples, 0.03%)</title><rect x="21.3" y="277" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="24.28" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="49.3" y="485" width="0.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0:::mapValue (2 samples, 0.06%)</title><rect x="427.7" y="1077" width="0.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="430.72" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_interfaces (1 samples, 0.03%)</title><rect x="67.8" y="805" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="524.5" y="1109" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="527.46" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerificationType::is_reference_assignable_from (1 samples, 0.03%)</title><rect x="398.0" y="245" width="0.3" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="400.98" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (2 samples, 0.06%)</title><rect x="458.5" y="885" width="0.7" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="461.48" y="895.5" font-size="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.87 (1 samples, 0.03%)</title><rect x="63.3" y="117" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="127.5" font-size="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_ssse3_back (1 samples, 0.03%)</title><rect x="546.3" y="1941" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="549.33" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="525.1" y="533" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="412.0" y="661" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="414.99" y="671.5" font-size="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-25316.map] (2 samples, 0.06%)</title><rect x="66.1" y="1237" width="0.6" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="1247.5" font-size="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_op (1 samples, 0.03%)</title><rect x="1132.6" y="1205" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="1135.57" y="1215.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.2" y="837" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="847.5" font-size="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 samples, 0.06%)</title><rect x="71.2" y="597" width="0.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="607.5" font-size="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/tools/nsc/ast/parser/Parsers$Parser:::$anonfun$expr$1 (1 samples, 0.03%)</title><rect x="395.9" y="469" width="0.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="398.93" y="479.5" font-size="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 samples, 0.06%)</title><rect x="468.7" y="1317" width="0.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="471.74" y="1327.5" font-size="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 (2 samples, 0.06%)</title><rect x="1172.2" y="1877" width="0.7" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1175.22" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_exec (1 samples, 0.03%)</title><rect x="68.5" y="261" width="0.3" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="71.45" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (1 samples, 0.03%)</title><rect x="33.2" y="549" width="0.4" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="559.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="508.4" y="1237" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="511.39" y="1247.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.6" y="757" width="0.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="38.64" y="767.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1125.1" y="1717" width="0.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1128.05" y="1727.5" font-size="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 (1 samples, 0.03%)</title><rect x="1142.1" y="1461" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1145.14" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_methods (1 samples, 0.03%)</title><rect x="521.7" y="1701" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="524.72" y="1711.5" font-size="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_execveat_common.isra.31 (1 samples, 0.03%)</title><rect x="70.2" y="277" width="0.3" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method_index (1 samples, 0.03%)</title><rect x="953.5" y="1413" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="956.45" y="1423.5" font-size="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 samples, 0.03%)</title><rect x="398.3" y="613" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="401.32" y="623.5" font-size="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 (1 samples, 0.03%)</title><rect x="1107.3" y="1253" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol::Symbol (1 samples, 0.03%)</title><rect x="437.3" y="501" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init:::$anonfun$delegateForKey$2$adapted (1 samples, 0.03%)</title><rect x="411.7" y="693" width="0.3" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="414.65" y="703.5" font-size="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 (5 samples, 0.14%)</title><rect x="321.1" y="757" width="1.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="767.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="469.4" y="1237" width="0.4" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="472.42" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="370.6" y="405" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="373.63" y="415.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1637" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1647.5" font-size="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 (2 samples, 0.06%)</title><rect x="992.4" y="1493" width="0.7" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="995.42" y="1503.5" font-size="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="80.8" y="1893" width="1.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="83.76" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="24.4" y="453" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="27.36" y="463.5" font-size="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 (1 samples, 0.03%)</title><rect x="169.6" y="1813" width="0.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="172.63" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="14.8" y="117" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="17.79" y="127.5" font-size="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 (1 samples, 0.03%)</title><rect x="1100.1" y="853" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1103.10" y="863.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="453" width="0.7" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="463.5" font-size="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="1042.0" y="1781" width="1.4" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="1044.99" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="494.0" y="1429" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="497.03" y="1439.5" font-size="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 samples, 0.06%)</title><rect x="71.2" y="1173" width="0.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CmpPNode::Ideal (1 samples, 0.03%)</title><rect x="917.6" y="1781" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="920.56" y="1791.5" font-size="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 (1 samples, 0.03%)</title><rect x="447.9" y="933" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="450.89" y="943.5" font-size="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="1136.7" y="1317" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1139.67" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Instruction::as_Phi (1 samples, 0.03%)</title><rect x="1008.8" y="1829" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1011.83" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="480.4" y="1333" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.6" y="261" width="0.3" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text text-anchor="" x="22.57" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeInstPtr::add_offset (1 samples, 0.03%)</title><rect x="633.5" y="1813" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="636.50" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="487.2" y="901" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="490.20" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (2 samples, 0.06%)</title><rect x="935.7" y="1045" width="0.7" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="938.68" y="1055.5" font-size="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 (3 samples, 0.09%)</title><rect x="50.0" y="853" width="1.0" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="863.5" font-size="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 (1 samples, 0.03%)</title><rect x="381.9" y="453" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="384.91" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InlineCacheBuffer (1 samples, 0.03%)</title><rect x="381.6" y="677" width="0.3" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="384.57" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokestatic (1 samples, 0.03%)</title><rect x="479.0" y="1493" width="0.3" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="481.99" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/DisabledFormats$$anon$1:::read (1 samples, 0.03%)</title><rect x="1093.9" y="805" width="0.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="1096.95" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_interfaces (3 samples, 0.09%)</title><rect x="531.6" y="1205" width="1.1" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="1215.5" font-size="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 (1 samples, 0.03%)</title><rect x="1126.4" y="1701" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1129.42" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="451.0" y="1285" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="453.96" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (6 samples, 0.17%)</title><rect x="40.1" y="773" width="2.0" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::resolve_bootstrap_specifier_at_impl (5 samples, 0.14%)</title><rect x="1112.7" y="1621" width="1.8" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1115.75" y="1631.5" font-size="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/lang/invoke/MethodType:::checkPtypes (1 samples, 0.03%)</title><rect x="318.7" y="389" width="0.3" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1397" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1407.5" font-size="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 samples, 0.06%)</title><rect x="29.8" y="197" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="32.83" y="207.5" font-size="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 samples, 0.06%)</title><rect x="317.0" y="229" width="0.6" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::allocate_symbol (1 samples, 0.03%)</title><rect x="490.3" y="341" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="493.27" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="452.7" y="1349" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="455.67" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="917" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="927.5" font-size="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/reflect/internal/SymbolTable:::$anonfun$openPackageModule$1 (1 samples, 0.03%)</title><rect x="494.7" y="1173" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="497.72" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_dynamic_call (1 samples, 0.03%)</title><rect x="405.8" y="1029" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="408.84" y="1039.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1042.7" y="1669" width="0.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1045.67" y="1679.5" font-size="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 (5 samples, 0.14%)</title><rect x="40.4" y="181" width="1.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="43.42" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="42.1" y="85" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (1 samples, 0.03%)</title><rect x="487.2" y="789" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="490.20" y="799.5" font-size="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 (2 samples, 0.06%)</title><rect x="329.6" y="1909" width="0.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="332.61" y="1919.5" font-size="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="329.3" y="2021" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="332.27" y="2031.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.5" y="149" width="0.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="32.48" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___execve (1 samples, 0.03%)</title><rect x="60.6" y="197" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="63.59" y="207.5" font-size="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 (2 samples, 0.06%)</title><rect x="85.2" y="1909" width="0.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="88.20" y="1919.5" font-size="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="154.6" y="1973" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="157.59" y="1983.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.0" y="437" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="447.5" font-size="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 samples, 0.06%)</title><rect x="393.9" y="341" width="0.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="351.5" font-size="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 (180 samples, 5.21%)</title><rect x="14.4" y="2021" width="61.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="2031.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="15.8" y="261" width="0.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="18.81" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="480.4" y="1301" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_static_call (2 samples, 0.06%)</title><rect x="481.0" y="1269" width="0.7" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="484.04" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="20.3" y="133" width="0.3" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="23.25" y="143.5" font-size="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 (1 samples, 0.03%)</title><rect x="25.4" y="261" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="28.38" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="493.0" y="1429" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="496.01" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="313.5" y="1797" width="0.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="316.55" y="1807.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.5" y="229" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="32.48" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_special_call (1 samples, 0.03%)</title><rect x="22.0" y="117" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="24.96" y="127.5" font-size="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 (2 samples, 0.06%)</title><rect x="1041.0" y="1877" width="0.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1043.96" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::clone_map (1 samples, 0.03%)</title><rect x="916.9" y="1797" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="919.88" y="1807.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="997" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (153 samples, 4.43%)</title><rect x="916.2" y="1861" width="52.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="919.19" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Parse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (1 samples, 0.03%)</title><rect x="70.5" y="1221" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="73.50" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerificationType::is_reference_assignable_from (1 samples, 0.03%)</title><rect x="440.0" y="1125" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="443.02" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="1092.6" y="709" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1095.58" y="719.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.0" y="869" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="38.98" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::recompute_dom_depth (1 samples, 0.03%)</title><rect x="827.0" y="1813" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="829.98" y="1823.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="485" width="0.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="495.5" font-size="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 (1 samples, 0.03%)</title><rect x="405.2" y="597" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="408.16" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="1143.9" y="1365" width="0.3" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1146.85" y="1375.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="949" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="75.6" y="1621" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="480.0" y="1269" width="0.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="483.02" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_field (1 samples, 0.03%)</title><rect x="935.3" y="1141" width="0.4" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="938.34" y="1151.5" font-size="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-25316.map] (2 samples, 0.06%)</title><rect x="1077.5" y="1349" width="0.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1080.54" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (1 samples, 0.03%)</title><rect x="454.7" y="1381" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="457.72" y="1391.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="165" width="0.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (19 samples, 0.55%)</title><rect x="264.7" y="1781" width="6.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="267.66" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeNode::cmp (1 samples, 0.03%)</title><rect x="960.3" y="1637" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="963.29" y="1647.5" font-size="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 (7 samples, 0.20%)</title><rect x="256.8" y="1813" width="2.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="259.80" y="1823.5" font-size="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 (1 samples, 0.03%)</title><rect x="420.5" y="917" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="423.54" y="927.5" font-size="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 (3 samples, 0.09%)</title><rect x="28.8" y="581" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="78.0" y="53" width="0.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="321.4" y="165" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="324.41" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_method (1 samples, 0.03%)</title><rect x="72.9" y="69" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="79.5" font-size="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 (1 samples, 0.03%)</title><rect x="72.2" y="533" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="75.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="468.7" y="1221" width="0.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="471.74" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.9" y="661" width="0.3" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="671.5" font-size="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 (7 samples, 0.20%)</title><rect x="45.6" y="741" width="2.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="48.55" y="751.5" font-size="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:::flatMap (1 samples, 0.03%)</title><rect x="373.0" y="773" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="376.02" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="385.7" y="533" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="543.5" font-size="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 (1 samples, 0.03%)</title><rect x="965.8" y="1541" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="968.76" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParallelTaskTerminator::offer_termination (1 samples, 0.03%)</title><rect x="600.3" y="1973" width="0.4" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="603.34" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_super_or_fail (2 samples, 0.06%)</title><rect x="525.1" y="997" width="0.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="471.5" y="597" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="474.47" y="607.5" font-size="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_dup2 (1 samples, 0.03%)</title><rect x="500.5" y="1333" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="503.53" y="1343.5" font-size="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 (2 samples, 0.06%)</title><rect x="135.8" y="1829" width="0.7" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="138.79" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="1109.3" y="549" width="0.4" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="559.5" font-size="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 (1 samples, 0.03%)</title><rect x="68.5" y="69" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="71.45" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="391.5" y="661" width="0.3" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="394.48" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="1109.0" y="1525" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1111.99" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="380.2" y="357" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="383.20" y="367.5" font-size="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.26%)</title><rect x="256.8" y="1909" width="3.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="259.80" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (2 samples, 0.06%)</title><rect x="525.1" y="1333" width="0.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="533" width="0.4" height="15.0" fill="rgb(202,52,52)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ChunkPool::allocate (1 samples, 0.03%)</title><rect x="1177.4" y="1845" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="1180.35" y="1855.5" font-size="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 (1 samples, 0.03%)</title><rect x="62.3" y="213" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="65.30" y="223.5" font-size="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="743.6" y="1781" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="746.57" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="372.3" y="309" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="375.34" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.9" y="133" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokedynamic (1 samples, 0.03%)</title><rect x="391.5" y="645" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="394.48" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerificationType::is_reference_assignable_from (1 samples, 0.03%)</title><rect x="69.1" y="469" width="0.4" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="479.5" font-size="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="506.3" y="1029" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="509.34" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="36.3" y="437" width="0.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="447.5" font-size="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_context_sched_in (1 samples, 0.03%)</title><rect x="1142.1" y="1445" width="0.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="1145.14" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DrainStacksCompactionTask::do_it (18 samples, 0.52%)</title><rect x="534.0" y="1989" width="6.2" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="537.03" y="1999.5" font-size="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_safe (4 samples, 0.12%)</title><rect x="96.5" y="1925" width="1.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="99.48" y="1935.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.6" y="965" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="439.7" y="821" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="462.9" y="677" width="0.4" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="687.5" font-size="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.87 (3 samples, 0.09%)</title><rect x="594.5" y="1781" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="597.53" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Metaspace::allocate (1 samples, 0.03%)</title><rect x="439.7" y="197" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::interpreter_callee_receiver_addr (1 samples, 0.03%)</title><rect x="480.7" y="1525" width="0.3" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="483.70" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inflate (1 samples, 0.03%)</title><rect x="80.4" y="53" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="83.42" y="63.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.3" y="565" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="69.8" y="1013" width="0.4" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="530.6" y="1189" width="0.4" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool_entries (1 samples, 0.03%)</title><rect x="477.6" y="1077" width="0.4" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="480.62" y="1087.5" font-size="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_context_sched_in (17 samples, 0.49%)</title><rect x="213.0" y="1845" width="5.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="216.05" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="24.4" y="613" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="27.36" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="495.7" y="1573" width="0.4" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="498.74" y="1583.5" font-size="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 (3 samples, 0.09%)</title><rect x="42.5" y="117" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="127.5" font-size="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="1168.1" y="1845" width="1.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="1171.12" y="1855.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::buildCallSite (1 samples, 0.03%)</title><rect x="392.5" y="485" width="0.4" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="395.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="270.8" y="1733" width="0.4" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text text-anchor="" x="273.82" y="1743.5" font-size="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/reflect/runtime/TwoWayCaches$TwoWayCache:::$anonfun$toScala$1 (1 samples, 0.03%)</title><rect x="474.2" y="373" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="383.5" font-size="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_java_lang_Class_forName0 (1 samples, 0.03%)</title><rect x="446.2" y="1109" width="0.3" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text text-anchor="" x="449.18" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.9" y="581" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="34.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (17 samples, 0.49%)</title><rect x="414.0" y="949" width="5.9" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="417.04" y="959.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.3" y="917" width="0.4" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.03%)</title><rect x="914.8" y="1781" width="0.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="917.83" y="1791.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="440.0" y="949" width="0.4" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="443.02" y="959.5" font-size="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/lang/invoke/LambdaForm$MH/1218593486:::invoker (1 samples, 0.03%)</title><rect x="1122.7" y="1557" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1125.66" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="1116.8" y="1157" width="0.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="1119.85" y="1167.5" font-size="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 (1 samples, 0.03%)</title><rect x="28.1" y="421" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="31.12" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="496.8" y="1605" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="458.1" y="629" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.0" y="581" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="80.00" y="591.5" font-size="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 (10 samples, 0.29%)</title><rect x="14.4" y="517" width="3.5" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (2 samples, 0.06%)</title><rect x="63.3" y="757" width="0.7" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="767.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="32.6" y="309" width="0.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="1349" width="0.4" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="1359.5" font-size="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 samples, 0.06%)</title><rect x="63.3" y="965" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="975.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="458.1" y="373" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="383.5" font-size="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 (1 samples, 0.03%)</title><rect x="1110.4" y="1493" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1113.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="19.9" y="277" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="22.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciObjectFactory::create_new_object (1 samples, 0.03%)</title><rect x="988.0" y="1573" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="990.98" y="1583.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="1133.3" y="1029" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1136.26" y="1039.5" font-size="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 samples, 0.06%)</title><rect x="79.0" y="645" width="0.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="82.05" y="655.5" font-size="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/runtime/Statics:::anyHash (1 samples, 0.03%)</title><rect x="374.7" y="597" width="0.4" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="377.73" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.3" y="645" width="0.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="496.8" y="1557" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1567.5" font-size="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 (7 samples, 0.20%)</title><rect x="159.0" y="1877" width="2.4" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="162.04" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="323.5" y="453" width="0.3" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="326.46" y="463.5" font-size="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 (1 samples, 0.03%)</title><rect x="251.3" y="1797" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="254.33" y="1807.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="530.3" y="1205" width="0.3" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVMState::of_depth (1 samples, 0.03%)</title><rect x="932.6" y="629" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="935.60" y="639.5" font-size="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 (13 samples, 0.38%)</title><rect x="377.1" y="821" width="4.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="380.13" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$7:::transform (1 samples, 0.03%)</title><rect x="442.8" y="725" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="445.76" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="533.0" y="1589" width="0.3" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1599.5" font-size="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 (4 samples, 0.12%)</title><rect x="396.3" y="437" width="1.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="23.7" y="693" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="703.5" font-size="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 samples, 0.06%)</title><rect x="61.3" y="965" width="0.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="975.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="493.3" y="1173" width="0.4" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="496.35" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (1 samples, 0.03%)</title><rect x="958.9" y="1013" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="961.92" y="1023.5" font-size="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/lang/String:::codePointAt (1 samples, 0.03%)</title><rect x="486.5" y="917" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="489.51" y="927.5" font-size="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 (1 samples, 0.03%)</title><rect x="78.4" y="181" width="0.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="81.37" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.03%)</title><rect x="106.7" y="1733" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="109.74" y="1743.5" font-size="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 (4 samples, 0.12%)</title><rect x="76.3" y="1285" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="1295.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1082.7" y="581" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="1085.67" y="591.5" font-size="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 (3 samples, 0.09%)</title><rect x="151.2" y="1925" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="154.18" y="1935.5" font-size="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 (2 samples, 0.06%)</title><rect x="91.0" y="1893" width="0.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="94.01" y="1903.5" font-size="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="268.4" y="1701" width="0.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="271.42" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (1 samples, 0.03%)</title><rect x="959.9" y="997" width="0.4" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="962.95" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="458.1" y="597" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="607.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (3 samples, 0.09%)</title><rect x="436.3" y="1013" width="1.0" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="1023.5" font-size="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 (1 samples, 0.03%)</title><rect x="364.1" y="485" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="367.14" y="495.5" font-size="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 (1 samples, 0.03%)</title><rect x="420.5" y="885" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="423.54" y="895.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="437.3" y="677" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="687.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope:::enter (1 samples, 0.03%)</title><rect x="447.9" y="1061" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="450.89" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciInstanceKlass::compute_nonstatic_fields_impl (1 samples, 0.03%)</title><rect x="937.4" y="1285" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="940.39" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_ref_at (1 samples, 0.03%)</title><rect x="478.7" y="1493" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="481.65" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke (3 samples, 0.09%)</title><rect x="62.0" y="933" width="1.0" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="64.96" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (97 samples, 2.81%)</title><rect x="920.3" y="1797" width="33.2" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="923.30" y="1807.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pa..</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="1172.2" y="1893" width="1.4" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1175.22" y="1903.5" font-size="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_newlstat (1 samples, 0.03%)</title><rect x="319.0" y="1989" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="322.02" y="1999.5" font-size="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.87 (1 samples, 0.03%)</title><rect x="1066.3" y="1781" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1069.26" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MergeMemNode::make (1 samples, 0.03%)</title><rect x="921.0" y="1685" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="923.98" y="1695.5" font-size="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 samples, 0.06%)</title><rect x="369.9" y="629" width="0.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="372.95" y="639.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="473.5" y="277" width="0.4" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="287.5" font-size="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/reflect/internal/Types$Type:::findDecl (1 samples, 0.03%)</title><rect x="27.4" y="37" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="482.1" y="1061" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="485.07" y="1071.5" font-size="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$$Lambda$1475/1137401656:::apply (1 samples, 0.03%)</title><rect x="60.9" y="997" width="0.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="63.93" y="1007.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="1141" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="1151.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="440.0" y="853" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="443.02" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JNIHandleBlock::allocate_handle (1 samples, 0.03%)</title><rect x="446.5" y="789" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="449.52" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="487.5" y="1381" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="490.54" y="1391.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1141" width="1.7" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1151.5" font-size="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 (1 samples, 0.03%)</title><rect x="475.2" y="1269" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="478.23" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.9" y="901" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::runtime_resolve_special_method (1 samples, 0.03%)</title><rect x="998.9" y="1669" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1001.92" y="1679.5" font-size="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 (1 samples, 0.03%)</title><rect x="1078.2" y="1253" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1081.22" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::uncast (1 samples, 0.03%)</title><rect x="932.9" y="581" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="935.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVMState::debug_start (1 samples, 0.03%)</title><rect x="815.0" y="1877" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="818.01" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="70.8" y="117" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="127.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="565" width="3.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::null_check_common (1 samples, 0.03%)</title><rect x="917.6" y="1797" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="920.56" y="1807.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="72.9" y="997" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (1 samples, 0.03%)</title><rect x="959.9" y="1125" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="962.95" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="51.0" y="949" width="0.4" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$6$$Lambda$1566/1633770314:::apply (1 samples, 0.03%)</title><rect x="413.7" y="981" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="416.70" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::can_capture_store (1 samples, 0.03%)</title><rect x="946.3" y="1541" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="949.27" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::null_check_common (1 samples, 0.03%)</title><rect x="920.6" y="1765" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="923.64" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.5" y="117" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="32.48" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply:::apply (1 samples, 0.03%)</title><rect x="1085.4" y="581" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1088.40" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="445.2" y="1157" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$2:::write (1 samples, 0.03%)</title><rect x="1103.2" y="725" width="0.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1106.17" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (133 samples, 3.85%)</title><rect x="918.2" y="1829" width="45.5" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="921.24" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pars..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (2 samples, 0.06%)</title><rect x="468.7" y="1461" width="0.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="471.74" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::resolve_helper (1 samples, 0.03%)</title><rect x="1171.9" y="1829" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="1174.88" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StatSamplerTask::task (1 samples, 0.03%)</title><rect x="1179.4" y="1973" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="1182.40" y="1983.5" font-size="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 (1 samples, 0.03%)</title><rect x="1132.9" y="1013" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1135.91" y="1023.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.8" y="1557" width="0.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="1567.5" font-size="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/lang/ClassLoader:::defineClass1 (2 samples, 0.06%)</title><rect x="525.1" y="1109" width="0.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="1119.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="67.8" y="245" width="0.3" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (1 samples, 0.03%)</title><rect x="941.5" y="1509" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="944.49" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="390.8" y="661" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="393.80" y="671.5" font-size="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="179.2" y="1909" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="1919.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="448.6" y="1141" width="0.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="479.7" y="1189" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="482.68" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SignatureStream::as_java_mirror (1 samples, 0.03%)</title><rect x="524.1" y="1285" width="0.4" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="527.11" y="1295.5" font-size="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 samples, 0.06%)</title><rect x="1081.3" y="757" width="0.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="17.5" y="469" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="20.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::last_frame (1 samples, 0.03%)</title><rect x="1109.7" y="1525" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1112.67" y="1535.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="965" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="975.5" font-size="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 (1 samples, 0.03%)</title><rect x="526.2" y="965" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="529.16" y="975.5" font-size="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/lang/invoke/MethodHandle:::asSpreader (1 samples, 0.03%)</title><rect x="1114.5" y="1477" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1117.46" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_method_handle_type (1 samples, 0.03%)</title><rect x="464.6" y="1349" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="467.63" y="1359.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="293" width="2.0" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="303.5" font-size="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 (5 samples, 0.14%)</title><rect x="38.4" y="229" width="1.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="239.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1749" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="945.2" y="757" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mmap64 (1 samples, 0.03%)</title><rect x="380.5" y="581" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="383.54" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_special_call (1 samples, 0.03%)</title><rect x="986.6" y="1365" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="989.61" y="1375.5" font-size="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/IndexedSeqOptimized:::foreach (1 samples, 0.03%)</title><rect x="318.7" y="1125" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="495.1" y="1525" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="498.06" y="1535.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.8" y="773" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="783.5" font-size="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 samples, 0.06%)</title><rect x="61.3" y="405" width="0.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="415.5" font-size="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="514.9" y="933" width="1.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="517.88" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::resolve_constant_at_impl (1 samples, 0.03%)</title><rect x="1146.2" y="1589" width="0.4" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="1149.25" y="1599.5" font-size="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 samples, 0.06%)</title><rect x="520.7" y="1621" width="0.7" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1631.5" font-size="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 (1 samples, 0.03%)</title><rect x="64.7" y="149" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="159.5" font-size="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 (1 samples, 0.03%)</title><rect x="466.3" y="437" width="0.4" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="49.7" y="629" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="52.65" y="639.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSiteImpl (1 samples, 0.03%)</title><rect x="318.3" y="165" width="0.4" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="16.5" y="197" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="19.49" y="207.5" font-size="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 (3 samples, 0.09%)</title><rect x="365.2" y="229" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="368.16" y="239.5" font-size="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/net/URI$Parser:::parseHierarchical (1 samples, 0.03%)</title><rect x="413.0" y="549" width="0.4" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="416.02" y="559.5" font-size="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="1178.0" y="1685" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="1181.04" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (2 samples, 0.06%)</title><rect x="525.1" y="933" width="0.7" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="51.0" y="869" width="0.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="70.8" y="821" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$$Lambda$2005/1110869305:::apply (1 samples, 0.03%)</title><rect x="1107.3" y="597" width="0.3" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.7" y="165" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="79.66" y="175.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="523.8" y="1525" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="526.77" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokedynamic (1 samples, 0.03%)</title><rect x="441.4" y="1029" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="444.39" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="72.9" y="453" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseValues::uncached_makecon (1 samples, 0.03%)</title><rect x="964.7" y="1813" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="967.73" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (3 samples, 0.09%)</title><rect x="522.1" y="1765" width="1.0" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="525.06" y="1775.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="480.4" y="693" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MachProjNode::MachProjNode (1 samples, 0.03%)</title><rect x="637.3" y="1781" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="640.26" y="1791.5" font-size="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 (1 samples, 0.03%)</title><rect x="440.7" y="901" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="443.71" y="911.5" font-size="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 (41 samples, 1.19%)</title><rect x="212.7" y="2005" width="14.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="215.71" y="2015.5" font-size="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 samples, 0.03%)</title><rect x="439.3" y="1029" width="0.4" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="442.34" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::uncommon_trap (1 samples, 0.03%)</title><rect x="940.1" y="1525" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="943.12" y="1535.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="471.8" y="629" width="0.4" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="474.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::create_temporary_symbol (1 samples, 0.03%)</title><rect x="403.8" y="581" width="0.3" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="406.79" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="472.8" y="981" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="475.84" y="991.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="467.4" y="837" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="470.37" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="1109.3" y="885" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="895.5" font-size="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 (1 samples, 0.03%)</title><rect x="1082.3" y="597" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1085.32" y="607.5" font-size="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 (2 samples, 0.06%)</title><rect x="119.0" y="1893" width="0.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="122.04" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciType::make (1 samples, 0.03%)</title><rect x="928.8" y="1365" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="931.84" y="1375.5" font-size="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 (1 samples, 0.03%)</title><rect x="496.1" y="1349" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="499.08" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="529.2" y="741" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="532.24" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (1 samples, 0.03%)</title><rect x="71.9" y="949" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="959.5" font-size="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/util/regex/Pattern$Curly:::study (1 samples, 0.03%)</title><rect x="452.7" y="949" width="0.3" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="455.67" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (1 samples, 0.03%)</title><rect x="453.4" y="1317" width="0.3" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="456.35" y="1327.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="1429" width="0.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="28.5" y="565" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="31.46" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::Node (1 samples, 0.03%)</title><rect x="916.9" y="1749" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="919.88" y="1759.5" font-size="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 (1 samples, 0.03%)</title><rect x="63.0" y="1109" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="32.6" y="693" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="37.7" y="533" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="543.5" font-size="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_java_lang_UNIXProcess_forkAndExec (5 samples, 0.14%)</title><rect x="38.4" y="85" width="1.7" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="95.5" font-size="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 samples, 0.06%)</title><rect x="79.7" y="613" width="0.7" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="70.8" y="1045" width="0.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="1055.5" font-size="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/AbstractIterable:::foreach (1 samples, 0.03%)</title><rect x="1095.3" y="693" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="1098.31" y="703.5" font-size="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 samples, 0.06%)</title><rect x="61.3" y="357" width="0.7" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (2 samples, 0.06%)</title><rect x="63.3" y="837" width="0.7" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (2 samples, 0.06%)</title><rect x="961.3" y="1093" width="0.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="964.32" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1:::read (4 samples, 0.12%)</title><rect x="1087.5" y="869" width="1.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="1090.45" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="372.3" y="405" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="375.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="67.8" y="1365" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="1375.5" font-size="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 (1 samples, 0.03%)</title><rect x="22.3" y="341" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="25.31" y="351.5" font-size="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 (1 samples, 0.03%)</title><rect x="1137.4" y="1381" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1140.36" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="520.0" y="1397" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="523.01" y="1407.5" font-size="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-25316.map] (2 samples, 0.06%)</title><rect x="1089.8" y="837" width="0.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1092.84" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool_entries (1 samples, 0.03%)</title><rect x="437.3" y="581" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Keyed:::mapReferenced (1 samples, 0.03%)</title><rect x="442.4" y="757" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="445.42" y="767.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.4" y="293" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="303.5" font-size="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 (1 samples, 0.03%)</title><rect x="599.3" y="1701" width="0.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="602.32" y="1711.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="821" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="831.5" font-size="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 (3 samples, 0.09%)</title><rect x="334.7" y="1717" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="337.74" y="1727.5" font-size="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 (2 samples, 0.06%)</title><rect x="599.3" y="1813" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="602.32" y="1823.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.3" y="645" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="655.5" font-size="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 (1 samples, 0.03%)</title><rect x="478.0" y="1397" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="480.97" y="1407.5" font-size="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 (3 samples, 0.09%)</title><rect x="321.7" y="389" width="1.1" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="324.75" y="399.5" font-size="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 (3 samples, 0.09%)</title><rect x="66.7" y="501" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (2 samples, 0.06%)</title><rect x="493.3" y="1397" width="0.7" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="496.35" y="1407.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::spinInnerClass (1 samples, 0.03%)</title><rect x="384.0" y="373" width="0.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="386.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RegMask::is_bound_pair (1 samples, 0.03%)</title><rect x="763.7" y="1861" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="766.74" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::malloc (1 samples, 0.03%)</title><rect x="23.0" y="37" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="25.99" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCFG::schedule_pinned_nodes (5 samples, 0.14%)</title><rect x="652.0" y="1861" width="1.7" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="654.96" y="1871.5" font-size="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 samples, 0.06%)</title><rect x="53.4" y="1029" width="0.7" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="1039.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="387.0" y="565" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="390.04" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="478.7" y="1269" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="481.65" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (2 samples, 0.06%)</title><rect x="208.6" y="1765" width="0.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="211.60" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="77.3" y="805" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="815.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="478.0" y="1333" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="480.97" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="439.3" y="869" width="0.4" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="442.34" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeNode::cmp (1 samples, 0.03%)</title><rect x="964.7" y="1781" width="0.4" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="967.73" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (2 samples, 0.06%)</title><rect x="528.6" y="645" width="0.6" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="531.56" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (1 samples, 0.03%)</title><rect x="942.2" y="1221" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="945.17" y="1231.5" font-size="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 (11 samples, 0.32%)</title><rect x="55.1" y="1189" width="3.8" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="473.5" y="421" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="485.8" y="1013" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="488.83" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="70.5" y="613" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="73.50" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="25.7" y="357" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="367.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="853" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="863.5" font-size="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 (2 samples, 0.06%)</title><rect x="1126.8" y="1637" width="0.6" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1129.76" y="1647.5" font-size="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$$Lambda$1475/1137401656:::apply (2 samples, 0.06%)</title><rect x="72.2" y="1397" width="0.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="75.21" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_dynamic_call (1 samples, 0.03%)</title><rect x="390.8" y="629" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="393.80" y="639.5" font-size="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 (36 samples, 1.04%)</title><rect x="331.3" y="1925" width="12.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="334.32" y="1935.5" font-size="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 (1 samples, 0.03%)</title><rect x="63.0" y="245" width="0.3" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="255.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="981" width="2.0" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="991.5" font-size="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 (2 samples, 0.06%)</title><rect x="117.0" y="1845" width="0.7" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="119.99" y="1855.5" font-size="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_context_sched_in (1 samples, 0.03%)</title><rect x="1168.1" y="1685" width="0.4" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="1171.12" y="1695.5" font-size="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/util/hashing/MurmurHash3:::orderedHash (1 samples, 0.03%)</title><rect x="1107.3" y="645" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="655.5" font-size="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 (1 samples, 0.03%)</title><rect x="23.7" y="741" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::PlatformEvent::unpark (1 samples, 0.03%)</title><rect x="1139.8" y="1237" width="0.3" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="1142.75" y="1247.5" font-size="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 samples, 0.06%)</title><rect x="53.4" y="1013" width="0.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="33.2" y="709" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="719.5" font-size="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/lang/invoke/DirectMethodHandle:::make (1 samples, 0.03%)</title><rect x="18.2" y="69" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="21.20" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::merge_common (1 samples, 0.03%)</title><rect x="956.5" y="1173" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="959.53" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_anewarray (1 samples, 0.03%)</title><rect x="917.9" y="1829" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="920.90" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (6 samples, 0.17%)</title><rect x="51.4" y="869" width="2.0" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="879.5" font-size="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 samples, 0.06%)</title><rect x="37.0" y="901" width="0.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="911.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1107.3" y="661" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$TransformCapture:::mapConstant (1 samples, 0.03%)</title><rect x="1100.1" y="773" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="1103.10" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="528.2" y="389" width="0.4" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.1" y="533" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="30.09" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_GetClassDeclaredMethods (1 samples, 0.03%)</title><rect x="451.3" y="1381" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="454.30" y="1391.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.5" y="677" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="33.51" y="687.5" font-size="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 (1 samples, 0.03%)</title><rect x="526.2" y="1141" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="529.16" y="1151.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="149.1" y="1941" width="0.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="152.13" y="1951.5" font-size="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 (4 samples, 0.12%)</title><rect x="25.7" y="501" width="1.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::has_special_unique_user (1 samples, 0.03%)</title><rect x="970.9" y="1893" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="973.89" y="1903.5" font-size="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_java_lang_Throwable_fillInStackTrace (1 samples, 0.03%)</title><rect x="15.5" y="101" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="18.47" y="111.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="501" width="1.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="511.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.7" y="1189" width="0.3" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="1199.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.2" y="645" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Optional:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="1083.0" y="645" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="1086.01" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="318.3" y="213" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::get_flow_analysis (1 samples, 0.03%)</title><rect x="953.5" y="1669" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="956.45" y="1679.5" font-size="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 (1 samples, 0.03%)</title><rect x="78.0" y="325" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::nonProjectScopes$1 (1 samples, 0.03%)</title><rect x="412.3" y="549" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="415.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MultiNode::is_CFG (1 samples, 0.03%)</title><rect x="840.6" y="1861" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="843.65" y="1871.5" font-size="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_nmi_handler (1 samples, 0.03%)</title><rect x="975.7" y="1605" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="978.67" y="1615.5" font-size="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/Set$EmptySet$:::thisCollection (1 samples, 0.03%)</title><rect x="75.3" y="117" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="127.5" font-size="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="179.2" y="1877" width="1.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="1887.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::buildCallSite (1 samples, 0.03%)</title><rect x="376.8" y="421" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="379.78" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (2 samples, 0.06%)</title><rect x="401.7" y="453" width="0.7" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="404.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Keyed:::validateKeyReferenced (2 samples, 0.06%)</title><rect x="411.0" y="821" width="0.7" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="413.97" y="831.5" font-size="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/IndexedSeqOptimized:::foldLeft$ (1 samples, 0.03%)</title><rect x="387.4" y="597" width="0.3" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="390.38" y="607.5" font-size="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 samples, 0.06%)</title><rect x="321.1" y="469" width="0.6" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$:::configInheritRef (1 samples, 0.03%)</title><rect x="1083.0" y="757" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="1086.01" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (13 samples, 0.38%)</title><rect x="941.5" y="1525" width="4.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="944.49" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clear_page_c_e (6 samples, 0.17%)</title><rect x="595.9" y="1861" width="2.0" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="598.90" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethodBlocks::do_analysis (1 samples, 0.03%)</title><rect x="931.6" y="1141" width="0.3" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="934.58" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>follow_page_pte (1 samples, 0.03%)</title><rect x="505.7" y="1189" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="508.65" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.03%)</title><rect x="959.6" y="1381" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="962.61" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="75.6" y="261" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="77.3" y="677" width="0.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="1109.3" y="1413" width="0.4" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_return_value (1 samples, 0.03%)</title><rect x="480.4" y="1397" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="1407.5" font-size="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 (1 samples, 0.03%)</title><rect x="86.6" y="1893" width="0.3" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="89.57" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_exception_handler_table (1 samples, 0.03%)</title><rect x="440.4" y="1093" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="443.37" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="62.0" y="229" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="64.96" y="239.5" font-size="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_context_sched_in (2 samples, 0.06%)</title><rect x="1132.9" y="1109" width="0.7" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1135.91" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (2 samples, 0.06%)</title><rect x="435.6" y="949" width="0.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="438.58" y="959.5" font-size="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="314.9" y="2005" width="0.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="317.91" y="2015.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.3" y="533" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="543.5" font-size="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/reflect/internal/tpe/FindMembers$FindMemberBase:::searchConcreteThenDeferred (1 samples, 0.03%)</title><rect x="475.2" y="1445" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="478.23" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemNode::all_controls_dominate (1 samples, 0.03%)</title><rect x="908.7" y="1685" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="911.67" y="1695.5" font-size="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 (1 samples, 0.03%)</title><rect x="446.5" y="869" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="449.52" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::add_predicate_impl (1 samples, 0.03%)</title><rect x="921.0" y="1749" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="923.98" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (2 samples, 0.06%)</title><rect x="961.3" y="1621" width="0.7" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="964.32" y="1631.5" font-size="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/TraversableLike$WithFilter$$Lambda$806/1579140143:::apply (2 samples, 0.06%)</title><rect x="443.4" y="1077" width="0.7" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="446.44" y="1087.5" font-size="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 (12 samples, 0.35%)</title><rect x="455.7" y="1189" width="4.1" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="458.75" y="1199.5" font-size="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/lang/invoke/CallSite:::makeSite (1 samples, 0.03%)</title><rect x="366.5" y="469" width="0.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="369.53" y="479.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="495.4" y="1301" width="0.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1311.5" font-size="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 (14 samples, 0.41%)</title><rect x="192.5" y="1797" width="4.8" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="195.54" y="1807.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhiNode::Ideal (1 samples, 0.03%)</title><rect x="905.3" y="1829" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="908.25" y="1839.5" font-size="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 (1 samples, 0.03%)</title><rect x="381.6" y="725" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="384.57" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::nonProjectScopes$1 (1 samples, 0.03%)</title><rect x="409.3" y="725" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="412.26" y="735.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="153.6" y="1749" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="156.57" y="1759.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSiteImpl (2 samples, 0.06%)</title><rect x="458.5" y="821" width="0.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="461.48" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.5" y="917" width="0.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="33.51" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AddressLiteral::AddressLiteral (1 samples, 0.03%)</title><rect x="1003.7" y="1813" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="1006.70" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="42.1" y="373" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SafepointSynchronize::block (4 samples, 0.12%)</title><rect x="1126.8" y="1701" width="1.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1129.76" y="1711.5" font-size="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 (1 samples, 0.03%)</title><rect x="484.5" y="853" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="487.46" y="863.5" font-size="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 (1 samples, 0.03%)</title><rect x="15.1" y="245" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="18.13" y="255.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="981" width="1.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_CallObjectMethod (1 samples, 0.03%)</title><rect x="35.0" y="69" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (2 samples, 0.06%)</title><rect x="528.6" y="389" width="0.6" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="531.56" y="399.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="524.5" y="1285" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="527.46" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::allocate (1 samples, 0.03%)</title><rect x="322.8" y="421" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="431.5" font-size="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 (1 samples, 0.03%)</title><rect x="465.0" y="1253" width="0.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="467.98" y="1263.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.1" y="325" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="32.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="73.6" y="981" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invokedynamic (13 samples, 0.38%)</title><rect x="1112.7" y="1669" width="4.5" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1115.75" y="1679.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.7" y="469" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="79.66" y="479.5" font-size="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 (64 samples, 1.85%)</title><rect x="14.4" y="1205" width="21.9" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$$anon$1$$Lambda$953/723310524:::apply (1 samples, 0.03%)</title><rect x="36.3" y="821" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.7" y="1205" width="0.3" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (6 samples, 0.17%)</title><rect x="1130.2" y="1477" width="2.0" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1133.18" y="1487.5" font-size="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 (1 samples, 0.03%)</title><rect x="407.5" y="1045" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="410.55" y="1055.5" font-size="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:::flatMap (1 samples, 0.03%)</title><rect x="410.3" y="677" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="413.28" y="687.5" font-size="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 (5 samples, 0.14%)</title><rect x="484.1" y="1077" width="1.7" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="487.12" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="25.7" y="261" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="271.5" font-size="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 samples, 0.06%)</title><rect x="61.3" y="1013" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$:::directDeps (1 samples, 0.03%)</title><rect x="75.3" y="181" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="375.4" y="485" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="378.42" y="495.5" font-size="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 (3 samples, 0.09%)</title><rect x="28.8" y="789" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$$$Lambda$918/1218864105:::apply (1 samples, 0.03%)</title><rect x="439.3" y="965" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="442.34" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (1 samples, 0.03%)</title><rect x="935.0" y="1045" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="937.99" y="1055.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol:::createAbstractTypeSymbol$ (1 samples, 0.03%)</title><rect x="473.9" y="389" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="394.2" y="117" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="397.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="23.0" y="421" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="25.99" y="431.5" font-size="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.87 (1 samples, 0.03%)</title><rect x="171.7" y="1765" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="174.69" y="1775.5" font-size="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_mmap (1 samples, 0.03%)</title><rect x="309.1" y="1829" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="312.10" y="1839.5" font-size="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 (1 samples, 0.03%)</title><rect x="72.9" y="581" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="591.5" font-size="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/Iterator:::find (1 samples, 0.03%)</title><rect x="415.8" y="677" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="418.75" y="687.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="71.2" y="53" width="0.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="63.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="1136.7" y="1413" width="0.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1139.67" y="1423.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.2" y="693" width="0.4" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="703.5" font-size="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/lang/Throwable:::fillInStackTrace (1 samples, 0.03%)</title><rect x="473.5" y="229" width="0.4" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVMState::interpreter_frame_size (1 samples, 0.03%)</title><rect x="814.7" y="1861" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="817.67" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (1 samples, 0.03%)</title><rect x="945.2" y="933" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="319.7" y="1685" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/TupleFormats$$anon$2:::write (1 samples, 0.03%)</title><rect x="1101.1" y="677" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="1104.12" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (11 samples, 0.32%)</title><rect x="55.1" y="581" width="3.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SignatureVerifier::is_valid_method_signature (1 samples, 0.03%)</title><rect x="364.8" y="85" width="0.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="367.82" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$$$Lambda$948/1070619454:::apply (1 samples, 0.03%)</title><rect x="1095.0" y="677" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="1097.97" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="323.5" y="741" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="326.46" y="751.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="757" width="0.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (1 samples, 0.03%)</title><rect x="37.0" y="101" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="111.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="454.7" y="1125" width="0.4" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="457.72" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="473.5" y="1173" width="0.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="1183.5" font-size="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="109.8" y="1941" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="112.81" y="1951.5" font-size="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="185.4" y="1973" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="188.36" y="1983.5" font-size="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 (1 samples, 0.03%)</title><rect x="496.1" y="1573" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="499.08" y="1583.5" font-size="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_java_lang_UNIXProcess_forkAndExec (3 samples, 0.09%)</title><rect x="58.9" y="117" width="1.0" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="127.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1:::info (1 samples, 0.03%)</title><rect x="447.5" y="917" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="450.54" y="927.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="529.6" y="1141" width="0.3" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="532.58" y="1151.5" font-size="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_lang_Class::protection_domain (1 samples, 0.03%)</title><rect x="34.6" y="37" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Launcher$AppClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="448.6" y="773" width="0.3" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="783.5" font-size="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_execve (1 samples, 0.03%)</title><rect x="70.2" y="293" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (2 samples, 0.06%)</title><rect x="475.6" y="1365" width="0.7" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="478.57" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (2 samples, 0.06%)</title><rect x="945.2" y="1365" width="0.7" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="440.7" y="1029" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="443.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="448.6" y="853" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="863.5" font-size="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 (2 samples, 0.06%)</title><rect x="100.6" y="1749" width="0.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="103.59" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::make_not_entrant_or_zombie (1 samples, 0.03%)</title><rect x="1053.3" y="1893" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="1056.27" y="1903.5" font-size="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 (10 samples, 0.29%)</title><rect x="377.1" y="645" width="3.4" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text text-anchor="" x="380.13" y="655.5" font-size="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_safe (4 samples, 0.12%)</title><rect x="1051.2" y="1909" width="1.4" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1054.22" y="1919.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.6" y="309" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="22.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_completion (2 samples, 0.06%)</title><rect x="519.0" y="1061" width="0.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="521.99" y="1071.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="33.9" y="165" width="0.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="36.93" y="175.5" font-size="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_context_sched_in (1 samples, 0.03%)</title><rect x="109.8" y="1813" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="112.81" y="1823.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="251.7" y="1813" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="254.67" y="1823.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1717" width="2.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="492.7" y="1381" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="495.67" y="1391.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="1589" width="0.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="439.7" y="981" width="0.3" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (5 samples, 0.14%)</title><rect x="947.3" y="1461" width="1.7" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleThresholdPolicy::event (1 samples, 0.03%)</title><rect x="1128.5" y="1685" width="0.3" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="1131.47" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::resolve_constant_at_impl (1 samples, 0.03%)</title><rect x="381.6" y="789" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="384.57" y="799.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1237" width="1.1" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1247.5" font-size="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 (28 samples, 0.81%)</title><rect x="14.4" y="789" width="9.6" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="799.5" font-size="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/lang/invoke/MethodHandles$Lookup:::getDirectMethodCommon (1 samples, 0.03%)</title><rect x="1147.3" y="1493" width="0.3" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1150.27" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="494.4" y="1573" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="497.37" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="478.0" y="1141" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="480.97" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::remix_address_expressions (3 samples, 0.09%)</title><rect x="887.5" y="1845" width="1.0" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="890.48" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseGVN::transform_no_reclaim (1 samples, 0.03%)</title><rect x="950.0" y="1413" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="953.03" y="1423.5" font-size="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 (2 samples, 0.06%)</title><rect x="1126.8" y="1653" width="0.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1129.76" y="1663.5" font-size="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 (1 samples, 0.03%)</title><rect x="459.2" y="949" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="462.17" y="959.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="357" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method (1 samples, 0.03%)</title><rect x="480.4" y="565" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="525.1" y="405" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="415.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="1125" width="0.7" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="1135.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="75.3" y="997" width="0.3" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1007.5" font-size="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/net/URLClassLoader:::findClass (2 samples, 0.06%)</title><rect x="457.5" y="965" width="0.6" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="460.46" y="975.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="63.0" y="213" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StackMapFrame::pop_stack (1 samples, 0.03%)</title><rect x="532.7" y="1621" width="0.3" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="535.66" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.03%)</title><rect x="938.4" y="869" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="941.41" y="879.5" font-size="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 (1 samples, 0.03%)</title><rect x="208.3" y="1845" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="211.26" y="1855.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="493.0" y="1189" width="0.3" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text text-anchor="" x="496.01" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/io/FilterFiles:::accept (1 samples, 0.03%)</title><rect x="446.5" y="917" width="0.4" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="449.52" y="927.5" font-size="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 (1 samples, 0.03%)</title><rect x="33.6" y="805" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_dynamic_call_site_invoker (1 samples, 0.03%)</title><rect x="322.8" y="709" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="719.5" font-size="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 (7 samples, 0.20%)</title><rect x="460.5" y="1317" width="2.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="1327.5" font-size="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 samples, 0.06%)</title><rect x="1081.3" y="789" width="0.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="473.9" y="981" width="0.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="991.5" font-size="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-25316.map] (10 samples, 0.29%)</title><rect x="386.7" y="885" width="3.4" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="389.70" y="895.5" font-size="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 samples, 0.06%)</title><rect x="71.2" y="757" width="0.7" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="529.9" y="805" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="532.92" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/util/calendar/BaseCalendar:::getCalendarDateFromFixedDate (1 samples, 0.03%)</title><rect x="1097.0" y="741" width="0.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1100.02" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="523.8" y="1445" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="526.77" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (3 samples, 0.09%)</title><rect x="54.1" y="741" width="1.0" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="402.8" y="229" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="405.76" y="239.5" font-size="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_rt_sigprocmask (1 samples, 0.03%)</title><rect x="308.4" y="1989" width="0.4" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text text-anchor="" x="311.42" y="1999.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="741" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="751.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.3" y="885" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool (1 samples, 0.03%)</title><rect x="1151.0" y="1381" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1154.03" y="1391.5" font-size="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/util/hashing/MurmurHash3:::orderedHash (1 samples, 0.03%)</title><rect x="75.3" y="469" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="479.5" font-size="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 (1 samples, 0.03%)</title><rect x="321.1" y="229" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_field_by_index_impl (1 samples, 0.03%)</title><rect x="922.0" y="1525" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="925.00" y="1535.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="1109.3" y="1221" width="0.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1231.5" font-size="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 (3 samples, 0.09%)</title><rect x="112.5" y="1909" width="1.1" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="115.55" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PeriodicTask::real_time_tick (1 samples, 0.03%)</title><rect x="1179.4" y="1989" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="1182.40" y="1999.5" font-size="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 (11 samples, 0.32%)</title><rect x="55.1" y="309" width="3.8" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="77.3" y="1205" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="1215.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="449.6" y="1029" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="452.59" y="1039.5" font-size="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="120.8" y="1653" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="123.75" y="1663.5" font-size="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 (2 samples, 0.06%)</title><rect x="1143.9" y="1429" width="0.6" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1146.85" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.7" y="261" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="79.66" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_ref_at (1 samples, 0.03%)</title><rect x="70.8" y="885" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1:::write (1 samples, 0.03%)</title><rect x="1102.1" y="869" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1105.15" y="879.5" font-size="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 (1 samples, 0.03%)</title><rect x="18.9" y="245" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="21.89" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_interfaces (1 samples, 0.03%)</title><rect x="480.0" y="1125" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="483.02" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$11:::transform (1 samples, 0.03%)</title><rect x="419.9" y="949" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="422.86" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::hashcons (1 samples, 0.03%)</title><rect x="648.5" y="1781" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="651.54" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="37.7" y="325" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="335.5" font-size="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 (1 samples, 0.03%)</title><rect x="23.3" y="485" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="26.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MethodFamily::generate_method_message (1 samples, 0.03%)</title><rect x="70.8" y="53" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="63.5" font-size="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_page_fault (1 samples, 0.03%)</title><rect x="1103.5" y="629" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.03%)</title><rect x="959.9" y="1269" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="962.95" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="405.2" y="789" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="408.16" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.03%)</title><rect x="467.4" y="741" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="470.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="958.9" y="1141" width="0.4" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="961.92" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::StateVector::apply_one_bytecode (1 samples, 0.03%)</title><rect x="953.5" y="1589" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="956.45" y="1599.5" font-size="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="117.0" y="1925" width="1.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="119.99" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::get_ctrl (1 samples, 0.03%)</title><rect x="887.1" y="1829" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="890.14" y="1839.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="549" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="384.6" y="629" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="387.65" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="1180.1" y="1813" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.09" y="1823.5" font-size="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/mutable/ArrayOps$ofRef:::foreach (1 samples, 0.03%)</title><rect x="74.3" y="261" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="77.26" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="546.3" y="1877" width="0.4" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="549.33" y="1887.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::buildCallSite (1 samples, 0.03%)</title><rect x="393.5" y="581" width="0.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="396.53" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_getblk (1 samples, 0.03%)</title><rect x="313.5" y="1893" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="316.55" y="1903.5" font-size="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 samples, 0.03%)</title><rect x="381.2" y="709" width="0.4" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="384.23" y="719.5" font-size="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="149.8" y="1877" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="152.81" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="529.2" y="965" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="532.24" y="975.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="1221" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="1231.5" font-size="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 (7 samples, 0.20%)</title><rect x="1082.7" y="853" width="2.4" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1085.67" y="863.5" font-size="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-25316.map] (3 samples, 0.09%)</title><rect x="37.0" y="1157" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="1167.5" font-size="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 (1 samples, 0.03%)</title><rect x="447.5" y="789" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="450.54" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_strings.isra.20 (1 samples, 0.03%)</title><rect x="65.0" y="101" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="68.03" y="111.5" font-size="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 (1 samples, 0.03%)</title><rect x="395.6" y="693" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="398.59" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (88 samples, 2.55%)</title><rect x="921.7" y="1733" width="30.0" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="924.66" y="1743.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.03%)</title><rect x="29.1" y="213" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="32.14" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_user_pages (1 samples, 0.03%)</title><rect x="1188.6" y="1941" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1191.63" y="1951.5" font-size="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 (1 samples, 0.03%)</title><rect x="23.3" y="661" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="26.33" y="671.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSiteImpl (1 samples, 0.03%)</title><rect x="390.8" y="533" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="393.80" y="543.5" font-size="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="178.2" y="1941" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="181.18" y="1951.5" font-size="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 (2 samples, 0.06%)</title><rect x="965.8" y="1653" width="0.6" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="968.76" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_wake_futex (1 samples, 0.03%)</title><rect x="1154.1" y="1653" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1157.11" y="1663.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1733" width="2.8" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1743.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="483.1" y="1509" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="486.09" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="34.6" y="277" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="287.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="917" width="1.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.03%)</title><rect x="64.7" y="197" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::new_array (1 samples, 0.03%)</title><rect x="917.9" y="1813" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="920.90" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="34.6" y="293" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="303.5" font-size="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 (1 samples, 0.03%)</title><rect x="62.0" y="197" width="0.3" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="64.96" y="207.5" font-size="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 (52 samples, 1.51%)</title><rect x="264.3" y="1973" width="17.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="267.32" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Launcher$AppClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="482.8" y="1445" width="0.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="485.75" y="1455.5" font-size="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 (1 samples, 0.03%)</title><rect x="437.3" y="901" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="67.8" y="1381" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="1391.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="25.4" y="757" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="28.38" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (5 samples, 0.14%)</title><rect x="1111.0" y="1573" width="1.7" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1114.04" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::last_frame (1 samples, 0.03%)</title><rect x="406.5" y="1061" width="0.4" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="409.52" y="1071.5" font-size="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 (1 samples, 0.03%)</title><rect x="975.7" y="1653" width="0.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="978.67" y="1663.5" font-size="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 (1 samples, 0.03%)</title><rect x="1169.5" y="1813" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1172.49" y="1823.5" font-size="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$$Lambda$1475/1137401656:::apply (2 samples, 0.06%)</title><rect x="53.4" y="1109" width="0.7" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.8" y="597" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.8" y="645" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="495.4" y="1477" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1487.5" font-size="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 (2 samples, 0.06%)</title><rect x="71.2" y="197" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="448.9" y="1285" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="451.91" y="1295.5" font-size="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/reflect/internal/Symbols$Symbol:::newClassSymbol (1 samples, 0.03%)</title><rect x="20.6" y="53" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="23.60" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::get_early_ctrl (11 samples, 0.32%)</title><rect x="841.0" y="1861" width="3.8" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="843.99" y="1871.5" font-size="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/util/SubList$1:::hasNext (1 samples, 0.03%)</title><rect x="49.3" y="229" width="0.4" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="495.1" y="1429" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="498.06" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="36.7" y="85" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="39.66" y="95.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.3" y="1109" width="0.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="321.4" y="181" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="324.41" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="323.5" y="117" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="326.46" y="127.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="495.1" y="1445" width="0.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="498.06" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="439.7" y="565" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="575.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.7" y="677" width="0.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InlineTree::find_subtree_from_root (1 samples, 0.03%)</title><rect x="924.4" y="1605" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="927.40" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup_only (1 samples, 0.03%)</title><rect x="28.5" y="37" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="31.46" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="70.8" y="837" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="847.5" font-size="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 (1 samples, 0.03%)</title><rect x="466.7" y="597" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="469.69" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="472.8" y="917" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="475.84" y="927.5" font-size="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 (4 samples, 0.12%)</title><rect x="177.8" y="1973" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="180.84" y="1983.5" font-size="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/reflect/internal/Types$Type:::findDecl (3 samples, 0.09%)</title><rect x="474.2" y="1477" width="1.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="526.5" y="1237" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerificationType::is_reference_assignable_from (1 samples, 0.03%)</title><rect x="529.2" y="853" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="532.24" y="863.5" font-size="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 (1 samples, 0.03%)</title><rect x="1088.5" y="741" width="0.3" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1091.48" y="751.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="22.6" y="421" width="0.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="25.65" y="431.5" font-size="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 (1 samples, 0.03%)</title><rect x="24.4" y="117" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="27.36" y="127.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="441.4" y="805" width="0.3" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="444.39" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="1093.3" y="837" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1096.26" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="440.7" y="997" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="443.71" y="1007.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="837" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="847.5" font-size="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/runtime/Statics:::anyHash (1 samples, 0.03%)</title><rect x="374.7" y="661" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="377.73" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokedynamic (1 samples, 0.03%)</title><rect x="469.8" y="1445" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="472.76" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="385.7" y="789" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="799.5" font-size="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 (11 samples, 0.32%)</title><rect x="1081.3" y="917" width="3.8" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="927.5" font-size="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="1113.1" y="1221" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="1116.09" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method_index (1 samples, 0.03%)</title><rect x="22.0" y="37" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="24.96" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="529.9" y="1109" width="0.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="532.92" y="1119.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="965.8" y="1621" width="0.6" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="968.76" y="1631.5" font-size="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 (20 samples, 0.58%)</title><rect x="185.7" y="1989" width="6.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="188.70" y="1999.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProjNode::hash (1 samples, 0.03%)</title><rect x="906.6" y="1861" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="909.62" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="530.6" y="853" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="863.5" font-size="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 (2 samples, 0.06%)</title><rect x="88.3" y="1765" width="0.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="396.3" y="277" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::Value (1 samples, 0.03%)</title><rect x="959.6" y="1285" width="0.3" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="962.61" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::ReduceOper (2 samples, 0.06%)</title><rect x="637.6" y="1813" width="0.7" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="640.60" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>klassVtable::compute_vtable_size_and_num_mirandas (1 samples, 0.03%)</title><rect x="522.7" y="1013" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="525.75" y="1023.5" font-size="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 (2 samples, 0.06%)</title><rect x="1064.2" y="1733" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1067.21" y="1743.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPoolCacheEntry::set_direct_or_vtable_call (1 samples, 0.03%)</title><rect x="461.6" y="917" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="464.56" y="927.5" font-size="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 (6 samples, 0.17%)</title><rect x="40.1" y="1125" width="2.0" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="1135.5" font-size="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_execve (5 samples, 0.14%)</title><rect x="505.7" y="1301" width="1.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="508.65" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="933" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="381.9" y="309" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="384.91" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="366.2" y="565" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="369.19" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$6:::transform (1 samples, 0.03%)</title><rect x="442.8" y="901" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="445.76" y="911.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="69.8" y="549" width="0.4" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="559.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.3" y="533" width="0.4" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_super_or_fail (1 samples, 0.03%)</title><rect x="67.8" y="389" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="399.5" font-size="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="308.1" y="2005" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="311.08" y="2015.5" font-size="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] (5 samples, 0.14%)</title><rect x="151.2" y="2005" width="1.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="154.18" y="2015.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="37.7" y="261" width="0.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="271.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="1445" width="0.4" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (1 samples, 0.03%)</title><rect x="360.4" y="2021" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="363.38" y="2031.5" font-size="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 (1 samples, 0.03%)</title><rect x="526.2" y="1109" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="529.16" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="520.7" y="1157" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1167.5" font-size="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/net/URLClassLoader:::defineClass (2 samples, 0.06%)</title><rect x="446.9" y="805" width="0.6" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_class (1 samples, 0.03%)</title><rect x="23.3" y="85" width="0.4" height="15.0" fill="rgb(183,183,52)" rx="2" ry="2" />
<text text-anchor="" x="26.33" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::resolve_possibly_cached_constant_at (1 samples, 0.03%)</title><rect x="1146.2" y="1605" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1149.25" y="1615.5" font-size="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 (5 samples, 0.14%)</title><rect x="76.3" y="1925" width="1.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoader::load_classfile (1 samples, 0.03%)</title><rect x="478.0" y="1157" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="480.97" y="1167.5" font-size="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 (1 samples, 0.03%)</title><rect x="51.0" y="229" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_dynamic_call (1 samples, 0.03%)</title><rect x="450.6" y="1317" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1327.5" font-size="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/util/jar/JarFile:::getEntry (1 samples, 0.03%)</title><rect x="483.1" y="1349" width="0.3" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="486.09" y="1359.5" font-size="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/lang/ClassLoader:::defineClass (2 samples, 0.06%)</title><rect x="528.6" y="485" width="0.6" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="531.56" y="495.5" font-size="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 (3 samples, 0.09%)</title><rect x="28.8" y="549" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="559.5" font-size="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_java_util_zip_ZipFile_open (1 samples, 0.03%)</title><rect x="171.3" y="2005" width="0.4" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="174.34" y="2015.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="485.8" y="1189" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="488.83" y="1199.5" font-size="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/AbstractMap:::getOrElse (23 samples, 0.67%)</title><rect x="393.9" y="853" width="7.8" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::flow_block (5 samples, 0.14%)</title><rect x="608.9" y="1813" width="1.7" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="611.89" y="1823.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1541" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1551.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.6" y="1541" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="1551.5" font-size="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 (1 samples, 0.03%)</title><rect x="381.9" y="741" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="384.91" y="751.5" font-size="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 (1 samples, 0.03%)</title><rect x="37.3" y="245" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="40.35" y="255.5" font-size="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/AbstractIterator:::foreach (1 samples, 0.03%)</title><rect x="1107.6" y="1301" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1110.62" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.3" y="597" width="0.4" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="607.5" font-size="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_java_lang_UNIXProcess_forkAndExec (1 samples, 0.03%)</title><rect x="70.2" y="373" width="0.3" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="383.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="1173" width="1.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="1183.5" font-size="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 samples, 0.06%)</title><rect x="31.5" y="677" width="0.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="687.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="1541" width="0.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="69.5" y="741" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="500.2" y="1205" width="0.3" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="503.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="24.4" y="277" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="27.36" y="287.5" font-size="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 (3 samples, 0.09%)</title><rect x="474.2" y="1269" width="1.0" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="459.2" y="885" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="462.17" y="895.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="1461" width="0.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Chunk::operator new (1 samples, 0.03%)</title><rect x="457.5" y="693" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="460.46" y="703.5" font-size="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 (5 samples, 0.14%)</title><rect x="76.3" y="1941" width="1.7" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Method::build_method_counters (1 samples, 0.03%)</title><rect x="474.9" y="1173" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="477.89" y="1183.5" font-size="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 (1 samples, 0.03%)</title><rect x="1099.4" y="725" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1102.41" y="735.5" font-size="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.87 (1 samples, 0.03%)</title><rect x="149.8" y="1813" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="152.81" y="1823.5" font-size="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="999.9" y="1493" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1002.94" y="1503.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="32.6" y="165" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="175.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="492.3" y="917" width="0.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="495.32" y="927.5" font-size="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/LinearSeqOptimized:::loop$1 (2 samples, 0.06%)</title><rect x="321.1" y="325" width="0.6" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="335.5" font-size="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 (1 samples, 0.03%)</title><rect x="33.6" y="981" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Builder:::addField (1 samples, 0.03%)</title><rect x="1099.4" y="533" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1102.41" y="543.5" font-size="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 (3 samples, 0.09%)</title><rect x="106.7" y="1957" width="1.1" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="109.74" y="1967.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (3 samples, 0.09%)</title><rect x="207.2" y="1957" width="1.1" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="210.24" y="1967.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="72.6" y="245" width="0.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="75.56" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="384.3" y="485" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="387.30" y="495.5" font-size="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 (1 samples, 0.03%)</title><rect x="451.6" y="1205" width="0.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="454.65" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="482.4" y="1317" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="485.41" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vforkChild (10 samples, 0.29%)</title><rect x="503.9" y="1365" width="3.5" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>klassVtable::update_inherited_vtable (1 samples, 0.03%)</title><rect x="448.9" y="1237" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="451.91" y="1247.5" font-size="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 (7 samples, 0.20%)</title><rect x="45.6" y="1285" width="2.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="48.55" y="1295.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="75.3" y="1029" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="69.8" y="773" width="0.4" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="783.5" font-size="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/reflect/internal/pickling/UnPickler$Scan:::readExtSymbol$1 (1 samples, 0.03%)</title><rect x="473.9" y="661" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="671.5" font-size="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_huge_pmd_anonymous_page (3 samples, 0.09%)</title><rect x="599.3" y="1877" width="1.0" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="602.32" y="1887.5" font-size="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 (1 samples, 0.03%)</title><rect x="376.8" y="677" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="379.78" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_method_handle_type (1 samples, 0.03%)</title><rect x="16.2" y="53" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="19.15" y="63.5" font-size="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_ssse3_back (1 samples, 0.03%)</title><rect x="539.8" y="1925" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="542.84" y="1935.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="966.1" y="1557" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="969.10" y="1567.5" font-size="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 (1 samples, 0.03%)</title><rect x="99.2" y="1701" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="102.22" y="1711.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1845" width="2.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Hashtable&lt;Symbol*, (1 samples, 0.03%)</title><rect x="1147.6" y="1525" width="0.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="1150.61" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::dominates (1 samples, 0.03%)</title><rect x="908.3" y="1637" width="0.4" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="911.33" y="1647.5" font-size="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 (7 samples, 0.20%)</title><rect x="471.1" y="1189" width="2.4" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="474.13" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="479.7" y="1157" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="482.68" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (1 samples, 0.03%)</title><rect x="420.2" y="869" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="423.20" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (2 samples, 0.06%)</title><rect x="481.0" y="1317" width="0.7" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="484.04" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="462.9" y="869" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="879.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="1029" width="0.4" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="1039.5" font-size="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 (1 samples, 0.03%)</title><rect x="26.1" y="85" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="29.07" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="530.3" y="693" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/Configuration:::hashCode (1 samples, 0.03%)</title><rect x="472.5" y="1077" width="0.3" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="475.50" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::access_field (1 samples, 0.03%)</title><rect x="985.2" y="1621" width="0.4" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="988.24" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WaitForBarrierGCTask::do_it (1 samples, 0.03%)</title><rect x="606.5" y="1989" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="609.49" y="1999.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="942.5" y="981" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="945.51" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$:::applyAll (1 samples, 0.03%)</title><rect x="373.4" y="741" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="376.37" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="945.2" y="1237" width="0.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="1247.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1084.7" y="581" width="0.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="591.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="70.8" y="149" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="159.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="384.3" y="213" width="0.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="387.30" y="223.5" font-size="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="1115.1" y="1013" width="0.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="1118.14" y="1023.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1112.1" y="1541" width="0.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1115.06" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="526.5" y="1141" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="486.9" y="389" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="489.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VMThread::execute (5 samples, 0.14%)</title><rect x="1132.6" y="1285" width="1.7" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1135.57" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="475.9" y="1141" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="478.92" y="1151.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSite (1 samples, 0.03%)</title><rect x="390.8" y="549" width="0.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="393.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/DelegatingConstructorAccessorImpl:::newInstance (1 samples, 0.03%)</title><rect x="1116.8" y="1397" width="0.4" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="1119.85" y="1407.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1135.0" y="1301" width="0.6" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="1137.97" y="1311.5" font-size="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 samples, 0.06%)</title><rect x="475.6" y="1269" width="0.7" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text text-anchor="" x="478.57" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$5:::transform (10 samples, 0.29%)</title><rect x="414.0" y="917" width="3.5" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="417.04" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1:::write (1 samples, 0.03%)</title><rect x="1100.1" y="741" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="1103.10" y="751.5" font-size="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$$Lambda$1475/1137401656:::apply (1 samples, 0.03%)</title><rect x="73.6" y="1301" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StackMapFrame::pop_stack (1 samples, 0.03%)</title><rect x="521.4" y="1589" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="524.38" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="322.8" y="677" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="687.5" font-size="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_rwsem_down_read_failed (1 samples, 0.03%)</title><rect x="582.9" y="1909" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="585.91" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>State::DFA (1 samples, 0.03%)</title><rect x="634.2" y="1765" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="637.18" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (1 samples, 0.03%)</title><rect x="34.6" y="309" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="319.5" font-size="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="331.3" y="1893" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="334.32" y="1903.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="869" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConINode::ConINode (1 samples, 0.03%)</title><rect x="899.8" y="1845" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="902.79" y="1855.5" font-size="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 (1 samples, 0.03%)</title><rect x="1078.2" y="1141" width="0.4" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="1081.22" y="1151.5" font-size="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 samples, 0.06%)</title><rect x="71.2" y="693" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="703.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="120.8" y="1781" width="0.6" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="123.75" y="1791.5" font-size="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/lang/invoke/LambdaForm$MH/1218593486:::invoker (1 samples, 0.03%)</title><rect x="320.0" y="213" width="0.4" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (2 samples, 0.06%)</title><rect x="37.0" y="357" width="0.7" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="367.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="565" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="575.5" font-size="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 (3 samples, 0.09%)</title><rect x="474.2" y="1397" width="1.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="1407.5" font-size="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 (91 samples, 2.64%)</title><rect x="14.4" y="1301" width="31.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >In..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.03%)</title><rect x="153.2" y="1685" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="156.23" y="1695.5" font-size="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="179.2" y="1797" width="1.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="1807.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="437.3" y="661" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="440.29" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::spinup (1 samples, 0.03%)</title><rect x="884.7" y="1845" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="887.75" y="1855.5" font-size="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="1172.2" y="1621" width="0.4" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="1175.22" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Metachunk::Metachunk (4 samples, 0.12%)</title><rect x="368.2" y="309" width="1.4" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="371.24" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_interfaces (1 samples, 0.03%)</title><rect x="529.6" y="885" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="532.58" y="895.5" font-size="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/net/URLClassLoader:::findClass (6 samples, 0.17%)</title><rect x="1139.8" y="1461" width="2.0" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="1142.75" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="477.6" y="1301" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="480.62" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.6" y="1349" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke (1 samples, 0.03%)</title><rect x="1116.8" y="1317" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="1119.85" y="1327.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::buildCallSite (1 samples, 0.03%)</title><rect x="390.8" y="453" width="0.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="393.80" y="463.5" font-size="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_java_lang_Throwable_fillInStackTrace (5 samples, 0.14%)</title><rect x="174.8" y="1989" width="1.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="177.76" y="1999.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="629" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="639.5" font-size="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 samples, 0.06%)</title><rect x="68.1" y="869" width="0.7" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="879.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="530.3" y="661" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="671.5" font-size="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="251.3" y="1765" width="0.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="254.33" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.1" y="565" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="30.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="320.7" y="709" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="719.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="1237" width="1.4" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="75.6" y="1397" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1407.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.9" y="597" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="34.88" y="607.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="53.4" y="53" width="0.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="63.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="373" width="1.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::access_field (1 samples, 0.03%)</title><rect x="981.8" y="1781" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="984.83" y="1791.5" font-size="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 (2 samples, 0.06%)</title><rect x="135.8" y="1957" width="0.7" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="138.79" y="1967.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="320.7" y="533" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="543.5" font-size="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_sys_open (1 samples, 0.03%)</title><rect x="508.7" y="1349" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="511.73" y="1359.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="28.5" y="341" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="31.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::hashcons (1 samples, 0.03%)</title><rect x="923.4" y="1685" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="926.37" y="1695.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="77.7" y="245" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParallelCompactData::calc_new_pointer (9 samples, 0.26%)</title><rect x="535.7" y="1893" width="3.1" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="538.74" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="481.0" y="1061" width="0.4" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="484.04" y="1071.5" font-size="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 samples, 0.06%)</title><rect x="66.1" y="661" width="0.6" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="671.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="169.6" y="1701" width="0.4" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="172.63" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="30.5" y="293" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="33.51" y="303.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope$$Lambda$131/300604602:::apply (1 samples, 0.03%)</title><rect x="446.2" y="1189" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="449.18" y="1199.5" font-size="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/reflect/internal/pickling/UnPickler$Scan:::readTypeRef (1 samples, 0.03%)</title><rect x="74.9" y="405" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="415.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="757" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="767.5" font-size="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/net/URI:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="413.0" y="565" width="0.4" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="416.02" y="575.5" font-size="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 (1 samples, 0.03%)</title><rect x="454.4" y="1173" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="457.38" y="1183.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1085.7" y="581" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1088.74" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_invoke_instructions (1 samples, 0.03%)</title><rect x="407.9" y="997" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="410.89" y="1007.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.9" y="853" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="863.5" font-size="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 (1 samples, 0.03%)</title><rect x="439.0" y="885" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="442.00" y="895.5" font-size="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="508.0" y="1205" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="511.05" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIFG::effective_degree (3 samples, 0.09%)</title><rect x="786.0" y="1829" width="1.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="788.96" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="396.3" y="213" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="223.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="1413" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="1423.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="325" width="0.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="335.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="1269" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1279.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1:::scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (1 samples, 0.03%)</title><rect x="68.8" y="1461" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="1471.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateSerializationFriendlyMethods (1 samples, 0.03%)</title><rect x="28.8" y="149" width="0.3" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethodData::load_data (1 samples, 0.03%)</title><rect x="989.7" y="1621" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="992.69" y="1631.5" font-size="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 (5 samples, 0.14%)</title><rect x="40.4" y="389" width="1.7" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="43.42" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="103.3" y="1637" width="0.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="106.32" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="495.4" y="1349" width="0.3" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="69.8" y="869" width="0.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BiasedLocking::revoke_and_rebias (5 samples, 0.14%)</title><rect x="1132.6" y="1301" width="1.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="1135.57" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="1066.3" y="1893" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1069.26" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AdvancedThresholdPolicy::submit_compile (1 samples, 0.03%)</title><rect x="382.3" y="469" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="385.25" y="479.5" font-size="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 samples, 0.06%)</title><rect x="71.2" y="773" width="0.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="783.5" font-size="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/TraversableLike:::$plus$plus (1 samples, 0.03%)</title><rect x="398.7" y="629" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="401.66" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/OrganizationArtifactReportFormats$$anon$1:::write (4 samples, 0.12%)</title><rect x="1102.5" y="869" width="1.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="1105.49" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/Unbuilder:::beginObject (1 samples, 0.03%)</title><rect x="1089.5" y="677" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1092.50" y="687.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.2" y="389" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SpinPause (61 samples, 1.77%)</title><rect x="560.7" y="1973" width="20.8" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="563.69" y="1983.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSiteImpl (1 samples, 0.03%)</title><rect x="403.1" y="453" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="406.11" y="463.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.8" y="1349" width="0.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="1359.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="77.7" y="789" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="488.9" y="1333" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="491.90" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="1669" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1679.5" font-size="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 (2 samples, 0.06%)</title><rect x="1045.1" y="1813" width="0.6" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="1048.06" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_invoke_instructions (1 samples, 0.03%)</title><rect x="533.0" y="1637" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (3 samples, 0.09%)</title><rect x="958.2" y="1317" width="1.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="961.24" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (2 samples, 0.06%)</title><rect x="520.7" y="1749" width="0.7" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_execve (1 samples, 0.03%)</title><rect x="65.0" y="165" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="68.03" y="175.5" font-size="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 (51 samples, 1.48%)</title><rect x="264.7" y="1829" width="17.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="267.66" y="1839.5" font-size="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/reflect/internal/Types$Type:::findMember (1 samples, 0.03%)</title><rect x="68.8" y="1269" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="486.9" y="581" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="489.85" y="591.5" font-size="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 (82 samples, 2.38%)</title><rect x="1081.0" y="1493" width="28.0" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1083.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java/lang/invoke/CallSite:::makeSite (1 samples, 0.03%)</title><rect x="1108.0" y="1205" width="0.3" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="1110.96" y="1215.5" font-size="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 (6 samples, 0.17%)</title><rect x="51.4" y="981" width="2.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="991.5" font-size="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 (1 samples, 0.03%)</title><rect x="18.5" y="325" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="21.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::clone_loop (1 samples, 0.03%)</title><rect x="826.3" y="1717" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="829.29" y="1727.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="518.0" y="1141" width="0.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="520.96" y="1151.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1:::rawInfo (1 samples, 0.03%)</title><rect x="447.5" y="581" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="450.54" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (5 samples, 0.14%)</title><rect x="38.4" y="453" width="1.7" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="529.6" y="1205" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="532.58" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.03%)</title><rect x="1098.7" y="501" width="0.4" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1101.73" y="511.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="531.6" y="517" width="0.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="527.5" font-size="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 (1 samples, 0.03%)</title><rect x="317.6" y="277" width="0.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="320.65" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (9 samples, 0.26%)</title><rect x="42.5" y="677" width="3.1" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::IWait (1 samples, 0.03%)</title><rect x="540.2" y="1957" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="543.18" y="1967.5" font-size="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 (1 samples, 0.03%)</title><rect x="79.7" y="389" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method (1 samples, 0.03%)</title><rect x="33.2" y="53" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="63.5" font-size="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="322.8" y="261" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="271.5" font-size="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 (3 samples, 0.09%)</title><rect x="474.2" y="1205" width="1.0" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RegMask::clear_to_sets (1 samples, 0.03%)</title><rect x="762.7" y="1861" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="765.71" y="1871.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$9:::scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (1 samples, 0.03%)</title><rect x="473.9" y="1157" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="1167.5" font-size="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 samples, 0.06%)</title><rect x="321.1" y="581" width="0.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="71.9" y="789" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="799.5" font-size="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 samples, 0.03%)</title><rect x="379.9" y="341" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="382.86" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1552/1252204540:::apply (1 samples, 0.03%)</title><rect x="409.3" y="741" width="0.3" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="412.26" y="751.5" font-size="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$$Lambda$1475/1137401656:::apply (3 samples, 0.09%)</title><rect x="63.0" y="1477" width="1.0" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (1 samples, 0.03%)</title><rect x="323.5" y="645" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="326.46" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (1 samples, 0.03%)</title><rect x="319.4" y="2021" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="322.36" y="2031.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CHeapObj&lt; (1 samples, 0.03%)</title><rect x="23.0" y="53" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="25.99" y="63.5" font-size="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 (1 samples, 0.03%)</title><rect x="173.1" y="1877" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="176.05" y="1887.5" font-size="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 (1 samples, 0.03%)</title><rect x="1081.3" y="709" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (5 samples, 0.14%)</title><rect x="961.0" y="1733" width="1.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="963.97" y="1743.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2:::read (5 samples, 0.14%)</title><rect x="1092.6" y="901" width="1.7" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1095.58" y="911.5" font-size="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_context_sched_in (10 samples, 0.29%)</title><rect x="1055.7" y="1781" width="3.4" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text text-anchor="" x="1058.66" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::call_profile_at_bci (1 samples, 0.03%)</title><rect x="942.2" y="1205" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="945.17" y="1215.5" font-size="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 (1 samples, 0.03%)</title><rect x="395.9" y="501" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="398.93" y="511.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.1" y="965" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="975.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.6" y="1269" width="0.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (3 samples, 0.09%)</title><rect x="436.3" y="997" width="1.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="1007.5" font-size="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 (2 samples, 0.06%)</title><rect x="156.0" y="1941" width="0.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="158.96" y="1951.5" font-size="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 (1 samples, 0.03%)</title><rect x="80.4" y="773" width="0.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="83.42" y="783.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="27.8" y="693" width="0.3" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="703.5" font-size="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/mutable/ArrayBuilder$ofByte:::$plus$plus$eq (1 samples, 0.03%)</title><rect x="398.7" y="613" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="401.66" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="18.5" y="117" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="21.55" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::check_method_loader_constraints (1 samples, 0.03%)</title><rect x="928.5" y="1365" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="931.50" y="1375.5" font-size="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 (1 samples, 0.03%)</title><rect x="34.6" y="757" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="767.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="37.7" y="277" width="0.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/KCons:::transform (2 samples, 0.06%)</title><rect x="418.1" y="773" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="421.15" y="783.5" font-size="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 (1 samples, 0.03%)</title><rect x="1181.8" y="1749" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1759.5" font-size="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/lang/Class:::forName (1 samples, 0.03%)</title><rect x="375.1" y="805" width="0.3" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="69.5" y="981" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="991.5" font-size="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="80.8" y="1925" width="1.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="83.76" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invokedynamic (1 samples, 0.03%)</title><rect x="28.8" y="389" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="399.5" font-size="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/lang/invoke/CallSite:::makeSite (1 samples, 0.03%)</title><rect x="456.4" y="933" width="0.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="459.43" y="943.5" font-size="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/runtime/Statics:::anyHash (1 samples, 0.03%)</title><rect x="1109.7" y="1605" width="0.3" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="1112.67" y="1615.5" font-size="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/security/MessageDigest:::update (1 samples, 0.03%)</title><rect x="399.3" y="629" width="0.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="402.35" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1157" width="0.3" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="27.8" y="613" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="623.5" font-size="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_safe (32 samples, 0.93%)</title><rect x="271.2" y="1781" width="10.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="274.16" y="1791.5" font-size="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_java_lang_Throwable_fillInStackTrace (1 samples, 0.03%)</title><rect x="481.0" y="741" width="0.4" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="484.04" y="751.5" font-size="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="1119.9" y="1509" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1122.92" y="1519.5" font-size="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 (3 samples, 0.09%)</title><rect x="309.8" y="1957" width="1.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="312.79" y="1967.5" font-size="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 (1 samples, 0.03%)</title><rect x="485.5" y="901" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="488.49" y="911.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="70.8" y="181" width="0.4" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="191.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="581" width="0.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (1 samples, 0.03%)</title><rect x="962.3" y="1589" width="0.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="965.34" y="1599.5" font-size="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="743.6" y="1765" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="746.57" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="1107.6" y="1253" width="0.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1110.62" y="1263.5" font-size="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="103.3" y="1685" width="0.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="106.32" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (1 samples, 0.03%)</title><rect x="935.0" y="997" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="937.99" y="1007.5" font-size="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_java_util_zip_Inflater_inflateBytes (1 samples, 0.03%)</title><rect x="529.6" y="533" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="532.58" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIRGenerator::do_Goto (3 samples, 0.09%)</title><rect x="1011.2" y="1829" width="1.0" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1014.22" y="1839.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope:::$anonfun$lookupEntry$1 (1 samples, 0.03%)</title><rect x="473.2" y="1045" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="476.18" y="1055.5" font-size="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 (1 samples, 0.03%)</title><rect x="450.3" y="1221" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="453.28" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AbstractLockNode::find_lock_and_unlock_through_if (1 samples, 0.03%)</title><rect x="898.1" y="1861" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="901.08" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (1 samples, 0.03%)</title><rect x="834.8" y="1781" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="837.84" y="1791.5" font-size="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/net/URLClassLoader:::findClass (2 samples, 0.06%)</title><rect x="475.6" y="1333" width="0.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="478.57" y="1343.5" font-size="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/Iterator$$anon$10:::next (40 samples, 1.16%)</title><rect x="408.2" y="1061" width="13.7" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="411.23" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (3 samples, 0.09%)</title><rect x="227.4" y="2021" width="1.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="230.40" y="2031.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (310 samples, 8.98%)</title><rect x="1067.6" y="1973" width="106.0" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="1070.62" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_entry</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_static_call (1 samples, 0.03%)</title><rect x="1130.5" y="1317" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="1133.52" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Keyed:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="410.6" y="693" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="413.63" y="703.5" font-size="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 (1 samples, 0.03%)</title><rect x="16.2" y="277" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="19.15" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$11:::apply (1 samples, 0.03%)</title><rect x="442.4" y="789" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="445.42" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.0" y="677" width="0.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="80.00" y="687.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1349" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method_index (1 samples, 0.03%)</title><rect x="531.6" y="373" width="0.4" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (1 samples, 0.03%)</title><rect x="253.0" y="1973" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="256.04" y="1983.5" font-size="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 (8 samples, 0.23%)</title><rect x="465.7" y="1349" width="2.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="468.66" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="72.9" y="1285" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="70.5" y="965" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="73.50" y="975.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.9" y="693" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="703.5" font-size="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 (3 samples, 0.09%)</title><rect x="474.2" y="1381" width="1.0" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="1391.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="175.4" y="1733" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="178.45" y="1743.5" font-size="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 (1 samples, 0.03%)</title><rect x="18.2" y="437" width="0.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="21.20" y="447.5" font-size="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 (2 samples, 0.06%)</title><rect x="175.1" y="1925" width="0.7" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="178.10" y="1935.5" font-size="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 (5 samples, 0.14%)</title><rect x="49.3" y="1125" width="1.7" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="1113.1" y="1253" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1116.09" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_exec (1 samples, 0.03%)</title><rect x="500.2" y="1253" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="503.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_ref_at (1 samples, 0.03%)</title><rect x="1110.7" y="1621" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1113.70" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::oop_follow_contents (9 samples, 0.26%)</title><rect x="549.4" y="1957" width="3.1" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="552.41" y="1967.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1205" width="1.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MilliNative:::getModifiedTime (1 samples, 0.03%)</title><rect x="1078.9" y="1525" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1081.90" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ShouldNotReachHereNode::size_of (5 samples, 0.14%)</title><rect x="151.2" y="2021" width="1.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="154.18" y="2031.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.6" y="117" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="22.57" y="127.5" font-size="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 (1 samples, 0.03%)</title><rect x="28.1" y="757" width="0.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="31.12" y="767.5" font-size="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 samples, 0.06%)</title><rect x="393.9" y="357" width="0.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="367.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="165" width="0.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (1 samples, 0.03%)</title><rect x="1188.6" y="1877" width="0.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1191.63" y="1887.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.6" y="1893" width="0.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1903.5" font-size="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 (2 samples, 0.06%)</title><rect x="99.2" y="1861" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="102.22" y="1871.5" font-size="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 (2 samples, 0.06%)</title><rect x="117.0" y="1829" width="0.7" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="119.99" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciInstanceKlass::is_boxed_value_offset (1 samples, 0.03%)</title><rect x="633.5" y="1781" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="636.50" y="1791.5" font-size="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 (4 samples, 0.12%)</title><rect x="317.0" y="1029" width="1.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/KCons:::transform (1 samples, 0.03%)</title><rect x="415.8" y="789" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="418.75" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="395.9" y="437" width="0.4" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="398.93" y="447.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="462.9" y="1301" width="0.4" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (1 samples, 0.03%)</title><rect x="460.2" y="1317" width="0.3" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="463.19" y="1327.5" font-size="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="313.5" y="2021" width="0.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="316.55" y="2031.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="75.3" y="485" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="495.5" font-size="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 (1 samples, 0.03%)</title><rect x="385.7" y="517" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="495.4" y="1397" width="0.3" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::interpreter_callee_receiver_addr (1 samples, 0.03%)</title><rect x="367.9" y="469" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="370.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SignatureIterator::iterate_returntype (4 samples, 0.12%)</title><rect x="91.0" y="1957" width="1.4" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="94.01" y="1967.5" font-size="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 (2 samples, 0.06%)</title><rect x="88.3" y="1957" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="91.28" y="1967.5" font-size="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/tools/nsc/ast/parser/Scanners$Scanner:::fetchToken (1 samples, 0.03%)</title><rect x="38.0" y="85" width="0.4" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="95.5" font-size="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-25316.map] (9 samples, 0.26%)</title><rect x="42.5" y="981" width="3.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="991.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="533" width="3.1" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="543.5" font-size="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 (5 samples, 0.14%)</title><rect x="38.4" y="1109" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="21.3" y="245" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="24.28" y="255.5" font-size="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 (1 samples, 0.03%)</title><rect x="494.7" y="1573" width="0.4" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="497.72" y="1583.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.0" y="741" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="751.5" font-size="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/AbstractTraversable:::$div$colon (3 samples, 0.09%)</title><rect x="382.6" y="773" width="1.0" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="385.60" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="530.6" y="1269" width="0.4" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="1279.5" font-size="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_entity (1 samples, 0.03%)</title><rect x="185.4" y="1829" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="188.36" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (1 samples, 0.03%)</title><rect x="413.7" y="917" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="416.70" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (2 samples, 0.06%)</title><rect x="921.7" y="1701" width="0.6" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="924.66" y="1711.5" font-size="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 (1 samples, 0.03%)</title><rect x="1107.3" y="1237" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arena::Arealloc (1 samples, 0.03%)</title><rect x="971.9" y="1877" width="0.4" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="974.91" y="1887.5" font-size="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 samples, 0.06%)</title><rect x="14.4" y="213" width="0.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="223.5" font-size="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 (1 samples, 0.03%)</title><rect x="375.8" y="741" width="0.3" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="378.76" y="751.5" font-size="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 (7 samples, 0.20%)</title><rect x="460.5" y="1301" width="2.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_static_call_or_null (1 samples, 0.03%)</title><rect x="953.8" y="1285" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="956.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$11:::apply (1 samples, 0.03%)</title><rect x="442.8" y="757" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="445.76" y="767.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="490.3" y="1301" width="0.3" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="493.27" y="1311.5" font-size="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_sample_event_took (1 samples, 0.03%)</title><rect x="92.7" y="1653" width="0.4" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="95.72" y="1663.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="453" width="1.0" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="463.5" font-size="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 (3 samples, 0.09%)</title><rect x="525.8" y="1349" width="1.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="528.82" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="1099.4" y="597" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="1102.41" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="73.2" y="437" width="0.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool (1 samples, 0.03%)</title><rect x="449.3" y="917" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="452.25" y="927.5" font-size="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 (1 samples, 0.03%)</title><rect x="23.3" y="533" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="26.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="458.1" y="1093" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VirtualCallGenerator::generate (1 samples, 0.03%)</title><rect x="950.7" y="1717" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="953.72" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke (6 samples, 0.17%)</title><rect x="58.9" y="885" width="2.0" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="895.5" font-size="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 samples, 0.06%)</title><rect x="458.5" y="789" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="461.48" y="799.5" font-size="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/mutable/ArrayOps$ofRef:::foreach (1 samples, 0.03%)</title><rect x="75.3" y="581" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="591.5" font-size="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="205.9" y="1717" width="0.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="208.87" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$:::configInheritRef (5 samples, 0.14%)</title><rect x="1085.4" y="869" width="1.7" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1088.40" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (4 samples, 0.12%)</title><rect x="47.9" y="485" width="1.4" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="1147.6" y="1557" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1150.61" y="1567.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="462.9" y="789" width="0.4" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="1701" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="1711.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="1157" width="1.0" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="1167.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="1365" width="0.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="1375.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.0" y="613" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="623.5" font-size="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 (3 samples, 0.09%)</title><rect x="63.0" y="1365" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="1375.5" font-size="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 (1 samples, 0.03%)</title><rect x="319.7" y="1381" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1391.5" font-size="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 (1 samples, 0.03%)</title><rect x="450.6" y="1253" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1263.5" font-size="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_page_fault (1 samples, 0.03%)</title><rect x="546.3" y="1893" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="549.33" y="1903.5" font-size="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 (2 samples, 0.06%)</title><rect x="1130.9" y="1125" width="0.6" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1133.86" y="1135.5" font-size="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/reflect/internal/pickling/PickleBuffer:::until (1 samples, 0.03%)</title><rect x="473.5" y="949" width="0.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="959.5" font-size="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 (1 samples, 0.03%)</title><rect x="86.6" y="1845" width="0.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="89.57" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.03%)</title><rect x="962.3" y="1285" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="965.34" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IdealLoopTree::counted_loop (1 samples, 0.03%)</title><rect x="825.6" y="1845" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="828.61" y="1855.5" font-size="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 samples, 0.06%)</title><rect x="24.7" y="613" width="0.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="27.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$:::$anonfun$findProven$2 (1 samples, 0.03%)</title><rect x="1171.2" y="1877" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1174.20" y="1887.5" font-size="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 samples, 0.06%)</title><rect x="520.7" y="1605" width="0.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1615.5" font-size="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 (1 samples, 0.03%)</title><rect x="62.3" y="149" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="65.30" y="159.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.9" y="773" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="783.5" font-size="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/reflect/internal/Definitions$DefinitionsClass:::ObjectClass (3 samples, 0.09%)</title><rect x="26.1" y="453" width="1.0" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="29.07" y="463.5" font-size="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="80.8" y="2005" width="1.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="83.76" y="2015.5" font-size="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 (7 samples, 0.20%)</title><rect x="102.3" y="1909" width="2.4" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="105.29" y="1919.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.2" y="789" width="0.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (2 samples, 0.06%)</title><rect x="528.6" y="837" width="0.6" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="531.56" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::change_sig_to_verificationType (1 samples, 0.03%)</title><rect x="397.3" y="261" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="400.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::args_list_for_profiling (1 samples, 0.03%)</title><rect x="984.2" y="1669" width="0.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="987.22" y="1679.5" font-size="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 (3 samples, 0.09%)</title><rect x="458.5" y="997" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="461.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.03%)</title><rect x="318.7" y="133" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (3 samples, 0.09%)</title><rect x="599.3" y="1941" width="1.0" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="602.32" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeOopPtr::xmeet (1 samples, 0.03%)</title><rect x="917.2" y="1749" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="920.22" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Project:::copy (1 samples, 0.03%)</title><rect x="75.3" y="1253" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1263.5" font-size="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="1034.8" y="1573" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="1037.81" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="27.8" y="757" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Util$$$Lambda$321/1832657711:::apply (14 samples, 0.41%)</title><rect x="408.9" y="933" width="4.8" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="411.92" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.4" y="741" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="751.5" font-size="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 (1 samples, 0.03%)</title><rect x="463.3" y="693" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="466.27" y="703.5" font-size="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/time/format/DateTimeFormatter:::parse (1 samples, 0.03%)</title><rect x="1094.3" y="837" width="0.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="1097.29" y="847.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope:::syncLockSynchronized (1 samples, 0.03%)</title><rect x="446.2" y="1205" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="449.18" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="390.8" y="597" width="0.3" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="393.80" y="607.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1088.8" y="629" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1091.82" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="95.1" y="1685" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="98.12" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>klassVtable::compute_vtable_size_and_num_mirandas (1 samples, 0.03%)</title><rect x="527.2" y="1253" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="530.19" y="1263.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="229" width="0.4" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="239.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.2" y="517" width="0.4" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.03%)</title><rect x="942.5" y="1109" width="0.4" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="945.51" y="1119.5" font-size="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 (3 samples, 0.09%)</title><rect x="506.3" y="1093" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="509.34" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="42.1" y="421" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="431.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="180.6" y="1701" width="0.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="183.57" y="1711.5" font-size="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 (1 samples, 0.03%)</title><rect x="445.8" y="1157" width="0.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="448.83" y="1167.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1077" width="1.1" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_field (1 samples, 0.03%)</title><rect x="608.9" y="1765" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="611.89" y="1775.5" font-size="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/time/format/DateTimeFormatter:::parseResolved0 (1 samples, 0.03%)</title><rect x="1096.3" y="773" width="0.4" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="1099.34" y="783.5" font-size="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 (6 samples, 0.17%)</title><rect x="40.1" y="789" width="2.0" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="799.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope:::lookupEntry (1 samples, 0.03%)</title><rect x="473.2" y="1093" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="476.18" y="1103.5" font-size="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_page_fault (10 samples, 0.29%)</title><rect x="594.5" y="1909" width="3.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="597.53" y="1919.5" font-size="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 samples, 0.03%)</title><rect x="386.0" y="837" width="0.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="389.01" y="847.5" font-size="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 (1 samples, 0.03%)</title><rect x="474.2" y="821" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="451.6" y="1221" width="0.4" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="454.65" y="1231.5" font-size="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="1055.3" y="1813" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1058.32" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_interfaces (1 samples, 0.03%)</title><rect x="490.3" y="805" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="493.27" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="492.0" y="1061" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="494.98" y="1071.5" font-size="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 (2 samples, 0.06%)</title><rect x="1009.5" y="1605" width="0.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1012.51" y="1615.5" font-size="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 (10 samples, 0.29%)</title><rect x="401.7" y="837" width="3.5" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="404.74" y="847.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.6" y="997" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="38.64" y="1007.5" font-size="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 (3 samples, 0.09%)</title><rect x="321.7" y="533" width="1.1" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="324.75" y="543.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="1285" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1556/528965756:::apply (1 samples, 0.03%)</title><rect x="410.6" y="533" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="413.63" y="543.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="245" width="1.4" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="255.5" font-size="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.26%)</title><rect x="185.7" y="1877" width="3.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="188.70" y="1887.5" font-size="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/tools/nsc/ast/parser/Parsers$Parser:::simpleExprRest (1 samples, 0.03%)</title><rect x="38.0" y="693" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="703.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.9" y="389" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anonfun$localAndDerived$1$1:::applyOrElse (2 samples, 0.06%)</title><rect x="1082.7" y="821" width="0.6" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="1085.67" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="1381" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="1391.5" font-size="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 samples, 0.06%)</title><rect x="66.1" y="405" width="0.6" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="415.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="725" width="0.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope:::equals (1 samples, 0.03%)</title><rect x="411.7" y="661" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="414.65" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arena::Arena (1 samples, 0.03%)</title><rect x="608.5" y="1909" width="0.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="611.55" y="1919.5" font-size="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 (2 samples, 0.06%)</title><rect x="517.3" y="1077" width="0.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="520.28" y="1087.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="70.8" y="597" width="0.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="72.2" y="85" width="0.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="75.21" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="524.1" y="1029" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="527.11" y="1039.5" font-size="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 (8 samples, 0.23%)</title><rect x="14.4" y="437" width="2.8" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="447.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="36.7" y="165" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="39.66" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="396.3" y="133" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="143.5" font-size="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 (1 samples, 0.03%)</title><rect x="445.8" y="1029" width="0.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="448.83" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (3 samples, 0.09%)</title><rect x="436.3" y="965" width="1.0" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (2 samples, 0.06%)</title><rect x="526.8" y="1525" width="0.7" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="529.85" y="1535.5" font-size="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="179.2" y="1045" width="1.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="1055.5" font-size="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="92.4" y="1941" width="1.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="95.38" y="1951.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.9" y="629" width="0.4" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="22.91" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="437.6" y="757" width="0.4" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="440.63" y="767.5" font-size="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_java_util_zip_Inflater_inflateBytes (1 samples, 0.03%)</title><rect x="486.5" y="821" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="489.51" y="831.5" font-size="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 (3 samples, 0.09%)</title><rect x="66.7" y="389" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="399.5" font-size="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 (11 samples, 0.32%)</title><rect x="55.1" y="293" width="3.8" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="303.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="309" width="2.0" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.7" y="1029" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::ILock (4 samples, 0.12%)</title><rect x="1048.1" y="1893" width="1.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="1051.14" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (2 samples, 0.06%)</title><rect x="493.3" y="1429" width="0.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="496.35" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="981" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (1 samples, 0.03%)</title><rect x="455.1" y="1269" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="458.06" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::already_resolved (1 samples, 0.03%)</title><rect x="380.2" y="341" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="383.20" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="440.4" y="1173" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="443.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (5 samples, 0.14%)</title><rect x="955.5" y="1285" width="1.7" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="958.50" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.03%)</title><rect x="959.9" y="1093" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="962.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="454.7" y="1093" width="0.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="457.72" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (1 samples, 0.03%)</title><rect x="37.7" y="37" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="47.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="1253" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="1263.5" font-size="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_next_entity (1 samples, 0.03%)</title><rect x="171.0" y="1813" width="0.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="174.00" y="1823.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.0" y="645" width="0.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="655.5" font-size="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="318.0" y="309" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="821" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="470.8" y="1141" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="473.79" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (2 samples, 0.06%)</title><rect x="525.1" y="1573" width="0.7" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SignatureIterator::iterate_returntype (1 samples, 0.03%)</title><rect x="17.5" y="53" width="0.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="20.52" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (6 samples, 0.17%)</title><rect x="58.9" y="645" width="2.0" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="655.5" font-size="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 (1 samples, 0.03%)</title><rect x="377.8" y="133" width="0.4" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="380.81" y="143.5" font-size="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 (4 samples, 0.12%)</title><rect x="76.3" y="1429" width="1.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="1439.5" font-size="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 samples, 0.06%)</title><rect x="526.8" y="1477" width="0.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="529.85" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_field_by_index_impl (1 samples, 0.03%)</title><rect x="934.7" y="1013" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="937.65" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="78.0" y="85" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="95.5" font-size="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 (2 samples, 0.06%)</title><rect x="1172.2" y="1829" width="0.7" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1175.22" y="1839.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="37.7" y="69" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="80.1" y="309" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="83.08" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="821" width="0.3" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="75.6" y="1477" width="0.4" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1487.5" font-size="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/tools/nsc/ast/parser/Parsers$Parser:::simpleExprRest (1 samples, 0.03%)</title><rect x="394.6" y="373" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="397.56" y="383.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="483.1" y="1365" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="486.09" y="1375.5" font-size="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 (2 samples, 0.06%)</title><rect x="1140.1" y="1141" width="0.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1143.09" y="1151.5" font-size="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/TraversableLike:::flatMap$ (3 samples, 0.09%)</title><rect x="424.0" y="1061" width="1.0" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="426.96" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="448.6" y="1157" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (5 samples, 0.14%)</title><rect x="1149.3" y="1701" width="1.7" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1152.32" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (12 samples, 0.35%)</title><rect x="455.7" y="1205" width="4.1" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="458.75" y="1215.5" font-size="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 samples, 0.06%)</title><rect x="520.7" y="1573" width="0.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1583.5" font-size="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/LinearSeqOptimized:::loop$1 (1 samples, 0.03%)</title><rect x="32.6" y="1029" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_return_value (2 samples, 0.06%)</title><rect x="522.4" y="1429" width="0.7" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="525.40" y="1439.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="137.5" y="1749" width="0.3" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="140.50" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.03%)</title><rect x="365.5" y="69" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="368.50" y="79.5" font-size="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/net/URLClassLoader$1:::run (1 samples, 0.03%)</title><rect x="323.5" y="213" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="326.46" y="223.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="457.1" y="933" width="0.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="460.11" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CallInfo::set_static (1 samples, 0.03%)</title><rect x="33.6" y="85" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="19.9" y="485" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="22.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="942.5" y="1077" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="945.51" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_interface_method (1 samples, 0.03%)</title><rect x="31.9" y="53" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="34.88" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IfNode::is_range_check (1 samples, 0.03%)</title><rect x="900.5" y="1845" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="903.47" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (2 samples, 0.06%)</title><rect x="63.3" y="405" width="0.7" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="523.8" y="1221" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="526.77" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_return_value (2 samples, 0.06%)</title><rect x="528.6" y="789" width="0.6" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="531.56" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup_only (1 samples, 0.03%)</title><rect x="1081.3" y="245" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="255.5" font-size="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$$Lambda$1475/1137401656:::apply (1 samples, 0.03%)</title><rect x="76.7" y="373" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="79.66" y="383.5" font-size="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 (125 samples, 3.62%)</title><rect x="363.1" y="1061" width="42.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="366.11" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scala/collection/immutable/StringLike$$Lambda$602/1419166053:::apply (1 samples, 0.03%)</title><rect x="319.7" y="949" width="0.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="496.8" y="1093" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="37.7" y="901" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="40.69" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_classfile_attributes (1 samples, 0.03%)</title><rect x="40.1" y="37" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Resource:::getBytes (1 samples, 0.03%)</title><rect x="492.3" y="773" width="0.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="495.32" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (3 samples, 0.09%)</title><rect x="528.2" y="933" width="1.0" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="25.4" y="133" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="28.38" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="492.3" y="1029" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="495.32" y="1039.5" font-size="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 (1 samples, 0.03%)</title><rect x="49.3" y="997" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeInstPtr::make (1 samples, 0.03%)</title><rect x="964.0" y="1765" width="0.4" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="967.05" y="1775.5" font-size="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/AbstractTraversable:::$div$colon (1 samples, 0.03%)</title><rect x="383.3" y="709" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="386.28" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (2 samples, 0.06%)</title><rect x="476.6" y="1445" width="0.7" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="479.60" y="1455.5" font-size="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/lang/Class:::getAnnotation (1 samples, 0.03%)</title><rect x="1100.8" y="645" width="0.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="1103.78" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_fork (1 samples, 0.03%)</title><rect x="68.1" y="261" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="524.1" y="1125" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="527.11" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="521.4" y="789" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="524.38" y="799.5" font-size="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 (3 samples, 0.09%)</title><rect x="317.0" y="565" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="575.5" font-size="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_mmap (1 samples, 0.03%)</title><rect x="174.8" y="1941" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="177.76" y="1951.5" font-size="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 (1 samples, 0.03%)</title><rect x="78.0" y="309" width="0.4" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="319.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="156.3" y="1749" width="0.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="159.30" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StackMapTable::check_jump_target (1 samples, 0.03%)</title><rect x="478.3" y="1413" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="481.31" y="1423.5" font-size="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 (1 samples, 0.03%)</title><rect x="109.8" y="1765" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="112.81" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="949" width="0.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="959.5" font-size="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 (11 samples, 0.32%)</title><rect x="55.1" y="277" width="3.8" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="287.5" font-size="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 (1 samples, 0.03%)</title><rect x="477.6" y="1269" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="480.62" y="1279.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1477" width="2.8" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (9 samples, 0.26%)</title><rect x="947.3" y="1653" width="3.1" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1663.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="165" width="1.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::find_monomorphic_target (1 samples, 0.03%)</title><rect x="922.7" y="1701" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="925.69" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="528.2" y="405" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="415.5" font-size="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 (1 samples, 0.03%)</title><rect x="1149.7" y="917" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1152.66" y="927.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="1137.4" y="1429" width="0.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1140.36" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PSPromotionLAB::flush (1 samples, 0.03%)</title><rect x="606.2" y="1925" width="0.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="609.15" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (2 samples, 0.06%)</title><rect x="412.0" y="789" width="0.7" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="414.99" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="60.9" y="341" width="0.4" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="63.93" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_invoke_static (8 samples, 0.23%)</title><rect x="78.0" y="2005" width="2.8" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="2015.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="314.2" y="2021" width="0.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="317.23" y="2031.5" font-size="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 (1 samples, 0.03%)</title><rect x="14.4" y="37" width="0.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="47.5" font-size="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 (1 samples, 0.03%)</title><rect x="1098.4" y="549" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="1101.39" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="454.0" y="1205" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="457.04" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/nio/cs/UTF_8$Encoder:::encodeLoop (1 samples, 0.03%)</title><rect x="1106.6" y="1077" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="1109.59" y="1087.5" font-size="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_nmi_handler (1 samples, 0.03%)</title><rect x="544.3" y="1669" width="0.3" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="547.28" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="473.5" y="485" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="439.7" y="421" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="385.7" y="773" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="783.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="661" width="2.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="671.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="439.7" y="709" width="0.3" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (9 samples, 0.26%)</title><rect x="954.5" y="1477" width="3.1" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="957.48" y="1487.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1605" width="2.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1615.5" font-size="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_rwsem_down_write_failed (1 samples, 0.03%)</title><rect x="380.5" y="501" width="0.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="383.54" y="511.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="917" width="3.1" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_special (1 samples, 0.03%)</title><rect x="317.3" y="117" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="320.31" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/IMap$IMap0$$Lambda$1564/1454942961:::apply (40 samples, 1.16%)</title><rect x="408.2" y="1045" width="13.7" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="411.23" y="1055.5" font-size="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 samples, 0.06%)</title><rect x="321.7" y="181" width="0.7" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text text-anchor="" x="324.75" y="191.5" font-size="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_safe (21 samples, 0.61%)</title><rect x="336.4" y="1797" width="7.2" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="339.45" y="1807.5" font-size="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_nmi_handler (1 samples, 0.03%)</title><rect x="138.9" y="1701" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="141.87" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_execve (5 samples, 0.14%)</title><rect x="505.7" y="1317" width="1.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="508.65" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_method (1 samples, 0.03%)</title><rect x="1116.5" y="1317" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1119.51" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="51.0" y="485" width="0.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="495.5" font-size="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 (16 samples, 0.46%)</title><rect x="14.4" y="629" width="5.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="639.5" font-size="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/TraversableLike:::flatMap$ (1 samples, 0.03%)</title><rect x="320.4" y="725" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="323.38" y="735.5" font-size="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="1137.7" y="1493" width="0.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1140.70" y="1503.5" font-size="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 (3 samples, 0.09%)</title><rect x="20.6" y="389" width="1.0" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="23.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.03%)</title><rect x="226.7" y="1877" width="0.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="229.72" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="452.7" y="1269" width="0.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="455.67" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.3" y="149" width="0.4" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="159.5" font-size="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 (2 samples, 0.06%)</title><rect x="1115.1" y="1093" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1118.14" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="25.4" y="309" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="28.38" y="319.5" font-size="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_java_util_zip_ZipFile_open (1 samples, 0.03%)</title><rect x="533.0" y="949" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="959.5" font-size="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 (3 samples, 0.09%)</title><rect x="20.6" y="661" width="1.0" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="23.60" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="521.4" y="1157" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="524.38" y="1167.5" font-size="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 (1 samples, 0.03%)</title><rect x="1106.9" y="933" width="0.4" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="1109.94" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.7" y="1173" width="0.3" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="529.6" y="949" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="532.58" y="959.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="597" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.1" y="69" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="30.09" y="79.5" font-size="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 samples, 0.06%)</title><rect x="29.8" y="213" width="0.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="32.83" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (1 samples, 0.03%)</title><rect x="460.2" y="1333" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="463.19" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="309" width="0.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIR_Assembler::emit_op1 (1 samples, 0.03%)</title><rect x="1007.8" y="1861" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="1010.80" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::indexedDelegates (1 samples, 0.03%)</title><rect x="430.8" y="965" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="433.79" y="975.5" font-size="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/TraversableLike:::flatMap$ (1 samples, 0.03%)</title><rect x="418.1" y="613" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="421.15" y="623.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="1093" width="1.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="1103.5" font-size="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 samples, 0.06%)</title><rect x="66.1" y="485" width="0.6" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="495.5" font-size="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 samples, 0.06%)</title><rect x="393.9" y="309" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="319.5" font-size="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 (3 samples, 0.09%)</title><rect x="37.0" y="1013" width="1.0" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="1023.5" font-size="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 (2 samples, 0.06%)</title><rect x="85.2" y="1861" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="88.20" y="1871.5" font-size="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 (1 samples, 0.03%)</title><rect x="459.2" y="917" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="462.17" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::do_flow (1 samples, 0.03%)</title><rect x="953.5" y="1653" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="956.45" y="1663.5" font-size="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_ssse3_back (1 samples, 0.03%)</title><rect x="558.6" y="1925" width="0.4" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="561.64" y="1935.5" font-size="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 (13 samples, 0.38%)</title><rect x="165.2" y="2005" width="4.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="168.19" y="2015.5" font-size="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 (1 samples, 0.03%)</title><rect x="51.0" y="1205" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="1215.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.9" y="437" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="34.88" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="1137.7" y="1509" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="1140.70" y="1519.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="468.7" y="1253" width="0.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="471.74" y="1263.5" font-size="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 (1 samples, 0.03%)</title><rect x="18.9" y="149" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="21.89" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$$$Lambda$962/1595180029:::apply (1 samples, 0.03%)</title><rect x="318.7" y="1141" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="1151.5" font-size="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/lang/String:::codePointAt (1 samples, 0.03%)</title><rect x="496.8" y="1061" width="0.3" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1071.5" font-size="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/lang/invoke/LambdaForm$DMH/802581203:::invokeStatic_L5_L (1 samples, 0.03%)</title><rect x="15.8" y="341" width="0.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="18.81" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="531.6" y="725" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="520.0" y="1461" width="0.4" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="523.01" y="1471.5" font-size="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 (1 samples, 0.03%)</title><rect x="16.8" y="293" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="19.84" y="303.5" font-size="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.26%)</title><rect x="185.7" y="1957" width="3.1" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="188.70" y="1967.5" font-size="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 (1 samples, 0.03%)</title><rect x="1142.1" y="1381" width="0.4" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1145.14" y="1391.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="486.9" y="565" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="489.85" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="490.3" y="421" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="493.27" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConNode::ConNode (1 samples, 0.03%)</title><rect x="891.6" y="1781" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="894.58" y="1791.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="495.7" y="1477" width="0.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="498.74" y="1487.5" font-size="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 (1 samples, 0.03%)</title><rect x="319.7" y="1525" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1535.5" font-size="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="1157.9" y="1685" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="1160.87" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="320.7" y="229" width="0.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="239.5" font-size="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 (11 samples, 0.32%)</title><rect x="55.1" y="1029" width="3.8" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1556/528965756:::apply (2 samples, 0.06%)</title><rect x="416.8" y="773" width="0.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="419.78" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Util$$$Lambda$321/1832657711:::apply (1 samples, 0.03%)</title><rect x="371.0" y="677" width="0.3" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="373.97" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OopMap::deep_copy (1 samples, 0.03%)</title><rect x="1005.1" y="1781" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="1008.07" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="36.7" y="581" width="0.3" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="39.66" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="405.8" y="901" width="0.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="408.84" y="911.5" font-size="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 (1 samples, 0.03%)</title><rect x="323.1" y="773" width="0.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="326.12" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="962.3" y="1141" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="965.34" y="1151.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="1173" width="1.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="1183.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="19.2" y="149" width="0.4" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="22.23" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIterGVN::optimize (17 samples, 0.49%)</title><rect x="890.2" y="1877" width="5.8" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="893.21" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::StateVector::do_getstatic (1 samples, 0.03%)</title><rect x="935.7" y="901" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="938.68" y="911.5" font-size="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 (8 samples, 0.23%)</title><rect x="527.9" y="1317" width="2.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="530.87" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (1 samples, 0.03%)</title><rect x="69.5" y="1093" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CallInfo::set_static (1 samples, 0.03%)</title><rect x="991.4" y="1573" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="994.40" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_execve (3 samples, 0.09%)</title><rect x="1188.6" y="2021" width="1.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="1191.63" y="2031.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="78.7" y="437" width="0.3" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="81.71" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="372.0" y="581" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="375.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="457.1" y="1013" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="460.11" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (2 samples, 0.06%)</title><rect x="932.6" y="805" width="0.7" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="935.60" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (2 samples, 0.06%)</title><rect x="397.6" y="549" width="0.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="400.64" y="559.5" font-size="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_execve (2 samples, 0.06%)</title><rect x="67.1" y="293" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="70.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.03%)</title><rect x="895.3" y="1781" width="0.4" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="898.34" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Assembler::call_literal (4 samples, 0.12%)</title><rect x="11.7" y="2037" width="1.4" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="14.71" y="2047.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (3 samples, 0.09%)</title><rect x="54.1" y="869" width="1.0" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="529.2" y="789" width="0.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="532.24" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="81.1" y="1717" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="84.10" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (9 samples, 0.26%)</title><rect x="42.5" y="645" width="3.1" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="655.5" font-size="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 (1 samples, 0.03%)</title><rect x="1119.9" y="1301" width="0.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1122.92" y="1311.5" font-size="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 (7 samples, 0.20%)</title><rect x="55.1" y="133" width="2.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="143.5" font-size="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_timer_softirq (1 samples, 0.03%)</title><rect x="1055.3" y="1749" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1058.32" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_methods (1 samples, 0.03%)</title><rect x="455.4" y="1141" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="458.41" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>walk_component (1 samples, 0.03%)</title><rect x="185.0" y="1861" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="188.02" y="1871.5" font-size="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 samples, 0.06%)</title><rect x="466.3" y="901" width="0.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="911.5" font-size="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/security/AccessController:::doPrivileged (3 samples, 0.09%)</title><rect x="436.3" y="981" width="1.0" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="991.5" font-size="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 (1 samples, 0.03%)</title><rect x="405.2" y="837" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="408.16" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (7 samples, 0.20%)</title><rect x="947.3" y="1525" width="2.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1535.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="32.9" y="101" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (6 samples, 0.17%)</title><rect x="40.1" y="597" width="2.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="607.5" font-size="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/Stream$Cons:::tail (1 samples, 0.03%)</title><rect x="35.0" y="821" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="831.5" font-size="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/Set$EmptySet$:::thisCollection (1 samples, 0.03%)</title><rect x="1107.3" y="245" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$:::configInheritRef (1 samples, 0.03%)</title><rect x="1088.8" y="725" width="0.4" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1091.82" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find (1 samples, 0.03%)</title><rect x="19.2" y="53" width="0.4" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="22.23" y="63.5" font-size="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 samples, 0.06%)</title><rect x="76.3" y="789" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="799.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="440.7" y="405" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="443.71" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="496.8" y="1333" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_dynamic_call (4 samples, 0.12%)</title><rect x="368.2" y="677" width="1.4" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="371.24" y="687.5" font-size="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 (1 samples, 0.03%)</title><rect x="26.1" y="245" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="29.07" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::wait (1 samples, 0.03%)</title><rect x="1139.8" y="1269" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="1142.75" y="1279.5" font-size="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_java_util_zip_Inflater_inflateBytes (1 samples, 0.03%)</title><rect x="32.9" y="69" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="79.5" font-size="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="502.6" y="1157" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="505.58" y="1167.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="137.2" y="1813" width="0.6" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="140.16" y="1823.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="473.9" y="677" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="687.5" font-size="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/security/MessageDigest$Delegate:::engineUpdate (1 samples, 0.03%)</title><rect x="482.8" y="1477" width="0.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="485.75" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="49.7" y="485" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="52.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (13 samples, 0.38%)</title><rect x="941.5" y="1573" width="4.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="944.49" y="1583.5" font-size="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="1134.3" y="1301" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1137.28" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="530.6" y="869" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="879.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="853" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::$anonfun$subThisProject$1 (1 samples, 0.03%)</title><rect x="461.2" y="821" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="464.22" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.03%)</title><rect x="388.7" y="629" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="391.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="530.6" y="501" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="511.5" font-size="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/util/zip/Inflater:::inflateBytes (1 samples, 0.03%)</title><rect x="80.4" y="85" width="0.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="83.42" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DeoptimizationBlob (1 samples, 0.03%)</title><rect x="1106.6" y="1045" width="0.3" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="1109.59" y="1055.5" font-size="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_execve (1 samples, 0.03%)</title><rect x="63.7" y="149" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="66.67" y="159.5" font-size="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 (1 samples, 0.03%)</title><rect x="496.4" y="1221" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="499.43" y="1231.5" font-size="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 (14 samples, 0.41%)</title><rect x="1074.8" y="1573" width="4.8" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1077.80" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_execve (1 samples, 0.03%)</title><rect x="61.6" y="181" width="0.4" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="64.62" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_method_by_index_impl (1 samples, 0.03%)</title><rect x="956.9" y="1141" width="0.3" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="959.87" y="1151.5" font-size="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 (26 samples, 0.75%)</title><rect x="510.8" y="1285" width="8.9" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="513.78" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="317.3" y="197" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="320.31" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vforkChild (1 samples, 0.03%)</title><rect x="63.7" y="213" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="66.67" y="223.5" font-size="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 (16 samples, 0.46%)</title><rect x="1098.4" y="1045" width="5.5" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1101.39" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="531.3" y="1365" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="534.29" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DefaultMethods::generate_default_methods (1 samples, 0.03%)</title><rect x="480.0" y="725" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="483.02" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (8 samples, 0.23%)</title><rect x="1114.5" y="1573" width="2.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="1117.46" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::hashcons (1 samples, 0.03%)</title><rect x="930.9" y="1301" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="933.89" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="430.8" y="1045" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="433.79" y="1055.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1084.0" y="613" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="1087.03" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CallInfo::set_static (1 samples, 0.03%)</title><rect x="998.9" y="1653" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="1001.92" y="1663.5" font-size="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 (1 samples, 0.03%)</title><rect x="379.9" y="293" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="382.86" y="303.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.7" y="1669" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="1679.5" font-size="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 (6 samples, 0.17%)</title><rect x="102.6" y="1781" width="2.1" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="105.64" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::verify_legal_field_name (1 samples, 0.03%)</title><rect x="375.4" y="101" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="378.42" y="111.5" font-size="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/lang/invoke/MethodHandleImpl$AsVarargsCollector:::asTypeUncached (1 samples, 0.03%)</title><rect x="1146.6" y="1493" width="0.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.59" y="1503.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.8" y="757" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="767.5" font-size="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 (16 samples, 0.46%)</title><rect x="14.4" y="613" width="5.5" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="623.5" font-size="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="172.0" y="1925" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="175.03" y="1935.5" font-size="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 (1 samples, 0.03%)</title><rect x="20.3" y="661" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="23.25" y="671.5" font-size="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 (1 samples, 0.03%)</title><rect x="437.6" y="821" width="0.4" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text text-anchor="" x="440.63" y="831.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="1493" width="0.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>change_protection (1 samples, 0.03%)</title><rect x="254.4" y="1925" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="257.41" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/reflect/Reflection:::getClassAccessFlags (1 samples, 0.03%)</title><rect x="372.3" y="197" width="0.4" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="375.34" y="207.5" font-size="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="318.0" y="245" width="0.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (1 samples, 0.03%)</title><rect x="75.6" y="1653" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1663.5" font-size="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 (1 samples, 0.03%)</title><rect x="1089.2" y="629" width="0.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="1092.16" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (3 samples, 0.09%)</title><rect x="531.6" y="1125" width="1.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="1135.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="1000.3" y="1525" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1003.28" y="1535.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="1142.1" y="1365" width="0.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="1145.14" y="1375.5" font-size="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 (2 samples, 0.06%)</title><rect x="1126.8" y="1525" width="0.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1129.76" y="1535.5" font-size="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 samples, 0.06%)</title><rect x="29.8" y="341" width="0.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="32.83" y="351.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSite (1 samples, 0.03%)</title><rect x="33.2" y="277" width="0.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (3 samples, 0.09%)</title><rect x="62.0" y="597" width="1.0" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="64.96" y="607.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="293" width="3.1" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="303.5" font-size="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 (8 samples, 0.23%)</title><rect x="321.1" y="2005" width="2.7" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="2015.5" font-size="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 (1 samples, 0.03%)</title><rect x="1168.1" y="1637" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="1171.12" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="49.3" y="661" width="0.4" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="671.5" font-size="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/reflect/internal/Symbols$Symbol:::info (1 samples, 0.03%)</title><rect x="70.8" y="1237" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="392.9" y="853" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="395.85" y="863.5" font-size="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 samples, 0.06%)</title><rect x="24.7" y="757" width="0.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="27.70" y="767.5" font-size="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 (2 samples, 0.06%)</title><rect x="1124.4" y="1525" width="0.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1127.37" y="1535.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="597" width="1.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="607.5" font-size="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 (4 samples, 0.12%)</title><rect x="460.5" y="1013" width="1.4" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="1023.5" font-size="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="1042.0" y="1765" width="1.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1044.99" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="521.7" y="1717" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="524.72" y="1727.5" font-size="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/lang/invoke/MethodHandleNatives:::linkMethodHandleConstant (1 samples, 0.03%)</title><rect x="381.6" y="709" width="0.3" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="384.57" y="719.5" font-size="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 (2 samples, 0.06%)</title><rect x="120.8" y="1909" width="0.6" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="123.75" y="1919.5" font-size="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/lang/invoke/Invokers:::spreadInvoker (1 samples, 0.03%)</title><rect x="1114.5" y="1493" width="0.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1117.46" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/MilliNative:::getModifiedTime (1 samples, 0.03%)</title><rect x="401.4" y="613" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="404.40" y="623.5" font-size="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 (1 samples, 0.03%)</title><rect x="80.4" y="597" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="83.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_vma (1 samples, 0.03%)</title><rect x="1151.0" y="1221" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1154.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (1 samples, 0.03%)</title><rect x="489.9" y="1605" width="0.4" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="492.93" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="70.2" y="1013" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="1023.5" font-size="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 (1 samples, 0.03%)</title><rect x="393.5" y="885" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="396.53" y="895.5" font-size="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 (3 samples, 0.09%)</title><rect x="28.8" y="885" width="1.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="895.5" font-size="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 (1 samples, 0.03%)</title><rect x="441.4" y="1173" width="0.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="444.39" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="449.3" y="933" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="452.25" y="943.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.0" y="885" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="385.0" y="405" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="387.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (1 samples, 0.03%)</title><rect x="410.6" y="805" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="413.63" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="402.1" y="149" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="405.08" y="159.5" font-size="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 (10 samples, 0.29%)</title><rect x="42.1" y="1125" width="3.5" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="1135.5" font-size="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 (3 samples, 0.09%)</title><rect x="531.6" y="1493" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="1503.5" font-size="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 samples, 0.06%)</title><rect x="447.5" y="1093" width="0.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="450.54" y="1103.5" font-size="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/util/zip/ZipFile:::getInputStream (1 samples, 0.03%)</title><rect x="493.7" y="1157" width="0.3" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="496.69" y="1167.5" font-size="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 (6 samples, 0.17%)</title><rect x="51.4" y="469" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="479.5" font-size="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="171.0" y="1845" width="0.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="174.00" y="1855.5" font-size="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 (1 samples, 0.03%)</title><rect x="525.8" y="1221" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="528.82" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::append_with_bci (1 samples, 0.03%)</title><rect x="982.5" y="1765" width="0.4" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="985.51" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="459.2" y="661" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="462.17" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_vfork (1 samples, 0.03%)</title><rect x="62.6" y="277" width="0.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="65.64" y="287.5" font-size="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 (3 samples, 0.09%)</title><rect x="63.0" y="1349" width="1.0" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="65.98" y="1359.5" font-size="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 (107 samples, 3.10%)</title><rect x="14.4" y="1349" width="36.6" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="454.7" y="1045" width="0.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="457.72" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1965/1830040972:::apply (1 samples, 0.03%)</title><rect x="1101.8" y="789" width="0.3" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="1104.81" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="1151.0" y="1605" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1154.03" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (1 samples, 0.03%)</title><rect x="70.2" y="213" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="223.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="495.1" y="1477" width="0.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="498.06" y="1487.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.1" y="1557" width="0.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::$anonfun$subThisProject$1 (1 samples, 0.03%)</title><rect x="473.9" y="437" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="447.5" font-size="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 (6 samples, 0.17%)</title><rect x="51.4" y="885" width="2.0" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="526.5" y="869" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::dominates (1 samples, 0.03%)</title><rect x="942.9" y="1093" width="0.3" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="945.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (9 samples, 0.26%)</title><rect x="42.5" y="741" width="3.1" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="751.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.9" y="741" width="0.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="35.90" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke (2 samples, 0.06%)</title><rect x="64.0" y="981" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="76.3" y="485" width="0.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="495.5" font-size="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 samples, 0.06%)</title><rect x="78.0" y="629" width="0.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sysmalloc (2 samples, 0.06%)</title><rect x="1184.5" y="2037" width="0.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="1187.53" y="2047.5" font-size="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 (3 samples, 0.09%)</title><rect x="1181.8" y="1973" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1983.5" font-size="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 (7 samples, 0.20%)</title><rect x="460.5" y="1269" width="2.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeInstPtr::add_offset (1 samples, 0.03%)</title><rect x="945.9" y="1573" width="0.4" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="948.93" y="1583.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="458.1" y="789" width="0.4" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="1084.7" y="629" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="639.5" font-size="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/Set$EmptySet$:::thisCollection (1 samples, 0.03%)</title><rect x="1107.3" y="501" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="511.5" font-size="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 (1 samples, 0.03%)</title><rect x="387.0" y="597" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="390.04" y="607.5" font-size="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 (3 samples, 0.09%)</title><rect x="95.1" y="1877" width="1.0" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="98.12" y="1887.5" font-size="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 (36 samples, 1.04%)</title><rect x="331.3" y="1973" width="12.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="334.32" y="1983.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="597" width="0.3" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.0" y="661" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="80.00" y="671.5" font-size="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/util/Stack:::peek (1 samples, 0.03%)</title><rect x="388.4" y="581" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="391.41" y="591.5" font-size="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_page_fault (1 samples, 0.03%)</title><rect x="496.8" y="933" width="0.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (97 samples, 2.81%)</title><rect x="920.3" y="1813" width="33.2" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="923.30" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.12%)</title><rect x="51.4" y="165" width="1.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParCompactionManager::drain_region_stacks (9 samples, 0.26%)</title><rect x="555.9" y="1973" width="3.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="558.90" y="1983.5" font-size="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_huge_pmd_anonymous_page (1 samples, 0.03%)</title><rect x="1103.5" y="581" width="0.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="1106.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (2 samples, 0.06%)</title><rect x="1117.9" y="1685" width="0.7" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="1120.87" y="1695.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.7" y="1477" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="1487.5" font-size="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="1079.6" y="1173" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="1082.59" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="488.2" y="1493" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="491.22" y="1503.5" font-size="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 (1 samples, 0.03%)</title><rect x="71.9" y="981" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="991.5" font-size="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 (1 samples, 0.03%)</title><rect x="526.2" y="933" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="529.16" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="530.6" y="1173" width="0.4" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="77.3" y="293" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="303.5" font-size="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 (3 samples, 0.09%)</title><rect x="1177.7" y="1941" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1180.69" y="1951.5" font-size="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="179.2" y="693" width="1.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="458.1" y="645" width="0.4" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="655.5" font-size="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 (59 samples, 1.71%)</title><rect x="1129.2" y="1701" width="20.1" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1132.15" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vmSymbols::find_sid (1 samples, 0.03%)</title><rect x="1013.3" y="1765" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1016.27" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="965" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.03%)</title><rect x="448.2" y="1125" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="451.23" y="1135.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="374.7" y="581" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="377.73" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="439.7" y="1029" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="1039.5" font-size="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 (6 samples, 0.17%)</title><rect x="377.8" y="325" width="2.1" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="380.81" y="335.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="23.7" y="309" width="0.3" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::resolveBuild (1 samples, 0.03%)</title><rect x="442.8" y="405" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="445.76" y="415.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="462.9" y="757" width="0.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="767.5" font-size="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 (3 samples, 0.09%)</title><rect x="372.0" y="693" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="375.00" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIR_OprDesc::as_register (1 samples, 0.03%)</title><rect x="1006.4" y="1797" width="0.4" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="1009.44" y="1807.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1445" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LoadNode::Identity (1 samples, 0.03%)</title><rect x="902.2" y="1861" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="905.18" y="1871.5" font-size="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/lang/Thread:::currentThread (1 samples, 0.03%)</title><rect x="1119.6" y="1477" width="0.3" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="1122.58" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1154/1115296438:::apply (1 samples, 0.03%)</title><rect x="425.3" y="1013" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="428.32" y="1023.5" font-size="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="251.0" y="1989" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="253.99" y="1999.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FindClassFromCaller (1 samples, 0.03%)</title><rect x="69.8" y="1605" width="0.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="1615.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="497.1" y="1333" width="0.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="500.11" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="496.4" y="1349" width="0.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="499.43" y="1359.5" font-size="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$$Lambda$1475/1137401656:::apply (2 samples, 0.06%)</title><rect x="26.4" y="277" width="0.7" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="29.41" y="287.5" font-size="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 (1 samples, 0.03%)</title><rect x="322.8" y="101" width="0.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::dominates (1 samples, 0.03%)</title><rect x="946.3" y="1413" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="949.27" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/CollectionFormats$$anon$2$$Lambda$1988/36243868:::apply (2 samples, 0.06%)</title><rect x="1088.8" y="789" width="0.7" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1091.82" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="392.5" y="341" width="0.4" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="395.51" y="351.5" font-size="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 (1 samples, 0.03%)</title><rect x="18.2" y="357" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="21.20" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::hashcons (1 samples, 0.03%)</title><rect x="817.1" y="1845" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="820.06" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>UncommonTrapBlob (1 samples, 0.03%)</title><rect x="377.1" y="405" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="380.13" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeInt::xmeet (2 samples, 0.06%)</title><rect x="898.4" y="1829" width="0.7" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="901.42" y="1839.5" font-size="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/tools/nsc/ast/parser/Scanners$Scanner:::fetchToken (1 samples, 0.03%)</title><rect x="320.4" y="197" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="323.38" y="207.5" font-size="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 (2 samples, 0.06%)</title><rect x="329.6" y="2021" width="0.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="332.61" y="2031.5" font-size="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/net/URLClassLoader$1:::run (1 samples, 0.03%)</title><rect x="384.3" y="69" width="0.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="387.30" y="79.5" font-size="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 (2 samples, 0.06%)</title><rect x="97.9" y="1877" width="0.6" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="100.85" y="1887.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="385.7" y="453" width="0.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="463.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.4" y="389" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="323.38" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.6" y="805" width="0.4" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="38.64" y="815.5" font-size="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/security/DigestInputStream:::read (1 samples, 0.03%)</title><rect x="78.7" y="53" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="81.71" y="63.5" font-size="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 (3 samples, 0.09%)</title><rect x="37.0" y="1093" width="1.0" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="1103.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1120.6" y="1509" width="0.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="1123.61" y="1519.5" font-size="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 (2 samples, 0.06%)</title><rect x="1009.5" y="1685" width="0.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1012.51" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/support/scalajson/unsafe/CompactPrinter$:::printJObject (1 samples, 0.03%)</title><rect x="1107.3" y="325" width="0.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool (1 samples, 0.03%)</title><rect x="477.6" y="1093" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="480.62" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="176.5" y="1861" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="179.47" y="1871.5" font-size="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 (8 samples, 0.23%)</title><rect x="465.7" y="1317" width="2.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="468.66" y="1327.5" font-size="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/mutable/ArrayBuffer:::foreach (1 samples, 0.03%)</title><rect x="38.0" y="1221" width="0.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_class (1 samples, 0.03%)</title><rect x="18.5" y="133" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="21.55" y="143.5" font-size="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 (1 samples, 0.03%)</title><rect x="439.3" y="1109" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="442.34" y="1119.5" font-size="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_disable.part.85 (1 samples, 0.03%)</title><rect x="102.0" y="1845" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="104.95" y="1855.5" font-size="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_java_lang_UNIXProcess_forkAndExec (1 samples, 0.03%)</title><rect x="60.9" y="165" width="0.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="63.93" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="385.0" y="533" width="0.3" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="387.99" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="75.6" y="901" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>klassVtable::add_new_mirandas_to_lists (1 samples, 0.03%)</title><rect x="528.2" y="325" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xattr_resolve_name (1 samples, 0.03%)</title><rect x="518.6" y="1013" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="521.64" y="1023.5" font-size="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="171.7" y="1925" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="174.69" y="1935.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="67.8" y="517" width="0.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="527.5" font-size="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 (1 samples, 0.03%)</title><rect x="20.3" y="325" width="0.3" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text text-anchor="" x="23.25" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MacroAssembler::call (1 samples, 0.03%)</title><rect x="1003.4" y="1813" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="1006.36" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="69.8" y="1141" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/SettingKey:::mapReferenced (2 samples, 0.06%)</title><rect x="367.6" y="693" width="0.6" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="370.56" y="703.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="805" width="0.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="815.5" font-size="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 (1 samples, 0.03%)</title><rect x="450.6" y="1109" width="0.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="453.62" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="501" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="511.5" font-size="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/reflect/internal/Symbols$Symbol:::info (1 samples, 0.03%)</title><rect x="36.0" y="261" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="38.98" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1525/355920448:::apply (1 samples, 0.03%)</title><rect x="412.7" y="773" width="0.3" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="415.68" y="783.5" font-size="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/tools/nsc/ast/parser/Parsers$Parser:::loop$1 (1 samples, 0.03%)</title><rect x="323.1" y="117" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="326.12" y="127.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="757" width="0.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="767.5" font-size="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 (1 samples, 0.03%)</title><rect x="393.9" y="85" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="95.5" font-size="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/reflect/internal/pickling/UnPickler$Scan:::readType (1 samples, 0.03%)</title><rect x="473.5" y="789" width="0.4" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="476.52" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_null (1 samples, 0.03%)</title><rect x="496.4" y="1157" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="499.43" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__xstat64 (1 samples, 0.03%)</title><rect x="253.0" y="2021" width="0.4" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="256.04" y="2031.5" font-size="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$$Lambda$1475/1137401656:::apply (1 samples, 0.03%)</title><rect x="69.5" y="1605" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="28.5" y="133" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="31.46" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.03%)</title><rect x="448.6" y="1317" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="1327.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="74.6" y="1637" width="0.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="462.9" y="853" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="863.5" font-size="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/tools/nsc/ast/parser/Parsers$Parser:::expr (1 samples, 0.03%)</title><rect x="35.6" y="565" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="38.64" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (2 samples, 0.06%)</title><rect x="435.6" y="885" width="0.7" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="438.58" y="895.5" font-size="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:::flatMap (1 samples, 0.03%)</title><rect x="421.2" y="853" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="424.22" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIterGVN::remove_speculative_types (2 samples, 0.06%)</title><rect x="816.7" y="1877" width="0.7" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="819.72" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockListBuilder::BlockListBuilder (3 samples, 0.09%)</title><rect x="994.8" y="1717" width="1.0" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="997.81" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::dominates (1 samples, 0.03%)</title><rect x="909.7" y="1765" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="912.70" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="495.7" y="1589" width="0.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="498.74" y="1599.5" font-size="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 (1 samples, 0.03%)</title><rect x="435.6" y="757" width="0.3" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text text-anchor="" x="438.58" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::deflate_idle_monitors (1 samples, 0.03%)</title><rect x="1175.3" y="1941" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1178.30" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (3 samples, 0.09%)</title><rect x="938.1" y="1429" width="1.0" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="941.07" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="322.4" y="69" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="325.43" y="79.5" font-size="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/util/Calendar:::invalidateWeekFields (1 samples, 0.03%)</title><rect x="1091.6" y="757" width="0.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="1094.55" y="767.5" font-size="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 (1 samples, 0.03%)</title><rect x="484.5" y="821" width="0.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="487.46" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="1098.4" y="709" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="1101.39" y="719.5" font-size="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 (1 samples, 0.03%)</title><rect x="388.4" y="757" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="391.41" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.03%)</title><rect x="85.2" y="1621" width="0.3" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="88.20" y="1631.5" font-size="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/LinearSeqOptimized:::loop$1 (1 samples, 0.03%)</title><rect x="22.3" y="421" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="25.31" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (1 samples, 0.03%)</title><rect x="49.7" y="821" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="52.65" y="831.5" font-size="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 (2 samples, 0.06%)</title><rect x="1161.6" y="1573" width="0.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="1164.63" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="17.2" y="325" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="20.18" y="335.5" font-size="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 samples, 0.06%)</title><rect x="79.7" y="853" width="0.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="863.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSite (1 samples, 0.03%)</title><rect x="17.9" y="245" width="0.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="20.86" y="255.5" font-size="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 (2 samples, 0.06%)</title><rect x="1045.1" y="1765" width="0.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1048.06" y="1775.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.5" y="133" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="32.48" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="488.6" y="1493" width="0.3" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="491.56" y="1503.5" font-size="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 (1 samples, 0.03%)</title><rect x="67.8" y="1509" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="1519.5" font-size="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/lang/invoke/LambdaForm$MH/1218593486:::invoker (1 samples, 0.03%)</title><rect x="31.5" y="133" width="0.4" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="143.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="37.3" y="101" width="0.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="40.35" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="75.6" y="245" width="0.4" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="255.5" font-size="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 (2 samples, 0.06%)</title><rect x="91.0" y="1797" width="0.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="94.01" y="1807.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="494.7" y="725" width="0.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="497.72" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::create_entry_map (2 samples, 0.06%)</title><rect x="928.2" y="1493" width="0.6" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="931.16" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::round_double_arguments (1 samples, 0.03%)</title><rect x="923.4" y="1717" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="926.37" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ChunkPool::allocate (1 samples, 0.03%)</title><rect x="608.5" y="1877" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="611.55" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_local_method (1 samples, 0.03%)</title><rect x="488.2" y="1125" width="0.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="491.22" y="1135.5" font-size="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_tail (1 samples, 0.03%)</title><rect x="68.1" y="245" width="0.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="1139.1" y="1605" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1142.07" y="1615.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$1:::scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (2 samples, 0.06%)</title><rect x="447.5" y="1285" width="0.7" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="450.54" y="1295.5" font-size="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 (5 samples, 0.14%)</title><rect x="40.4" y="373" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="43.42" y="383.5" font-size="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 (1 samples, 0.03%)</title><rect x="79.7" y="309" width="0.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="319.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.6" y="485" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="22.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool_entries (1 samples, 0.03%)</title><rect x="453.7" y="1221" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="456.70" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (8 samples, 0.23%)</title><rect x="321.1" y="2021" width="2.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="2031.5" font-size="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 (6 samples, 0.17%)</title><rect x="377.8" y="341" width="2.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="380.81" y="351.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="445.5" y="997" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="448.49" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="72.6" y="565" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="75.56" y="575.5" font-size="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 (8 samples, 0.23%)</title><rect x="321.1" y="1285" width="2.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="1295.5" font-size="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/util/concurrent/locks/AbstractQueuedSynchronizer:::acquire (7 samples, 0.20%)</title><rect x="1164.4" y="1829" width="2.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1167.36" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="531.3" y="1333" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="534.29" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="42.1" y="357" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="367.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.1" y="437" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="30.09" y="447.5" font-size="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 samples, 0.06%)</title><rect x="31.5" y="901" width="0.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (150 samples, 4.35%)</title><rect x="917.2" y="1845" width="51.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="920.22" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Parse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.03%)</title><rect x="1107.3" y="389" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clear_page_c_e (1 samples, 0.03%)</title><rect x="1092.6" y="677" width="0.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="1095.58" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jdk/internal/org/objectweb/asm/MethodWriter:::visitInsn (1 samples, 0.03%)</title><rect x="403.1" y="309" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="406.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (3 samples, 0.09%)</title><rect x="50.0" y="773" width="1.0" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="404.8" y="693" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="407.81" y="703.5" font-size="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 (8 samples, 0.23%)</title><rect x="321.1" y="1381" width="2.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BCEscapeAnalyzer::compute_escape_info (1 samples, 0.03%)</title><rect x="817.7" y="1813" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="820.75" y="1823.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_llseek (1 samples, 0.03%)</title><rect x="254.1" y="1973" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="257.07" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net/virtualvoid/sbt/graph/DependencyGraphSettings$$$Lambda$3119/1185631996:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="78.4" y="101" width="0.3" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="81.37" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (2 samples, 0.06%)</title><rect x="71.2" y="213" width="0.7" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="223.5" font-size="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/lang/String:::codePointAt (3 samples, 0.09%)</title><rect x="531.6" y="965" width="1.1" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="975.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.0" y="917" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="927.5" font-size="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/util/Calendar:::invalidateWeekFields (1 samples, 0.03%)</title><rect x="1096.7" y="773" width="0.3" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text text-anchor="" x="1099.68" y="783.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1525" width="1.1" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>com/lmax/disruptor/ProcessingSequenceBarrier:::waitFor (1 samples, 0.03%)</title><rect x="446.2" y="1141" width="0.3" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="449.18" y="1151.5" font-size="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/lang/invoke/LambdaMetafactory:::altMetafactory (1 samples, 0.03%)</title><rect x="403.1" y="389" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="406.11" y="399.5" font-size="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 (5 samples, 0.14%)</title><rect x="317.0" y="1189" width="1.7" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (1 samples, 0.03%)</title><rect x="520.0" y="1333" width="0.4" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="523.01" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="477.6" y="1141" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="480.62" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaFrameAnchor::make_walkable (1 samples, 0.03%)</title><rect x="1040.3" y="1941" width="0.3" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="1043.28" y="1951.5" font-size="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 (1 samples, 0.03%)</title><rect x="71.9" y="1349" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="24.7" y="37" width="0.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="27.70" y="47.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.6" y="469" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (5 samples, 0.14%)</title><rect x="38.4" y="709" width="1.7" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="719.5" font-size="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="510.1" y="1061" width="0.3" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="513.10" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/inc/binary/converters/ProtobufReaders$$Lambda$2396/290329706:::get$Lambda (1 samples, 0.03%)</title><rect x="483.1" y="1493" width="0.3" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="486.09" y="1503.5" font-size="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="179.2" y="1653" width="1.4" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="1663.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="34.6" y="789" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="37.61" y="799.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="66.1" y="117" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="127.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1653" width="0.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::meet_helper (1 samples, 0.03%)</title><rect x="943.9" y="1253" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="946.88" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/URLClassPath$JarLoader$2:::getInputStream (1 samples, 0.03%)</title><rect x="493.7" y="1189" width="0.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="496.69" y="1199.5" font-size="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_context_sched_in (2 samples, 0.06%)</title><rect x="1045.1" y="1717" width="0.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="1048.06" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCFG::do_DFS (1 samples, 0.03%)</title><rect x="642.7" y="1861" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="645.73" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/DisabledFormats$$anon$1:::read (1 samples, 0.03%)</title><rect x="1093.9" y="789" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="1096.95" y="799.5" font-size="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 (2 samples, 0.06%)</title><rect x="992.4" y="1541" width="0.7" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="995.42" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.03%)</title><rect x="153.2" y="1749" width="0.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="156.23" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (1 samples, 0.03%)</title><rect x="60.9" y="869" width="0.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="63.93" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_dynamic_call (1 samples, 0.03%)</title><rect x="522.1" y="1461" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="525.06" y="1471.5" font-size="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/util/hashing/MurmurHash3$$Lambda$516/2084486251:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="1104.9" y="1109" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="1107.88" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciInstanceKlass::compute_nonstatic_fields (1 samples, 0.03%)</title><rect x="964.0" y="1717" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="967.05" y="1727.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="341" width="3.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="351.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="293" width="1.0" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_method_index (1 samples, 0.03%)</title><rect x="458.5" y="565" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="461.48" y="575.5" font-size="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 (1 samples, 0.03%)</title><rect x="376.1" y="725" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="379.10" y="735.5" font-size="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/TraversableLike:::to (1 samples, 0.03%)</title><rect x="1084.4" y="773" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="1087.37" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::change_sig_to_verificationType (1 samples, 0.03%)</title><rect x="321.4" y="69" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="324.41" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (2 samples, 0.06%)</title><rect x="932.6" y="773" width="0.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="935.60" y="783.5" font-size="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 (3 samples, 0.09%)</title><rect x="460.5" y="853" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="863.5" font-size="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/generic/GenericCompanion:::apply (1 samples, 0.03%)</title><rect x="382.9" y="693" width="0.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="385.94" y="703.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.2" y="1333" width="0.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="1343.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="439.7" y="485" width="0.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>UTF8::strrchr (1 samples, 0.03%)</title><rect x="987.0" y="1301" width="0.3" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="989.95" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="496.4" y="1317" width="0.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="499.43" y="1327.5" font-size="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 (1 samples, 0.03%)</title><rect x="533.0" y="965" width="0.3" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="975.5" font-size="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 (2 samples, 0.06%)</title><rect x="1009.5" y="1701" width="0.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1012.51" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_exceptions (3 samples, 0.09%)</title><rect x="916.2" y="1845" width="1.0" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="919.19" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$6$$Lambda$1566/1633770314:::apply (1 samples, 0.03%)</title><rect x="370.6" y="485" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="373.63" y="495.5" font-size="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/reflect/internal/pickling/UnPickler$Scan:::at (1 samples, 0.03%)</title><rect x="74.9" y="389" width="0.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="399.5" font-size="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$$Lambda$1475/1137401656:::apply (3 samples, 0.09%)</title><rect x="37.0" y="1221" width="1.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="18.9" y="469" width="0.3" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="21.89" y="479.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="70.8" y="709" width="0.4" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (9 samples, 0.26%)</title><rect x="42.5" y="501" width="3.1" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="511.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.6" y="853" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="38.64" y="863.5" font-size="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 (391 samples, 11.33%)</title><rect x="361.1" y="1637" width="133.6" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="364.06" y="1647.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 (1 samples, 0.03%)</title><rect x="74.9" y="1205" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="1110.4" y="1509" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1113.35" y="1519.5" font-size="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:::map (2 samples, 0.06%)</title><rect x="79.7" y="677" width="0.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="82.73" y="687.5" font-size="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/util/hashing/MurmurHash3:::orderedHash (1 samples, 0.03%)</title><rect x="75.3" y="725" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/ProjectRef:::equals (1 samples, 0.03%)</title><rect x="1084.7" y="565" width="0.4" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="575.5" font-size="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 (4 samples, 0.12%)</title><rect x="47.9" y="757" width="1.4" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="767.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.3" y="357" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="367.5" font-size="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 (6 samples, 0.17%)</title><rect x="396.3" y="645" width="2.0" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="655.5" font-size="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 (1 samples, 0.03%)</title><rect x="76.7" y="229" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="79.66" y="239.5" font-size="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/lang/invoke/LambdaForm$MH/1218593486:::invoker (1 samples, 0.03%)</title><rect x="17.9" y="197" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="20.86" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rwsem_down_write_failed (3 samples, 0.09%)</title><rect x="309.8" y="1973" width="1.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="312.79" y="1983.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1733" width="1.1" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1743.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="75.6" y="1205" width="0.4" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1215.5" font-size="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 (2 samples, 0.06%)</title><rect x="497.8" y="1221" width="0.7" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="500.79" y="1231.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::spinInnerClass (1 samples, 0.03%)</title><rect x="366.5" y="373" width="0.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="369.53" y="383.5" font-size="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 (3 samples, 0.09%)</title><rect x="66.7" y="613" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="623.5" font-size="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_huge_pmd_anonymous_page (1 samples, 0.03%)</title><rect x="69.1" y="69" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="79.5" font-size="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 (3 samples, 0.09%)</title><rect x="54.1" y="1237" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="57.10" y="1247.5" font-size="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 (6 samples, 0.17%)</title><rect x="1139.8" y="1525" width="2.0" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="1142.75" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$7:::transform (1 samples, 0.03%)</title><rect x="408.2" y="805" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="411.23" y="815.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="1765" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::grow (1 samples, 0.03%)</title><rect x="929.9" y="1349" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="932.87" y="1359.5" font-size="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 samples, 0.06%)</title><rect x="68.1" y="1237" width="0.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="1247.5" font-size="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="106.7" y="1701" width="0.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="109.74" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="404.1" y="517" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="407.13" y="527.5" font-size="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 (10 samples, 0.29%)</title><rect x="138.5" y="1989" width="3.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="141.53" y="1999.5" font-size="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/Set$Set2:::foreach (2 samples, 0.06%)</title><rect x="1098.7" y="757" width="0.7" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="1101.73" y="767.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="71.9" y="229" width="0.3" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="74.87" y="239.5" font-size="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 (8 samples, 0.23%)</title><rect x="441.4" y="1189" width="2.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="444.39" y="1199.5" font-size="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 (2 samples, 0.06%)</title><rect x="205.9" y="1861" width="0.7" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="208.87" y="1871.5" font-size="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 (1 samples, 0.03%)</title><rect x="49.7" y="405" width="0.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="52.65" y="415.5" font-size="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 (2 samples, 0.06%)</title><rect x="153.2" y="1973" width="0.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="156.23" y="1983.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="490.3" y="1029" width="0.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="493.27" y="1039.5" font-size="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 (6 samples, 0.17%)</title><rect x="45.9" y="309" width="2.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="48.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PSParallelCompact::invoke (1 samples, 0.03%)</title><rect x="1176.7" y="1925" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1179.67" y="1935.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope:::equals (1 samples, 0.03%)</title><rect x="425.0" y="1029" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="427.98" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (2 samples, 0.06%)</title><rect x="490.6" y="1477" width="0.7" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="493.61" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InlineTree::try_to_inline (1 samples, 0.03%)</title><rect x="924.7" y="1589" width="0.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="927.74" y="1599.5" font-size="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/util/hashing/MurmurHash3:::orderedHash (1 samples, 0.03%)</title><rect x="74.3" y="405" width="0.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="77.26" y="415.5" font-size="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="113.6" y="1957" width="0.3" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="116.57" y="1967.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="408.2" y="613" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="411.23" y="623.5" font-size="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 (1 samples, 0.03%)</title><rect x="479.0" y="1381" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="481.99" y="1391.5" font-size="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 (64 samples, 1.85%)</title><rect x="363.5" y="869" width="21.8" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="366.45" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.03%)</title><rect x="73.9" y="421" width="0.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="458.1" y="725" width="0.4" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="461.14" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="440.0" y="997" width="0.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="443.02" y="1007.5" font-size="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 (1 samples, 0.03%)</title><rect x="80.4" y="149" width="0.4" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="83.42" y="159.5" font-size="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 (3 samples, 0.09%)</title><rect x="384.0" y="661" width="1.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="386.96" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_consider_task (1 samples, 0.03%)</title><rect x="252.0" y="1957" width="0.4" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="255.02" y="1967.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (6 samples, 0.17%)</title><rect x="51.4" y="549" width="2.0" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="559.5" font-size="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 (1 samples, 0.03%)</title><rect x="469.1" y="1205" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="472.08" y="1215.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol$$anon$7:::scala$reflect$runtime$SynchronizedSymbols$SynchronizedSymbol$$super$info (1 samples, 0.03%)</title><rect x="445.2" y="1237" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="27.8" y="133" width="0.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeBuffer::verify_section_allocation (1 samples, 0.03%)</title><rect x="979.1" y="1909" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="982.09" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::resolve_bootstrap_specifier_at_impl (6 samples, 0.17%)</title><rect x="1147.3" y="1637" width="2.0" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="1150.27" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="531.0" y="1205" width="0.3" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="533.95" y="1215.5" font-size="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 (53 samples, 1.54%)</title><rect x="363.5" y="853" width="18.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="366.45" y="863.5" font-size="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 (6 samples, 0.17%)</title><rect x="45.9" y="197" width="2.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="48.89" y="207.5" font-size="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 (1 samples, 0.03%)</title><rect x="1107.3" y="1221" width="0.3" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="1084.0" y="661" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1087.03" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (2 samples, 0.06%)</title><rect x="64.0" y="869" width="0.7" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="879.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="32.6" y="325" width="0.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="335.5" font-size="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.87 (2 samples, 0.06%)</title><rect x="1034.8" y="1685" width="0.7" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="1037.81" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciField::initialize_from (1 samples, 0.03%)</title><rect x="937.4" y="1269" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="940.39" y="1279.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.4" y="453" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="463.5" font-size="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 (1 samples, 0.03%)</title><rect x="1082.3" y="677" width="0.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1085.32" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/AList$$anon$4:::transform (1 samples, 0.03%)</title><rect x="442.8" y="597" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="445.76" y="607.5" font-size="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 (3 samples, 0.09%)</title><rect x="321.7" y="437" width="1.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="324.75" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="496.8" y="1221" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="33.6" y="757" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="767.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="917" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="927.5" font-size="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="149.8" y="1989" width="1.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="152.81" y="1999.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="495.4" y="1317" width="0.3" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="36.3" y="133" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="143.5" font-size="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/mutable/WrappedArray:::foreach (1 samples, 0.03%)</title><rect x="1108.6" y="1301" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="1111.64" y="1311.5" font-size="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 samples, 0.06%)</title><rect x="26.4" y="229" width="0.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="29.41" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (2 samples, 0.06%)</title><rect x="66.1" y="885" width="0.6" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="895.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="480.0" y="1349" width="0.4" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="483.02" y="1359.5" font-size="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 (3 samples, 0.09%)</title><rect x="50.0" y="485" width="1.0" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="495.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1045.7" y="1861" width="0.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1048.75" y="1871.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.2" y="245" width="0.4" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="35.22" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="464.3" y="1413" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="467.29" y="1423.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="148.4" y="1717" width="0.4" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text text-anchor="" x="151.44" y="1727.5" font-size="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/TraversableLike:::flatMap$ (1 samples, 0.03%)</title><rect x="408.6" y="693" width="0.3" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="411.57" y="703.5" font-size="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/lang/Throwable:::fillInStackTrace (1 samples, 0.03%)</title><rect x="37.0" y="133" width="0.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="143.5" font-size="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 (1 samples, 0.03%)</title><rect x="496.8" y="1573" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="499.77" y="1583.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.8" y="1221" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="322.8" y="453" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::find_alias_type (1 samples, 0.03%)</title><rect x="968.2" y="1717" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="971.15" y="1727.5" font-size="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 (2 samples, 0.06%)</title><rect x="1161.6" y="1685" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1164.63" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (2 samples, 0.06%)</title><rect x="522.4" y="1285" width="0.7" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="525.40" y="1295.5" font-size="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 (1 samples, 0.03%)</title><rect x="33.2" y="613" width="0.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="36.24" y="623.5" font-size="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 (3 samples, 0.09%)</title><rect x="506.3" y="1189" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="509.34" y="1199.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="1045.4" y="1637" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1048.41" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (5 samples, 0.14%)</title><rect x="38.4" y="645" width="1.7" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="655.5" font-size="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_context_sched_in (2 samples, 0.06%)</title><rect x="229.1" y="1845" width="0.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="232.11" y="1855.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciObjectFactory::create_new_metadata (1 samples, 0.03%)</title><rect x="922.3" y="1509" width="0.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="925.35" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_klass_by_name_impl (1 samples, 0.03%)</title><rect x="922.0" y="1445" width="0.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="925.00" y="1455.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.2" y="341" width="0.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="22.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$12:::fn (2 samples, 0.06%)</title><rect x="1100.8" y="837" width="0.7" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="1103.78" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="69.8" y="741" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="72.82" y="751.5" font-size="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 samples, 0.06%)</title><rect x="68.1" y="1477" width="0.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="1487.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="501" width="0.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="75.6" y="741" width="0.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>State::_sub_Op_ConL (1 samples, 0.03%)</title><rect x="635.6" y="1765" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="638.55" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="76.3" y="165" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::allocate (1 samples, 0.03%)</title><rect x="1151.0" y="1365" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1154.03" y="1375.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1047.1" y="1861" width="0.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1050.11" y="1871.5" font-size="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 (1 samples, 0.03%)</title><rect x="1084.7" y="677" width="0.4" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="1087.72" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Dictionary::find_class (1 samples, 0.03%)</title><rect x="25.0" y="37" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="28.04" y="47.5" font-size="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="83.8" y="1941" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="86.84" y="1951.5" font-size="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_lang_ClassLoader::non_reflection_class_loader (1 samples, 0.03%)</title><rect x="1116.8" y="1125" width="0.4" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="1119.85" y="1135.5" font-size="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_mmap_pgoff (1 samples, 0.03%)</title><rect x="380.5" y="533" width="0.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="383.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_mmap_pgoff (1 samples, 0.03%)</title><rect x="174.8" y="1909" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="177.76" y="1919.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.9" y="661" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="671.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="490.3" y="885" width="0.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="493.27" y="895.5" font-size="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 (1 samples, 0.03%)</title><rect x="72.9" y="1541" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="1551.5" font-size="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/lang/invoke/LambdaForm$BMH/1413378318:::reinvoke (1 samples, 0.03%)</title><rect x="322.8" y="581" width="0.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="28.5" y="277" width="0.3" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="31.46" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool_entries (1 samples, 0.03%)</title><rect x="456.1" y="597" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="459.09" y="607.5" font-size="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 (10 samples, 0.29%)</title><rect x="1055.7" y="1717" width="3.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="1058.66" y="1727.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.1" y="693" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="30.09" y="703.5" font-size="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 (4 samples, 0.12%)</title><rect x="25.7" y="789" width="1.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="799.5" font-size="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 (23 samples, 0.67%)</title><rect x="1129.5" y="1621" width="7.9" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="1132.50" y="1631.5" font-size="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 (1 samples, 0.03%)</title><rect x="68.8" y="757" width="0.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciObjectFactory::get_metadata (1 samples, 0.03%)</title><rect x="918.6" y="1605" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="921.59" y="1615.5" font-size="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 samples, 0.06%)</title><rect x="64.0" y="293" width="0.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="67.01" y="303.5" font-size="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 (1 samples, 0.03%)</title><rect x="1084.0" y="725" width="0.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1087.03" y="735.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="1093" width="0.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="1101.1" y="597" width="0.4" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="1104.12" y="607.5" font-size="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 (1 samples, 0.03%)</title><rect x="62.3" y="85" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="65.30" y="95.5" font-size="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 (1 samples, 0.03%)</title><rect x="29.1" y="405" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="32.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (2 samples, 0.06%)</title><rect x="66.1" y="949" width="0.6" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="959.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="449.6" y="901" width="0.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="452.59" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_ref_at (1 samples, 0.03%)</title><rect x="495.4" y="1621" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (1 samples, 0.03%)</title><rect x="317.0" y="165" width="0.3" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="175.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="374.7" y="565" width="0.4" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="377.73" y="575.5" font-size="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 (4 samples, 0.12%)</title><rect x="460.5" y="1237" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="1247.5" font-size="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_safe (4 samples, 0.12%)</title><rect x="160.1" y="1733" width="1.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="163.06" y="1743.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::set_map_clone (1 samples, 0.03%)</title><rect x="924.1" y="1685" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="927.06" y="1695.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="523.8" y="1589" width="0.3" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="526.77" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="470.8" y="885" width="0.3" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="473.79" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_execve (2 samples, 0.06%)</title><rect x="499.8" y="1301" width="0.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="502.84" y="1311.5" font-size="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 (2 samples, 0.06%)</title><rect x="1034.8" y="1717" width="0.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1037.81" y="1727.5" font-size="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 samples, 0.06%)</title><rect x="68.1" y="469" width="0.7" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="479.5" font-size="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="967.1" y="1781" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="970.13" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="529.6" y="1029" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="532.58" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool_entries (1 samples, 0.03%)</title><rect x="493.0" y="1045" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="496.01" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::build_exits (1 samples, 0.03%)</title><rect x="961.3" y="1077" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="964.32" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (5 samples, 0.14%)</title><rect x="947.3" y="1397" width="1.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="950.30" y="1407.5" font-size="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 (1 samples, 0.03%)</title><rect x="462.6" y="1045" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="465.58" y="1055.5" font-size="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 (5 samples, 0.14%)</title><rect x="38.4" y="789" width="1.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="799.5" font-size="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_context_sched_in (2 samples, 0.06%)</title><rect x="156.0" y="1829" width="0.6" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="158.96" y="1839.5" font-size="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="92.4" y="1765" width="1.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="95.38" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.03%)</title><rect x="399.7" y="581" width="0.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="402.69" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="1109.3" y="389" width="0.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="399.5" font-size="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 (2 samples, 0.06%)</title><rect x="100.6" y="1877" width="0.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="103.59" y="1887.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="1109.3" y="1109" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1119.5" font-size="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/lang/invoke/MethodHandleNatives:::linkCallSite (1 samples, 0.03%)</title><rect x="403.1" y="469" width="0.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="406.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::link_method_handle_constant (1 samples, 0.03%)</title><rect x="1146.2" y="1573" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1149.25" y="1583.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::generateFactory (1 samples, 0.03%)</title><rect x="478.0" y="1253" width="0.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="480.97" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/io/Linux64Milli$$$Lambda$879/220369374:::apply$mcI$sp (1 samples, 0.03%)</title><rect x="401.1" y="341" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="404.05" y="351.5" font-size="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 (3 samples, 0.09%)</title><rect x="66.7" y="1157" width="1.1" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="1167.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.5" y="645" width="0.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="72.9" y="1141" width="0.3" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (6 samples, 0.17%)</title><rect x="45.9" y="437" width="2.0" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="48.89" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (1 samples, 0.03%)</title><rect x="991.7" y="1557" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="994.74" y="1567.5" font-size="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 (4 samples, 0.12%)</title><rect x="25.7" y="709" width="1.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="719.5" font-size="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 (1 samples, 0.03%)</title><rect x="448.6" y="1029" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Bind:::mapReferenced (1 samples, 0.03%)</title><rect x="1076.2" y="1237" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1079.17" y="1247.5" font-size="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_context_sched_in (2 samples, 0.06%)</title><rect x="497.8" y="1269" width="0.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="500.79" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool (1 samples, 0.03%)</title><rect x="495.4" y="1205" width="0.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="498.40" y="1215.5" font-size="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 (3 samples, 0.09%)</title><rect x="50.0" y="229" width="1.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="239.5" font-size="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 (1 samples, 0.03%)</title><rect x="313.5" y="1749" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="316.55" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (11 samples, 0.32%)</title><rect x="55.1" y="757" width="3.8" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="407.5" y="869" width="0.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="410.55" y="879.5" font-size="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 (1 samples, 0.03%)</title><rect x="492.0" y="933" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="494.98" y="943.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="436.3" y="437" width="0.3" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="447.5" font-size="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="117.0" y="1653" width="0.3" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="119.99" y="1663.5" font-size="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/lang/ClassLoader:::defineClass1 (1 samples, 0.03%)</title><rect x="1110.0" y="1317" width="0.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1113.01" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="413.7" y="901" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="416.70" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::meet_helper (1 samples, 0.03%)</title><rect x="925.8" y="1573" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="928.76" y="1583.5" font-size="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 (1 samples, 0.03%)</title><rect x="49.3" y="1045" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::find_instance_method (1 samples, 0.03%)</title><rect x="999.6" y="1717" width="0.3" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="1002.60" y="1727.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.3" y="789" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="799.5" font-size="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 (6 samples, 0.17%)</title><rect x="321.1" y="901" width="2.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="911.5" font-size="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 (1 samples, 0.03%)</title><rect x="67.8" y="293" width="0.3" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="70.8" y="421" width="0.4" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="431.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="1077" width="1.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseGVN::transform (1 samples, 0.03%)</title><rect x="939.8" y="1509" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="942.78" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$:::nonProjectScopes$1 (1 samples, 0.03%)</title><rect x="410.3" y="629" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="413.28" y="639.5" font-size="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.23%)</title><rect x="181.9" y="1973" width="2.8" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="184.94" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/Scope$$$Lambda$1552/1252204540:::apply (1 samples, 0.03%)</title><rect x="412.0" y="629" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="414.99" y="639.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="373" width="0.3" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="526.5" y="1221" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_method_by_index (1 samples, 0.03%)</title><rect x="928.5" y="1445" width="0.3" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="931.50" y="1455.5" font-size="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 (9 samples, 0.26%)</title><rect x="42.5" y="213" width="3.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="45.47" y="223.5" font-size="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 (16 samples, 0.46%)</title><rect x="14.4" y="677" width="5.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="687.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.3" y="325" width="0.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (1 samples, 0.03%)</title><rect x="15.5" y="37" width="0.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="18.47" y="47.5" font-size="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 samples, 0.06%)</title><rect x="68.1" y="1109" width="0.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="1134.3" y="1125" width="0.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1137.28" y="1135.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="42.1" y="325" width="0.4" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (3 samples, 0.09%)</title><rect x="528.2" y="885" width="1.0" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="449.3" y="1269" width="0.3" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="452.25" y="1279.5" font-size="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 (10 samples, 0.29%)</title><rect x="401.7" y="821" width="3.5" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="404.74" y="831.5" font-size="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="180.6" y="1605" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="183.57" y="1615.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.5" y="1589" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (5 samples, 0.14%)</title><rect x="955.5" y="1253" width="1.7" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="958.50" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_dynamic_call (1 samples, 0.03%)</title><rect x="322.8" y="725" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.03%)</title><rect x="958.9" y="1093" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="961.92" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.3" y="1589" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="1599.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="75.6" y="133" width="0.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (1 samples, 0.03%)</title><rect x="415.4" y="837" width="0.4" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="418.41" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="454.7" y="1413" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="457.72" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IdealLoopTree::iteration_split (7 samples, 0.20%)</title><rect x="826.0" y="1877" width="2.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="828.95" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$:::configInheritRef (1 samples, 0.03%)</title><rect x="1085.7" y="677" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1088.74" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="485.8" y="1301" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="488.83" y="1311.5" font-size="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/lang/invoke/LambdaForm$MH/1582785598:::linkToTargetMethod (1 samples, 0.03%)</title><rect x="1121.3" y="1605" width="0.3" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="1124.29" y="1615.5" font-size="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/lang/invoke/LambdaForm$DMH/641853239:::invokeStatic_L4_L (1 samples, 0.03%)</title><rect x="393.5" y="613" width="0.4" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="396.53" y="623.5" font-size="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 (1 samples, 0.03%)</title><rect x="86.6" y="1909" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="89.57" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="492.0" y="965" width="0.3" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="494.98" y="975.5" font-size="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 (1 samples, 0.03%)</title><rect x="24.0" y="661" width="0.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="27.02" y="671.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.2" y="1429" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="1439.5" font-size="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 (1 samples, 0.03%)</title><rect x="1107.3" y="1189" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleThresholdPolicy::compile (1 samples, 0.03%)</title><rect x="382.3" y="485" width="0.3" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="385.25" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.03%)</title><rect x="480.4" y="949" width="0.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="959.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="466.7" y="661" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="469.69" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="42.1" y="117" width="0.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compile_method_base (8 samples, 0.23%)</title><rect x="95.1" y="1957" width="2.8" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="98.12" y="1967.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::fast_enter (5 samples, 0.14%)</title><rect x="1132.6" y="1317" width="1.7" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1135.57" y="1327.5" font-size="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 (1 samples, 0.03%)</title><rect x="489.9" y="1477" width="0.4" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="492.93" y="1487.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="72.6" y="213" width="0.3" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text text-anchor="" x="75.56" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (1 samples, 0.03%)</title><rect x="958.2" y="1301" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="961.24" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_return_value (1 samples, 0.03%)</title><rect x="530.3" y="965" width="0.3" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_super_or_fail (1 samples, 0.03%)</title><rect x="436.3" y="341" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="439.26" y="351.5" font-size="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 (8 samples, 0.23%)</title><rect x="78.0" y="1157" width="2.8" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (1 samples, 0.03%)</title><rect x="24.4" y="533" width="0.3" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="27.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$:::directDeps (1 samples, 0.03%)</title><rect x="319.7" y="805" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="526.5" y="213" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="529.51" y="223.5" font-size="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.87 (3 samples, 0.09%)</title><rect x="1181.8" y="1829" width="1.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1839.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="70.5" y="53" width="0.3" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="73.50" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (3 samples, 0.09%)</title><rect x="66.7" y="1045" width="1.1" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MoveAndUpdateClosure::do_addr (3 samples, 0.09%)</title><rect x="554.5" y="1941" width="1.1" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="557.54" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (1 samples, 0.03%)</title><rect x="470.8" y="1189" width="0.3" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="473.79" y="1199.5" font-size="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_nmi_handler (1 samples, 0.03%)</title><rect x="992.4" y="1381" width="0.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="995.42" y="1391.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="462.9" y="885" width="0.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="465.93" y="895.5" font-size="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 (1 samples, 0.03%)</title><rect x="51.0" y="965" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (5 samples, 0.14%)</title><rect x="435.6" y="1093" width="1.7" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="438.58" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="1413" width="0.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup (1 samples, 0.03%)</title><rect x="20.9" y="37" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="23.94" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::verify_legal_method_name (1 samples, 0.03%)</title><rect x="72.9" y="53" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="63.5" font-size="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 samples, 0.06%)</title><rect x="61.3" y="389" width="0.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="64.27" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="66.7" y="85" width="0.4" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (3 samples, 0.09%)</title><rect x="528.2" y="853" width="1.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="863.5" font-size="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 (1 samples, 0.03%)</title><rect x="38.0" y="597" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/Load$:::configInheritRef (2 samples, 0.06%)</title><rect x="1084.4" y="789" width="0.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1087.37" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="23.3" y="405" width="0.4" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="26.33" y="415.5" font-size="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 samples, 0.06%)</title><rect x="29.8" y="165" width="0.7" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="32.83" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_task (1 samples, 0.03%)</title><rect x="119.7" y="1877" width="0.4" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text text-anchor="" x="122.73" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (2 samples, 0.06%)</title><rect x="66.1" y="901" width="0.6" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="911.5" font-size="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/reflect/internal/tpe/FindMembers$FindMember:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="494.7" y="1461" width="0.4" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="497.72" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DefaultMethods::generate_default_methods (1 samples, 0.03%)</title><rect x="27.8" y="69" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="30.78" y="79.5" font-size="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 (6 samples, 0.17%)</title><rect x="321.1" y="981" width="2.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="531.6" y="453" width="0.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$Lambda$1153/1181889508:::apply (2 samples, 0.06%)</title><rect x="424.3" y="1045" width="0.7" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="427.30" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.03%)</title><rect x="68.1" y="117" width="0.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="525.1" y="485" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="528.14" y="495.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="36.3" y="149" width="0.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="393.5" y="741" width="0.4" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="396.53" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="1079.2" y="1445" width="0.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="1082.25" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::notifyall (1 samples, 0.03%)</title><rect x="1171.5" y="1829" width="0.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1174.54" y="1839.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="309" width="1.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jawn/StringParser:::reset (2 samples, 0.06%)</title><rect x="1105.6" y="1125" width="0.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1108.57" y="1135.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.0" y="565" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="80.00" y="575.5" font-size="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 samples, 0.06%)</title><rect x="447.5" y="1173" width="0.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="450.54" y="1183.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="320.7" y="261" width="0.4" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_special_call_or_null (1 samples, 0.03%)</title><rect x="988.7" y="1541" width="0.3" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="991.66" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___mprotect (2 samples, 0.06%)</title><rect x="204.5" y="1973" width="0.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="207.50" y="1983.5" font-size="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 (3 samples, 0.09%)</title><rect x="1049.8" y="1781" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1052.85" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::flow_types (1 samples, 0.03%)</title><rect x="922.0" y="1637" width="0.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="925.00" y="1647.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="1154.4" y="1493" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="1157.45" y="1503.5" font-size="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 (1 samples, 0.03%)</title><rect x="1110.0" y="1509" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="1113.01" y="1519.5" font-size="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 samples, 0.06%)</title><rect x="26.4" y="245" width="0.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="29.41" y="255.5" font-size="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/lang/invoke/CallSite:::makeSite (1 samples, 0.03%)</title><rect x="19.9" y="213" width="0.4" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="22.91" y="223.5" font-size="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 (1 samples, 0.03%)</title><rect x="479.7" y="1301" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="482.68" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (3 samples, 0.09%)</title><rect x="62.0" y="789" width="1.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="64.96" y="799.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="75.3" y="37" width="0.3" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="78.29" y="47.5" font-size="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 (1 samples, 0.03%)</title><rect x="51.0" y="1317" width="0.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="54.02" y="1327.5" font-size="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 (1 samples, 0.03%)</title><rect x="36.7" y="661" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="39.66" y="671.5" font-size="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 (1 samples, 0.03%)</title><rect x="68.8" y="1013" width="0.3" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (2 samples, 0.06%)</title><rect x="945.2" y="1461" width="0.7" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="1471.5" font-size="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 (1 samples, 0.03%)</title><rect x="381.9" y="437" width="0.4" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="384.91" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="1041.3" y="1781" width="0.3" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text text-anchor="" x="1044.30" y="1791.5" font-size="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 samples, 0.06%)</title><rect x="393.9" y="261" width="0.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="396.88" y="271.5" font-size="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/mutable/ArrayBuffer:::foreach (1 samples, 0.03%)</title><rect x="323.1" y="981" width="0.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="326.12" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (1 samples, 0.03%)</title><rect x="72.9" y="149" width="0.3" height="15.0" fill="rgb(241,111,111)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="159.5" font-size="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/lang/ClassLoader:::findBootstrapClass (1 samples, 0.03%)</title><rect x="67.8" y="133" width="0.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="143.5" font-size="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/reflect/runtime/SynchronizedSymbols$SynchronizedSymbol:::info$ (1 samples, 0.03%)</title><rect x="473.9" y="901" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="911.5" font-size="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 (1 samples, 0.03%)</title><rect x="115.3" y="1765" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="118.28" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::generate_i2c2i_adapters (1 samples, 0.03%)</title><rect x="521.7" y="1637" width="0.4" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="524.72" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="1109.3" y="1317" width="0.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1327.5" font-size="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 (1 samples, 0.03%)</title><rect x="49.7" y="437" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="52.65" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.6" y="1637" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::change_sig_to_verificationType (1 samples, 0.03%)</title><rect x="481.4" y="1125" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="484.38" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="370.3" y="261" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="373.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::define_instance_class (1 samples, 0.03%)</title><rect x="36.3" y="69" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="39.32" y="79.5" font-size="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/lang/ClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="31.2" y="165" width="0.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="175.5" font-size="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 (1 samples, 0.03%)</title><rect x="323.1" y="869" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="326.12" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="945.2" y="1141" width="0.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciInstanceKlass::get_field_by_offset (1 samples, 0.03%)</title><rect x="649.2" y="1765" width="0.4" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="652.22" y="1775.5" font-size="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/net/URLClassLoader$1:::run (1 samples, 0.03%)</title><rect x="31.2" y="229" width="0.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="239.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1138.4" y="1573" width="0.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1141.38" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_super_or_fail (1 samples, 0.03%)</title><rect x="72.9" y="869" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="879.5" font-size="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 (2 samples, 0.06%)</title><rect x="1179.7" y="1829" width="0.7" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1182.75" y="1839.5" font-size="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 (3 samples, 0.09%)</title><rect x="78.0" y="789" width="1.0" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="799.5" font-size="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 (1 samples, 0.03%)</title><rect x="73.9" y="1413" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="76.92" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="486.5" y="1109" width="0.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="489.51" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (5 samples, 0.14%)</title><rect x="1143.5" y="1637" width="1.7" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="1146.51" y="1647.5" font-size="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/AbstractIterable:::foreach (1 samples, 0.03%)</title><rect x="1106.9" y="1237" width="0.4" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="1109.94" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConvI2LNode::Value (1 samples, 0.03%)</title><rect x="821.8" y="1877" width="0.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="824.85" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field_access (5 samples, 0.14%)</title><rect x="527.9" y="1189" width="1.7" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="530.87" y="1199.5" font-size="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_binprm (1 samples, 0.03%)</title><rect x="506.0" y="1269" width="0.3" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="509.00" y="1279.5" font-size="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 (5 samples, 0.14%)</title><rect x="1098.4" y="933" width="1.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="1101.39" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="67.8" y="277" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="287.5" font-size="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 (8 samples, 0.23%)</title><rect x="321.1" y="1557" width="2.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="324.07" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$:::directDeps (1 samples, 0.03%)</title><rect x="318.7" y="917" width="0.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="927.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.2" y="901" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="911.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.2" y="1237" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="73.16" y="1247.5" font-size="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/util/hashing/MurmurHash3:::orderedHash (1 samples, 0.03%)</title><rect x="319.7" y="581" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.03%)</title><rect x="949.4" y="1477" width="0.3" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="952.35" y="1487.5" font-size="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 (1 samples, 0.03%)</title><rect x="33.6" y="469" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="36.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (1 samples, 0.03%)</title><rect x="1109.3" y="1445" width="0.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (7 samples, 0.20%)</title><rect x="932.6" y="1109" width="2.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="935.60" y="1119.5" font-size="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/util/zip/Inflater:::inflateBytes (1 samples, 0.03%)</title><rect x="532.3" y="869" width="0.4" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="535.32" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_DefineAnonymousClass (1 samples, 0.03%)</title><rect x="1122.3" y="1429" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1125.32" y="1439.5" font-size="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 (8 samples, 0.23%)</title><rect x="51.4" y="1317" width="2.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="1327.5" font-size="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] (20 samples, 0.58%)</title><rect x="157.7" y="1989" width="6.8" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="160.67" y="1999.5" font-size="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.20%)</title><rect x="343.6" y="2021" width="2.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="346.63" y="2031.5" font-size="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_lang_Throwable::fill_in_stack_trace (1 samples, 0.03%)</title><rect x="69.1" y="197" width="0.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="383.6" y="725" width="0.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="386.62" y="735.5" font-size="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/LinearSeqOptimized:::loop$1 (1 samples, 0.03%)</title><rect x="317.6" y="293" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="320.65" y="303.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.6" y="949" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="959.5" font-size="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.87 (4 samples, 0.12%)</title><rect x="181.9" y="1797" width="1.4" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="184.94" y="1807.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Runtime1::counter_overflow (1 samples, 0.03%)</title><rect x="424.3" y="965" width="0.3" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="427.30" y="975.5" font-size="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 (4 samples, 0.12%)</title><rect x="76.3" y="1381" width="1.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="1391.5" font-size="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 (5 samples, 0.14%)</title><rect x="45.9" y="133" width="1.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="48.89" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="469.4" y="1317" width="0.4" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="472.42" y="1327.5" font-size="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_context_sched_in (1 samples, 0.03%)</title><rect x="86.6" y="1813" width="0.3" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="89.57" y="1823.5" font-size="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 (2 samples, 0.06%)</title><rect x="251.3" y="1829" width="0.7" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="254.33" y="1839.5" font-size="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$$Lambda$1475/1137401656:::apply (1 samples, 0.03%)</title><rect x="73.2" y="1685" width="0.4" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="1695.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.5" y="1381" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="1391.5" font-size="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 (1 samples, 0.03%)</title><rect x="319.7" y="1253" width="0.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1263.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="479.7" y="1349" width="0.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="482.68" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciInstanceKlass::is_instance_klass (1 samples, 0.03%)</title><rect x="937.0" y="1397" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="940.05" y="1407.5" font-size="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 (6 samples, 0.17%)</title><rect x="40.1" y="837" width="2.0" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="43.08" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StealRegionCompactionTask::do_it (79 samples, 2.29%)</title><rect x="554.5" y="1989" width="27.0" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="557.54" y="1999.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >S..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 0.32%)</title><rect x="55.1" y="1045" width="3.8" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="58.12" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (2 samples, 0.06%)</title><rect x="63.3" y="453" width="0.7" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="66.33" y="463.5" font-size="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 (1 samples, 0.03%)</title><rect x="363.8" y="437" width="0.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="366.79" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="1064.2" y="1685" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1067.21" y="1695.5" font-size="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 (1 samples, 0.03%)</title><rect x="72.9" y="1365" width="0.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="1375.5" font-size="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 (4 samples, 0.12%)</title><rect x="364.8" y="405" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="367.82" y="415.5" font-size="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/util/SubList$1:::hasNext (1 samples, 0.03%)</title><rect x="463.3" y="677" width="0.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="466.27" y="687.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="37.0" y="181" width="0.3" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="40.00" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (2 samples, 0.06%)</title><rect x="418.8" y="901" width="0.7" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="421.83" y="911.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.0" y="917" width="0.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parseClassFile (1 samples, 0.03%)</title><rect x="493.0" y="1077" width="0.3" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="496.01" y="1087.5" font-size="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="151.2" y="1685" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="154.18" y="1695.5" font-size="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 samples, 0.06%)</title><rect x="72.2" y="789" width="0.7" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="75.21" y="799.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="483.1" y="1477" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="486.09" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="454.7" y="1221" width="0.4" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="457.72" y="1231.5" font-size="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/LinearSeqOptimized:::loop$1 (1 samples, 0.03%)</title><rect x="17.9" y="517" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="20.86" y="527.5" font-size="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 (1 samples, 0.03%)</title><rect x="1086.1" y="517" width="0.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1089.08" y="527.5" font-size="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_safe (1 samples, 0.03%)</title><rect x="1111.7" y="1317" width="0.4" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="1114.72" y="1327.5" font-size="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 samples, 0.06%)</title><rect x="66.1" y="565" width="0.6" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="575.5" font-size="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_safe (14 samples, 0.41%)</title><rect x="143.7" y="1989" width="4.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="146.66" y="1999.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_bytecode (1 samples, 0.03%)</title><rect x="959.9" y="1605" width="0.4" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="962.95" y="1615.5" font-size="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 (3 samples, 0.09%)</title><rect x="50.0" y="437" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::verify_legal_utf8 (1 samples, 0.03%)</title><rect x="459.5" y="485" width="0.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="462.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize (4 samples, 0.12%)</title><rect x="47.9" y="677" width="1.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="50.94" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="533.0" y="1525" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1535.5" font-size="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_java_lang_Throwable_fillInStackTrace (1 samples, 0.03%)</title><rect x="471.8" y="677" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="474.81" y="687.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="463.3" y="597" width="0.3" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="466.27" y="607.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="42.8" y="53" width="0.7" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text text-anchor="" x="45.82" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::Label_Root (2 samples, 0.06%)</title><rect x="634.2" y="1781" width="0.7" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="637.18" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode:::doneOrBlock (1 samples, 0.03%)</title><rect x="381.2" y="661" width="0.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="384.23" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$$$Lambda$962/1595180029:::apply (1 samples, 0.03%)</title><rect x="74.3" y="1045" width="0.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="77.26" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_FillInStackTrace (1 samples, 0.03%)</title><rect x="69.1" y="229" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_invoke (1 samples, 0.03%)</title><rect x="456.4" y="1077" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="459.43" y="1087.5" font-size="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 samples, 0.06%)</title><rect x="53.4" y="261" width="0.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="56.41" y="271.5" font-size="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 (1 samples, 0.03%)</title><rect x="14.4" y="101" width="0.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="111.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.0" y="197" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="207.5" font-size="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 (1 samples, 0.03%)</title><rect x="30.5" y="229" width="0.4" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="33.51" y="239.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="439.7" y="469" width="0.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="479.5" font-size="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 (6 samples, 0.17%)</title><rect x="58.9" y="501" width="2.0" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="61.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (4 samples, 0.12%)</title><rect x="64.7" y="677" width="1.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="687.5" font-size="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 (1 samples, 0.03%)</title><rect x="70.5" y="1541" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="73.50" y="1551.5" font-size="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 (3 samples, 0.09%)</title><rect x="179.2" y="69" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="182.21" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="482.4" y="1285" width="0.4" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="485.41" y="1295.5" font-size="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 (1 samples, 0.03%)</title><rect x="27.4" y="197" width="0.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="30.43" y="207.5" font-size="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 samples, 0.06%)</title><rect x="66.1" y="549" width="0.6" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="559.5" font-size="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/io/File:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="78.7" y="69" width="0.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="81.71" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::cast_not_null (1 samples, 0.03%)</title><rect x="961.0" y="1685" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="963.97" y="1695.5" font-size="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/reflect/internal/pickling/UnPickler$Scan$$Lambda$158/137533655:::apply (1 samples, 0.03%)</title><rect x="473.9" y="725" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="735.5" font-size="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/security/SecureClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="385.0" y="341" width="0.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="387.99" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>klassVtable::add_new_mirandas_to_lists (1 samples, 0.03%)</title><rect x="527.2" y="1237" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="530.19" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::Initialize (5 samples, 0.14%)</title><rect x="971.6" y="1909" width="1.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="974.57" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="385.0" y="421" width="0.3" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="387.99" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Assembler::jmp_literal (1 samples, 0.03%)</title><rect x="521.7" y="1605" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="524.72" y="1615.5" font-size="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/tools/nsc/ast/parser/Scanners$Scanner:::nextToken (1 samples, 0.03%)</title><rect x="38.0" y="101" width="0.4" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="41.03" y="111.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.0" y="357" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="367.5" font-size="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/reflect/runtime/SymbolLoaders$PackageScope:::$anonfun$lookupEntry$1 (1 samples, 0.03%)</title><rect x="446.2" y="1173" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="449.18" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="397.6" y="277" width="0.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="400.64" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (2 samples, 0.06%)</title><rect x="409.6" y="725" width="0.7" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="412.60" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="529.2" y="997" width="0.4" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="532.24" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::round_double_arguments (2 samples, 0.06%)</title><rect x="930.9" y="1333" width="0.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="933.89" y="1343.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.0" y="229" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="37.95" y="239.5" font-size="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 (2 samples, 0.06%)</title><rect x="137.2" y="1893" width="0.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="140.16" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (1 samples, 0.03%)</title><rect x="530.3" y="1013" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="533.27" y="1023.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.1" y="1141" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="1151.5" font-size="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 (5 samples, 0.14%)</title><rect x="484.1" y="1141" width="1.7" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text text-anchor="" x="487.12" y="1151.5" font-size="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="154.6" y="1989" width="1.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="157.59" y="1999.5" font-size="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 (2 samples, 0.06%)</title><rect x="92.4" y="1717" width="0.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="95.38" y="1727.5" font-size="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 (1 samples, 0.03%)</title><rect x="19.6" y="181" width="0.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="22.57" y="191.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.5" y="517" width="0.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="527.5" font-size="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_execve (1 samples, 0.03%)</title><rect x="52.7" y="85" width="0.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="55.73" y="95.5" font-size="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 (3 samples, 0.09%)</title><rect x="460.5" y="885" width="1.1" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="463.53" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AdvancedThresholdPolicy::submit_compile (1 samples, 0.03%)</title><rect x="424.3" y="901" width="0.3" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="427.30" y="911.5" font-size="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 (3 samples, 0.09%)</title><rect x="1181.8" y="1909" width="1.0" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="1184.80" y="1919.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compile_method_base (1 samples, 0.03%)</title><rect x="382.3" y="437" width="0.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="385.25" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.03%)</title><rect x="185.0" y="1893" width="0.4" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="188.02" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.03%)</title><rect x="945.2" y="949" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="959.5" font-size="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 samples, 0.06%)</title><rect x="68.1" y="1093" width="0.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="71.11" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="393.2" y="693" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="396.19" y="703.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.2" y="933" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="943.5" font-size="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 (4 samples, 0.12%)</title><rect x="76.3" y="1653" width="1.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="79.32" y="1663.5" font-size="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 (1 samples, 0.03%)</title><rect x="1046.4" y="1797" width="0.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1049.43" y="1807.5" font-size="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 (36 samples, 1.04%)</title><rect x="363.5" y="821" width="12.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="366.45" y="831.5" font-size="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 (1 samples, 0.03%)</title><rect x="475.2" y="1349" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="478.23" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="494.7" y="1221" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="497.72" y="1231.5" font-size="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 (3 samples, 0.09%)</title><rect x="363.5" y="533" width="1.0" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="366.45" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="530.6" y="885" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="533.61" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (19 samples, 0.55%)</title><rect x="930.2" y="1381" width="6.5" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="933.21" y="1391.5" font-size="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/TraversableOnce$$Lambda$855/664656217:::apply (1 samples, 0.03%)</title><rect x="379.9" y="325" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="382.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (1 samples, 0.03%)</title><rect x="930.2" y="1333" width="0.4" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="933.21" y="1343.5" font-size="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 (6 samples, 0.17%)</title><rect x="396.3" y="629" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="639.5" font-size="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:::foldLeft (14 samples, 0.41%)</title><rect x="408.9" y="949" width="4.8" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="411.92" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="532.7" y="1509" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="535.66" y="1519.5" font-size="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 (1 samples, 0.03%)</title><rect x="512.5" y="1013" width="0.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="515.49" y="1023.5" font-size="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 (1 samples, 0.03%)</title><rect x="32.6" y="837" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="847.5" font-size="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="156.0" y="1717" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="158.96" y="1727.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.0" y="581" width="0.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="591.5" font-size="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 (1 samples, 0.03%)</title><rect x="388.4" y="709" width="0.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="391.41" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PSPromotionManager::copy_to_survivor_space&lt;false&gt; (35 samples, 1.01%)</title><rect x="586.0" y="1957" width="11.9" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="588.98" y="1967.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::new_instance (1 samples, 0.03%)</title><rect x="959.6" y="1301" width="0.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="962.61" y="1311.5" font-size="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 (1 samples, 0.03%)</title><rect x="77.7" y="1413" width="0.3" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="80.68" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCFG::global_code_motion (27 samples, 0.78%)</title><rect x="644.4" y="1877" width="9.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="647.44" y="1887.5" font-size="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 (1 samples, 0.03%)</title><rect x="430.8" y="1013" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="433.79" y="1023.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1509" width="1.1" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (2 samples, 0.06%)</title><rect x="414.7" y="869" width="0.7" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="417.73" y="879.5" font-size="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 (7 samples, 0.20%)</title><rect x="325.5" y="1989" width="2.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="328.51" y="1999.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MethodLiveness::BasicBlock::compute_gen_kill_single (1 samples, 0.03%)</title><rect x="963.7" y="1749" width="0.3" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="966.71" y="1759.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="456.4" y="1013" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="459.43" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (1 samples, 0.03%)</title><rect x="439.7" y="437" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="447.5" font-size="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 (1 samples, 0.03%)</title><rect x="466.3" y="629" width="0.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="639.5" font-size="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_context_sched_in (1 samples, 0.03%)</title><rect x="173.1" y="1797" width="0.3" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="176.05" y="1807.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$GetValue:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="419.9" y="853" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="422.86" y="863.5" font-size="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 (2 samples, 0.06%)</title><rect x="1009.5" y="1781" width="0.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="1012.51" y="1791.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Settings0$$Lambda$1738/476221290:::apply (1 samples, 0.03%)</title><rect x="381.9" y="533" width="0.4" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="384.91" y="543.5" font-size="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 (6 samples, 0.17%)</title><rect x="396.3" y="677" width="2.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_exceptions (1 samples, 0.03%)</title><rect x="948.0" y="965" width="0.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="950.98" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::lookup_method_in_klasses (1 samples, 0.03%)</title><rect x="31.9" y="37" width="0.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="34.88" y="47.5" font-size="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.26%)</title><rect x="125.5" y="1861" width="3.1" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="128.54" y="1871.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invokedynamic (1 samples, 0.03%)</title><rect x="78.0" y="197" width="0.4" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="81.02" y="207.5" font-size="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 (7 samples, 0.20%)</title><rect x="45.6" y="1093" width="2.3" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="48.55" y="1103.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="72.9" y="949" width="0.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="959.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="527.9" y="837" width="0.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="530.87" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::link_method_handle_constant (1 samples, 0.03%)</title><rect x="1147.3" y="1605" width="0.3" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="1150.27" y="1615.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="31.2" y="133" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="67.8" y="757" width="0.3" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="70.77" y="767.5" font-size="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 (5 samples, 0.14%)</title><rect x="484.1" y="949" width="1.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="487.12" y="959.5" font-size="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 (1 samples, 0.03%)</title><rect x="455.4" y="1381" width="0.3" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="458.41" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_static (1 samples, 0.03%)</title><rect x="376.4" y="725" width="0.4" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="379.44" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="318.3" y="373" width="0.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="321.33" y="383.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="42.1" y="293" width="0.4" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="45.13" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_invoke (1 samples, 0.03%)</title><rect x="455.4" y="1269" width="0.3" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="458.41" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="494.4" y="1253" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="497.37" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (45 samples, 1.30%)</title><rect x="926.1" y="1621" width="15.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="929.11" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciInstanceKlass::is_boxed_value_offset (1 samples, 0.03%)</title><rect x="952.8" y="1589" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="955.77" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_method (1 samples, 0.03%)</title><rect x="953.8" y="1349" width="0.3" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="956.79" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.0" y="149" width="0.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dup2 (1 samples, 0.03%)</title><rect x="47.6" y="117" width="0.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="50.60" y="127.5" font-size="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 (175 samples, 5.07%)</title><rect x="14.4" y="1733" width="59.9" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="1743.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 0.17%)</title><rect x="484.1" y="1413" width="2.1" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="487.12" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (4 samples, 0.12%)</title><rect x="932.6" y="917" width="1.4" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="935.60" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>klassVtable::compute_vtable_size_and_num_mirandas (1 samples, 0.03%)</title><rect x="528.2" y="341" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="531.22" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::link_class_impl (1 samples, 0.03%)</title><rect x="396.3" y="181" width="0.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::call_class_initializer_impl (1 samples, 0.03%)</title><rect x="18.5" y="373" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="21.55" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_method_by_index_impl (1 samples, 0.03%)</title><rect x="947.0" y="1605" width="0.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="949.96" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_constrained_instance_or_array_klass (1 samples, 0.03%)</title><rect x="918.6" y="1525" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="921.59" y="1535.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="319.7" y="229" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="239.5" font-size="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 (1 samples, 0.03%)</title><rect x="459.2" y="693" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="462.17" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::null_check_common (1 samples, 0.03%)</title><rect x="963.7" y="1813" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="966.71" y="1823.5" font-size="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="1132.9" y="1269" width="1.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1135.91" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AddPNode::Value (1 samples, 0.03%)</title><rect x="948.0" y="917" width="0.3" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="950.98" y="927.5" font-size="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="169.6" y="1941" width="1.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="172.63" y="1951.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::check_method_loader_constraints (1 samples, 0.03%)</title><rect x="1130.5" y="1269" width="0.4" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="1133.52" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciField::ciField (1 samples, 0.03%)</title><rect x="981.8" y="1717" width="0.4" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="984.83" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (1 samples, 0.03%)</title><rect x="1174.6" y="1877" width="0.4" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1177.62" y="1887.5" font-size="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 (1 samples, 0.03%)</title><rect x="533.0" y="1237" width="0.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="536.00" y="1247.5" font-size="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/net/URLClassLoader:::defineClass (1 samples, 0.03%)</title><rect x="480.4" y="709" width="0.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="483.36" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jvm_define_class_common (1 samples, 0.03%)</title><rect x="77.3" y="485" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="80.34" y="495.5" font-size="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 (1 samples, 0.03%)</title><rect x="1117.2" y="1525" width="0.3" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="1120.19" y="1535.5" font-size="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 (5 samples, 0.14%)</title><rect x="38.4" y="837" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="41.37" y="847.5" font-size="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 (1 samples, 0.03%)</title><rect x="22.3" y="357" width="0.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="25.31" y="367.5" font-size="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 (3 samples, 0.09%)</title><rect x="66.7" y="1221" width="1.1" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="448.6" y="789" width="0.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="25.7" y="373" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="28.72" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="521.0" y="917" width="0.4" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="524.04" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (7 samples, 0.20%)</title><rect x="941.8" y="1509" width="2.4" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="944.83" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_get_put (2 samples, 0.06%)</title><rect x="449.3" y="1365" width="0.6" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="452.25" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::ciTypeFlow (1 samples, 0.03%)</title><rect x="921.7" y="1653" width="0.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="924.66" y="1663.5" font-size="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-25316.map] (1 samples, 0.03%)</title><rect x="74.6" y="1205" width="0.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="77.61" y="1215.5" font-size="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 (1 samples, 0.03%)</title><rect x="483.1" y="1429" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="486.09" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="23.7" y="389" width="0.3" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="399.5" font-size="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 (1 samples, 0.03%)</title><rect x="319.7" y="1893" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply:::validateKeyReferenced (1 samples, 0.03%)</title><rect x="413.0" y="757" width="0.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="416.02" y="767.5" font-size="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 (8 samples, 0.23%)</title><rect x="51.4" y="1141" width="2.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="54.36" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_super_or_fail (1 samples, 0.03%)</title><rect x="72.9" y="469" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="479.5" font-size="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 (1 samples, 0.03%)</title><rect x="1107.3" y="1205" width="0.3" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1110.28" y="1215.5" font-size="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="582.9" y="1877" width="0.4" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="585.91" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_class (1 samples, 0.03%)</title><rect x="459.8" y="1189" width="0.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="462.85" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InlineTree::ok_to_inline (1 samples, 0.03%)</title><rect x="953.5" y="1685" width="0.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="956.45" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_strings_kernel (1 samples, 0.03%)</title><rect x="1188.6" y="1973" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1191.63" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/EvaluateTask$:::$anonfun$injectStreams$1 (1 samples, 0.03%)</title><rect x="473.9" y="421" width="0.3" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="476.86" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_method_by_index_impl (1 samples, 0.03%)</title><rect x="986.6" y="1413" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="989.61" y="1423.5" font-size="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 (9 samples, 0.26%)</title><rect x="138.5" y="1797" width="3.1" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="141.53" y="1807.5" font-size="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 samples, 0.06%)</title><rect x="1108.3" y="1413" width="0.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="1111.30" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeFunc::make (1 samples, 0.03%)</title><rect x="923.4" y="1701" width="0.3" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="926.37" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (16 samples, 0.46%)</title><rect x="953.8" y="1669" width="5.5" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="956.79" y="1679.5" font-size="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 samples, 0.06%)</title><rect x="29.8" y="517" width="0.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="32.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.03%)</title><rect x="1189.7" y="2037" width="0.3" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="1192.66" y="2047.5" font-size="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 (3 samples, 0.09%)</title><rect x="71.2" y="1573" width="1.0" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text text-anchor="" x="74.19" y="1583.5" font-size="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 samples, 0.06%)</title><rect x="28.8" y="517" width="0.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="31.80" y="527.5" font-size="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/net/URLClassLoader:::findClass (1 samples, 0.03%)</title><rect x="28.5" y="325" width="0.3" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="31.46" y="335.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="23.7" y="341" width="0.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="26.67" y="351.5" font-size="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 (1 samples, 0.03%)</title><rect x="74.9" y="1125" width="0.4" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="77.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DefineClassWithSource (2 samples, 0.06%)</title><rect x="531.6" y="869" width="0.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="534.63" y="879.5" font-size="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/lang/invoke/CallSite:::makeSite (1 samples, 0.03%)</title><rect x="1122.3" y="1557" width="0.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1125.32" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::resolve_field (1 samples, 0.03%)</title><rect x="60.9" y="837" width="0.4" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="63.93" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.03%)</title><rect x="75.6" y="1045" width="0.4" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="1055.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.1" y="981" width="0.4" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text text-anchor="" x="72.14" y="991.5" font-size="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 (1 samples, 0.03%)</title><rect x="68.8" y="885" width="0.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="71.79" y="895.5" font-size="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/security/AccessController:::doPrivileged (1 samples, 0.03%)</title><rect x="469.4" y="1205" width="0.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="472.42" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.03%)</title><rect x="1184.9" y="2021" width="0.3" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="1187.87" y="2031.5" font-size="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 (2 samples, 0.06%)</title><rect x="1166.8" y="1797" width="0.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1169.76" y="1807.5" font-size="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 (1 samples, 0.03%)</title><rect x="22.6" y="181" width="0.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="25.65" y="191.5" font-size="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 samples, 0.06%)</title><rect x="31.5" y="981" width="0.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="991.5" font-size="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/util/SubList$1:::hasNext (1 samples, 0.03%)</title><rect x="73.2" y="165" width="0.4" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="76.24" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (4 samples, 0.12%)</title><rect x="955.5" y="1205" width="1.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="958.50" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BCEscapeAnalyzer::compute_escape_info (1 samples, 0.03%)</title><rect x="817.7" y="1653" width="0.4" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="820.75" y="1663.5" font-size="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="327.9" y="2021" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="330.90" y="2031.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>shrink_dentry_list (1 samples, 0.03%)</title><rect x="119.7" y="1829" width="0.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="122.73" y="1839.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerificationType::is_reference_assignable_from (1 samples, 0.03%)</title><rect x="440.4" y="1077" width="0.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="443.37" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_DoPrivileged (2 samples, 0.06%)</title><rect x="486.9" y="1349" width="0.6" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="489.85" y="1359.5" font-size="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 (1 samples, 0.03%)</title><rect x="15.8" y="69" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="18.81" y="79.5" font-size="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 (2 samples, 0.06%)</title><rect x="66.1" y="101" width="0.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_class (1 samples, 0.03%)</title><rect x="374.0" y="709" width="0.4" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="377.05" y="719.5" font-size="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 (5 samples, 0.14%)</title><rect x="151.2" y="1973" width="1.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="154.18" y="1983.5" font-size="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 (1 samples, 0.03%)</title><rect x="318.0" y="677" width="0.3" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="320.99" y="687.5" font-size="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/lang/invoke/LambdaMetafactory:::altMetafactory (1 samples, 0.03%)</title><rect x="376.8" y="437" width="0.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="379.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Verifier::verify (1 samples, 0.03%)</title><rect x="18.5" y="149" width="0.4" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="21.55" y="159.5" font-size="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 (3 samples, 0.09%)</title><rect x="320.0" y="1637" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="323.04" y="1647.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="95.5" y="1701" width="0.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="98.46" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/librarymanagement/ModuleReportFormats$$anon$1:::read (9 samples, 0.26%)</title><rect x="1091.9" y="933" width="3.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1094.89" y="943.5" font-size="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.87 (1 samples, 0.03%)</title><rect x="1048.1" y="1701" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1051.14" y="1711.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_from_stream (1 samples, 0.03%)</title><rect x="493.0" y="1093" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="496.01" y="1103.5" font-size="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 (1 samples, 0.03%)</title><rect x="1066.3" y="1765" width="0.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="1069.26" y="1775.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::jvm_raw_unlock (1 samples, 0.03%)</title><rect x="29.5" y="37" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="32.48" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.03%)</title><rect x="32.6" y="485" width="0.3" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="35.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphKit::uncommon_trap (1 samples, 0.03%)</title><rect x="928.2" y="1461" width="0.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="931.16" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_method (1 samples, 0.03%)</title><rect x="947.0" y="1637" width="0.3" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="949.96" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (1 samples, 0.03%)</title><rect x="945.2" y="773" width="0.4" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="948.25" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (2 samples, 0.06%)</title><rect x="66.1" y="213" width="0.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/logic/Logic$$$Lambda$957/95553286:::apply (2 samples, 0.06%)</title><rect x="373.4" y="757" width="0.6" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="376.37" y="767.5" font-size="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 (1 samples, 0.03%)</title><rect x="1081.3" y="741" width="0.3" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text text-anchor="" x="1084.30" y="751.5" font-size="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 (1 samples, 0.03%)</title><rect x="497.8" y="1173" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="500.79" y="1183.5" font-size="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 (1 samples, 0.03%)</title><rect x="35.3" y="645" width="0.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="38.30" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.03%)</title><rect x="17.5" y="501" width="0.4" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="20.52" y="511.5" font-size="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 (4 samples, 0.12%)</title><rect x="64.7" y="1301" width="1.4" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="67.69" y="1311.5" font-size="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/lang/invoke/LambdaFormEditor:::bindArgumentL (1 samples, 0.03%)</title><rect x="1146.6" y="1445" width="0.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1149.59" y="1455.5" font-size="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/reflect/internal/Mirrors$RootsBase:::getModuleOrClass (9 samples, 0.26%)</title><rect x="471.1" y="1477" width="3.1" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="474.13" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__get_user_pages (1 samples, 0.03%)</title><rect x="505.7" y="1221" width="0.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="508.65" y="1231.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="17.2" y="245" width="0.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="20.18" y="255.5" font-size="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 (2 samples, 0.06%)</title><rect x="975.7" y="1893" width="0.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="978.67" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeAryPtr::add_offset (1 samples, 0.03%)</title><rect x="638.3" y="1781" width="0.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="641.29" y="1791.5" font-size="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="1185.2" y="1957" width="1.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="1188.21" y="1967.5" font-size="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/util/concurrent/locks/ReentrantLock$NonfairSync:::tryAcquire (1 samples, 0.03%)</title><rect x="367.2" y="677" width="0.4" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="370.21" y="687.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="1109.3" y="453" width="0.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="1112.33" y="463.5" font-size="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 (2 samples, 0.06%)</title><rect x="66.1" y="85" width="0.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="69.06" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_super_or_fail (1 samples, 0.03%)</title><rect x="486.9" y="725" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="489.85" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.03%)</title><rect x="251.3" y="1813" width="0.4" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="254.33" y="1823.5" font-size="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/Option:::getOrElse (1 samples, 0.03%)</title><rect x="385.7" y="869" width="0.3" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="388.67" y="879.5" font-size="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 (1 samples, 0.03%)</title><rect x="520.7" y="1221" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="523.70" y="1231.5" font-size="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 (1 samples, 0.03%)</title><rect x="75.6" y="981" width="0.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="991.5" font-size="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.26%)</title><rect x="125.5" y="1909" width="3.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="128.54" y="1919.5" font-size="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 (1 samples, 0.03%)</title><rect x="446.5" y="1205" width="0.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="449.52" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParCompactionManager::follow_marking_stacks (20 samples, 0.58%)</title><rect x="547.4" y="1973" width="6.8" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="550.36" y="1983.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compile_method (8 samples, 0.23%)</title><rect x="95.1" y="1973" width="2.8" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="98.12" y="1983.5" font-size="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_java_lang_ClassLoader_defineClass1 (1 samples, 0.03%)</title><rect x="439.7" y="309" width="0.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="442.68" y="319.5" font-size="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_execve (2 samples, 0.06%)</title><rect x="499.8" y="1285" width="0.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="502.84" y="1295.5" font-size="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 (1 samples, 0.03%)</title><rect x="544.3" y="1717" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="547.28" y="1727.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resolve_virtual_call (1 samples, 0.03%)</title><rect x="1146.9" y="1637" width="0.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="1149.93" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="30.5" y="101" width="0.4" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="33.51" y="111.5" font-size="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 (1 samples, 0.03%)</title><rect x="69.5" y="149" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="72.48" y="159.5" font-size="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 (1 samples, 0.03%)</title><rect x="31.5" y="373" width="0.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="34.54" y="383.5" font-size="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 (10 samples, 0.29%)</title><rect x="377.1" y="709" width="3.4" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="380.13" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassVerifier::verify_method (1 samples, 0.03%)</title><rect x="494.0" y="1525" width="0.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="497.03" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/KeyIndex0:::add (1 samples, 0.03%)</title><rect x="388.7" y="757" width="0.4" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="391.75" y="767.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="1117.2" y="1493" width="0.3" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="1120.19" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Dag$:::topologicalSort (1 samples, 0.03%)</title><rect x="439.3" y="1061" width="0.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="442.34" y="1071.5" font-size="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/AbstractIterator:::mkString (2 samples, 0.06%)</title><rect x="1171.5" y="1877" width="0.7" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="1174.54" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::find_dynamic_call_site_invoker (1 samples, 0.03%)</title><rect x="1146.6" y="1605" width="0.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1149.59" y="1615.5" font-size="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-25316.map] (5 samples, 0.14%)</title><rect x="49.3" y="1269" width="1.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="52.31" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1599/1926235108:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="72.9" y="757" width="0.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="75.90" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$$anon$10:::apply (1 samples, 0.03%)</title><rect x="408.2" y="837" width="0.4" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="411.23" y="847.5" font-size="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/lang/String:::&lt;init&gt; (1 samples, 0.03%)</title><rect x="440.4" y="853" width="0.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="443.37" y="863.5" font-size="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 (3 samples, 0.09%)</title><rect x="1049.8" y="1717" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1052.85" y="1727.5" font-size="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 (3 samples, 0.09%)</title><rect x="66.7" y="1141" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="69.74" y="1151.5" font-size="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/lang/ClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="75.6" y="149" width="0.4" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="78.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (2 samples, 0.06%)</title><rect x="207.2" y="1893" width="0.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="210.24" y="1903.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PSParallelCompact::fill_region (9 samples, 0.26%)</title><rect x="555.9" y="1957" width="3.1" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="558.90" y="1967.5" font-size="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/TraversableLike:::flatMap$ (1 samples, 0.03%)</title><rect x="414.7" y="693" width="0.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="417.73" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="478.7" y="1413" width="0.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="481.65" y="1423.5" font-size="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/lang/invoke/CallSite:::makeSite (1 samples, 0.03%)</title><rect x="376.8" y="485" width="0.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="379.78" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseGVN::transform_no_reclaim (1 samples, 0.03%)</title><rect x="948.7" y="1205" width="0.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="951.67" y="1215.5" font-size="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.87 (1 samples, 0.03%)</title><rect x="72.2" y="117" width="0.4" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="75.21" y="127.5" font-size="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 (1 samples, 0.03%)</title><rect x="320.7" y="501" width="0.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="323.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.03%)</title><rect x="527.9" y="1093" width="0.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="530.87" y="1103.5" font-size="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 (4 samples, 0.12%)</title><rect x="317.0" y="1013" width="1.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="319.96" y="1023.5" font-size="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_safe (2 samples, 0.06%)</title><rect x="1148.6" y="1573" width="0.7" height="15.0" fill="rgb(202,52,52)" rx="2" ry="2" />
<text text-anchor="" x="1151.64" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.03%)</title><rect x="366.5" y="533" width="0.4" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="369.53" y="543.5" font-size="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 (142 samples, 4.11%)</title><rect x="14.4" y="1477" width="48.6" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="17.44" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inte..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (2 samples, 0.06%)</title><rect x="1170.5" y="1861" width="0.7" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1173.52" y="1871.5" font-size="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 (25 samples, 0.72%)</title><rect x="242.4" y="1877" width="8.6" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="245.44" y="1887.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sun/misc/Launcher$AppClassLoader:::loadClass (1 samples, 0.03%)</title><rect x="469.4" y="1253" width="0.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="472.42" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/EvaluateSettings$INode$$Lambda$1591/1772102816:::apply (1 samples, 0.03%)</title><rect x="70.8" y="213" width="0.4" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="73.85" y="223.5" font-size="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/lang/invoke/InnerClassLambdaMetafactory:::buildCallSite (1 samples, 0.03%)</title><rect x="403.1" y="373" width="0.3" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="406.11" y="383.5" font-size="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 (1 samples, 0.03%)</title><rect x="16.8" y="213" width="0.4" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="19.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::initialize_impl (1 samples, 0.03%)</title><rect x="73.6" y="1109" width="0.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="76.58" y="1119.5" font-size="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 (1 samples, 0.03%)</title><rect x="1151.4" y="1477" width="0.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="1154.37" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbt/internal/util/Init$Apply:::mapReferenced (1 samples, 0.03%)</title><rect x="444.8" y="1237" width="0.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="447.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VerificationType::is_reference_assignable_from (1 samples, 0.03%)</title><rect x="476.9" y="1381" width="0.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="479.94" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_method (1 samples, 0.03%)</title><rect x="986.3" y="1125" width="0.3" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="989.27" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sjsonnew/JavaExtraFormats$$Lambda$496/1901663135:::apply (1 samples, 0.03%)</title><rect x="1103.2" y="677" width="0.3" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1106.17" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parker::park (8 sa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment