Skip to content

Instantly share code, notes, and snippets.

@DanielThomas
Created July 6, 2017 20:05
Show Gist options
  • Save DanielThomas/2295747d0c6ac72879dcd8bda6773fd4 to your computer and use it in GitHub Desktop.
Save DanielThomas/2295747d0c6ac72879dcd8bda6773fd4 to your computer and use it in GitHub Desktop.
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="3122" onload="init(evt)" viewBox="0 0 1200 3122" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if 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 (1 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="3122.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Icicle Graph</text>
<text text-anchor="" x="10.00" y="3105" 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="3105" 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>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1616" width="1.9" height="15.0" fill="rgb(207,219,17)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1808" width="1.9" height="15.0" fill="rgb(206,132,3)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1200" width="1.9" height="15.0" fill="rgb(251,50,42)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="438.6" y="2208" width="1.9" height="15.0" fill="rgb(225,229,8)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="2432" width="1.9" height="15.0" fill="rgb(250,19,42)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="2096" width="1.8" height="15.0" fill="rgb(247,110,49)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="2106.5" font-size="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::Code_Gen (1 samples, 0.16%)</title><rect x="308.3" y="112" width="1.9" height="15.0" fill="rgb(227,221,0)" rx="2" ry="2" />
<text text-anchor="" x="311.30" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2656" width="1.9" height="15.0" fill="rgb(208,163,0)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2656" width="1.9" height="15.0" fill="rgb(213,132,46)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1536" width="1.9" height="15.0" fill="rgb(228,162,10)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="640" width="1.8" height="15.0" fill="rgb(215,166,19)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="1968" width="1.9" height="15.0" fill="rgb(212,14,8)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="496" width="1.9" height="15.0" fill="rgb(224,150,1)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1600" width="1.9" height="15.0" fill="rgb(253,180,36)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1040" width="1.9" height="15.0" fill="rgb(227,141,26)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="2192" width="366.3" height="15.0" fill="rgb(250,119,5)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="2202.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.16%)</title><rect x="733.1" y="2544" width="1.9" height="15.0" fill="rgb(212,45,20)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="425.4" y="2608" width="1.8" height="15.0" fill="rgb(214,44,12)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="1552" width="1.9" height="15.0" fill="rgb(245,203,2)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="2240" width="1.9" height="15.0" fill="rgb(240,166,7)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1216" width="1.9" height="15.0" fill="rgb(209,75,27)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="414.0" y="448" width="1.9" height="15.0" fill="rgb(254,35,25)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="423.5" y="1152" width="1.9" height="15.0" fill="rgb(232,173,5)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1296" width="1.9" height="15.0" fill="rgb(207,33,53)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="576" width="1.9" height="15.0" fill="rgb(221,132,13)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="576" width="1.9" height="15.0" fill="rgb(213,19,33)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="816" width="1.9" height="15.0" fill="rgb(219,41,22)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::doHash (1 samples, 0.16%)</title><rect x="438.6" y="256" width="1.9" height="15.0" fill="rgb(243,109,28)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="752" width="1.9" height="15.0" fill="rgb(223,67,52)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="2048" width="1.9" height="15.0" fill="rgb(249,134,52)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="2058.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="740.7" y="2320" width="1.8" height="15.0" fill="rgb(234,157,16)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="442.4" y="1248" width="1.8" height="15.0" fill="rgb(234,103,48)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1104" width="1.9" height="15.0" fill="rgb(210,36,14)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2544" width="1.8" height="15.0" fill="rgb(232,0,23)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="453.7" y="304" width="1.9" height="15.0" fill="rgb(241,186,3)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="2048" width="1.9" height="15.0" fill="rgb(234,14,27)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1184" width="1.9" height="15.0" fill="rgb(221,101,25)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1904" width="1.9" height="15.0" fill="rgb(211,189,10)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1914.5" font-size="12" 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.64%)</title><rect x="506.5" y="1680" width="7.6" height="15.0" fill="rgb(251,8,2)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1168" width="1.9" height="15.0" fill="rgb(235,44,1)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1232" width="1.9" height="15.0" fill="rgb(220,128,45)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1648" width="1.9" height="15.0" fill="rgb(222,227,2)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="528" width="1.9" height="15.0" fill="rgb(218,30,42)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="538.5" font-size="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_start (1 samples, 0.16%)</title><rect x="85.5" y="2272" width="1.9" height="15.0" fill="rgb(208,62,19)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="2282.5" font-size="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_start (1 samples, 0.16%)</title><rect x="1131.5" y="2944" width="1.9" height="15.0" fill="rgb(254,71,51)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="2080" width="1.9" height="15.0" fill="rgb(239,182,41)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="1936" width="1.9" height="15.0" fill="rgb(219,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitMethodDef (1 samples, 0.16%)</title><rect x="108.2" y="240" width="1.9" height="15.0" fill="rgb(235,0,17)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="250.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1968" width="9.4" height="15.0" fill="rgb(226,94,19)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1536" width="1.9" height="15.0" fill="rgb(206,161,27)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2448" width="1.9" height="15.0" fill="rgb(210,124,45)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribClassBody (1 samples, 0.16%)</title><rect x="95.0" y="688" width="1.8" height="15.0" fill="rgb(233,116,26)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (2 samples, 0.32%)</title><rect x="687.8" y="320" width="3.8" height="15.0" fill="rgb(254,3,5)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1104" width="1.9" height="15.0" fill="rgb(240,72,9)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1760" width="1.9" height="15.0" fill="rgb(243,227,4)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1360" width="1.9" height="15.0" fill="rgb(226,217,16)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1370.5" font-size="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 (1 samples, 0.16%)</title><rect x="1184.3" y="2560" width="1.9" height="15.0" fill="rgb(254,77,26)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="2570.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="153.5" y="2320" width="1.9" height="15.0" fill="rgb(208,126,40)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="2330.5" font-size="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::operator[] (1 samples, 0.16%)</title><rect x="451.8" y="80" width="1.9" height="15.0" fill="rgb(231,22,8)" rx="2" ry="2" />
<text text-anchor="" x="454.79" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="104.4" y="1792" width="1.9" height="15.0" fill="rgb(232,163,39)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="624" width="1.9" height="15.0" fill="rgb(211,187,38)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="634.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="140.3" y="176" width="1.9" height="15.0" fill="rgb(227,185,48)" rx="2" ry="2" />
<text text-anchor="" x="143.27" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_method (1 samples, 0.16%)</title><rect x="298.9" y="160" width="1.9" height="15.0" fill="rgb(205,71,13)" rx="2" ry="2" />
<text text-anchor="" x="301.86" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="2224" width="1.9" height="15.0" fill="rgb(208,167,29)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="2234.5" font-size="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::run (1 samples, 0.16%)</title><rect x="23.2" y="240" width="1.9" height="15.0" fill="rgb(222,90,35)" rx="2" ry="2" />
<text text-anchor="" x="26.22" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="544" width="1.9" height="15.0" fill="rgb(221,165,2)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="688" width="1.8" height="15.0" fill="rgb(211,117,1)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="698.5" font-size="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::run (1 samples, 0.16%)</title><rect x="79.9" y="1920" width="1.8" height="15.0" fill="rgb(231,36,52)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2320" width="1.9" height="15.0" fill="rgb(222,28,37)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2330.5" font-size="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::run (3 samples, 0.48%)</title><rect x="325.3" y="192" width="5.7" height="15.0" fill="rgb(206,79,36)" rx="2" ry="2" />
<text text-anchor="" x="328.30" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1632" width="1.9" height="15.0" fill="rgb(243,229,29)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1642.5" font-size="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_file_read_iter (1 samples, 0.16%)</title><rect x="444.2" y="336" width="1.9" height="15.0" fill="rgb(217,227,2)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1696" width="1.9" height="15.0" fill="rgb(249,114,8)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1408" width="1.9" height="15.0" fill="rgb(210,121,20)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1792" width="1.9" height="15.0" fill="rgb(232,213,15)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1920" width="1.9" height="15.0" fill="rgb(236,206,10)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1168" width="1.8" height="15.0" fill="rgb(231,194,41)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (2 samples, 0.32%)</title><rect x="1150.4" y="560" width="3.7" height="15.0" fill="rgb(229,87,32)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="1312" width="1.9" height="15.0" fill="rgb(214,226,14)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="1322.5" font-size="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_start (1 samples, 0.16%)</title><rect x="453.7" y="2704" width="1.9" height="15.0" fill="rgb(218,7,4)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="448" width="1.9" height="15.0" fill="rgb(239,116,34)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1888" width="1.9" height="15.0" fill="rgb(223,228,47)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1056" width="1.9" height="15.0" fill="rgb(238,75,46)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="104.4" y="240" width="1.9" height="15.0" fill="rgb(218,61,48)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1296" width="1.9" height="15.0" fill="rgb(245,143,25)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1306.5" font-size="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_start (1 samples, 0.16%)</title><rect x="280.0" y="608" width="1.9" height="15.0" fill="rgb(221,101,5)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2240" width="1.8" height="15.0" fill="rgb(214,55,46)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="127.1" y="2368" width="1.8" height="15.0" fill="rgb(254,84,17)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="2378.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="1186.2" y="2624" width="1.9" height="15.0" fill="rgb(235,23,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="688" width="1.9" height="15.0" fill="rgb(209,85,25)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="698.5" font-size="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.16%)</title><rect x="85.5" y="2176" width="1.9" height="15.0" fill="rgb(227,31,12)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1984" width="1.8" height="15.0" fill="rgb(218,178,46)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IRScope::IRScope (1 samples, 0.16%)</title><rect x="40.2" y="368" width="1.9" height="15.0" fill="rgb(222,9,14)" rx="2" ry="2" />
<text text-anchor="" x="43.21" y="378.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="427.2" y="2608" width="1.9" height="15.0" fill="rgb(250,29,22)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2618.5" font-size="12" 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.32%)</title><rect x="176.1" y="848" width="3.8" height="15.0" fill="rgb(231,163,11)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="132.7" y="1280" width="1.9" height="15.0" fill="rgb(214,30,49)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="640" width="1.9" height="15.0" fill="rgb(253,82,29)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="320" width="1.9" height="15.0" fill="rgb(251,202,46)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="330.5" font-size="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.16%)</title><rect x="79.9" y="1856" width="1.8" height="15.0" fill="rgb(212,215,5)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="2144" width="1.9" height="15.0" fill="rgb(249,22,20)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="2154.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="298.9" y="224" width="1.9" height="15.0" fill="rgb(243,214,43)" rx="2" ry="2" />
<text text-anchor="" x="301.86" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="2224" width="1.9" height="15.0" fill="rgb(239,219,4)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1840" width="1.9" height="15.0" fill="rgb(221,10,30)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitMethodDef (1 samples, 0.16%)</title><rect x="117.6" y="352" width="1.9" height="15.0" fill="rgb(208,20,50)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="362.5" font-size="12" 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.64%)</title><rect x="506.5" y="1728" width="7.6" height="15.0" fill="rgb(205,153,47)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1536" width="1.9" height="15.0" fill="rgb(217,220,44)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.16%)</title><rect x="748.2" y="80" width="1.9" height="15.0" fill="rgb(219,180,10)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1936" width="1.8" height="15.0" fill="rgb(215,80,6)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1946.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="361.2" y="272" width="1.9" height="15.0" fill="rgb(208,207,46)" rx="2" ry="2" />
<text text-anchor="" x="364.17" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="744.4" y="832" width="1.9" height="15.0" fill="rgb(231,184,41)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="842.5" font-size="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_start (1 samples, 0.16%)</title><rect x="76.1" y="2080" width="1.9" height="15.0" fill="rgb(217,70,49)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1824" width="1.9" height="15.0" fill="rgb(205,57,8)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1834.5" font-size="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 (1 samples, 0.16%)</title><rect x="735.0" y="960" width="1.9" height="15.0" fill="rgb(220,202,41)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="970.5" font-size="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_readpages (1 samples, 0.16%)</title><rect x="448.0" y="96" width="1.9" height="15.0" fill="rgb(225,3,46)" rx="2" ry="2" />
<text text-anchor="" x="451.02" y="106.5" font-size="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::try_inline_full (1 samples, 0.16%)</title><rect x="280.0" y="336" width="1.9" height="15.0" fill="rgb(220,3,38)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="346.5" font-size="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 (1 samples, 0.16%)</title><rect x="402.7" y="240" width="1.9" height="15.0" fill="rgb(222,11,33)" rx="2" ry="2" />
<text text-anchor="" x="405.70" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deflate (91 samples, 14.56%)</title><rect x="506.5" y="80" width="171.9" height="15.0" fill="rgb(210,171,35)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >deflate</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.32%)</title><rect x="176.1" y="2080" width="3.8" height="15.0" fill="rgb(244,18,28)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.16%)</title><rect x="96.8" y="160" width="1.9" height="15.0" fill="rgb(244,153,26)" rx="2" ry="2" />
<text text-anchor="" x="99.85" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1760" width="1.8" height="15.0" fill="rgb(221,146,44)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2784" width="1.9" height="15.0" fill="rgb(216,198,44)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2560" width="1.9" height="15.0" fill="rgb(229,6,17)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="560" width="1.9" height="15.0" fill="rgb(216,212,27)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/TreeScanner:::scan (1 samples, 0.16%)</title><rect x="159.2" y="352" width="1.8" height="15.0" fill="rgb(218,53,30)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="362.5" font-size="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::liveness_at_bci (1 samples, 0.16%)</title><rect x="280.0" y="112" width="1.9" height="15.0" fill="rgb(210,155,47)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1088" width="1.8" height="15.0" fill="rgb(232,60,25)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1456" width="1.8" height="15.0" fill="rgb(214,205,6)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1056" width="1.9" height="15.0" fill="rgb(210,133,42)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="2288" width="1.8" height="15.0" fill="rgb(227,43,46)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultResolvedArtifact:::getFile (1 samples, 0.16%)</title><rect x="149.7" y="640" width="1.9" height="15.0" fill="rgb(221,9,26)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="592" width="1.9" height="15.0" fill="rgb(213,220,17)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="602.5" font-size="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_get_xxx (1 samples, 0.16%)</title><rect x="25.1" y="80" width="1.9" height="15.0" fill="rgb(223,32,33)" rx="2" ry="2" />
<text text-anchor="" x="28.10" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="784" width="1.9" height="15.0" fill="rgb(236,112,20)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="500.9" y="2608" width="1.9" height="15.0" fill="rgb(220,186,37)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::doHash (1 samples, 0.16%)</title><rect x="423.5" y="128" width="1.9" height="15.0" fill="rgb(253,25,7)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1312" width="1.9" height="15.0" fill="rgb(236,37,11)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1184" width="1.9" height="15.0" fill="rgb(235,93,5)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1194.5" font-size="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.16%)</title><rect x="1184.3" y="2544" width="1.9" height="15.0" fill="rgb(250,65,32)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="2554.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1664" width="15.1" height="15.0" fill="rgb(254,138,6)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2736" width="1.8" height="15.0" fill="rgb(217,154,9)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="2304" width="1.9" height="15.0" fill="rgb(230,80,20)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="682.1" y="2496" width="1.9" height="15.0" fill="rgb(232,68,38)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="2506.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1216" width="9.4" height="15.0" fill="rgb(253,28,15)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1856" width="1.9" height="15.0" fill="rgb(250,225,14)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="727.4" y="1760" width="1.9" height="15.0" fill="rgb(246,110,31)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1312" width="1.9" height="15.0" fill="rgb(251,108,52)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1424" width="1.9" height="15.0" fill="rgb(236,52,8)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1040" width="1.9" height="15.0" fill="rgb(229,64,2)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1050.5" font-size="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::run (1 samples, 0.16%)</title><rect x="96.8" y="240" width="1.9" height="15.0" fill="rgb(208,114,46)" rx="2" ry="2" />
<text text-anchor="" x="99.85" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="121.4" y="272" width="1.9" height="15.0" fill="rgb(236,48,6)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="282.5" font-size="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_start (1 samples, 0.16%)</title><rect x="28.9" y="240" width="1.9" height="15.0" fill="rgb(249,41,54)" rx="2" ry="2" />
<text text-anchor="" x="31.88" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1456" width="1.9" height="15.0" fill="rgb(214,82,35)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1568" width="1.8" height="15.0" fill="rgb(252,226,8)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="2496" width="1.9" height="15.0" fill="rgb(208,148,53)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_finish_command (1 samples, 0.16%)</title><rect x="419.7" y="112" width="1.9" height="15.0" fill="rgb(223,176,25)" rx="2" ry="2" />
<text text-anchor="" x="422.70" y="122.5" font-size="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.16%)</title><rect x="400.8" y="336" width="1.9" height="15.0" fill="rgb(239,160,10)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1552" width="1.9" height="15.0" fill="rgb(224,72,33)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/tools/zip/ZipOutputStream:::writeDeflated (3 samples, 0.48%)</title><rect x="750.1" y="128" width="5.7" height="15.0" fill="rgb(248,160,29)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1520" width="1.9" height="15.0" fill="rgb(251,188,13)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1530.5" font-size="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::invoke (1 samples, 0.16%)</title><rect x="406.5" y="192" width="1.9" height="15.0" fill="rgb(231,69,21)" rx="2" ry="2" />
<text text-anchor="" x="409.48" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="2112" width="1.9" height="15.0" fill="rgb(233,61,41)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1072" width="1.9" height="15.0" fill="rgb(219,35,11)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1082.5" font-size="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_global_code_motion (1 samples, 0.16%)</title><rect x="306.4" y="96" width="1.9" height="15.0" fill="rgb(250,226,53)" rx="2" ry="2" />
<text text-anchor="" x="309.42" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="453.7" y="1584" width="1.9" height="15.0" fill="rgb(253,205,37)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1594.5" font-size="12" 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.32%)</title><rect x="429.1" y="1600" width="3.8" height="15.0" fill="rgb(224,23,12)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="2080" width="1.9" height="15.0" fill="rgb(244,116,39)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2032" width="1.9" height="15.0" fill="rgb(217,213,7)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (23 samples, 3.68%)</title><rect x="455.6" y="320" width="43.4" height="15.0" fill="rgb(217,35,48)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="2096" width="1.9" height="15.0" fill="rgb(242,63,3)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1536" width="1.9" height="15.0" fill="rgb(245,21,15)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/UnixFileSystem:::resolve (1 samples, 0.16%)</title><rect x="748.2" y="96" width="1.9" height="15.0" fill="rgb(238,165,51)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="106.5" font-size="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::fill_buffer (1 samples, 0.16%)</title><rect x="42.1" y="112" width="1.9" height="15.0" fill="rgb(213,2,1)" rx="2" ry="2" />
<text text-anchor="" x="45.10" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="832" width="1.9" height="15.0" fill="rgb(222,124,44)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="842.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1360" width="3.7" height="15.0" fill="rgb(217,70,7)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ContiguousSpace::oop_since_save_marks_iterate_nv (4 samples, 0.64%)</title><rect x="62.9" y="80" width="7.5" height="15.0" fill="rgb(220,203,1)" rx="2" ry="2" />
<text text-anchor="" x="65.86" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2688" width="1.9" height="15.0" fill="rgb(212,188,16)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2698.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1472" width="3.7" height="15.0" fill="rgb(247,168,46)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1024" width="1.9" height="15.0" fill="rgb(245,17,4)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="464" width="1.9" height="15.0" fill="rgb(216,68,36)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="474.5" font-size="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.16%)</title><rect x="128.9" y="2624" width="1.9" height="15.0" fill="rgb(238,205,31)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="442.4" y="352" width="1.8" height="15.0" fill="rgb(244,46,48)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="2512" width="1.9" height="15.0" fill="rgb(208,178,7)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitBlock (1 samples, 0.16%)</title><rect x="121.4" y="288" width="1.9" height="15.0" fill="rgb(222,16,28)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="1792" width="1.9" height="15.0" fill="rgb(230,164,33)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="544" width="1.9" height="15.0" fill="rgb(229,79,28)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1936" width="1.9" height="15.0" fill="rgb(248,38,11)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1600" width="1.9" height="15.0" fill="rgb(217,204,33)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1760" width="1.9" height="15.0" fill="rgb(243,172,0)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="721.8" y="2784" width="1.9" height="15.0" fill="rgb(238,105,37)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="2794.5" font-size="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.16%)</title><rect x="157.3" y="2576" width="1.9" height="15.0" fill="rgb(225,205,37)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1104" width="1.8" height="15.0" fill="rgb(245,154,41)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1888" width="1.9" height="15.0" fill="rgb(225,52,27)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="2048" width="1.9" height="15.0" fill="rgb(206,20,44)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2058.5" font-size="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.16%)</title><rect x="400.8" y="512" width="1.9" height="15.0" fill="rgb(237,107,25)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="1936" width="1.9" height="15.0" fill="rgb(248,64,18)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1472" width="1.8" height="15.0" fill="rgb(223,7,31)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="162.9" y="1024" width="1.9" height="15.0" fill="rgb(221,10,36)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="438.6" y="1520" width="1.9" height="15.0" fill="rgb(232,75,25)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="448" width="1.9" height="15.0" fill="rgb(210,33,52)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="384" width="1.9" height="15.0" fill="rgb(228,101,5)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2464" width="1.8" height="15.0" fill="rgb(236,9,4)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1184" width="1.9" height="15.0" fill="rgb(211,2,54)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1056" width="1.9" height="15.0" fill="rgb(239,14,1)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="2512" width="1.8" height="15.0" fill="rgb(230,70,15)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="725.6" y="288" width="1.8" height="15.0" fill="rgb(210,202,0)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1888" width="1.9" height="15.0" fill="rgb(251,18,13)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::emit_lir (1 samples, 0.16%)</title><rect x="142.2" y="112" width="1.8" height="15.0" fill="rgb(247,40,48)" rx="2" ry="2" />
<text text-anchor="" x="145.16" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2256" width="1.9" height="15.0" fill="rgb(233,31,48)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="2160" width="1.9" height="15.0" fill="rgb(226,35,13)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="2170.5" font-size="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.16%)</title><rect x="408.4" y="720" width="1.9" height="15.0" fill="rgb(243,106,15)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="730.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1632" width="9.4" height="15.0" fill="rgb(221,224,27)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (8 samples, 1.28%)</title><rect x="219.6" y="624" width="15.1" height="15.0" fill="rgb(253,15,44)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1376" width="1.9" height="15.0" fill="rgb(211,39,44)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="320" width="1.9" height="15.0" fill="rgb(238,6,48)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2720" width="1.9" height="15.0" fill="rgb(233,98,11)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2544" width="1.9" height="15.0" fill="rgb(235,209,16)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2554.5" font-size="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::thread_main_inner (7 samples, 1.12%)</title><rect x="312.1" y="176" width="13.2" height="15.0" fill="rgb(227,20,48)" rx="2" ry="2" />
<text text-anchor="" x="315.08" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2096" width="1.9" height="15.0" fill="rgb(216,115,16)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2106.5" font-size="12" 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.32%)</title><rect x="687.8" y="1424" width="3.8" height="15.0" fill="rgb(210,91,47)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1344" width="366.3" height="15.0" fill="rgb(223,177,28)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1354.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 (4 samples, 0.64%)</title><rect x="506.5" y="1520" width="7.6" height="15.0" fill="rgb(249,124,49)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1530.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1360" width="15.1" height="15.0" fill="rgb(234,161,8)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::assign_reg_num (1 samples, 0.16%)</title><rect x="138.4" y="96" width="1.9" height="15.0" fill="rgb(247,173,31)" rx="2" ry="2" />
<text text-anchor="" x="141.38" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1568" width="1.9" height="15.0" fill="rgb(247,0,15)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1232" width="1.9" height="15.0" fill="rgb(234,129,14)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1440" width="1.9" height="15.0" fill="rgb(236,180,50)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="816" width="1.9" height="15.0" fill="rgb(205,205,40)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="826.5" font-size="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.80%)</title><rect x="1163.6" y="2624" width="9.4" height="15.0" fill="rgb(236,91,41)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1472" width="1.9" height="15.0" fill="rgb(235,186,49)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1482.5" font-size="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 (1 samples, 0.16%)</title><rect x="76.1" y="2032" width="1.9" height="15.0" fill="rgb(233,21,42)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="2016" width="1.9" height="15.0" fill="rgb(229,211,5)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="2026.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2480" width="1.9" height="15.0" fill="rgb(213,225,3)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2490.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="444.2" y="2928" width="1.9" height="15.0" fill="rgb(237,15,8)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2938.5" font-size="12" 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.64%)</title><rect x="755.8" y="1968" width="7.5" height="15.0" fill="rgb(223,213,44)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::resolve_exception_entry (1 samples, 0.16%)</title><rect x="142.2" y="64" width="1.8" height="15.0" fill="rgb(238,178,16)" rx="2" ry="2" />
<text text-anchor="" x="145.16" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1664" width="1.8" height="15.0" fill="rgb(252,160,37)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>longest_match (201 samples, 32.16%)</title><rect x="750.1" y="64" width="379.5" height="15.0" fill="rgb(242,52,45)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >longest_match</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::flow_types (1 samples, 0.16%)</title><rect x="400.8" y="208" width="1.9" height="15.0" fill="rgb(207,61,43)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2736" width="1.9" height="15.0" fill="rgb(223,54,45)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="864" width="1.9" height="15.0" fill="rgb(225,228,38)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="352" width="1.8" height="15.0" fill="rgb(236,62,18)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2320" width="1.9" height="15.0" fill="rgb(230,41,38)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="2368" width="1.9" height="15.0" fill="rgb(217,100,9)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="2378.5" font-size="12" 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.32%)</title><rect x="176.1" y="624" width="3.8" height="15.0" fill="rgb(242,5,28)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="733.1" y="2608" width="1.9" height="15.0" fill="rgb(226,54,12)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.16%)</title><rect x="434.8" y="208" width="1.9" height="15.0" fill="rgb(227,50,22)" rx="2" ry="2" />
<text text-anchor="" x="437.80" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="357.4" y="240" width="1.9" height="15.0" fill="rgb(245,194,31)" rx="2" ry="2" />
<text text-anchor="" x="360.39" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1936" width="1.9" height="15.0" fill="rgb(240,102,31)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1946.5" font-size="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::run (2 samples, 0.32%)</title><rect x="176.1" y="2240" width="3.8" height="15.0" fill="rgb(216,109,12)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1696" width="1.9" height="15.0" fill="rgb(205,40,23)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1824" width="1.9" height="15.0" fill="rgb(234,96,38)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="1648" width="1.9" height="15.0" fill="rgb(251,66,7)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1392" width="1.8" height="15.0" fill="rgb(223,119,29)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1402.5" font-size="12" 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.64%)</title><rect x="506.5" y="656" width="7.6" height="15.0" fill="rgb(223,111,35)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="624" width="32.1" height="15.0" fill="rgb(211,129,46)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="634.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>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="366.8" y="144" width="1.9" height="15.0" fill="rgb(250,38,45)" rx="2" ry="2" />
<text text-anchor="" x="369.83" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2048" width="1.8" height="15.0" fill="rgb(244,80,6)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="112.0" y="704" width="1.8" height="15.0" fill="rgb(220,138,6)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="714.5" font-size="12" 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.32%)</title><rect x="164.8" y="1920" width="3.8" height="15.0" fill="rgb(251,154,29)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1930.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="1176.8" y="176" width="1.9" height="15.0" fill="rgb(214,217,9)" rx="2" ry="2" />
<text text-anchor="" x="1179.78" y="186.5" font-size="12" 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.32%)</title><rect x="1150.4" y="688" width="3.7" height="15.0" fill="rgb(240,172,34)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="208" width="1.9" height="15.0" fill="rgb(241,3,2)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MachNode::rematerialize (1 samples, 0.16%)</title><rect x="1176.8" y="80" width="1.9" height="15.0" fill="rgb(217,133,40)" rx="2" ry="2" />
<text text-anchor="" x="1179.78" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="576" width="1.9" height="15.0" fill="rgb(251,9,1)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="586.5" font-size="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.16%)</title><rect x="34.5" y="112" width="1.9" height="15.0" fill="rgb(217,120,42)" rx="2" ry="2" />
<text text-anchor="" x="37.54" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1712" width="1.9" height="15.0" fill="rgb(247,106,51)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::hash (1 samples, 0.16%)</title><rect x="421.6" y="384" width="1.9" height="15.0" fill="rgb(239,175,35)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="394.5" font-size="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::Compile (2 samples, 0.32%)</title><rect x="334.7" y="112" width="3.8" height="15.0" fill="rgb(245,36,18)" rx="2" ry="2" />
<text text-anchor="" x="337.74" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="480" width="1.8" height="15.0" fill="rgb(240,130,19)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1312" width="1.9" height="15.0" fill="rgb(210,214,11)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1472" width="1.9" height="15.0" fill="rgb(215,97,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1482.5" font-size="12" 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.32%)</title><rect x="429.1" y="1680" width="3.8" height="15.0" fill="rgb(228,224,47)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1744" width="1.8" height="15.0" fill="rgb(225,44,6)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1754.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="736" width="15.1" height="15.0" fill="rgb(253,78,5)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="544" width="1.9" height="15.0" fill="rgb(221,38,26)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="95.0" y="1232" width="1.8" height="15.0" fill="rgb(232,109,26)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="1648" width="1.9" height="15.0" fill="rgb(246,95,39)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="288" width="1.9" height="15.0" fill="rgb(228,14,23)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="1178.7" y="1328" width="1.9" height="15.0" fill="rgb(219,199,41)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2144" width="1.9" height="15.0" fill="rgb(225,148,9)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2154.5" font-size="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.16%)</title><rect x="121.4" y="2560" width="1.9" height="15.0" fill="rgb(228,86,44)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1040" width="1.8" height="15.0" fill="rgb(248,0,23)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1050.5" font-size="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_start (1 samples, 0.16%)</title><rect x="499.0" y="2432" width="1.9" height="15.0" fill="rgb(238,226,5)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="2240" width="1.9" height="15.0" fill="rgb(241,64,10)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2480" width="1.9" height="15.0" fill="rgb(245,119,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2480" width="1.9" height="15.0" fill="rgb(242,93,5)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1152" width="1.8" height="15.0" fill="rgb(232,107,47)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="2304" width="164.3" height="15.0" fill="rgb(238,3,23)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2314.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 (17 samples, 2.72%)</title><rect x="234.7" y="688" width="32.1" height="15.0" fill="rgb(253,143,25)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="698.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>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1488" width="1.9" height="15.0" fill="rgb(205,146,32)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1498.5" font-size="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_da_write_begin (1 samples, 0.16%)</title><rect x="727.4" y="160" width="1.9" height="15.0" fill="rgb(215,194,38)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="170.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="306.4" y="128" width="1.9" height="15.0" fill="rgb(206,0,6)" rx="2" ry="2" />
<text text-anchor="" x="309.42" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="720" width="1.9" height="15.0" fill="rgb(215,147,40)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="730.5" font-size="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 (1 samples, 0.16%)</title><rect x="87.4" y="2656" width="1.9" height="15.0" fill="rgb(219,39,39)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2666.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1472" width="26.4" height="15.0" fill="rgb(221,175,50)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1482.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>JavaCalls::call_helper (1 samples, 0.16%)</title><rect x="425.4" y="624" width="1.8" height="15.0" fill="rgb(207,217,15)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1472" width="1.9" height="15.0" fill="rgb(245,229,9)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1888" width="1.9" height="15.0" fill="rgb(234,46,53)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="448" width="1.9" height="15.0" fill="rgb(237,173,4)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="944" width="1.9" height="15.0" fill="rgb(219,192,53)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1600" width="1.9" height="15.0" fill="rgb(206,106,23)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1610.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="366.8" y="160" width="1.9" height="15.0" fill="rgb(227,114,13)" rx="2" ry="2" />
<text text-anchor="" x="369.83" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="381.9" y="240" width="1.9" height="15.0" fill="rgb(216,8,36)" rx="2" ry="2" />
<text text-anchor="" x="384.94" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1488" width="1.9" height="15.0" fill="rgb(231,100,8)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1824" width="1.9" height="15.0" fill="rgb(239,116,25)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2288" width="1.8" height="15.0" fill="rgb(205,94,12)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="1488" width="1.9" height="15.0" fill="rgb(234,27,43)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="1498.5" font-size="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.16%)</title><rect x="444.2" y="992" width="1.9" height="15.0" fill="rgb(216,31,13)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1002.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1664" width="9.4" height="15.0" fill="rgb(221,58,0)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="1312" width="1.9" height="15.0" fill="rgb(246,127,25)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="1322.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="36.4" y="528" width="1.9" height="15.0" fill="rgb(235,164,7)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_softirq_done (1 samples, 0.16%)</title><rect x="419.7" y="128" width="1.9" height="15.0" fill="rgb(238,227,42)" rx="2" ry="2" />
<text text-anchor="" x="422.70" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1600" width="1.9" height="15.0" fill="rgb(221,192,49)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (5 samples, 0.80%)</title><rect x="1163.6" y="2512" width="9.4" height="15.0" fill="rgb(245,56,21)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2522.5" font-size="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-85641/85650 (1 samples, 0.16%)</title><rect x="142.2" y="288" width="1.8" height="15.0" fill="rgb(218,18,21)" rx="2" ry="2" />
<text text-anchor="" x="145.16" y="298.5" font-size="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_start (1 samples, 0.16%)</title><rect x="121.4" y="2656" width="1.9" height="15.0" fill="rgb(237,219,5)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="2666.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="340.4" y="176" width="1.9" height="15.0" fill="rgb(219,3,27)" rx="2" ry="2" />
<text text-anchor="" x="343.40" y="186.5" font-size="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::run (1 samples, 0.16%)</title><rect x="119.5" y="2816" width="1.9" height="15.0" fill="rgb(206,96,11)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2826.5" font-size="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.16%)</title><rect x="678.4" y="2592" width="1.8" height="15.0" fill="rgb(237,128,27)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1616" width="32.1" height="15.0" fill="rgb(213,133,26)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1626.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="104.4" y="160" width="1.9" height="15.0" fill="rgb(213,207,21)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="170.5" font-size="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.16%)</title><rect x="76.1" y="2016" width="1.9" height="15.0" fill="rgb(242,52,36)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="2026.5" font-size="12" 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.48%)</title><rect x="170.5" y="1408" width="5.6" height="15.0" fill="rgb(226,157,6)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1568" width="1.9" height="15.0" fill="rgb(210,95,24)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1184" width="1.9" height="15.0" fill="rgb(220,158,11)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1712" width="1.9" height="15.0" fill="rgb(232,8,9)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1632" width="1.8" height="15.0" fill="rgb(220,139,53)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="155.4" y="1136" width="1.9" height="15.0" fill="rgb(244,76,17)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="159.2" y="384" width="1.8" height="15.0" fill="rgb(212,215,40)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="2240" width="1.9" height="15.0" fill="rgb(232,38,49)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1888" width="1.9" height="15.0" fill="rgb(205,62,14)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="130.8" y="2416" width="1.9" height="15.0" fill="rgb(218,150,15)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="2426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="1632" width="1.9" height="15.0" fill="rgb(207,202,3)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="1642.5" font-size="12" 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.48%)</title><rect x="750.1" y="1120" width="5.7" height="15.0" fill="rgb(213,37,50)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1130.5" font-size="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_file_read_iter (1 samples, 0.16%)</title><rect x="421.6" y="192" width="1.9" height="15.0" fill="rgb(235,5,18)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="202.5" font-size="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_Deflater_deflateBytes (16 samples, 2.56%)</title><rect x="687.8" y="112" width="30.2" height="15.0" fill="rgb(211,143,20)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="816" width="1.9" height="15.0" fill="rgb(245,196,53)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.16%)</title><rect x="449.9" y="224" width="1.9" height="15.0" fill="rgb(221,134,1)" rx="2" ry="2" />
<text text-anchor="" x="452.90" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1984" width="1.9" height="15.0" fill="rgb(244,178,52)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="729.3" y="288" width="1.9" height="15.0" fill="rgb(247,192,43)" rx="2" ry="2" />
<text text-anchor="" x="732.33" y="298.5" font-size="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.16%)</title><rect x="1131.5" y="992" width="1.9" height="15.0" fill="rgb(231,84,11)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1280" width="1.9" height="15.0" fill="rgb(219,130,17)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="944" width="1.9" height="15.0" fill="rgb(254,183,42)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="320" width="1.9" height="15.0" fill="rgb(238,165,15)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1632" width="1.9" height="15.0" fill="rgb(215,67,15)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1504" width="1.9" height="15.0" fill="rgb(245,179,52)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1514.5" font-size="12" 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.48%)</title><rect x="750.1" y="2176" width="5.7" height="15.0" fill="rgb(254,102,45)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1952" width="1.9" height="15.0" fill="rgb(214,112,45)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1962.5" font-size="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_SetIntField (1 samples, 0.16%)</title><rect x="738.8" y="352" width="1.9" height="15.0" fill="rgb(236,22,4)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="95.0" y="480" width="1.8" height="15.0" fill="rgb(214,106,27)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1728" width="1.9" height="15.0" fill="rgb(218,32,4)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="928" width="1.9" height="15.0" fill="rgb(236,75,14)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2688" width="1.9" height="15.0" fill="rgb(210,67,15)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="2000" width="1.9" height="15.0" fill="rgb(242,25,34)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1536" width="1.9" height="15.0" fill="rgb(214,177,31)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="560" width="1.9" height="15.0" fill="rgb(215,5,46)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="2128" width="1.9" height="15.0" fill="rgb(226,109,7)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1360" width="1.9" height="15.0" fill="rgb(251,127,18)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="151.6" y="672" width="1.9" height="15.0" fill="rgb(214,97,26)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="592" width="1.8" height="15.0" fill="rgb(216,113,52)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1760" width="1.9" height="15.0" fill="rgb(218,110,3)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1770.5" font-size="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_bytecodes_for_block (1 samples, 0.16%)</title><rect x="17.6" y="304" width="1.8" height="15.0" fill="rgb(220,12,8)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="256" width="1.9" height="15.0" fill="rgb(235,17,46)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="784" width="1.9" height="15.0" fill="rgb(242,136,7)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2032" width="1.9" height="15.0" fill="rgb(211,168,1)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2042.5" font-size="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::build__optimize (1 samples, 0.16%)</title><rect x="378.2" y="96" width="1.8" height="15.0" fill="rgb(217,51,44)" rx="2" ry="2" />
<text text-anchor="" x="381.16" y="106.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1248" width="26.4" height="15.0" fill="rgb(206,33,35)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1258.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 (3 samples, 0.48%)</title><rect x="170.5" y="1728" width="5.6" height="15.0" fill="rgb(231,59,20)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="1738.5" font-size="12" 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.48%)</title><rect x="170.5" y="1936" width="5.6" height="15.0" fill="rgb(208,174,0)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="1946.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="387.6" y="192" width="1.9" height="15.0" fill="rgb(237,79,34)" rx="2" ry="2" />
<text text-anchor="" x="390.60" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="864" width="1.9" height="15.0" fill="rgb(225,106,25)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="874.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1152" width="26.4" height="15.0" fill="rgb(247,168,0)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1162.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>Compile::Compile (1 samples, 0.16%)</title><rect x="278.1" y="560" width="1.9" height="15.0" fill="rgb(213,147,43)" rx="2" ry="2" />
<text text-anchor="" x="281.10" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="2144" width="164.3" height="15.0" fill="rgb(212,189,35)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2154.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.16%)</title><rect x="134.6" y="1552" width="1.9" height="15.0" fill="rgb(242,107,18)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="336" width="1.9" height="15.0" fill="rgb(211,52,34)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="346.5" font-size="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_intr (3 samples, 0.48%)</title><rect x="440.5" y="112" width="5.6" height="15.0" fill="rgb(218,204,6)" rx="2" ry="2" />
<text text-anchor="" x="443.46" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="2304" width="1.9" height="15.0" fill="rgb(237,180,10)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::snapshot (1 samples, 0.16%)</title><rect x="1137.1" y="400" width="1.9" height="15.0" fill="rgb(247,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="410.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="25.1" y="224" width="1.9" height="15.0" fill="rgb(251,61,38)" rx="2" ry="2" />
<text text-anchor="" x="28.10" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="274.3" y="144" width="1.9" height="15.0" fill="rgb(229,55,13)" rx="2" ry="2" />
<text text-anchor="" x="277.32" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile (3 samples, 0.48%)</title><rect x="750.1" y="192" width="5.7" height="15.0" fill="rgb(238,71,51)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="157.3" y="1552" width="1.9" height="15.0" fill="rgb(218,83,1)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (1 samples, 0.16%)</title><rect x="436.7" y="272" width="1.9" height="15.0" fill="rgb(227,219,8)" rx="2" ry="2" />
<text text-anchor="" x="439.69" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1520" width="1.9" height="15.0" fill="rgb(212,178,39)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_done_softirq (2 samples, 0.32%)</title><rect x="1137.1" y="256" width="3.8" height="15.0" fill="rgb(254,20,35)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/DefaultFileSystemSnapshotter$FileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="1142.8" y="496" width="1.9" height="15.0" fill="rgb(244,72,23)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="506.5" font-size="12" 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.32%)</title><rect x="687.8" y="1600" width="3.8" height="15.0" fill="rgb(238,227,12)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1632" width="1.9" height="15.0" fill="rgb(241,64,51)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (194 samples, 31.04%)</title><rect x="763.3" y="784" width="366.3" height="15.0" fill="rgb(254,68,28)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/reflect/NativeMethodAccessorImpl:::invoke0</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2224" width="1.9" height="15.0" fill="rgb(225,99,22)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="682.1" y="416" width="1.9" height="15.0" fill="rgb(226,48,41)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="2112" width="1.9" height="15.0" fill="rgb(242,30,4)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1264" width="1.9" height="15.0" fill="rgb(214,165,32)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1008" width="1.9" height="15.0" fill="rgb(250,130,4)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1018.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="57.2" y="160" width="1.9" height="15.0" fill="rgb(250,50,0)" rx="2" ry="2" />
<text text-anchor="" x="60.20" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="442.4" y="2752" width="1.8" height="15.0" fill="rgb(210,178,15)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2762.5" font-size="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::find_shared (1 samples, 0.16%)</title><rect x="274.3" y="80" width="1.9" height="15.0" fill="rgb(237,201,41)" rx="2" ry="2" />
<text text-anchor="" x="277.32" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1712" width="1.9" height="15.0" fill="rgb(252,219,25)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="1152" width="1.9" height="15.0" fill="rgb(220,227,25)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="1162.5" font-size="12" 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.32%)</title><rect x="70.4" y="512" width="3.8" height="15.0" fill="rgb(246,49,51)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1840" width="1.9" height="15.0" fill="rgb(213,139,5)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="1584" width="1.9" height="15.0" fill="rgb(251,131,17)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1744" width="1.9" height="15.0" fill="rgb(251,30,11)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="2288" width="1.9" height="15.0" fill="rgb(213,135,34)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="2272" width="1.9" height="15.0" fill="rgb(248,138,48)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="2282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSet::lrg_union (1 samples, 0.16%)</title><rect x="45.9" y="64" width="1.9" height="15.0" fill="rgb(234,129,42)" rx="2" ry="2" />
<text text-anchor="" x="48.87" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="384" width="366.3" height="15.0" fill="rgb(232,175,34)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="394.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>LinearScan::do_linear_scan (2 samples, 0.32%)</title><rect x="144.0" y="128" width="3.8" height="15.0" fill="rgb(229,91,40)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="112.0" y="2560" width="1.8" height="15.0" fill="rgb(250,92,6)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="1872" width="1.8" height="15.0" fill="rgb(250,50,9)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/InMemoryDecoratedCache:::putLater (1 samples, 0.16%)</title><rect x="85.5" y="112" width="1.9" height="15.0" fill="rgb(223,18,17)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="352" width="1.8" height="15.0" fill="rgb(244,37,49)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="362.5" font-size="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.16%)</title><rect x="678.4" y="2608" width="1.8" height="15.0" fill="rgb(231,150,20)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitIdent (1 samples, 0.16%)</title><rect x="115.7" y="144" width="1.9" height="15.0" fill="rgb(206,111,30)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1968" width="39.7" height="15.0" fill="rgb(235,203,48)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1978.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>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="2480" width="1.9" height="15.0" fill="rgb(224,215,37)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2432" width="1.9" height="15.0" fill="rgb(240,12,4)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.16%)</title><rect x="281.9" y="320" width="1.9" height="15.0" fill="rgb(210,17,51)" rx="2" ry="2" />
<text text-anchor="" x="284.87" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deflate (24 samples, 3.84%)</title><rect x="453.7" y="112" width="45.3" height="15.0" fill="rgb(249,107,19)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >defl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (1 samples, 0.16%)</title><rect x="157.3" y="800" width="1.9" height="15.0" fill="rgb(231,90,42)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="346.1" y="128" width="1.9" height="15.0" fill="rgb(206,45,50)" rx="2" ry="2" />
<text text-anchor="" x="349.06" y="138.5" font-size="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::run (1 samples, 0.16%)</title><rect x="32.7" y="288" width="1.8" height="15.0" fill="rgb(225,226,43)" rx="2" ry="2" />
<text text-anchor="" x="35.66" y="298.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1920" width="3.7" height="15.0" fill="rgb(216,146,14)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="912" width="1.9" height="15.0" fill="rgb(211,189,38)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="87.4" y="480" width="1.9" height="15.0" fill="rgb(239,98,18)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="490.5" font-size="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.16%)</title><rect x="1140.9" y="1024" width="1.9" height="15.0" fill="rgb(216,148,18)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/commons/io/IOUtils:::copyLarge (1 samples, 0.16%)</title><rect x="721.8" y="240" width="1.9" height="15.0" fill="rgb(249,212,10)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="304" width="1.9" height="15.0" fill="rgb(240,68,37)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="314.5" font-size="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_start (1 samples, 0.16%)</title><rect x="79.9" y="1936" width="1.8" height="15.0" fill="rgb(234,208,51)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1946.5" font-size="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::try_inline_full (1 samples, 0.16%)</title><rect x="17.6" y="96" width="1.8" height="15.0" fill="rgb(206,50,44)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="408.4" y="352" width="1.9" height="15.0" fill="rgb(246,65,15)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1264" width="1.9" height="15.0" fill="rgb(233,112,30)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="2352" width="1.9" height="15.0" fill="rgb(226,1,4)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="1024" width="1.9" height="15.0" fill="rgb(208,13,0)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1280" width="1.9" height="15.0" fill="rgb(215,90,23)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1290.5" font-size="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.16%)</title><rect x="402.7" y="160" width="1.9" height="15.0" fill="rgb(241,101,45)" rx="2" ry="2" />
<text text-anchor="" x="405.70" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/DefaultFileCollectionResolveContext:::doResolve (1 samples, 0.16%)</title><rect x="162.9" y="624" width="1.9" height="15.0" fill="rgb(247,192,18)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2288" width="1.9" height="15.0" fill="rgb(220,48,28)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="1568" width="1.9" height="15.0" fill="rgb(253,196,27)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="576" width="1.9" height="15.0" fill="rgb(231,58,31)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/proxy/$Proxy0:::onOutput (1 samples, 0.16%)</title><rect x="155.4" y="256" width="1.9" height="15.0" fill="rgb(208,211,9)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="1072" width="1.9" height="15.0" fill="rgb(207,163,8)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="1082.5" font-size="12" 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.48%)</title><rect x="750.1" y="1872" width="5.7" height="15.0" fill="rgb(212,177,54)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2528" width="1.9" height="15.0" fill="rgb(208,49,19)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2538.5" font-size="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.16%)</title><rect x="740.7" y="2224" width="1.8" height="15.0" fill="rgb(251,197,14)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1728" width="1.9" height="15.0" fill="rgb(253,70,15)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1296" width="1.9" height="15.0" fill="rgb(246,211,9)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1264" width="1.9" height="15.0" fill="rgb(229,169,24)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="160" width="1.9" height="15.0" fill="rgb(208,210,26)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="2336" width="1.9" height="15.0" fill="rgb(250,83,23)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="2346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/google/common/collect/ImmutableSortedMap:::fromEntries (1 samples, 0.16%)</title><rect x="79.9" y="128" width="1.8" height="15.0" fill="rgb(229,29,28)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="2320" width="1.8" height="15.0" fill="rgb(243,181,0)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2330.5" font-size="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_start (1 samples, 0.16%)</title><rect x="19.4" y="448" width="1.9" height="15.0" fill="rgb(226,75,24)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="880" width="1.9" height="15.0" fill="rgb(212,191,37)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="1456" width="1.9" height="15.0" fill="rgb(212,169,29)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1040" width="1.9" height="15.0" fill="rgb(213,186,37)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1584" width="1.9" height="15.0" fill="rgb(226,77,29)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="896" width="1.8" height="15.0" fill="rgb(228,120,46)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="444.2" y="2080" width="1.9" height="15.0" fill="rgb(205,90,14)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="448" width="1.9" height="15.0" fill="rgb(229,19,26)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::argumentsOpt (1 samples, 0.16%)</title><rect x="128.9" y="176" width="1.9" height="15.0" fill="rgb(248,206,9)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="2032" width="1.9" height="15.0" fill="rgb(245,55,52)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="800" width="1.9" height="15.0" fill="rgb(226,47,3)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="2032" width="1.9" height="15.0" fill="rgb(227,152,46)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="2272" width="1.9" height="15.0" fill="rgb(217,193,5)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2282.5" font-size="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 (87 samples, 13.92%)</title><rect x="514.1" y="688" width="164.3" height="15.0" fill="rgb(213,184,14)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1840" width="1.9" height="15.0" fill="rgb(214,101,35)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1024" width="1.9" height="15.0" fill="rgb(240,79,31)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="1129.6" y="112" width="1.9" height="15.0" fill="rgb(206,227,30)" rx="2" ry="2" />
<text text-anchor="" x="1132.58" y="122.5" font-size="12" 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.32%)</title><rect x="687.8" y="1408" width="3.8" height="15.0" fill="rgb(213,95,23)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1040" width="1.9" height="15.0" fill="rgb(232,20,18)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1376" width="1.9" height="15.0" fill="rgb(251,54,15)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1360" width="1.9" height="15.0" fill="rgb(248,224,51)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1370.5" font-size="12" 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.32%)</title><rect x="687.8" y="880" width="3.8" height="15.0" fill="rgb(234,28,20)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="890.5" font-size="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::get_liveness_at (1 samples, 0.16%)</title><rect x="281.9" y="64" width="1.9" height="15.0" fill="rgb(234,206,8)" rx="2" ry="2" />
<text text-anchor="" x="284.87" y="74.5" font-size="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 (2 samples, 0.32%)</title><rect x="36.4" y="224" width="3.8" height="15.0" fill="rgb(210,191,3)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="685.9" y="1408" width="1.9" height="15.0" fill="rgb(250,205,23)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1418.5" font-size="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::run (1 samples, 0.16%)</title><rect x="408.4" y="2656" width="1.9" height="15.0" fill="rgb(251,55,9)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2666.5" font-size="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_start (1 samples, 0.16%)</title><rect x="306.4" y="224" width="1.9" height="15.0" fill="rgb(208,124,18)" rx="2" ry="2" />
<text text-anchor="" x="309.42" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="2128" width="1.9" height="15.0" fill="rgb(251,164,38)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="2304" width="1.9" height="15.0" fill="rgb(242,203,51)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="2314.5" font-size="12" 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.32%)</title><rect x="176.1" y="688" width="3.8" height="15.0" fill="rgb(225,141,50)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="698.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1792" width="43.4" height="15.0" fill="rgb(222,4,19)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1802.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>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1552" width="1.8" height="15.0" fill="rgb(225,178,50)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="2384" width="1.9" height="15.0" fill="rgb(244,57,16)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1840" width="39.7" height="15.0" fill="rgb(222,201,36)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1850.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>Reflection::invoke_method (1 samples, 0.16%)</title><rect x="151.6" y="624" width="1.9" height="15.0" fill="rgb(215,163,32)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="640" width="1.9" height="15.0" fill="rgb(254,218,54)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="161.0" y="1136" width="1.9" height="15.0" fill="rgb(228,175,8)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1824" width="1.8" height="15.0" fill="rgb(249,2,14)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1834.5" font-size="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_vmas (1 samples, 0.16%)</title><rect x="1182.4" y="96" width="1.9" height="15.0" fill="rgb(248,188,24)" rx="2" ry="2" />
<text text-anchor="" x="1185.45" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="266.8" y="736" width="1.9" height="15.0" fill="rgb(209,50,2)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1072" width="1.9" height="15.0" fill="rgb(220,69,47)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1082.5" font-size="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.16%)</title><rect x="400.8" y="656" width="1.9" height="15.0" fill="rgb(230,121,22)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="666.5" font-size="12" 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.32%)</title><rect x="1150.4" y="2672" width="3.7" height="15.0" fill="rgb(237,143,31)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1296" width="1.9" height="15.0" fill="rgb(251,98,45)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="2368" width="1.8" height="15.0" fill="rgb(215,17,47)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="2378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="2400" width="1.8" height="15.0" fill="rgb(242,64,49)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="2544" width="1.9" height="15.0" fill="rgb(245,82,49)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="2554.5" font-size="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.16%)</title><rect x="684.0" y="720" width="1.9" height="15.0" fill="rgb(208,67,42)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1984" width="1.8" height="15.0" fill="rgb(234,57,52)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="704" width="1.9" height="15.0" fill="rgb(231,202,9)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1280" width="1.9" height="15.0" fill="rgb(241,151,17)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1290.5" font-size="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::run (1 samples, 0.16%)</title><rect x="357.4" y="208" width="1.9" height="15.0" fill="rgb(225,46,43)" rx="2" ry="2" />
<text text-anchor="" x="360.39" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1296" width="1.9" height="15.0" fill="rgb(239,50,51)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="672" width="366.3" height="15.0" fill="rgb(248,72,22)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="682.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="1137.1" y="1632" width="1.9" height="15.0" fill="rgb(240,192,16)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="1456" width="1.9" height="15.0" fill="rgb(220,119,45)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile (1 samples, 0.16%)</title><rect x="266.8" y="176" width="1.9" height="15.0" fill="rgb(240,228,52)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="685.9" y="368" width="1.9" height="15.0" fill="rgb(233,117,52)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/tools/zip/ZipOutputStream:::writeDeflated (16 samples, 2.56%)</title><rect x="687.8" y="144" width="30.2" height="15.0" fill="rgb(243,86,21)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="416" width="1.9" height="15.0" fill="rgb(252,51,16)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="1648" width="1.8" height="15.0" fill="rgb(240,152,12)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1658.5" font-size="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.16%)</title><rect x="1146.6" y="416" width="1.9" height="15.0" fill="rgb(227,13,35)" rx="2" ry="2" />
<text text-anchor="" x="1149.58" y="426.5" font-size="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::run (1 samples, 0.16%)</title><rect x="113.8" y="2640" width="1.9" height="15.0" fill="rgb(222,68,0)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1904" width="1.8" height="15.0" fill="rgb(241,11,31)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Type$ClassType:::accept (1 samples, 0.16%)</title><rect x="159.2" y="224" width="1.8" height="15.0" fill="rgb(242,104,39)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2256" width="1.8" height="15.0" fill="rgb(231,225,21)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2266.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2384" width="43.4" height="15.0" fill="rgb(236,5,8)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2394.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>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1792" width="1.9" height="15.0" fill="rgb(212,192,21)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1856" width="1.9" height="15.0" fill="rgb(207,152,30)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.16%)</title><rect x="438.6" y="192" width="1.9" height="15.0" fill="rgb(220,163,37)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1984" width="1.9" height="15.0" fill="rgb(245,61,54)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2224" width="1.9" height="15.0" fill="rgb(244,36,27)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (14 samples, 2.24%)</title><rect x="691.6" y="288" width="26.4" height="15.0" fill="rgb(224,228,51)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="1296" width="1.9" height="15.0" fill="rgb(206,97,22)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="125.2" y="2624" width="1.9" height="15.0" fill="rgb(253,68,8)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="656" width="1.9" height="15.0" fill="rgb(251,139,44)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="666.5" font-size="12" 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.80%)</title><rect x="1163.6" y="2480" width="9.4" height="15.0" fill="rgb(211,16,7)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1424" width="366.3" height="15.0" fill="rgb(214,21,28)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1434.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="119.5" y="208" width="1.9" height="15.0" fill="rgb(231,140,19)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="2192" width="1.9" height="15.0" fill="rgb(242,42,42)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="864" width="1.9" height="15.0" fill="rgb(226,129,32)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/MemberEnter:::complete (1 samples, 0.16%)</title><rect x="134.6" y="736" width="1.9" height="15.0" fill="rgb(232,147,30)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1264" width="1.9" height="15.0" fill="rgb(211,32,50)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="134.6" y="1520" width="1.9" height="15.0" fill="rgb(218,113,31)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1530.5" font-size="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.16%)</title><rect x="410.3" y="2528" width="1.8" height="15.0" fill="rgb(218,6,42)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2538.5" font-size="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.32%)</title><rect x="429.1" y="2512" width="3.8" height="15.0" fill="rgb(208,91,35)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="2416" width="1.9" height="15.0" fill="rgb(230,203,53)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="944" width="1.9" height="15.0" fill="rgb(236,210,8)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="954.5" font-size="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.16%)</title><rect x="134.6" y="2928" width="1.9" height="15.0" fill="rgb(210,109,8)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="2938.5" font-size="12" 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.32%)</title><rect x="429.1" y="1744" width="3.8" height="15.0" fill="rgb(231,229,4)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1360" width="1.9" height="15.0" fill="rgb(235,72,4)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="2128" width="1.9" height="15.0" fill="rgb(236,30,27)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1152" width="1.9" height="15.0" fill="rgb(242,227,17)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1162.5" font-size="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_write (1 samples, 0.16%)</title><rect x="680.2" y="272" width="1.9" height="15.0" fill="rgb(241,217,6)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="735.0" y="1984" width="1.9" height="15.0" fill="rgb(244,64,3)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2416" width="1.9" height="15.0" fill="rgb(237,154,41)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="2192" width="1.9" height="15.0" fill="rgb(226,73,26)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2202.5" font-size="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.16%)</title><rect x="410.3" y="656" width="1.8" height="15.0" fill="rgb(245,64,50)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="2128" width="1.9" height="15.0" fill="rgb(232,91,10)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="336" width="1.9" height="15.0" fill="rgb(233,70,21)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="736" width="1.9" height="15.0" fill="rgb(237,209,10)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="746.5" font-size="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_inode_dirty (1 samples, 0.16%)</title><rect x="680.2" y="128" width="1.9" height="15.0" fill="rgb(216,171,13)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="138.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="376.3" y="160" width="1.9" height="15.0" fill="rgb(215,197,31)" rx="2" ry="2" />
<text text-anchor="" x="379.27" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="2304" width="1.9" height="15.0" fill="rgb(223,142,28)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="736" width="1.9" height="15.0" fill="rgb(238,178,27)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1392" width="1.9" height="15.0" fill="rgb(211,14,30)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1168" width="1.9" height="15.0" fill="rgb(240,99,33)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1824" width="1.9" height="15.0" fill="rgb(254,209,31)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1834.5" font-size="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_da_write_end (3 samples, 0.48%)</title><rect x="735.0" y="192" width="5.7" height="15.0" fill="rgb(209,78,35)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1760" width="1.9" height="15.0" fill="rgb(220,187,11)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1770.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2336" width="43.4" height="15.0" fill="rgb(221,74,4)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2346.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>start_thread (2 samples, 0.32%)</title><rect x="53.4" y="240" width="3.8" height="15.0" fill="rgb(233,137,38)" rx="2" ry="2" />
<text text-anchor="" x="56.42" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1136" width="32.1" height="15.0" fill="rgb(253,214,16)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1146.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>Compilation::Compilation (1 samples, 0.16%)</title><rect x="100.6" y="192" width="1.9" height="15.0" fill="rgb(244,220,2)" rx="2" ry="2" />
<text text-anchor="" x="103.62" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="736" width="1.9" height="15.0" fill="rgb(215,33,36)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="746.5" font-size="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 (23 samples, 3.68%)</title><rect x="455.6" y="768" width="43.4" height="15.0" fill="rgb(252,94,4)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Refl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1184" width="1.9" height="15.0" fill="rgb(223,157,17)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="1856" width="1.9" height="15.0" fill="rgb(238,107,23)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1808" width="1.9" height="15.0" fill="rgb(243,182,15)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="2192" width="1.8" height="15.0" fill="rgb(207,86,47)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="2202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="1173.0" y="160" width="1.9" height="15.0" fill="rgb(228,60,43)" rx="2" ry="2" />
<text text-anchor="" x="1176.01" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/file/JavacFileManager:::list (1 samples, 0.16%)</title><rect x="408.4" y="304" width="1.9" height="15.0" fill="rgb(242,61,15)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="464" width="1.9" height="15.0" fill="rgb(243,187,17)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1664" width="1.9" height="15.0" fill="rgb(205,116,29)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1200" width="1.9" height="15.0" fill="rgb(224,14,32)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1210.5" font-size="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.16%)</title><rect x="117.6" y="768" width="1.9" height="15.0" fill="rgb(236,206,4)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="2032" width="39.7" height="15.0" fill="rgb(238,82,1)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2042.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>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2688" width="1.9" height="15.0" fill="rgb(252,110,14)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCClassDecl:::accept (1 samples, 0.16%)</title><rect x="159.2" y="752" width="1.8" height="15.0" fill="rgb(246,46,36)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.16%)</title><rect x="438.6" y="160" width="1.9" height="15.0" fill="rgb(240,114,7)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_done_softirq (1 samples, 0.16%)</title><rect x="419.7" y="144" width="1.9" height="15.0" fill="rgb(237,88,45)" rx="2" ry="2" />
<text text-anchor="" x="422.70" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="2560" width="1.9" height="15.0" fill="rgb(222,184,33)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="928" width="1.9" height="15.0" fill="rgb(241,184,49)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScanWalker::activate_current (2 samples, 0.32%)</title><rect x="144.0" y="80" width="3.8" height="15.0" fill="rgb(238,85,12)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2144" width="1.8" height="15.0" fill="rgb(220,23,41)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2154.5" font-size="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.16%)</title><rect x="733.1" y="2752" width="1.9" height="15.0" fill="rgb(224,178,51)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2762.5" font-size="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::run (1 samples, 0.16%)</title><rect x="1161.7" y="176" width="1.9" height="15.0" fill="rgb(244,65,34)" rx="2" ry="2" />
<text text-anchor="" x="1164.68" y="186.5" font-size="12" 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.64%)</title><rect x="755.8" y="1440" width="7.5" height="15.0" fill="rgb(239,64,38)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1136" width="1.9" height="15.0" fill="rgb(222,17,12)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="2144" width="1.9" height="15.0" fill="rgb(249,104,5)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagecache_get_page (1 samples, 0.16%)</title><rect x="727.4" y="128" width="1.9" height="15.0" fill="rgb(233,3,28)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="864" width="1.9" height="15.0" fill="rgb(227,149,5)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2352" width="1.9" height="15.0" fill="rgb(245,46,2)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2362.5" font-size="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_start (1 samples, 0.16%)</title><rect x="278.1" y="656" width="1.9" height="15.0" fill="rgb(227,166,8)" rx="2" ry="2" />
<text text-anchor="" x="281.10" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::findIdentInPackage (1 samples, 0.16%)</title><rect x="134.6" y="256" width="1.9" height="15.0" fill="rgb(231,141,52)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1472" width="1.9" height="15.0" fill="rgb(207,218,22)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1482.5" font-size="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::find_shared (2 samples, 0.32%)</title><rect x="270.5" y="64" width="3.8" height="15.0" fill="rgb(228,39,1)" rx="2" ry="2" />
<text text-anchor="" x="273.54" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1296" width="1.9" height="15.0" fill="rgb(249,80,54)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2528" width="1.9" height="15.0" fill="rgb(248,138,4)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="2048" width="1.9" height="15.0" fill="rgb(214,10,21)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="352" width="1.8" height="15.0" fill="rgb(210,73,21)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="362.5" font-size="12" 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.32%)</title><rect x="1150.4" y="2480" width="3.7" height="15.0" fill="rgb(238,146,10)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="2490.5" font-size="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::run (87 samples, 13.92%)</title><rect x="514.1" y="2656" width="164.3" height="15.0" fill="rgb(244,136,8)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2224" width="1.9" height="15.0" fill="rgb(229,42,21)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2032" width="1.9" height="15.0" fill="rgb(248,194,40)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2042.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="381.9" y="160" width="1.9" height="15.0" fill="rgb(219,188,46)" rx="2" ry="2" />
<text text-anchor="" x="384.94" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1904" width="1.9" height="15.0" fill="rgb(232,86,17)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="2208" width="1.9" height="15.0" fill="rgb(216,182,45)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="1904" width="1.9" height="15.0" fill="rgb(239,60,35)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="1914.5" font-size="12" 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.32%)</title><rect x="429.1" y="304" width="3.8" height="15.0" fill="rgb(233,96,3)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="608" width="1.9" height="15.0" fill="rgb(239,3,11)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="618.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1328" width="9.4" height="15.0" fill="rgb(227,189,37)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.16%)</title><rect x="680.2" y="240" width="1.9" height="15.0" fill="rgb(241,222,4)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2368" width="1.9" height="15.0" fill="rgb(235,19,26)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2378.5" font-size="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_klass_accessability (1 samples, 0.16%)</title><rect x="406.5" y="112" width="1.9" height="15.0" fill="rgb(223,71,30)" rx="2" ry="2" />
<text text-anchor="" x="409.48" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="266.8" y="272" width="1.9" height="15.0" fill="rgb(240,21,52)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="282.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1072" width="9.4" height="15.0" fill="rgb(242,226,26)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile (1 samples, 0.16%)</title><rect x="721.8" y="288" width="1.9" height="15.0" fill="rgb(238,51,40)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="816" width="1.9" height="15.0" fill="rgb(208,202,32)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="826.5" font-size="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.16%)</title><rect x="91.2" y="624" width="1.9" height="15.0" fill="rgb(222,201,6)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="634.5" font-size="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::Process_OopMap_Node (1 samples, 0.16%)</title><rect x="30.8" y="80" width="1.9" height="15.0" fill="rgb(210,225,25)" rx="2" ry="2" />
<text text-anchor="" x="33.77" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1424" width="1.9" height="15.0" fill="rgb(224,110,18)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1728" width="1.9" height="15.0" fill="rgb(205,91,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1232" width="1.8" height="15.0" fill="rgb(216,107,51)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1728" width="1.9" height="15.0" fill="rgb(216,115,34)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="576" width="1.9" height="15.0" fill="rgb(237,221,15)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="2400" width="1.8" height="15.0" fill="rgb(250,124,3)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1216" width="1.8" height="15.0" fill="rgb(210,119,29)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="1696" width="1.9" height="15.0" fill="rgb(227,73,50)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1792" width="1.8" height="15.0" fill="rgb(212,226,49)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="2080" width="1.9" height="15.0" fill="rgb(237,229,45)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1872" width="1.9" height="15.0" fill="rgb(242,162,12)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1882.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1536" width="3.7" height="15.0" fill="rgb(229,52,28)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="1456" width="1.9" height="15.0" fill="rgb(224,228,46)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2176" width="1.9" height="15.0" fill="rgb(229,99,29)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="2000" width="39.7" height="15.0" fill="rgb(226,165,54)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2010.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>__memmove_sse2_unaligned_erms (5 samples, 0.80%)</title><rect x="423.5" y="64" width="9.4" height="15.0" fill="rgb(223,222,27)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1440" width="1.9" height="15.0" fill="rgb(244,20,31)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1136" width="1.9" height="15.0" fill="rgb(225,86,10)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1040" width="1.9" height="15.0" fill="rgb(250,177,34)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2096" width="1.9" height="15.0" fill="rgb(205,38,30)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2106.5" font-size="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 (1 samples, 0.16%)</title><rect x="410.3" y="2592" width="1.8" height="15.0" fill="rgb(239,69,54)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2602.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="159.2" y="3024" width="1.8" height="15.0" fill="rgb(219,220,29)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="3034.5" font-size="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::build__early (2 samples, 0.32%)</title><rect x="349.8" y="64" width="3.8" height="15.0" fill="rgb(223,175,7)" rx="2" ry="2" />
<text text-anchor="" x="352.84" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="1184.3" y="1136" width="1.9" height="15.0" fill="rgb(214,158,52)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1146.5" font-size="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::Code_Gen (1 samples, 0.16%)</title><rect x="287.5" y="112" width="1.9" height="15.0" fill="rgb(251,195,9)" rx="2" ry="2" />
<text text-anchor="" x="290.54" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1456" width="1.9" height="15.0" fill="rgb(206,144,13)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="2112" width="1.9" height="15.0" fill="rgb(241,164,50)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1728" width="1.8" height="15.0" fill="rgb(232,59,29)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="848" width="1.8" height="15.0" fill="rgb(222,66,35)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (4 samples, 0.64%)</title><rect x="755.8" y="976" width="7.5" height="15.0" fill="rgb(237,218,23)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1696" width="1.9" height="15.0" fill="rgb(208,181,52)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="2272" width="1.9" height="15.0" fill="rgb(251,75,53)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="2282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="2352" width="1.8" height="15.0" fill="rgb(226,194,12)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="656" width="1.9" height="15.0" fill="rgb(226,34,42)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="119.5" y="1952" width="1.9" height="15.0" fill="rgb(246,146,32)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1568" width="1.9" height="15.0" fill="rgb(231,150,19)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1578.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="389.5" y="208" width="1.9" height="15.0" fill="rgb(234,165,14)" rx="2" ry="2" />
<text text-anchor="" x="392.49" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1376" width="1.8" height="15.0" fill="rgb(250,145,27)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="151.6" y="1440" width="1.9" height="15.0" fill="rgb(231,15,12)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::blockStatement (1 samples, 0.16%)</title><rect x="128.9" y="320" width="1.9" height="15.0" fill="rgb(230,50,10)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="1200" width="1.9" height="15.0" fill="rgb(241,30,48)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="2288" width="1.9" height="15.0" fill="rgb(211,143,18)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="2298.5" font-size="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.16%)</title><rect x="735.0" y="2768" width="1.9" height="15.0" fill="rgb(237,98,33)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="134.6" y="1856" width="1.9" height="15.0" fill="rgb(253,60,2)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1552" width="1.9" height="15.0" fill="rgb(210,132,38)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GrowableArray&lt;ScopeValue*&gt;::append (1 samples, 0.16%)</title><rect x="42.1" y="64" width="1.9" height="15.0" fill="rgb(209,15,34)" rx="2" ry="2" />
<text text-anchor="" x="45.10" y="74.5" font-size="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.16%)</title><rect x="1140.9" y="336" width="1.9" height="15.0" fill="rgb(233,86,13)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1104" width="1.9" height="15.0" fill="rgb(235,31,10)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="738.8" y="2960" width="1.9" height="15.0" fill="rgb(218,131,38)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2970.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1440" width="1.9" height="15.0" fill="rgb(218,129,43)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2624" width="1.9" height="15.0" fill="rgb(207,183,24)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="480" width="1.9" height="15.0" fill="rgb(238,34,53)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeConstructorAccessorImpl:::newInstance0 (1 samples, 0.16%)</title><rect x="161.0" y="272" width="1.9" height="15.0" fill="rgb(248,114,9)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1904" width="1.9" height="15.0" fill="rgb(244,168,6)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1914.5" font-size="12" 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.32%)</title><rect x="425.4" y="192" width="3.7" height="15.0" fill="rgb(244,122,48)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="202.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="353.6" y="176" width="1.9" height="15.0" fill="rgb(229,186,14)" rx="2" ry="2" />
<text text-anchor="" x="356.62" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2224" width="1.8" height="15.0" fill="rgb(208,151,1)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2096" width="1.9" height="15.0" fill="rgb(251,96,36)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="383.8" y="112" width="1.9" height="15.0" fill="rgb(232,195,41)" rx="2" ry="2" />
<text text-anchor="" x="386.82" y="122.5" font-size="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_fault (1 samples, 0.16%)</title><rect x="1140.9" y="272" width="1.9" height="15.0" fill="rgb(254,115,52)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Check:::isUnchecked (1 samples, 0.16%)</title><rect x="106.3" y="80" width="1.9" height="15.0" fill="rgb(249,24,13)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="90.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="363.1" y="224" width="1.8" height="15.0" fill="rgb(219,36,0)" rx="2" ry="2" />
<text text-anchor="" x="366.06" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1040" width="1.9" height="15.0" fill="rgb(212,154,43)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="560" width="1.9" height="15.0" fill="rgb(232,212,11)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1920" width="1.8" height="15.0" fill="rgb(220,169,48)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1712" width="1.9" height="15.0" fill="rgb(238,144,27)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1722.5" font-size="12" 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.32%)</title><rect x="1150.4" y="2096" width="3.7" height="15.0" fill="rgb(206,47,24)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="416" width="1.9" height="15.0" fill="rgb(230,214,14)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1584" width="1.9" height="15.0" fill="rgb(225,198,16)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="59.1" y="112" width="1.9" height="15.0" fill="rgb(247,87,33)" rx="2" ry="2" />
<text text-anchor="" x="62.09" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribClassBody (1 samples, 0.16%)</title><rect x="113.8" y="128" width="1.9" height="15.0" fill="rgb(240,100,20)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="138.5" font-size="12" 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.80%)</title><rect x="1163.6" y="496" width="9.4" height="15.0" fill="rgb(253,182,43)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="76.1" y="592" width="1.9" height="15.0" fill="rgb(227,158,14)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1184" width="1.9" height="15.0" fill="rgb(224,225,13)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="2640" width="1.9" height="15.0" fill="rgb(205,35,37)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2650.5" font-size="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.16%)</title><rect x="278.1" y="224" width="1.9" height="15.0" fill="rgb(213,139,3)" rx="2" ry="2" />
<text text-anchor="" x="281.10" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="731.2" y="1712" width="1.9" height="15.0" fill="rgb(236,30,30)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1168" width="32.1" height="15.0" fill="rgb(240,89,6)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1178.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>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="1792" width="1.8" height="15.0" fill="rgb(216,175,26)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1802.5" font-size="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::run (1 samples, 0.16%)</title><rect x="40.2" y="528" width="1.9" height="15.0" fill="rgb(223,140,8)" rx="2" ry="2" />
<text text-anchor="" x="43.21" y="538.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1600" width="26.4" height="15.0" fill="rgb(206,87,35)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1610.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 (2 samples, 0.32%)</title><rect x="1150.4" y="1744" width="3.7" height="15.0" fill="rgb(224,94,8)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1754.5" font-size="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.16%)</title><rect x="108.2" y="656" width="1.9" height="15.0" fill="rgb(221,71,35)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1904" width="1.9" height="15.0" fill="rgb(253,109,32)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="496" width="1.9" height="15.0" fill="rgb(213,9,0)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="506.5" font-size="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::Ideal_common (1 samples, 0.16%)</title><rect x="10.0" y="96" width="1.9" height="15.0" fill="rgb(226,203,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="106.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="419.7" y="304" width="1.9" height="15.0" fill="rgb(208,109,47)" rx="2" ry="2" />
<text text-anchor="" x="422.70" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="2464" width="1.9" height="15.0" fill="rgb(233,6,51)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="2474.5" font-size="12" 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.32%)</title><rect x="429.1" y="480" width="3.8" height="15.0" fill="rgb(217,174,13)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="490.5" font-size="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::run (1 samples, 0.16%)</title><rect x="733.1" y="2800" width="1.9" height="15.0" fill="rgb(234,80,12)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="704" width="1.9" height="15.0" fill="rgb(208,94,34)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="714.5" font-size="12" 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.80%)</title><rect x="1163.6" y="576" width="9.4" height="15.0" fill="rgb(247,75,38)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="586.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="357.4" y="128" width="1.9" height="15.0" fill="rgb(246,3,34)" rx="2" ry="2" />
<text text-anchor="" x="360.39" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="2320" width="1.9" height="15.0" fill="rgb(243,36,7)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="2330.5" font-size="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.16%)</title><rect x="738.8" y="2880" width="1.9" height="15.0" fill="rgb(211,79,41)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="240" width="1.9" height="15.0" fill="rgb(218,53,16)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="250.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1344" width="3.7" height="15.0" fill="rgb(232,27,10)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1354.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="2224" width="366.3" height="15.0" fill="rgb(232,184,2)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="2234.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>__mark_inode_dirty (1 samples, 0.16%)</title><rect x="684.0" y="96" width="1.9" height="15.0" fill="rgb(237,205,45)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="976" width="1.9" height="15.0" fill="rgb(241,170,24)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="986.5" font-size="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::run (1 samples, 0.16%)</title><rect x="157.3" y="2672" width="1.9" height="15.0" fill="rgb(210,81,45)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1696" width="1.9" height="15.0" fill="rgb(248,61,20)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1706.5" font-size="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::run (1 samples, 0.16%)</title><rect x="72.3" y="2016" width="1.9" height="15.0" fill="rgb(236,148,51)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="2026.5" font-size="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::run (1 samples, 0.16%)</title><rect x="446.1" y="2672" width="1.9" height="15.0" fill="rgb(224,66,53)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1200" width="1.9" height="15.0" fill="rgb(225,43,19)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1210.5" font-size="12" 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.48%)</title><rect x="70.4" y="352" width="5.7" height="15.0" fill="rgb(206,120,17)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1632" width="1.9" height="15.0" fill="rgb(220,12,29)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="640" width="1.9" height="15.0" fill="rgb(235,65,52)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="688" width="1.9" height="15.0" fill="rgb(252,205,9)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="698.5" font-size="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.16%)</title><rect x="744.4" y="2208" width="1.9" height="15.0" fill="rgb(227,85,17)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2080" width="1.9" height="15.0" fill="rgb(242,188,6)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="864" width="1.9" height="15.0" fill="rgb(205,124,41)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="496" width="1.8" height="15.0" fill="rgb(211,148,9)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="506.5" font-size="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.16%)</title><rect x="1144.7" y="2320" width="1.9" height="15.0" fill="rgb(252,164,28)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="304" width="1.8" height="15.0" fill="rgb(212,109,10)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="1584" width="1.9" height="15.0" fill="rgb(222,63,31)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="1594.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1952" width="3.7" height="15.0" fill="rgb(214,152,2)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="784" width="1.9" height="15.0" fill="rgb(224,156,44)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="725.6" y="400" width="1.8" height="15.0" fill="rgb(212,228,12)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="410.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="332.8" y="160" width="1.9" height="15.0" fill="rgb(211,43,4)" rx="2" ry="2" />
<text text-anchor="" x="335.85" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="2144" width="1.9" height="15.0" fill="rgb(231,62,0)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1328" width="1.9" height="15.0" fill="rgb(214,86,16)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="976" width="1.9" height="15.0" fill="rgb(250,118,14)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="624" width="1.9" height="15.0" fill="rgb(232,89,1)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1408" width="1.9" height="15.0" fill="rgb(228,170,27)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="104.4" y="848" width="1.9" height="15.0" fill="rgb(245,47,26)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="432.9" y="944" width="1.9" height="15.0" fill="rgb(210,150,26)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/jar/JarFile:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="1140.9" y="432" width="1.9" height="15.0" fill="rgb(235,199,31)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="442.5" font-size="12" 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.32%)</title><rect x="687.8" y="1440" width="3.8" height="15.0" fill="rgb(231,100,23)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1296" width="1.9" height="15.0" fill="rgb(236,87,54)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1306.5" font-size="12" 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.64%)</title><rect x="506.5" y="1488" width="7.6" height="15.0" fill="rgb(246,104,15)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1498.5" font-size="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.16%)</title><rect x="400.8" y="496" width="1.9" height="15.0" fill="rgb(243,6,6)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1968" width="1.9" height="15.0" fill="rgb(238,132,21)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1008" width="1.8" height="15.0" fill="rgb(231,113,0)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="2224" width="1.9" height="15.0" fill="rgb(206,206,25)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2234.5" font-size="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 (1 samples, 0.16%)</title><rect x="1148.5" y="2944" width="1.9" height="15.0" fill="rgb(210,18,3)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2954.5" font-size="12" 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.32%)</title><rect x="1150.4" y="1312" width="3.7" height="15.0" fill="rgb(224,110,27)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1328" width="1.9" height="15.0" fill="rgb(238,86,28)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="640" width="1.9" height="15.0" fill="rgb(253,228,19)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="650.5" font-size="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::thread_main_inner (4 samples, 0.64%)</title><rect x="755.8" y="2656" width="7.5" height="15.0" fill="rgb(252,19,26)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1872" width="1.8" height="15.0" fill="rgb(224,221,42)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1882.5" font-size="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.16%)</title><rect x="76.1" y="2000" width="1.9" height="15.0" fill="rgb(234,58,2)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="2010.5" font-size="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 (1 samples, 0.16%)</title><rect x="738.8" y="2896" width="1.9" height="15.0" fill="rgb(223,41,11)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2906.5" font-size="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.16%)</title><rect x="400.8" y="528" width="1.9" height="15.0" fill="rgb(217,164,6)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="896" width="1.9" height="15.0" fill="rgb(233,140,54)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="624" width="1.9" height="15.0" fill="rgb(254,181,43)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="528" width="1.9" height="15.0" fill="rgb(240,112,38)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1504" width="39.7" height="15.0" fill="rgb(220,4,41)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1514.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>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="2224" width="1.9" height="15.0" fill="rgb(252,61,10)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="1664" width="1.9" height="15.0" fill="rgb(225,15,24)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1392" width="1.9" height="15.0" fill="rgb(207,111,52)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1856" width="1.9" height="15.0" fill="rgb(206,135,16)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1866.5" font-size="12" 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.48%)</title><rect x="750.1" y="2480" width="5.7" height="15.0" fill="rgb(253,53,43)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1296" width="1.9" height="15.0" fill="rgb(238,63,7)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1306.5" font-size="12" 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.32%)</title><rect x="164.8" y="1648" width="3.8" height="15.0" fill="rgb(230,87,27)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1658.5" font-size="12" 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.32%)</title><rect x="687.8" y="1344" width="3.8" height="15.0" fill="rgb(233,125,13)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1354.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1200" width="1.9" height="15.0" fill="rgb(221,204,2)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1904" width="1.9" height="15.0" fill="rgb(240,61,20)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1914.5" font-size="12" 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.80%)</title><rect x="1163.6" y="448" width="9.4" height="15.0" fill="rgb(209,51,38)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="1696" width="1.9" height="15.0" fill="rgb(240,0,23)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="1140.9" y="1104" width="1.9" height="15.0" fill="rgb(249,9,12)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1114.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="576" width="26.4" height="15.0" fill="rgb(208,107,36)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="586.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.16%)</title><rect x="151.6" y="272" width="1.9" height="15.0" fill="rgb(243,189,43)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="832" width="1.9" height="15.0" fill="rgb(211,54,53)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1440" width="1.9" height="15.0" fill="rgb(232,184,34)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1450.5" font-size="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.16%)</title><rect x="684.0" y="2592" width="1.9" height="15.0" fill="rgb(207,124,34)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="480" width="1.9" height="15.0" fill="rgb(220,81,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="1600" width="164.3" height="15.0" fill="rgb(249,183,18)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1610.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.16%)</title><rect x="1186.2" y="256" width="1.9" height="15.0" fill="rgb(227,4,54)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="1131.5" y="560" width="1.9" height="15.0" fill="rgb(209,17,35)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1632" width="1.9" height="15.0" fill="rgb(249,160,29)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1664" width="1.9" height="15.0" fill="rgb(216,94,54)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1674.5" font-size="12" 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.64%)</title><rect x="755.8" y="1152" width="7.5" height="15.0" fill="rgb(208,179,34)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1162.5" font-size="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.16%)</title><rect x="740.7" y="2176" width="1.8" height="15.0" fill="rgb(236,203,25)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="944" width="1.9" height="15.0" fill="rgb(241,45,21)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__generic_file_write_iter (1 samples, 0.16%)</title><rect x="502.8" y="96" width="1.9" height="15.0" fill="rgb(222,224,42)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="848" width="1.9" height="15.0" fill="rgb(236,63,34)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="858.5" font-size="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.16%)</title><rect x="128.9" y="2592" width="1.9" height="15.0" fill="rgb(222,11,32)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/logging/sink/OutputEventRenderer$LazyListener:::onOutput (1 samples, 0.16%)</title><rect x="155.4" y="144" width="1.9" height="15.0" fill="rgb(214,111,1)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="11.9" y="144" width="1.9" height="15.0" fill="rgb(240,87,46)" rx="2" ry="2" />
<text text-anchor="" x="14.89" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="2192" width="1.9" height="15.0" fill="rgb(208,69,46)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="2202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="1104" width="1.9" height="15.0" fill="rgb(207,40,23)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1114.5" font-size="12" 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.32%)</title><rect x="687.8" y="368" width="3.8" height="15.0" fill="rgb(211,187,8)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="2080" width="1.8" height="15.0" fill="rgb(218,56,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="2090.5" font-size="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.16%)</title><rect x="415.9" y="2608" width="1.9" height="15.0" fill="rgb(244,227,11)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2618.5" font-size="12" 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.48%)</title><rect x="170.5" y="912" width="5.6" height="15.0" fill="rgb(212,214,51)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="414.0" y="1696" width="1.9" height="15.0" fill="rgb(219,152,23)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="2160" width="1.9" height="15.0" fill="rgb(253,184,3)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="2496" width="1.9" height="15.0" fill="rgb(229,56,53)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="704" width="1.9" height="15.0" fill="rgb(227,1,23)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="1424" width="1.9" height="15.0" fill="rgb(233,140,47)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="1434.5" font-size="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::run (2 samples, 0.32%)</title><rect x="47.8" y="208" width="3.7" height="15.0" fill="rgb(233,31,37)" rx="2" ry="2" />
<text text-anchor="" x="50.76" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="731.2" y="1392" width="1.9" height="15.0" fill="rgb(242,196,32)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2080" width="1.9" height="15.0" fill="rgb(244,101,27)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2576" width="1.9" height="15.0" fill="rgb(212,147,4)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2586.5" font-size="12" 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.80%)</title><rect x="1163.6" y="688" width="9.4" height="15.0" fill="rgb(230,92,5)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::doHash (1 samples, 0.16%)</title><rect x="740.7" y="128" width="1.8" height="15.0" fill="rgb(217,85,54)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="608" width="1.9" height="15.0" fill="rgb(245,3,18)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="618.5" font-size="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.32%)</title><rect x="164.8" y="2208" width="3.8" height="15.0" fill="rgb(242,37,3)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="976" width="1.8" height="15.0" fill="rgb(245,41,27)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1712" width="1.9" height="15.0" fill="rgb(238,58,14)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1216" width="1.9" height="15.0" fill="rgb(207,181,44)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1872" width="1.8" height="15.0" fill="rgb(253,36,26)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="512" width="1.9" height="15.0" fill="rgb(238,143,53)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="2128" width="1.8" height="15.0" fill="rgb(210,30,0)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="2138.5" font-size="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_start (1 samples, 0.16%)</title><rect x="400.8" y="864" width="1.9" height="15.0" fill="rgb(217,178,8)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="704" width="1.9" height="15.0" fill="rgb(237,18,22)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="714.5" font-size="12" 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.32%)</title><rect x="687.8" y="496" width="3.8" height="15.0" fill="rgb(205,177,49)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="864" width="1.9" height="15.0" fill="rgb(253,225,54)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="1104" width="1.9" height="15.0" fill="rgb(246,110,37)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="1114.5" font-size="12" 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.32%)</title><rect x="70.4" y="480" width="3.8" height="15.0" fill="rgb(225,116,38)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (2 samples, 0.32%)</title><rect x="429.1" y="880" width="3.8" height="15.0" fill="rgb(220,209,4)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="896" width="1.9" height="15.0" fill="rgb(226,135,30)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2816" width="1.9" height="15.0" fill="rgb(245,214,8)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="784" width="1.9" height="15.0" fill="rgb(210,187,28)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::checkId (1 samples, 0.16%)</title><rect x="115.7" y="128" width="1.9" height="15.0" fill="rgb(227,179,44)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="138.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="414.0" y="2864" width="1.9" height="15.0" fill="rgb(219,112,2)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="2874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2368" width="1.9" height="15.0" fill="rgb(244,205,40)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2378.5" font-size="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::Optimize (1 samples, 0.16%)</title><rect x="348.0" y="96" width="1.8" height="15.0" fill="rgb(213,177,2)" rx="2" ry="2" />
<text text-anchor="" x="350.95" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="108.2" y="832" width="1.9" height="15.0" fill="rgb(253,99,20)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="842.5" font-size="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 (1 samples, 0.16%)</title><rect x="678.4" y="2640" width="1.8" height="15.0" fill="rgb(236,81,30)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1680" width="366.3" height="15.0" fill="rgb(229,61,6)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1690.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.16%)</title><rect x="162.9" y="816" width="1.9" height="15.0" fill="rgb(219,73,4)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="826.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="944" width="43.4" height="15.0" fill="rgb(211,192,22)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="954.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>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1008" width="1.9" height="15.0" fill="rgb(236,179,27)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="272" width="1.8" height="15.0" fill="rgb(253,90,52)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="282.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="2432" width="26.4" height="15.0" fill="rgb(211,132,35)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="2442.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>Lorg/gradle/api/internal/file/CompositeFileCollection:::getSourceCollections (1 samples, 0.16%)</title><rect x="162.9" y="160" width="1.9" height="15.0" fill="rgb(238,193,7)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="170.5" font-size="12" 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.32%)</title><rect x="687.8" y="2112" width="3.8" height="15.0" fill="rgb(211,5,30)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="672" width="1.9" height="15.0" fill="rgb(233,79,13)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="682.5" font-size="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.16%)</title><rect x="127.1" y="2240" width="1.8" height="15.0" fill="rgb(234,64,43)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="2250.5" font-size="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_start (1 samples, 0.16%)</title><rect x="735.0" y="2880" width="1.9" height="15.0" fill="rgb(219,65,12)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="2528" width="1.9" height="15.0" fill="rgb(205,151,1)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2538.5" font-size="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 (1 samples, 0.16%)</title><rect x="280.0" y="400" width="1.9" height="15.0" fill="rgb(239,124,22)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1664" width="1.9" height="15.0" fill="rgb(241,160,16)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1674.5" font-size="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_dirty_inode (1 samples, 0.16%)</title><rect x="685.9" y="80" width="1.9" height="15.0" fill="rgb(242,82,43)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="112" width="1.9" height="15.0" fill="rgb(221,41,28)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="122.5" font-size="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::Code_Gen (7 samples, 1.12%)</title><rect x="312.1" y="96" width="13.2" height="15.0" fill="rgb(206,84,10)" rx="2" ry="2" />
<text text-anchor="" x="315.08" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (87 samples, 13.92%)</title><rect x="514.1" y="1552" width="164.3" height="15.0" fill="rgb(230,159,6)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="704" width="1.9" height="15.0" fill="rgb(243,92,18)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="480" width="1.9" height="15.0" fill="rgb(207,113,6)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="51.5" y="240" width="1.9" height="15.0" fill="rgb(205,109,6)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="2240" width="164.3" height="15.0" fill="rgb(248,19,46)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2250.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.16%)</title><rect x="731.2" y="752" width="1.9" height="15.0" fill="rgb(230,21,30)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="2064" width="1.9" height="15.0" fill="rgb(218,11,23)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1856" width="1.9" height="15.0" fill="rgb(243,40,17)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1866.5" font-size="12" 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.64%)</title><rect x="755.8" y="1536" width="7.5" height="15.0" fill="rgb(207,65,15)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="2144" width="1.8" height="15.0" fill="rgb(234,60,15)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1776" width="1.9" height="15.0" fill="rgb(246,204,44)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1786.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="412.1" y="2896" width="1.9" height="15.0" fill="rgb(249,147,13)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="2906.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1536" width="15.1" height="15.0" fill="rgb(215,137,36)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1504" width="1.9" height="15.0" fill="rgb(241,196,39)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="384" width="1.9" height="15.0" fill="rgb(210,212,37)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1504" width="1.9" height="15.0" fill="rgb(213,108,4)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="85.5" y="2288" width="1.9" height="15.0" fill="rgb(213,60,17)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="423.5" y="2080" width="1.9" height="15.0" fill="rgb(213,191,11)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1552" width="1.9" height="15.0" fill="rgb(214,83,10)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="408.4" y="1776" width="1.9" height="15.0" fill="rgb(248,170,17)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GenCollectedHeap::oop_since_save_marks_iterate (1 samples, 0.16%)</title><rect x="28.9" y="96" width="1.9" height="15.0" fill="rgb(254,228,51)" rx="2" ry="2" />
<text text-anchor="" x="31.88" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="2032" width="1.9" height="15.0" fill="rgb(240,209,47)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1664" width="1.9" height="15.0" fill="rgb(229,212,30)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1674.5" font-size="12" 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.32%)</title><rect x="164.8" y="1552" width="3.8" height="15.0" fill="rgb(250,176,11)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="2304" width="1.9" height="15.0" fill="rgb(219,126,10)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1088" width="1.9" height="15.0" fill="rgb(227,94,11)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2400" width="1.9" height="15.0" fill="rgb(220,193,40)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="2352" width="1.9" height="15.0" fill="rgb(246,220,50)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="1488" width="1.9" height="15.0" fill="rgb(238,65,15)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="560" width="1.9" height="15.0" fill="rgb(246,70,45)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1872" width="1.9" height="15.0" fill="rgb(235,24,26)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1882.5" font-size="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.16%)</title><rect x="1131.5" y="2848" width="1.9" height="15.0" fill="rgb(205,215,27)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2858.5" font-size="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 (1 samples, 0.16%)</title><rect x="389.5" y="64" width="1.9" height="15.0" fill="rgb(244,118,53)" rx="2" ry="2" />
<text text-anchor="" x="392.49" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="134.6" y="160" width="1.9" height="15.0" fill="rgb(206,91,8)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.32%)</title><rect x="1150.4" y="1040" width="3.7" height="15.0" fill="rgb(221,22,40)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="864" width="1.8" height="15.0" fill="rgb(238,127,50)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="576" width="1.9" height="15.0" fill="rgb(211,200,7)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2048" width="1.9" height="15.0" fill="rgb(223,54,10)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/btree/BTreePersistentIndexedCache:::load (1 samples, 0.16%)</title><rect x="149.7" y="208" width="1.9" height="15.0" fill="rgb(242,204,3)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1376" width="1.9" height="15.0" fill="rgb(215,207,33)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1632" width="1.9" height="15.0" fill="rgb(248,3,27)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1642.5" font-size="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.16%)</title><rect x="748.2" y="832" width="1.9" height="15.0" fill="rgb(223,147,13)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="2608" width="1.9" height="15.0" fill="rgb(229,18,20)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1952" width="1.9" height="15.0" fill="rgb(243,37,30)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2160" width="1.9" height="15.0" fill="rgb(238,60,28)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1728" width="1.9" height="15.0" fill="rgb(219,163,6)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.16%)</title><rect x="1131.5" y="304" width="1.9" height="15.0" fill="rgb(237,119,52)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="314.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="2224" width="26.4" height="15.0" fill="rgb(235,104,25)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="2234.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 (2 samples, 0.32%)</title><rect x="176.1" y="1024" width="3.8" height="15.0" fill="rgb(221,19,49)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="1140.9" y="1200" width="1.9" height="15.0" fill="rgb(252,14,46)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="352" width="1.9" height="15.0" fill="rgb(239,32,14)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="672" width="1.8" height="15.0" fill="rgb(242,98,18)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1600" width="1.9" height="15.0" fill="rgb(222,106,13)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1610.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="44.0" y="192" width="1.9" height="15.0" fill="rgb(206,90,10)" rx="2" ry="2" />
<text text-anchor="" x="46.98" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/DefaultFileSystemSnapshotter$FileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="682.1" y="384" width="1.9" height="15.0" fill="rgb(243,191,1)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="528" width="1.9" height="15.0" fill="rgb(221,32,12)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1168" width="1.9" height="15.0" fill="rgb(238,124,46)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="544" width="1.9" height="15.0" fill="rgb(227,82,25)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.16%)</title><rect x="444.2" y="352" width="1.9" height="15.0" fill="rgb(234,70,43)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="2640" width="1.9" height="15.0" fill="rgb(233,1,13)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="2464" width="1.9" height="15.0" fill="rgb(252,123,13)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="576" width="1.9" height="15.0" fill="rgb(249,226,40)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1664" width="1.9" height="15.0" fill="rgb(244,169,49)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="2256" width="1.9" height="15.0" fill="rgb(216,171,4)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1904" width="1.9" height="15.0" fill="rgb(223,51,3)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1248" width="1.9" height="15.0" fill="rgb(228,131,13)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (21 samples, 3.36%)</title><rect x="179.9" y="176" width="39.7" height="15.0" fill="rgb(238,32,54)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1504" width="1.9" height="15.0" fill="rgb(233,109,4)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="2704" width="1.9" height="15.0" fill="rgb(228,201,51)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (5 samples, 0.80%)</title><rect x="1163.6" y="1232" width="9.4" height="15.0" fill="rgb(254,160,26)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="1184.3" y="736" width="1.9" height="15.0" fill="rgb(207,153,20)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="1056" width="1.9" height="15.0" fill="rgb(242,10,2)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="976" width="1.9" height="15.0" fill="rgb(249,77,46)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="986.5" font-size="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::Code_Gen (2 samples, 0.32%)</title><rect x="47.8" y="112" width="3.7" height="15.0" fill="rgb(206,41,31)" rx="2" ry="2" />
<text text-anchor="" x="50.76" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="720" width="1.9" height="15.0" fill="rgb(250,117,17)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1760" width="1.9" height="15.0" fill="rgb(233,58,51)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2272" width="1.9" height="15.0" fill="rgb(208,56,22)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2282.5" font-size="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.16%)</title><rect x="427.2" y="2560" width="1.9" height="15.0" fill="rgb(230,151,25)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2570.5" font-size="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_start (1 samples, 0.16%)</title><rect x="142.2" y="256" width="1.8" height="15.0" fill="rgb(210,9,47)" rx="2" ry="2" />
<text text-anchor="" x="145.16" y="266.5" font-size="12" 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.64%)</title><rect x="755.8" y="464" width="7.5" height="15.0" fill="rgb(221,62,50)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="70.4" y="2752" width="1.9" height="15.0" fill="rgb(231,199,2)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="2762.5" font-size="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 (4 samples, 0.64%)</title><rect x="506.5" y="2576" width="7.6" height="15.0" fill="rgb(248,26,34)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2704" width="1.9" height="15.0" fill="rgb(221,70,26)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="2576" width="1.9" height="15.0" fill="rgb(225,68,32)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1248" width="1.9" height="15.0" fill="rgb(209,134,44)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1258.5" font-size="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::run (2 samples, 0.32%)</title><rect x="144.0" y="272" width="3.8" height="15.0" fill="rgb(233,221,37)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (3 samples, 0.48%)</title><rect x="325.3" y="80" width="5.7" height="15.0" fill="rgb(254,229,6)" rx="2" ry="2" />
<text text-anchor="" x="328.30" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="480" width="1.9" height="15.0" fill="rgb(240,20,33)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="1856" width="1.9" height="15.0" fill="rgb(223,157,12)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1776" width="1.9" height="15.0" fill="rgb(214,106,54)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2464" width="1.9" height="15.0" fill="rgb(212,66,11)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1696" width="1.9" height="15.0" fill="rgb(249,52,49)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1872" width="1.9" height="15.0" fill="rgb(242,212,28)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="685.9" y="2000" width="1.9" height="15.0" fill="rgb(205,217,6)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1584" width="1.9" height="15.0" fill="rgb(212,176,22)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1594.5" font-size="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 (2 samples, 0.32%)</title><rect x="36.4" y="208" width="3.8" height="15.0" fill="rgb(253,195,34)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (1 samples, 0.16%)</title><rect x="748.2" y="224" width="1.9" height="15.0" fill="rgb(252,96,36)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (2 samples, 0.32%)</title><rect x="164.8" y="192" width="3.8" height="15.0" fill="rgb(220,49,13)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="2400" width="1.9" height="15.0" fill="rgb(230,140,47)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="656" width="1.9" height="15.0" fill="rgb(251,46,33)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="2672" width="1.9" height="15.0" fill="rgb(210,177,40)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="992" width="1.9" height="15.0" fill="rgb(250,221,33)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1002.5" font-size="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 (17 samples, 2.72%)</title><rect x="234.7" y="2176" width="32.1" height="15.0" fill="rgb(245,189,39)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ja..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2304" width="1.8" height="15.0" fill="rgb(220,71,33)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="576" width="1.9" height="15.0" fill="rgb(213,159,25)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="384" width="1.9" height="15.0" fill="rgb(218,103,0)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1200" width="32.1" height="15.0" fill="rgb(240,218,13)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1210.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="151.6" y="832" width="1.9" height="15.0" fill="rgb(252,13,15)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2048" width="1.8" height="15.0" fill="rgb(242,127,25)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2058.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="1131.5" y="2976" width="1.9" height="15.0" fill="rgb(218,100,24)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2986.5" font-size="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::try_inline_full (1 samples, 0.16%)</title><rect x="19.4" y="176" width="1.9" height="15.0" fill="rgb(242,125,49)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="432" width="1.9" height="15.0" fill="rgb(221,90,35)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="2144" width="1.9" height="15.0" fill="rgb(225,176,3)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="848" width="1.9" height="15.0" fill="rgb(231,130,44)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="592" width="1.8" height="15.0" fill="rgb(213,6,11)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="168.6" y="1920" width="1.9" height="15.0" fill="rgb(232,15,36)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="2400" width="1.9" height="15.0" fill="rgb(241,148,34)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (1 samples, 0.16%)</title><rect x="410.3" y="144" width="1.8" height="15.0" fill="rgb(241,61,4)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="154.5" font-size="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_Operation::evaluate (1 samples, 0.16%)</title><rect x="28.9" y="176" width="1.9" height="15.0" fill="rgb(229,42,31)" rx="2" ry="2" />
<text text-anchor="" x="31.88" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="1312" width="1.9" height="15.0" fill="rgb(224,215,54)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="1322.5" font-size="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 (1 samples, 0.16%)</title><rect x="125.2" y="944" width="1.9" height="15.0" fill="rgb(208,34,49)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="954.5" font-size="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::GraphBuilder (1 samples, 0.16%)</title><rect x="449.9" y="128" width="1.9" height="15.0" fill="rgb(210,203,43)" rx="2" ry="2" />
<text text-anchor="" x="452.90" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="1168" width="1.9" height="15.0" fill="rgb(216,51,9)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (2 samples, 0.32%)</title><rect x="429.1" y="736" width="3.8" height="15.0" fill="rgb(238,0,32)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="130.8" y="528" width="1.9" height="15.0" fill="rgb(245,158,6)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="538.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1296" width="9.4" height="15.0" fill="rgb(242,0,16)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2320" width="1.9" height="15.0" fill="rgb(224,2,42)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="640" width="1.9" height="15.0" fill="rgb(249,23,52)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="2272" width="1.9" height="15.0" fill="rgb(210,3,5)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="2282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2768" width="1.8" height="15.0" fill="rgb(250,226,23)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (3 samples, 0.48%)</title><rect x="750.1" y="256" width="5.7" height="15.0" fill="rgb(226,37,48)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="2096" width="1.8" height="15.0" fill="rgb(222,61,26)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="500.9" y="944" width="1.9" height="15.0" fill="rgb(231,180,36)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="954.5" font-size="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.16%)</title><rect x="121.4" y="2576" width="1.9" height="15.0" fill="rgb(254,22,27)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="816" width="1.9" height="15.0" fill="rgb(207,29,6)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="768" width="1.9" height="15.0" fill="rgb(237,141,32)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="640" width="32.1" height="15.0" fill="rgb(223,164,36)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="650.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>Compile::Compile (1 samples, 0.16%)</title><rect x="355.5" y="128" width="1.9" height="15.0" fill="rgb(212,80,49)" rx="2" ry="2" />
<text text-anchor="" x="358.50" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="928" width="1.8" height="15.0" fill="rgb(209,125,42)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1792" width="1.9" height="15.0" fill="rgb(244,94,45)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1456" width="1.9" height="15.0" fill="rgb(225,63,44)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="130.8" y="1504" width="1.9" height="15.0" fill="rgb(240,133,3)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="113.8" y="1520" width="1.9" height="15.0" fill="rgb(243,189,48)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1456" width="1.9" height="15.0" fill="rgb(251,206,11)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="816" width="1.9" height="15.0" fill="rgb(220,5,18)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="688" width="1.9" height="15.0" fill="rgb(215,173,48)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="108.2" y="816" width="1.9" height="15.0" fill="rgb(206,18,38)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="992" width="1.9" height="15.0" fill="rgb(250,100,14)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (194 samples, 31.04%)</title><rect x="763.3" y="304" width="366.3" height="15.0" fill="rgb(235,144,19)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/collections/jdk7/Jd..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="896" width="1.9" height="15.0" fill="rgb(235,18,45)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1664" width="366.3" height="15.0" fill="rgb(237,88,50)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1674.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.16%)</title><rect x="87.4" y="640" width="1.9" height="15.0" fill="rgb(229,222,47)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="650.5" font-size="12" 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.48%)</title><rect x="170.5" y="224" width="5.6" height="15.0" fill="rgb(254,2,45)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (4 samples, 0.64%)</title><rect x="506.5" y="256" width="7.6" height="15.0" fill="rgb(218,170,9)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::build_ (1 samples, 0.16%)</title><rect x="19.4" y="304" width="1.9" height="15.0" fill="rgb(230,77,41)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1024" width="1.8" height="15.0" fill="rgb(229,64,47)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1034.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2048" width="43.4" height="15.0" fill="rgb(248,225,12)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2058.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>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="721.8" y="896" width="1.9" height="15.0" fill="rgb(226,206,33)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1936" width="1.9" height="15.0" fill="rgb(226,49,26)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1152" width="1.9" height="15.0" fill="rgb(206,201,49)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1520" width="1.8" height="15.0" fill="rgb(235,172,27)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="912" width="1.9" height="15.0" fill="rgb(206,212,10)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::do_linear_scan (1 samples, 0.16%)</title><rect x="140.3" y="80" width="1.9" height="15.0" fill="rgb(221,35,26)" rx="2" ry="2" />
<text text-anchor="" x="143.27" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1088" width="1.9" height="15.0" fill="rgb(220,2,40)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2640" width="1.9" height="15.0" fill="rgb(227,155,12)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="2688" width="1.9" height="15.0" fill="rgb(225,3,15)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1952" width="1.9" height="15.0" fill="rgb(237,125,40)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="480" width="1.8" height="15.0" fill="rgb(253,127,10)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1440" width="1.9" height="15.0" fill="rgb(248,78,26)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1664" width="1.9" height="15.0" fill="rgb(252,146,13)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.32%)</title><rect x="1154.1" y="304" width="3.8" height="15.0" fill="rgb(205,177,34)" rx="2" ry="2" />
<text text-anchor="" x="1157.13" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1872" width="1.9" height="15.0" fill="rgb(237,85,22)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="384" width="1.9" height="15.0" fill="rgb(208,32,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="2400" width="164.3" height="15.0" fill="rgb(238,96,24)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2410.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>Compiler::compile_method (1 samples, 0.16%)</title><rect x="140.3" y="160" width="1.9" height="15.0" fill="rgb(213,70,3)" rx="2" ry="2" />
<text text-anchor="" x="143.27" y="170.5" font-size="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::Code_Gen (1 samples, 0.16%)</title><rect x="45.9" y="144" width="1.9" height="15.0" fill="rgb(207,17,13)" rx="2" ry="2" />
<text text-anchor="" x="48.87" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="453.7" y="2720" width="1.9" height="15.0" fill="rgb(252,200,52)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="416" width="1.9" height="15.0" fill="rgb(232,101,0)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1248" width="1.9" height="15.0" fill="rgb(205,39,0)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1258.5" font-size="12" 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.32%)</title><rect x="176.1" y="816" width="3.8" height="15.0" fill="rgb(219,189,46)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="832" width="1.9" height="15.0" fill="rgb(228,6,0)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="560" width="1.9" height="15.0" fill="rgb(210,19,16)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="2096" width="1.9" height="15.0" fill="rgb(211,169,37)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="528" width="1.9" height="15.0" fill="rgb(251,118,4)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitTypeApply (1 samples, 0.16%)</title><rect x="95.0" y="448" width="1.8" height="15.0" fill="rgb(217,36,43)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="458.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2416" width="43.4" height="15.0" fill="rgb(227,102,18)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2426.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>JVM_InvokeMethod (4 samples, 0.64%)</title><rect x="506.5" y="752" width="7.6" height="15.0" fill="rgb(247,192,35)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2 samples, 0.32%)</title><rect x="164.8" y="816" width="3.8" height="15.0" fill="rgb(209,83,4)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="499.0" y="1296" width="1.9" height="15.0" fill="rgb(216,154,0)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1306.5" font-size="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::Optimize (1 samples, 0.16%)</title><rect x="361.2" y="128" width="1.9" height="15.0" fill="rgb(223,219,34)" rx="2" ry="2" />
<text text-anchor="" x="364.17" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="157.3" y="1200" width="1.9" height="15.0" fill="rgb(232,213,42)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseRemoveUseless::PhaseRemoveUseless (1 samples, 0.16%)</title><rect x="27.0" y="80" width="1.9" height="15.0" fill="rgb(239,212,51)" rx="2" ry="2" />
<text text-anchor="" x="29.99" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="410.3" y="1744" width="1.8" height="15.0" fill="rgb(222,81,32)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2224" width="1.9" height="15.0" fill="rgb(233,32,16)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1120" width="1.9" height="15.0" fill="rgb(206,35,39)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1130.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="381.9" y="176" width="1.9" height="15.0" fill="rgb(214,43,38)" rx="2" ry="2" />
<text text-anchor="" x="384.94" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="192" width="1.9" height="15.0" fill="rgb(248,67,20)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="147.8" y="304" width="1.9" height="15.0" fill="rgb(207,22,35)" rx="2" ry="2" />
<text text-anchor="" x="150.82" y="314.5" font-size="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-85641/85659 (21 samples, 3.36%)</title><rect x="179.9" y="2288" width="39.7" height="15.0" fill="rgb(209,5,20)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.16%)</title><rect x="15.7" y="144" width="1.9" height="15.0" fill="rgb(243,104,46)" rx="2" ry="2" />
<text text-anchor="" x="18.66" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="928" width="1.9" height="15.0" fill="rgb(215,98,7)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitBlock (1 samples, 0.16%)</title><rect x="115.7" y="288" width="1.9" height="15.0" fill="rgb(244,126,32)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Flow$FlowAnalyzer:::markThrown (1 samples, 0.16%)</title><rect x="159.2" y="288" width="1.8" height="15.0" fill="rgb(240,177,11)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="944" width="1.9" height="15.0" fill="rgb(219,131,3)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="800" width="1.9" height="15.0" fill="rgb(214,116,36)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2832" width="1.8" height="15.0" fill="rgb(215,177,29)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2842.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="266.8" y="2608" width="1.9" height="15.0" fill="rgb(254,174,28)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="1808" width="1.8" height="15.0" fill="rgb(218,225,53)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="848" width="1.9" height="15.0" fill="rgb(227,188,15)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="858.5" font-size="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.16%)</title><rect x="153.5" y="2208" width="1.9" height="15.0" fill="rgb(231,209,7)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="2144" width="1.9" height="15.0" fill="rgb(246,116,38)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="151.6" y="96" width="1.9" height="15.0" fill="rgb(212,55,19)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1936" width="1.9" height="15.0" fill="rgb(249,6,46)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1456" width="1.8" height="15.0" fill="rgb(253,163,3)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1248" width="1.9" height="15.0" fill="rgb(251,15,23)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="81.7" y="1248" width="1.9" height="15.0" fill="rgb(242,80,51)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="2496" width="1.9" height="15.0" fill="rgb(230,120,2)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1072" width="1.8" height="15.0" fill="rgb(242,212,27)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1904" width="1.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2192" width="1.9" height="15.0" fill="rgb(227,32,12)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1024" width="1.9" height="15.0" fill="rgb(254,96,43)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::readClassFile (1 samples, 0.16%)</title><rect x="134.6" y="144" width="1.9" height="15.0" fill="rgb(243,42,0)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="2320" width="1.9" height="15.0" fill="rgb(214,205,39)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1200" width="1.9" height="15.0" fill="rgb(205,0,16)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1984" width="1.9" height="15.0" fill="rgb(229,202,25)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1712" width="1.9" height="15.0" fill="rgb(211,155,42)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2336" width="1.8" height="15.0" fill="rgb(226,109,29)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2346.5" font-size="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.16%)</title><rect x="157.3" y="752" width="1.9" height="15.0" fill="rgb(243,110,4)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1584" width="1.9" height="15.0" fill="rgb(243,47,23)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2032" width="1.8" height="15.0" fill="rgb(248,155,28)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCEnhancedForLoop:::accept (1 samples, 0.16%)</title><rect x="159.2" y="576" width="1.8" height="15.0" fill="rgb(252,166,13)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1856" width="1.9" height="15.0" fill="rgb(247,115,43)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="10.0" y="208" width="1.9" height="15.0" fill="rgb(242,91,21)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="218.5" font-size="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.16%)</title><rect x="123.3" y="896" width="1.9" height="15.0" fill="rgb(227,206,9)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="119.5" y="304" width="1.9" height="15.0" fill="rgb(234,113,27)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1776" width="1.8" height="15.0" fill="rgb(252,176,9)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="944" width="1.9" height="15.0" fill="rgb(211,75,45)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="2000" width="1.9" height="15.0" fill="rgb(218,198,48)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1488" width="1.9" height="15.0" fill="rgb(244,63,20)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="738.8" y="576" width="1.9" height="15.0" fill="rgb(216,94,40)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1808" width="1.9" height="15.0" fill="rgb(228,202,3)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1344" width="1.8" height="15.0" fill="rgb(250,214,17)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1354.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1024" width="1.9" height="15.0" fill="rgb(253,26,11)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="704" width="1.9" height="15.0" fill="rgb(217,180,31)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile (5 samples, 0.80%)</title><rect x="1163.6" y="240" width="9.4" height="15.0" fill="rgb(207,105,46)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="608" width="1.9" height="15.0" fill="rgb(250,143,2)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1648" width="1.9" height="15.0" fill="rgb(211,151,48)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1808" width="1.9" height="15.0" fill="rgb(211,206,3)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1184" width="39.7" height="15.0" fill="rgb(222,4,51)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1194.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="738.8" y="1472" width="1.9" height="15.0" fill="rgb(252,6,5)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="896" width="1.9" height="15.0" fill="rgb(241,32,17)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1232" width="1.9" height="15.0" fill="rgb(230,82,20)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="95.0" y="2976" width="1.8" height="15.0" fill="rgb(240,90,23)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2986.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1088" width="15.1" height="15.0" fill="rgb(246,94,16)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1312" width="1.9" height="15.0" fill="rgb(224,119,53)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="95.0" y="1104" width="1.8" height="15.0" fill="rgb(238,140,45)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1114.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="364.9" y="208" width="1.9" height="15.0" fill="rgb(220,145,20)" rx="2" ry="2" />
<text text-anchor="" x="367.94" y="218.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1344" width="43.4" height="15.0" fill="rgb(239,229,32)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1354.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>Interpreter (2 samples, 0.32%)</title><rect x="164.8" y="1776" width="3.8" height="15.0" fill="rgb(213,32,17)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="2384" width="1.8" height="15.0" fill="rgb(228,78,13)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="162.9" y="1600" width="1.9" height="15.0" fill="rgb(248,215,34)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="816" width="1.9" height="15.0" fill="rgb(252,198,41)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="672" width="1.9" height="15.0" fill="rgb(228,35,44)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1616" width="1.9" height="15.0" fill="rgb(240,94,19)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1626.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="500.9" y="2848" width="1.9" height="15.0" fill="rgb(243,95,35)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="928" width="1.9" height="15.0" fill="rgb(249,56,5)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (23 samples, 3.68%)</title><rect x="455.6" y="2496" width="43.4" height="15.0" fill="rgb(228,61,15)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::Compile (2 samples, 0.32%)</title><rect x="342.3" y="112" width="3.8" height="15.0" fill="rgb(240,41,44)" rx="2" ry="2" />
<text text-anchor="" x="345.29" y="122.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="397.0" y="192" width="1.9" height="15.0" fill="rgb(235,125,36)" rx="2" ry="2" />
<text text-anchor="" x="400.04" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="2080" width="366.3" height="15.0" fill="rgb(225,221,17)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="2090.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.16%)</title><rect x="453.7" y="352" width="1.9" height="15.0" fill="rgb(235,21,16)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="448" width="1.9" height="15.0" fill="rgb(249,195,6)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="458.5" font-size="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::run (1 samples, 0.16%)</title><rect x="44.0" y="208" width="1.9" height="15.0" fill="rgb(234,29,31)" rx="2" ry="2" />
<text text-anchor="" x="46.98" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="448" width="1.9" height="15.0" fill="rgb(243,44,47)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1120" width="1.9" height="15.0" fill="rgb(230,93,52)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="960" width="1.9" height="15.0" fill="rgb(247,59,18)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="970.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1216" width="1.9" height="15.0" fill="rgb(228,37,26)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="453.7" y="2496" width="1.9" height="15.0" fill="rgb(248,61,24)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_method (1 samples, 0.16%)</title><rect x="142.2" y="144" width="1.8" height="15.0" fill="rgb(222,150,34)" rx="2" ry="2" />
<text text-anchor="" x="145.16" y="154.5" font-size="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.16%)</title><rect x="153.5" y="368" width="1.9" height="15.0" fill="rgb(228,174,0)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Relocation::pd_set_data_value (1 samples, 0.16%)</title><rect x="13.8" y="80" width="1.9" height="15.0" fill="rgb(208,181,44)" rx="2" ry="2" />
<text text-anchor="" x="16.78" y="90.5" font-size="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 (1 samples, 0.16%)</title><rect x="11.9" y="96" width="1.9" height="15.0" fill="rgb(229,183,26)" rx="2" ry="2" />
<text text-anchor="" x="14.89" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BoolNode::Opcode (1 samples, 0.16%)</title><rect x="21.3" y="64" width="1.9" height="15.0" fill="rgb(244,131,28)" rx="2" ry="2" />
<text text-anchor="" x="24.33" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="352" width="1.8" height="15.0" fill="rgb(236,91,49)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="362.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2448" width="43.4" height="15.0" fill="rgb(238,53,10)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2458.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>CompileBroker::invoke_compiler_on_method (2 samples, 0.32%)</title><rect x="270.5" y="144" width="3.8" height="15.0" fill="rgb(219,184,17)" rx="2" ry="2" />
<text text-anchor="" x="273.54" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="752" width="1.9" height="15.0" fill="rgb(242,206,18)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="2528" width="1.9" height="15.0" fill="rgb(209,111,17)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="2538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="87.4" y="512" width="1.9" height="15.0" fill="rgb(207,64,24)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1648" width="1.9" height="15.0" fill="rgb(224,155,52)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::term3 (1 samples, 0.16%)</title><rect x="128.9" y="80" width="1.9" height="15.0" fill="rgb(251,204,13)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="90.5" font-size="12" 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.32%)</title><rect x="429.1" y="1760" width="3.8" height="15.0" fill="rgb(242,180,29)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1888" width="1.9" height="15.0" fill="rgb(209,54,27)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="368" width="1.9" height="15.0" fill="rgb(220,45,3)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1280" width="1.9" height="15.0" fill="rgb(252,173,50)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1792" width="1.9" height="15.0" fill="rgb(253,38,29)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="528" width="1.8" height="15.0" fill="rgb(240,126,10)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="928" width="366.3" height="15.0" fill="rgb(252,135,31)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="938.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>pqdownheap (5 samples, 0.80%)</title><rect x="1163.6" y="64" width="9.4" height="15.0" fill="rgb(223,41,37)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="74.5" font-size="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-85641/85659 (4 samples, 0.64%)</title><rect x="506.5" y="2704" width="7.6" height="15.0" fill="rgb(234,17,43)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="768" width="1.9" height="15.0" fill="rgb(240,112,43)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1456" width="1.9" height="15.0" fill="rgb(249,61,47)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="162.9" y="352" width="1.9" height="15.0" fill="rgb(210,155,37)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="266.8" y="192" width="1.9" height="15.0" fill="rgb(214,197,14)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__generic_file_write_iter (3 samples, 0.48%)</title><rect x="735.0" y="224" width="5.7" height="15.0" fill="rgb(240,48,4)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="234.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="302.6" y="240" width="1.9" height="15.0" fill="rgb(239,134,25)" rx="2" ry="2" />
<text text-anchor="" x="305.64" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1232" width="1.8" height="15.0" fill="rgb(243,100,13)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="640" width="1.9" height="15.0" fill="rgb(247,101,29)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="640" width="1.9" height="15.0" fill="rgb(253,27,10)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1440" width="1.9" height="15.0" fill="rgb(250,4,39)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="768" width="1.9" height="15.0" fill="rgb(243,154,7)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="778.5" font-size="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_start (1 samples, 0.16%)</title><rect x="21.3" y="256" width="1.9" height="15.0" fill="rgb(230,15,37)" rx="2" ry="2" />
<text text-anchor="" x="24.33" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1504" width="1.9" height="15.0" fill="rgb(213,47,47)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (21 samples, 3.36%)</title><rect x="179.9" y="192" width="39.7" height="15.0" fill="rgb(222,224,49)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (2 samples, 0.32%)</title><rect x="349.8" y="224" width="3.8" height="15.0" fill="rgb(229,74,13)" rx="2" ry="2" />
<text text-anchor="" x="352.84" y="234.5" font-size="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.16%)</title><rect x="400.8" y="720" width="1.9" height="15.0" fill="rgb(235,6,7)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="730.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="287.5" y="256" width="1.9" height="15.0" fill="rgb(226,163,40)" rx="2" ry="2" />
<text text-anchor="" x="290.54" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1168" width="1.9" height="15.0" fill="rgb(224,102,24)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1178.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="10.0" y="192" width="1.9" height="15.0" fill="rgb(253,194,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1552" width="1.9" height="15.0" fill="rgb(246,52,33)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1562.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="384" width="15.1" height="15.0" fill="rgb(240,141,35)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="394.5" font-size="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_GetPrimitiveArrayCritical (1 samples, 0.16%)</title><rect x="742.5" y="64" width="1.9" height="15.0" fill="rgb(223,163,21)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/DefaultFileCollectionResolveContext$FileTreeConverter:::convertInto (1 samples, 0.16%)</title><rect x="162.9" y="528" width="1.9" height="15.0" fill="rgb(254,142,44)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2656" width="1.9" height="15.0" fill="rgb(231,111,31)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1312" width="1.9" height="15.0" fill="rgb(205,1,35)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1600" width="1.8" height="15.0" fill="rgb(227,158,1)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/FileInputStream:::read (1 samples, 0.16%)</title><rect x="682.1" y="304" width="1.9" height="15.0" fill="rgb(222,90,51)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="314.5" font-size="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.16%)</title><rect x="727.4" y="2784" width="1.9" height="15.0" fill="rgb(215,85,13)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="976" width="1.8" height="15.0" fill="rgb(248,114,2)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockBegin::try_merge (1 samples, 0.16%)</title><rect x="281.9" y="96" width="1.9" height="15.0" fill="rgb(238,22,11)" rx="2" ry="2" />
<text text-anchor="" x="284.87" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2928" width="1.8" height="15.0" fill="rgb(228,195,12)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2938.5" font-size="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.16%)</title><rect x="718.0" y="880" width="1.9" height="15.0" fill="rgb(241,21,50)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1584" width="1.9" height="15.0" fill="rgb(248,153,50)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1594.5" font-size="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_file_write_iter (1 samples, 0.16%)</title><rect x="731.2" y="208" width="1.9" height="15.0" fill="rgb(229,107,26)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="432" width="1.9" height="15.0" fill="rgb(208,143,16)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="864" width="1.9" height="15.0" fill="rgb(231,81,41)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="874.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1824" width="26.4" height="15.0" fill="rgb(248,50,35)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1834.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 (4 samples, 0.64%)</title><rect x="506.5" y="2384" width="7.6" height="15.0" fill="rgb(242,215,13)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="2224" width="1.9" height="15.0" fill="rgb(246,106,41)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1680" width="1.9" height="15.0" fill="rgb(234,104,49)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1690.5" font-size="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::get_liveness_at (1 samples, 0.16%)</title><rect x="280.0" y="80" width="1.9" height="15.0" fill="rgb(231,218,49)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="125.2" y="1104" width="1.9" height="15.0" fill="rgb(233,104,16)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1968" width="1.9" height="15.0" fill="rgb(216,14,19)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1978.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="102.5" y="240" width="1.9" height="15.0" fill="rgb(224,31,14)" rx="2" ry="2" />
<text text-anchor="" x="105.51" y="250.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2560" width="43.4" height="15.0" fill="rgb(217,38,23)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2570.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>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2352" width="1.9" height="15.0" fill="rgb(218,73,43)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="592" width="1.9" height="15.0" fill="rgb(252,197,5)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="602.5" font-size="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_munmap (1 samples, 0.16%)</title><rect x="1182.4" y="128" width="1.9" height="15.0" fill="rgb(230,160,2)" rx="2" ry="2" />
<text text-anchor="" x="1185.45" y="138.5" font-size="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_cache_readahead (2 samples, 0.32%)</title><rect x="1154.1" y="208" width="3.8" height="15.0" fill="rgb(205,140,32)" rx="2" ry="2" />
<text text-anchor="" x="1157.13" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="91.2" y="1712" width="1.9" height="15.0" fill="rgb(210,75,32)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deflate (1 samples, 0.16%)</title><rect x="415.9" y="128" width="1.9" height="15.0" fill="rgb(205,128,8)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1424" width="1.9" height="15.0" fill="rgb(230,160,9)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1776" width="1.9" height="15.0" fill="rgb(245,93,19)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="480" width="1.9" height="15.0" fill="rgb(235,6,25)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1088" width="1.9" height="15.0" fill="rgb(238,206,54)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="208" width="39.7" height="15.0" fill="rgb(235,184,36)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="218.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>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1504" width="1.9" height="15.0" fill="rgb(254,54,32)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2224" width="1.9" height="15.0" fill="rgb(241,153,20)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="2448" width="1.9" height="15.0" fill="rgb(229,64,7)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2256" width="1.8" height="15.0" fill="rgb(244,137,47)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="816" width="1.9" height="15.0" fill="rgb(218,67,46)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="2112" width="1.9" height="15.0" fill="rgb(206,84,31)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::possibly_sweep (1 samples, 0.16%)</title><rect x="283.8" y="128" width="1.8" height="15.0" fill="rgb(242,14,49)" rx="2" ry="2" />
<text text-anchor="" x="286.76" y="138.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1872" width="43.4" height="15.0" fill="rgb(219,193,44)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1882.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>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1840" width="1.9" height="15.0" fill="rgb(220,134,12)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (13 samples, 2.08%)</title><rect x="1133.4" y="128" width="24.5" height="15.0" fill="rgb(249,133,51)" rx="2" ry="2" />
<text text-anchor="" x="1136.36" y="138.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 (1 samples, 0.16%)</title><rect x="155.4" y="1888" width="1.9" height="15.0" fill="rgb(226,201,29)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1312" width="1.9" height="15.0" fill="rgb(231,94,32)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="976" width="1.9" height="15.0" fill="rgb(253,104,3)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1344" width="1.9" height="15.0" fill="rgb(229,150,49)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1354.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="464" width="1.9" height="15.0" fill="rgb(233,47,47)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="474.5" font-size="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.16%)</title><rect x="678.4" y="2624" width="1.8" height="15.0" fill="rgb(234,180,35)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1168" width="1.9" height="15.0" fill="rgb(236,51,23)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="1200" width="1.9" height="15.0" fill="rgb(245,43,23)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="480" width="32.1" height="15.0" fill="rgb(229,84,24)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="490.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="266.8" y="1744" width="1.9" height="15.0" fill="rgb(230,217,13)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="608" width="1.9" height="15.0" fill="rgb(233,23,52)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="618.5" font-size="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 (1 samples, 0.16%)</title><rect x="731.2" y="928" width="1.9" height="15.0" fill="rgb(209,45,24)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagecache_get_page (1 samples, 0.16%)</title><rect x="718.0" y="80" width="1.9" height="15.0" fill="rgb(210,151,10)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="2256" width="1.8" height="15.0" fill="rgb(251,185,12)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="2384" width="1.8" height="15.0" fill="rgb(232,63,43)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="2394.5" font-size="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_start (21 samples, 3.36%)</title><rect x="179.9" y="2256" width="39.7" height="15.0" fill="rgb(250,79,1)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1184" width="1.9" height="15.0" fill="rgb(243,52,48)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (14 samples, 2.24%)</title><rect x="691.6" y="816" width="26.4" height="15.0" fill="rgb(250,117,18)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (1 samples, 0.16%)</title><rect x="684.0" y="768" width="1.9" height="15.0" fill="rgb(250,225,21)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="132.7" y="1024" width="1.9" height="15.0" fill="rgb(254,143,18)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1040" width="1.9" height="15.0" fill="rgb(249,194,41)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1232" width="1.9" height="15.0" fill="rgb(211,39,13)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="1136" width="1.9" height="15.0" fill="rgb(230,131,52)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1146.5" font-size="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::find_first_set (1 samples, 0.16%)</title><rect x="383.8" y="64" width="1.9" height="15.0" fill="rgb(220,228,6)" rx="2" ry="2" />
<text text-anchor="" x="386.82" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="444.2" y="432" width="1.9" height="15.0" fill="rgb(232,189,14)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="688" width="1.9" height="15.0" fill="rgb(216,77,26)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1760" width="1.9" height="15.0" fill="rgb(250,129,30)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>radix_tree_lookup_slot (2 samples, 0.32%)</title><rect x="436.7" y="80" width="3.8" height="15.0" fill="rgb(254,167,26)" rx="2" ry="2" />
<text text-anchor="" x="439.69" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1856" width="1.9" height="15.0" fill="rgb(238,174,0)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1866.5" font-size="12" 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.48%)</title><rect x="170.5" y="2112" width="5.6" height="15.0" fill="rgb(226,56,2)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1952" width="366.3" height="15.0" fill="rgb(227,220,31)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1962.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.16%)</title><rect x="162.9" y="1648" width="1.9" height="15.0" fill="rgb(248,107,30)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1658.5" font-size="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::fill_buffer (1 samples, 0.16%)</title><rect x="30.8" y="96" width="1.9" height="15.0" fill="rgb(217,163,2)" rx="2" ry="2" />
<text text-anchor="" x="33.77" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1424" width="1.9" height="15.0" fill="rgb(240,212,46)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1434.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="27.0" y="96" width="1.9" height="15.0" fill="rgb(251,139,3)" rx="2" ry="2" />
<text text-anchor="" x="29.99" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="992" width="1.9" height="15.0" fill="rgb(229,172,34)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1002.5" font-size="12" 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.32%)</title><rect x="429.1" y="1440" width="3.8" height="15.0" fill="rgb(242,77,36)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="608" width="1.9" height="15.0" fill="rgb(249,97,48)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="618.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="364.9" y="192" width="1.9" height="15.0" fill="rgb(221,28,49)" rx="2" ry="2" />
<text text-anchor="" x="367.94" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="104.4" y="1568" width="1.9" height="15.0" fill="rgb(218,190,31)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="502.8" y="1008" width="1.9" height="15.0" fill="rgb(243,101,11)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="512" width="39.7" height="15.0" fill="rgb(240,215,46)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="522.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>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1184" width="32.1" height="15.0" fill="rgb(254,75,33)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1194.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>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2720" width="1.9" height="15.0" fill="rgb(220,219,54)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2730.5" font-size="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_start (1 samples, 0.16%)</title><rect x="1140.9" y="2944" width="1.9" height="15.0" fill="rgb(219,163,38)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="784" width="1.9" height="15.0" fill="rgb(214,112,48)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/commons/io/IOUtils:::copyLarge (1 samples, 0.16%)</title><rect x="1148.5" y="464" width="1.9" height="15.0" fill="rgb(227,96,3)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="608" width="1.9" height="15.0" fill="rgb(245,172,46)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="618.5" font-size="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::run (1 samples, 0.16%)</title><rect x="1129.6" y="176" width="1.9" height="15.0" fill="rgb(231,68,52)" rx="2" ry="2" />
<text text-anchor="" x="1132.58" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="1178.7" y="720" width="1.9" height="15.0" fill="rgb(231,68,12)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1408" width="1.9" height="15.0" fill="rgb(221,197,32)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (3 samples, 0.48%)</title><rect x="750.1" y="928" width="5.7" height="15.0" fill="rgb(211,198,43)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (4 samples, 0.64%)</title><rect x="755.8" y="784" width="7.5" height="15.0" fill="rgb(233,31,13)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="794.5" font-size="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.16%)</title><rect x="442.4" y="2656" width="1.8" height="15.0" fill="rgb(216,85,20)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="256" width="1.9" height="15.0" fill="rgb(251,210,35)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="2480" width="1.9" height="15.0" fill="rgb(212,29,15)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="160" width="1.9" height="15.0" fill="rgb(219,208,12)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="170.5" font-size="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::run (1 samples, 0.16%)</title><rect x="159.2" y="3040" width="1.8" height="15.0" fill="rgb(223,9,21)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="3050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="1488" width="1.9" height="15.0" fill="rgb(218,176,6)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="880" width="1.9" height="15.0" fill="rgb(215,15,42)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="992" width="1.9" height="15.0" fill="rgb(236,201,0)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="352" width="1.9" height="15.0" fill="rgb(211,31,45)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::selectSym (1 samples, 0.16%)</title><rect x="117.6" y="144" width="1.9" height="15.0" fill="rgb(252,214,52)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2512" width="1.8" height="15.0" fill="rgb(245,139,13)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="1776" width="1.9" height="15.0" fill="rgb(228,10,11)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1786.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="36.4" y="512" width="1.9" height="15.0" fill="rgb(229,176,20)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1760" width="1.9" height="15.0" fill="rgb(242,188,50)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1770.5" font-size="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_file_write_iter (1 samples, 0.16%)</title><rect x="414.0" y="128" width="1.9" height="15.0" fill="rgb(251,183,6)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="93.1" y="96" width="1.9" height="15.0" fill="rgb(236,170,35)" rx="2" ry="2" />
<text text-anchor="" x="96.07" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1872" width="1.9" height="15.0" fill="rgb(224,144,40)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="240" width="1.9" height="15.0" fill="rgb(237,212,1)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="1904" width="1.9" height="15.0" fill="rgb(224,118,3)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1424" width="1.8" height="15.0" fill="rgb(232,173,37)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1680" width="1.9" height="15.0" fill="rgb(210,140,21)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseLive::compute (2 samples, 0.32%)</title><rect x="368.7" y="80" width="3.8" height="15.0" fill="rgb(244,25,27)" rx="2" ry="2" />
<text text-anchor="" x="371.72" y="90.5" font-size="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.16%)</title><rect x="1135.2" y="448" width="1.9" height="15.0" fill="rgb(244,137,37)" rx="2" ry="2" />
<text text-anchor="" x="1138.25" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1008" width="1.9" height="15.0" fill="rgb(218,141,20)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="816" width="1.9" height="15.0" fill="rgb(250,90,13)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="576" width="1.8" height="15.0" fill="rgb(249,137,51)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1888" width="1.9" height="15.0" fill="rgb(238,133,21)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2352" width="1.9" height="15.0" fill="rgb(235,160,37)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1792" width="1.9" height="15.0" fill="rgb(226,25,7)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2064" width="1.9" height="15.0" fill="rgb(227,23,47)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="1584" width="1.9" height="15.0" fill="rgb(240,108,12)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Flow$FlowAnalyzer:::visitApply (1 samples, 0.16%)</title><rect x="159.2" y="304" width="1.8" height="15.0" fill="rgb(226,85,8)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="314.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="310.2" y="128" width="1.9" height="15.0" fill="rgb(224,37,17)" rx="2" ry="2" />
<text text-anchor="" x="313.19" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="304" width="1.9" height="15.0" fill="rgb(230,155,21)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="157.3" y="1216" width="1.9" height="15.0" fill="rgb(227,124,15)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1648" width="1.9" height="15.0" fill="rgb(225,18,45)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="1616" width="1.8" height="15.0" fill="rgb(218,155,18)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile (1 samples, 0.16%)</title><rect x="446.1" y="224" width="1.9" height="15.0" fill="rgb(212,0,46)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="2544" width="1.9" height="15.0" fill="rgb(252,165,45)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="912" width="1.9" height="15.0" fill="rgb(229,138,47)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1744" width="1.9" height="15.0" fill="rgb(249,138,53)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="1680" width="1.9" height="15.0" fill="rgb(228,164,47)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1690.5" font-size="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.16%)</title><rect x="157.3" y="736" width="1.9" height="15.0" fill="rgb(211,126,12)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1200" width="1.9" height="15.0" fill="rgb(232,126,40)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile (1 samples, 0.16%)</title><rect x="412.1" y="400" width="1.9" height="15.0" fill="rgb(211,203,8)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagecache_get_page (2 samples, 0.32%)</title><rect x="436.7" y="112" width="3.8" height="15.0" fill="rgb(208,30,2)" rx="2" ry="2" />
<text text-anchor="" x="439.69" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="2400" width="1.9" height="15.0" fill="rgb(250,70,24)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="685.9" y="1984" width="1.9" height="15.0" fill="rgb(234,227,13)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1994.5" font-size="12" 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.64%)</title><rect x="506.5" y="1920" width="7.6" height="15.0" fill="rgb(238,192,27)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="784" width="1.9" height="15.0" fill="rgb(209,184,22)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="160" width="1.9" height="15.0" fill="rgb(230,133,17)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="2176" width="1.9" height="15.0" fill="rgb(220,82,21)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="2160" width="1.9" height="15.0" fill="rgb(207,109,15)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="816" width="1.9" height="15.0" fill="rgb(237,2,28)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/tools/zip/ZipOutputStream:::writeDeflated (1 samples, 0.16%)</title><rect x="685.9" y="336" width="1.9" height="15.0" fill="rgb(247,52,32)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Select (1 samples, 0.16%)</title><rect x="383.8" y="96" width="1.9" height="15.0" fill="rgb(216,178,17)" rx="2" ry="2" />
<text text-anchor="" x="386.82" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1312" width="1.9" height="15.0" fill="rgb(231,226,46)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="2608" width="1.9" height="15.0" fill="rgb(209,208,36)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1952" width="1.9" height="15.0" fill="rgb(217,129,12)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="500.9" y="1328" width="1.9" height="15.0" fill="rgb(208,158,22)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1338.5" font-size="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.16%)</title><rect x="499.0" y="2368" width="1.9" height="15.0" fill="rgb(230,129,38)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1760" width="1.9" height="15.0" fill="rgb(216,179,39)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2064" width="1.9" height="15.0" fill="rgb(227,150,9)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2074.5" font-size="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_index_impl (2 samples, 0.32%)</title><rect x="36.4" y="160" width="3.8" height="15.0" fill="rgb(216,121,48)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2352" width="1.9" height="15.0" fill="rgb(212,189,3)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1024" width="1.8" height="15.0" fill="rgb(252,10,20)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1034.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="27.0" y="160" width="1.9" height="15.0" fill="rgb(208,220,46)" rx="2" ry="2" />
<text text-anchor="" x="29.99" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1264" width="1.9" height="15.0" fill="rgb(235,47,54)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2592" width="1.9" height="15.0" fill="rgb(245,85,53)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (1 samples, 0.16%)</title><rect x="1133.4" y="400" width="1.8" height="15.0" fill="rgb(244,181,48)" rx="2" ry="2" />
<text text-anchor="" x="1136.36" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="480" width="1.9" height="15.0" fill="rgb(238,194,24)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="748.2" y="1536" width="1.9" height="15.0" fill="rgb(242,96,37)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="2496" width="1.9" height="15.0" fill="rgb(224,136,23)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2506.5" font-size="12" 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.64%)</title><rect x="506.5" y="1840" width="7.6" height="15.0" fill="rgb(216,48,50)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1808" width="1.9" height="15.0" fill="rgb(213,148,4)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="400.8" y="784" width="1.9" height="15.0" fill="rgb(250,9,8)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="256" width="1.9" height="15.0" fill="rgb(245,179,39)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="368" width="1.9" height="15.0" fill="rgb(233,198,10)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2640" width="1.8" height="15.0" fill="rgb(228,223,54)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="59.1" y="256" width="1.9" height="15.0" fill="rgb(217,129,49)" rx="2" ry="2" />
<text text-anchor="" x="62.09" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="72.3" y="544" width="1.9" height="15.0" fill="rgb(206,42,14)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="554.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1616" width="9.4" height="15.0" fill="rgb(214,111,39)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>readBytes (1 samples, 0.16%)</title><rect x="444.2" y="448" width="1.9" height="15.0" fill="rgb(207,178,15)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="718.0" y="384" width="1.9" height="15.0" fill="rgb(250,13,38)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="2112" width="32.1" height="15.0" fill="rgb(205,177,48)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="2122.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>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1312" width="1.8" height="15.0" fill="rgb(228,6,50)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (194 samples, 31.04%)</title><rect x="763.3" y="2480" width="366.3" height="15.0" fill="rgb(212,181,25)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/concurrent/ExecutorPolicy$Ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1488" width="1.9" height="15.0" fill="rgb(254,58,35)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1584" width="1.9" height="15.0" fill="rgb(212,194,15)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="592" width="1.9" height="15.0" fill="rgb(240,88,1)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1872" width="1.9" height="15.0" fill="rgb(213,0,5)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="1728" width="1.9" height="15.0" fill="rgb(233,164,23)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1738.5" font-size="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.16%)</title><rect x="400.8" y="384" width="1.9" height="15.0" fill="rgb(206,24,31)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/MemberEnter:::complete (1 samples, 0.16%)</title><rect x="132.7" y="496" width="1.9" height="15.0" fill="rgb(232,17,20)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="506.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="289.4" y="176" width="1.9" height="15.0" fill="rgb(226,203,36)" rx="2" ry="2" />
<text text-anchor="" x="292.42" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1888" width="1.9" height="15.0" fill="rgb(239,191,49)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1898.5" font-size="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_bytecodes_for_block (1 samples, 0.16%)</title><rect x="280.0" y="304" width="1.9" height="15.0" fill="rgb(241,11,2)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1648" width="1.9" height="15.0" fill="rgb(211,197,10)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1658.5" font-size="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 (1 samples, 0.16%)</title><rect x="446.1" y="2640" width="1.9" height="15.0" fill="rgb(230,223,45)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="912" width="1.9" height="15.0" fill="rgb(205,227,37)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="2016" width="1.9" height="15.0" fill="rgb(253,151,5)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2026.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1248" width="1.9" height="15.0" fill="rgb(221,90,18)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1258.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1312" width="9.4" height="15.0" fill="rgb(246,204,30)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1322.5" font-size="12" 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.32%)</title><rect x="687.8" y="2208" width="3.8" height="15.0" fill="rgb(246,131,45)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1984" width="1.9" height="15.0" fill="rgb(206,67,6)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2112" width="1.9" height="15.0" fill="rgb(220,16,17)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="992" width="1.9" height="15.0" fill="rgb(246,105,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="1328" width="1.9" height="15.0" fill="rgb(217,160,33)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="704" width="1.9" height="15.0" fill="rgb(242,6,16)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IR::IR (1 samples, 0.16%)</title><rect x="17.6" y="528" width="1.8" height="15.0" fill="rgb(247,73,24)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitMethodDef (1 samples, 0.16%)</title><rect x="95.0" y="640" width="1.8" height="15.0" fill="rgb(241,88,13)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="650.5" font-size="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.16%)</title><rect x="421.6" y="272" width="1.9" height="15.0" fill="rgb(237,69,3)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="560" width="1.9" height="15.0" fill="rgb(245,37,41)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1792" width="1.9" height="15.0" fill="rgb(210,56,46)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1802.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="79.9" y="1968" width="1.8" height="15.0" fill="rgb(238,142,25)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2 samples, 0.32%)</title><rect x="1150.4" y="1200" width="3.7" height="15.0" fill="rgb(242,49,52)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="1210.5" font-size="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.16%)</title><rect x="400.8" y="688" width="1.9" height="15.0" fill="rgb(230,122,50)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="698.5" font-size="12" 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.32%)</title><rect x="176.1" y="96" width="3.8" height="15.0" fill="rgb(230,227,13)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="448" width="1.9" height="15.0" fill="rgb(215,132,11)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="1872" width="1.9" height="15.0" fill="rgb(220,159,25)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="1882.5" font-size="12" 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.32%)</title><rect x="429.1" y="1312" width="3.8" height="15.0" fill="rgb(229,101,48)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1984" width="1.8" height="15.0" fill="rgb(210,143,39)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::blockStatements (1 samples, 0.16%)</title><rect x="128.9" y="336" width="1.9" height="15.0" fill="rgb(239,24,25)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/DefaultFileSystemSnapshotter$FileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="740.7" y="192" width="1.8" height="15.0" fill="rgb(212,188,52)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="608" width="1.9" height="15.0" fill="rgb(230,12,35)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="618.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2320" width="43.4" height="15.0" fill="rgb(226,122,18)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2330.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>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="736" width="39.7" height="15.0" fill="rgb(219,197,7)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="746.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="162.9" y="1344" width="1.9" height="15.0" fill="rgb(246,156,40)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1354.5" font-size="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.16%)</title><rect x="266.8" y="2560" width="1.9" height="15.0" fill="rgb(235,170,42)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1600" width="1.9" height="15.0" fill="rgb(227,134,39)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2432" width="1.9" height="15.0" fill="rgb(251,112,19)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="1696" width="1.9" height="15.0" fill="rgb(205,222,28)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassWriter:::writeMethod (1 samples, 0.16%)</title><rect x="130.8" y="96" width="1.9" height="15.0" fill="rgb(205,166,5)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="106.5" font-size="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-85641/85650 (1 samples, 0.16%)</title><rect x="98.7" y="368" width="1.9" height="15.0" fill="rgb(226,39,28)" rx="2" ry="2" />
<text text-anchor="" x="101.74" y="378.5" font-size="12" 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.48%)</title><rect x="170.5" y="592" width="5.6" height="15.0" fill="rgb(218,126,10)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="602.5" font-size="12" 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.64%)</title><rect x="506.5" y="2320" width="7.6" height="15.0" fill="rgb(210,85,7)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2330.5" font-size="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 (23 samples, 3.68%)</title><rect x="455.6" y="784" width="43.4" height="15.0" fill="rgb(226,164,18)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JVM_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="2096" width="1.9" height="15.0" fill="rgb(235,168,32)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1744" width="1.9" height="15.0" fill="rgb(240,93,37)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="38.3" y="672" width="1.9" height="15.0" fill="rgb(233,128,21)" rx="2" ry="2" />
<text text-anchor="" x="41.32" y="682.5" font-size="12" 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.48%)</title><rect x="170.5" y="1296" width="5.6" height="15.0" fill="rgb(235,31,48)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="928" width="1.9" height="15.0" fill="rgb(214,106,0)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1280" width="1.9" height="15.0" fill="rgb(225,139,33)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1488" width="1.9" height="15.0" fill="rgb(251,143,38)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="2656" width="1.9" height="15.0" fill="rgb(253,208,28)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="727.4" y="480" width="1.9" height="15.0" fill="rgb(238,161,51)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="680.2" y="976" width="1.9" height="15.0" fill="rgb(223,76,4)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="2064" width="1.8" height="15.0" fill="rgb(226,178,36)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1904" width="1.9" height="15.0" fill="rgb(247,109,45)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (23 samples, 3.68%)</title><rect x="455.6" y="992" width="43.4" height="15.0" fill="rgb(226,158,18)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1744" width="1.8" height="15.0" fill="rgb(248,8,18)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (198 samples, 31.68%)</title><rect x="755.8" y="192" width="373.8" height="15.0" fill="rgb(226,200,44)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/copy/DefaultFileCopy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="1760" width="164.3" height="15.0" fill="rgb(253,221,45)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1770.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>ext4_iget (1 samples, 0.16%)</title><rect x="719.9" y="96" width="1.9" height="15.0" fill="rgb(245,22,51)" rx="2" ry="2" />
<text text-anchor="" x="722.89" y="106.5" font-size="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_start (1 samples, 0.16%)</title><rect x="106.3" y="2752" width="1.9" height="15.0" fill="rgb(228,74,54)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="2762.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1952" width="9.4" height="15.0" fill="rgb(223,29,36)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1962.5" font-size="12" 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.80%)</title><rect x="1163.6" y="2560" width="9.4" height="15.0" fill="rgb(205,173,9)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1904" width="366.3" height="15.0" fill="rgb(215,226,22)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1914.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>JavaCalls::call_virtual (1 samples, 0.16%)</title><rect x="155.4" y="1952" width="1.9" height="15.0" fill="rgb(242,23,11)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/commons/io/IOUtils:::copyLarge (198 samples, 31.68%)</title><rect x="755.8" y="160" width="373.8" height="15.0" fill="rgb(241,228,22)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/apache/commons/io/IOUtils:::copyLarge</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="544" width="1.9" height="15.0" fill="rgb(220,36,38)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1888" width="1.9" height="15.0" fill="rgb(213,195,30)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="720" width="1.9" height="15.0" fill="rgb(231,119,49)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="730.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="387.6" y="128" width="1.9" height="15.0" fill="rgb(237,94,54)" rx="2" ry="2" />
<text text-anchor="" x="390.60" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1520" width="1.9" height="15.0" fill="rgb(205,60,6)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1530.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1968" width="15.1" height="15.0" fill="rgb(229,99,43)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="832" width="1.9" height="15.0" fill="rgb(211,182,24)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.16%)</title><rect x="438.6" y="176" width="1.9" height="15.0" fill="rgb(207,197,42)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="363.1" y="112" width="1.8" height="15.0" fill="rgb(241,17,20)" rx="2" ry="2" />
<text text-anchor="" x="366.06" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="157.3" y="224" width="1.9" height="15.0" fill="rgb(237,204,11)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (2 samples, 0.32%)</title><rect x="687.8" y="960" width="3.8" height="15.0" fill="rgb(253,33,23)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="970.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1840" width="1.9" height="15.0" fill="rgb(214,194,42)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="2368" width="1.8" height="15.0" fill="rgb(240,97,8)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="2378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="656" width="1.8" height="15.0" fill="rgb(244,216,41)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1520" width="1.8" height="15.0" fill="rgb(237,39,3)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1530.5" font-size="12" 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.32%)</title><rect x="176.1" y="1904" width="3.8" height="15.0" fill="rgb(206,212,43)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="496" width="1.9" height="15.0" fill="rgb(207,139,14)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1648" width="1.9" height="15.0" fill="rgb(205,219,27)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="1968" width="1.9" height="15.0" fill="rgb(242,199,50)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1978.5" font-size="12" 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.80%)</title><rect x="1163.6" y="2096" width="9.4" height="15.0" fill="rgb(226,215,20)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2512" width="1.8" height="15.0" fill="rgb(210,41,38)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1696" width="1.9" height="15.0" fill="rgb(223,80,22)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="560" width="39.7" height="15.0" fill="rgb(251,88,5)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="570.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>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="784" width="1.9" height="15.0" fill="rgb(234,83,39)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="2208" width="1.9" height="15.0" fill="rgb(252,138,6)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2218.5" font-size="12" 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.32%)</title><rect x="176.1" y="304" width="3.8" height="15.0" fill="rgb(233,152,17)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="2368" width="1.9" height="15.0" fill="rgb(209,31,31)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="1232" width="1.8" height="15.0" fill="rgb(209,195,6)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1242.5" font-size="12" 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.32%)</title><rect x="176.1" y="1728" width="3.8" height="15.0" fill="rgb(244,109,3)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="1148.5" y="3008" width="1.9" height="15.0" fill="rgb(242,132,20)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="3018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="592" width="1.9" height="15.0" fill="rgb(245,172,1)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="352" width="1.9" height="15.0" fill="rgb(214,133,17)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="1312" width="1.9" height="15.0" fill="rgb(207,224,46)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1322.5" font-size="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.16%)</title><rect x="500.9" y="272" width="1.9" height="15.0" fill="rgb(229,11,15)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="1984" width="1.9" height="15.0" fill="rgb(210,196,41)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="912" width="39.7" height="15.0" fill="rgb(228,152,15)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="922.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>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="1472" width="1.9" height="15.0" fill="rgb(236,94,26)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="1482.5" font-size="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-85641/85652 (1 samples, 0.16%)</title><rect x="1174.9" y="176" width="1.9" height="15.0" fill="rgb(240,68,34)" rx="2" ry="2" />
<text text-anchor="" x="1177.90" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="2096" width="39.7" height="15.0" fill="rgb(246,88,33)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2106.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>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="1328" width="164.3" height="15.0" fill="rgb(248,83,10)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1338.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.16%)</title><rect x="115.7" y="576" width="1.9" height="15.0" fill="rgb(253,96,45)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1376" width="1.9" height="15.0" fill="rgb(254,219,26)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1952" width="1.9" height="15.0" fill="rgb(241,35,4)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="1140.9" y="2960" width="1.9" height="15.0" fill="rgb(229,125,29)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2970.5" font-size="12" 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.32%)</title><rect x="429.1" y="1520" width="3.8" height="15.0" fill="rgb(240,68,16)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="72.3" y="560" width="1.9" height="15.0" fill="rgb(249,4,19)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="2352" width="1.9" height="15.0" fill="rgb(213,3,3)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="928" width="1.9" height="15.0" fill="rgb(249,181,13)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="938.5" font-size="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 (1 samples, 0.16%)</title><rect x="153.5" y="400" width="1.9" height="15.0" fill="rgb(220,128,46)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="87.4" y="2496" width="1.9" height="15.0" fill="rgb(244,133,17)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="2000" width="1.9" height="15.0" fill="rgb(207,128,17)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="912" width="1.9" height="15.0" fill="rgb(212,229,40)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="922.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1344" width="26.4" height="15.0" fill="rgb(241,24,3)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1354.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>Lorg/gradle/internal/logging/console/BuildLogLevelFilterRenderer:::onOutput (1 samples, 0.16%)</title><rect x="155.4" y="112" width="1.9" height="15.0" fill="rgb(210,186,16)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="2512" width="1.9" height="15.0" fill="rgb(210,103,36)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="464" width="1.9" height="15.0" fill="rgb(253,194,19)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2272" width="1.9" height="15.0" fill="rgb(215,202,4)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="153.5" y="800" width="1.9" height="15.0" fill="rgb(252,186,10)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/RandomAccessFile:::writeBytes (1 samples, 0.16%)</title><rect x="733.1" y="256" width="1.9" height="15.0" fill="rgb(234,190,24)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="266.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1504" width="9.4" height="15.0" fill="rgb(249,85,54)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="736" width="1.9" height="15.0" fill="rgb(212,111,16)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="992" width="1.9" height="15.0" fill="rgb(220,106,48)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="560" width="1.8" height="15.0" fill="rgb(226,222,27)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="896" width="39.7" height="15.0" fill="rgb(220,4,30)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="906.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>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="704" width="1.9" height="15.0" fill="rgb(231,158,43)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="714.5" font-size="12" 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.64%)</title><rect x="506.5" y="2112" width="7.6" height="15.0" fill="rgb(240,133,13)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2384" width="1.9" height="15.0" fill="rgb(254,3,22)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1312" width="1.8" height="15.0" fill="rgb(234,87,1)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="410.3" y="1520" width="1.8" height="15.0" fill="rgb(209,44,50)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1248" width="1.8" height="15.0" fill="rgb(207,29,9)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="704" width="1.9" height="15.0" fill="rgb(206,111,12)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1248" width="1.9" height="15.0" fill="rgb(232,85,31)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1258.5" font-size="12" 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.64%)</title><rect x="755.8" y="1888" width="7.5" height="15.0" fill="rgb(214,226,6)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="512" width="1.9" height="15.0" fill="rgb(231,211,16)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="421.6" y="2512" width="1.9" height="15.0" fill="rgb(221,9,50)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="2000" width="1.9" height="15.0" fill="rgb(232,192,1)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2010.5" font-size="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.16%)</title><rect x="436.7" y="336" width="1.9" height="15.0" fill="rgb(250,112,29)" rx="2" ry="2" />
<text text-anchor="" x="439.69" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="576" width="1.9" height="15.0" fill="rgb(220,206,28)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="2288" width="1.9" height="15.0" fill="rgb(239,180,53)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1120" width="1.9" height="15.0" fill="rgb(239,84,44)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/TreeScanner:::visitExec (1 samples, 0.16%)</title><rect x="159.2" y="480" width="1.8" height="15.0" fill="rgb(214,76,4)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="2128" width="1.9" height="15.0" fill="rgb(219,211,21)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2138.5" font-size="12" 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.48%)</title><rect x="750.1" y="1328" width="5.7" height="15.0" fill="rgb(228,189,41)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1338.5" font-size="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.16%)</title><rect x="499.0" y="2320" width="1.9" height="15.0" fill="rgb(208,206,9)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2330.5" font-size="12" 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.32%)</title><rect x="1150.4" y="672" width="3.7" height="15.0" fill="rgb(229,208,15)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="1186.2" y="1456" width="1.9" height="15.0" fill="rgb(224,227,54)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="1616" width="1.9" height="15.0" fill="rgb(213,80,47)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="688" width="1.8" height="15.0" fill="rgb(225,104,19)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::snapshot (1 samples, 0.16%)</title><rect x="423.5" y="160" width="1.9" height="15.0" fill="rgb(228,105,39)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="425.4" y="704" width="1.8" height="15.0" fill="rgb(220,19,7)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::variableDeclaratorRest (1 samples, 0.16%)</title><rect x="128.9" y="288" width="1.9" height="15.0" fill="rgb(240,161,41)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="298.5" font-size="12" 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.64%)</title><rect x="506.5" y="1248" width="7.6" height="15.0" fill="rgb(206,197,1)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1424" width="1.9" height="15.0" fill="rgb(247,184,23)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (4 samples, 0.64%)</title><rect x="755.8" y="2480" width="7.5" height="15.0" fill="rgb(240,147,18)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1584" width="1.9" height="15.0" fill="rgb(254,124,53)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1312" width="1.9" height="15.0" fill="rgb(217,108,48)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="2224" width="1.9" height="15.0" fill="rgb(245,211,28)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1808" width="1.9" height="15.0" fill="rgb(254,21,12)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1648" width="1.9" height="15.0" fill="rgb(205,32,13)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1658.5" font-size="12" 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.64%)</title><rect x="755.8" y="1504" width="7.5" height="15.0" fill="rgb(237,50,17)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1514.5" font-size="12" 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.32%)</title><rect x="164.8" y="272" width="3.8" height="15.0" fill="rgb(218,21,48)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="720" width="1.9" height="15.0" fill="rgb(245,211,1)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1216" width="1.9" height="15.0" fill="rgb(231,175,24)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1744" width="1.9" height="15.0" fill="rgb(220,70,32)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="2320" width="1.9" height="15.0" fill="rgb(233,194,28)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2330.5" font-size="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 (1 samples, 0.16%)</title><rect x="744.4" y="2240" width="1.9" height="15.0" fill="rgb(224,55,4)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1760" width="1.9" height="15.0" fill="rgb(244,22,27)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2368" width="1.8" height="15.0" fill="rgb(230,186,38)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2378.5" font-size="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.16%)</title><rect x="91.2" y="2544" width="1.9" height="15.0" fill="rgb(212,164,44)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2554.5" font-size="12" 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.48%)</title><rect x="170.5" y="496" width="5.6" height="15.0" fill="rgb(207,216,29)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1824" width="1.9" height="15.0" fill="rgb(245,18,45)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1834.5" font-size="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_mpage_readpages (1 samples, 0.16%)</title><rect x="421.6" y="96" width="1.9" height="15.0" fill="rgb(238,127,25)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="106.5" font-size="12" 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.48%)</title><rect x="750.1" y="2528" width="5.7" height="15.0" fill="rgb(208,128,18)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="2538.5" font-size="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.16%)</title><rect x="81.7" y="2048" width="1.9" height="15.0" fill="rgb(237,55,38)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2048" width="1.9" height="15.0" fill="rgb(213,119,36)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2058.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="142.2" y="224" width="1.8" height="15.0" fill="rgb(208,213,44)" rx="2" ry="2" />
<text text-anchor="" x="145.16" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribStat (1 samples, 0.16%)</title><rect x="157.3" y="256" width="1.9" height="15.0" fill="rgb(254,133,47)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="266.5" font-size="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 (14 samples, 2.24%)</title><rect x="691.6" y="720" width="26.4" height="15.0" fill="rgb(206,31,47)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >J..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="721.8" y="1312" width="1.9" height="15.0" fill="rgb(206,99,1)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="816" width="1.9" height="15.0" fill="rgb(236,185,8)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.16%)</title><rect x="725.6" y="160" width="1.8" height="15.0" fill="rgb(216,218,25)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="266.8" y="240" width="1.9" height="15.0" fill="rgb(223,58,47)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1872" width="1.9" height="15.0" fill="rgb(216,74,3)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1696" width="1.9" height="15.0" fill="rgb(252,216,40)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="528" width="366.3" height="15.0" fill="rgb(241,37,10)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.32%)</title><rect x="687.8" y="1728" width="3.8" height="15.0" fill="rgb(206,100,36)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="397.0" y="272" width="1.9" height="15.0" fill="rgb(252,32,50)" rx="2" ry="2" />
<text text-anchor="" x="400.04" y="282.5" font-size="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.16%)</title><rect x="117.6" y="2608" width="1.9" height="15.0" fill="rgb(249,7,44)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="432" width="1.9" height="15.0" fill="rgb(251,24,22)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="1472" width="1.9" height="15.0" fill="rgb(215,92,31)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="121.4" y="256" width="1.9" height="15.0" fill="rgb(205,31,13)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="95.0" y="352" width="1.8" height="15.0" fill="rgb(247,102,40)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1568" width="1.9" height="15.0" fill="rgb(220,36,42)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="2464" width="1.9" height="15.0" fill="rgb(213,57,36)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="2474.5" font-size="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.16%)</title><rect x="1178.7" y="496" width="1.9" height="15.0" fill="rgb(205,123,11)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="423.5" y="800" width="1.9" height="15.0" fill="rgb(221,151,27)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="912" width="1.8" height="15.0" fill="rgb(229,62,31)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="880" width="1.9" height="15.0" fill="rgb(241,34,43)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="768" width="1.8" height="15.0" fill="rgb(224,128,25)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="130.8" y="544" width="1.9" height="15.0" fill="rgb(253,218,9)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="554.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1312" width="43.4" height="15.0" fill="rgb(225,68,54)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1322.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>Lsun/security/provider/ByteArrayAccess:::b2iLittle64 (6 samples, 0.96%)</title><rect x="164.8" y="64" width="11.3" height="15.0" fill="rgb(207,65,53)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="640" width="1.8" height="15.0" fill="rgb(253,19,47)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1104" width="1.9" height="15.0" fill="rgb(243,82,44)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2608" width="1.9" height="15.0" fill="rgb(224,206,0)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (4 samples, 0.64%)</title><rect x="755.8" y="304" width="7.5" height="15.0" fill="rgb(216,44,9)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1664" width="1.9" height="15.0" fill="rgb(234,81,43)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1674.5" font-size="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::run (3 samples, 0.48%)</title><rect x="64.8" y="240" width="5.6" height="15.0" fill="rgb(208,22,51)" rx="2" ry="2" />
<text text-anchor="" x="67.75" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1904" width="1.9" height="15.0" fill="rgb(238,214,16)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1456" width="1.9" height="15.0" fill="rgb(224,79,33)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (2 samples, 0.32%)</title><rect x="176.1" y="2272" width="3.8" height="15.0" fill="rgb(227,4,23)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="2282.5" font-size="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 (194 samples, 31.04%)</title><rect x="763.3" y="752" width="366.3" height="15.0" fill="rgb(220,31,25)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Reflection::invoke_method</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="176" width="1.9" height="15.0" fill="rgb(232,55,54)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="720" width="1.9" height="15.0" fill="rgb(215,145,25)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="272" width="1.8" height="15.0" fill="rgb(250,43,33)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="282.5" font-size="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.16%)</title><rect x="402.7" y="192" width="1.9" height="15.0" fill="rgb(229,214,6)" rx="2" ry="2" />
<text text-anchor="" x="405.70" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="2160" width="1.9" height="15.0" fill="rgb(237,153,18)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="240" width="1.9" height="15.0" fill="rgb(235,29,9)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2384" width="1.9" height="15.0" fill="rgb(229,165,54)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (3 samples, 0.48%)</title><rect x="735.0" y="288" width="5.7" height="15.0" fill="rgb(234,10,37)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1696" width="1.9" height="15.0" fill="rgb(208,8,7)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="359.3" y="256" width="1.9" height="15.0" fill="rgb(229,90,16)" rx="2" ry="2" />
<text text-anchor="" x="362.28" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1792" width="1.9" height="15.0" fill="rgb(222,170,2)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="624" width="1.9" height="15.0" fill="rgb(235,224,46)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="208" width="1.9" height="15.0" fill="rgb(254,40,13)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="656" width="1.8" height="15.0" fill="rgb(230,51,50)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="2224" width="1.8" height="15.0" fill="rgb(245,107,45)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.16%)</title><rect x="718.0" y="160" width="1.9" height="15.0" fill="rgb(209,219,32)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1376" width="1.9" height="15.0" fill="rgb(222,90,6)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1792" width="1.9" height="15.0" fill="rgb(209,205,49)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1802.5" font-size="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::Code_Gen (1 samples, 0.16%)</title><rect x="385.7" y="112" width="1.9" height="15.0" fill="rgb(229,15,43)" rx="2" ry="2" />
<text text-anchor="" x="388.71" y="122.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1840" width="26.4" height="15.0" fill="rgb(251,222,50)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1850.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>Lcom/sun/tools/javac/comp/Attr:::visitIf (1 samples, 0.16%)</title><rect x="115.7" y="336" width="1.9" height="15.0" fill="rgb(246,52,12)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="444.2" y="176" width="1.9" height="15.0" fill="rgb(212,80,48)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="368" width="1.8" height="15.0" fill="rgb(251,31,3)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="378.5" font-size="12" 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.32%)</title><rect x="164.8" y="1184" width="3.8" height="15.0" fill="rgb(209,8,46)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1194.5" font-size="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::run (1 samples, 0.16%)</title><rect x="748.2" y="2640" width="1.9" height="15.0" fill="rgb(243,126,32)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1808" width="1.9" height="15.0" fill="rgb(213,26,10)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="2144" width="1.9" height="15.0" fill="rgb(230,210,43)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="2154.5" font-size="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.16%)</title><rect x="719.9" y="160" width="1.9" height="15.0" fill="rgb(248,164,40)" rx="2" ry="2" />
<text text-anchor="" x="722.89" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="2112" width="1.9" height="15.0" fill="rgb(216,192,45)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="2122.5" font-size="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::run (1 samples, 0.16%)</title><rect x="51.5" y="208" width="1.9" height="15.0" fill="rgb(233,186,41)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="2000" width="1.9" height="15.0" fill="rgb(230,91,42)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="2576" width="1.9" height="15.0" fill="rgb(232,0,42)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2304" width="1.9" height="15.0" fill="rgb(217,190,16)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1584" width="1.8" height="15.0" fill="rgb(240,37,43)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::compute_local_live_sets (1 samples, 0.16%)</title><rect x="397.0" y="80" width="1.9" height="15.0" fill="rgb(238,87,18)" rx="2" ry="2" />
<text text-anchor="" x="400.04" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="720" width="1.9" height="15.0" fill="rgb(226,22,42)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="2256" width="1.9" height="15.0" fill="rgb(249,137,16)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="800" width="1.9" height="15.0" fill="rgb(233,45,24)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="1360" width="1.8" height="15.0" fill="rgb(221,134,11)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="448.0" y="288" width="1.9" height="15.0" fill="rgb(252,206,34)" rx="2" ry="2" />
<text text-anchor="" x="451.02" y="298.5" font-size="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_start (1 samples, 0.16%)</title><rect x="74.2" y="496" width="1.9" height="15.0" fill="rgb(213,183,49)" rx="2" ry="2" />
<text text-anchor="" x="77.19" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="1648" width="1.9" height="15.0" fill="rgb(241,134,31)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1648" width="1.9" height="15.0" fill="rgb(247,205,43)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1056" width="1.9" height="15.0" fill="rgb(234,72,19)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1066.5" font-size="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.16%)</title><rect x="125.2" y="2736" width="1.9" height="15.0" fill="rgb(246,96,20)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2746.5" font-size="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.16%)</title><rect x="744.4" y="2192" width="1.9" height="15.0" fill="rgb(221,225,4)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="2202.5" font-size="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_cache_readahead (1 samples, 0.16%)</title><rect x="444.2" y="272" width="1.9" height="15.0" fill="rgb(237,64,13)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="282.5" font-size="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_start (1 samples, 0.16%)</title><rect x="266.8" y="2640" width="1.9" height="15.0" fill="rgb(249,28,53)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2650.5" font-size="12" 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.32%)</title><rect x="164.8" y="1424" width="3.8" height="15.0" fill="rgb(230,130,18)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="896" width="1.9" height="15.0" fill="rgb(234,112,30)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="906.5" font-size="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.16%)</title><rect x="1180.6" y="896" width="1.8" height="15.0" fill="rgb(218,208,42)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1072" width="1.9" height="15.0" fill="rgb(251,93,20)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="768" width="1.9" height="15.0" fill="rgb(228,34,54)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="778.5" font-size="12" 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.32%)</title><rect x="687.8" y="1120" width="3.8" height="15.0" fill="rgb(219,169,46)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1130.5" font-size="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_bytecodes_for_block (2 samples, 0.32%)</title><rect x="36.4" y="272" width="3.8" height="15.0" fill="rgb(229,159,33)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="224" width="1.9" height="15.0" fill="rgb(209,102,45)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1216" width="1.9" height="15.0" fill="rgb(247,225,52)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1226.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="678.4" y="2656" width="1.8" height="15.0" fill="rgb(250,155,25)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1072" width="1.9" height="15.0" fill="rgb(223,180,20)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="2208" width="1.8" height="15.0" fill="rgb(205,137,32)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="2640" width="1.9" height="15.0" fill="rgb(225,192,46)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::readClassFile (1 samples, 0.16%)</title><rect x="123.3" y="128" width="1.9" height="15.0" fill="rgb(208,93,44)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="446.1" y="320" width="1.9" height="15.0" fill="rgb(234,147,16)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1120" width="1.9" height="15.0" fill="rgb(218,30,6)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1968" width="366.3" height="15.0" fill="rgb(206,147,43)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1978.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>Ljava/io/File:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="748.2" y="112" width="1.9" height="15.0" fill="rgb(238,154,25)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1312" width="1.9" height="15.0" fill="rgb(216,160,32)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1322.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1856" width="43.4" height="15.0" fill="rgb(252,112,12)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1866.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>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1712" width="1.9" height="15.0" fill="rgb(249,224,23)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1152" width="1.8" height="15.0" fill="rgb(241,175,3)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1162.5" font-size="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::run (1 samples, 0.16%)</title><rect x="419.7" y="352" width="1.9" height="15.0" fill="rgb(230,150,20)" rx="2" ry="2" />
<text text-anchor="" x="422.70" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.16%)</title><rect x="680.2" y="224" width="1.9" height="15.0" fill="rgb(226,191,28)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="2416" width="164.3" height="15.0" fill="rgb(209,138,16)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2426.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>java-85641/85649 (1 samples, 0.16%)</title><rect x="42.1" y="272" width="1.9" height="15.0" fill="rgb(252,168,10)" rx="2" ry="2" />
<text text-anchor="" x="45.10" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="1424" width="1.8" height="15.0" fill="rgb(246,225,30)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1434.5" font-size="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.16%)</title><rect x="678.4" y="2576" width="1.8" height="15.0" fill="rgb(226,220,1)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1232" width="1.8" height="15.0" fill="rgb(253,107,0)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1242.5" font-size="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::run (21 samples, 3.36%)</title><rect x="179.9" y="2240" width="39.7" height="15.0" fill="rgb(225,33,16)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Jav..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="800" width="1.9" height="15.0" fill="rgb(217,4,45)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="810.5" font-size="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.16%)</title><rect x="108.2" y="2480" width="1.9" height="15.0" fill="rgb(248,163,38)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="496" width="366.3" height="15.0" fill="rgb(252,8,40)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.32%)</title><rect x="1150.4" y="656" width="3.7" height="15.0" fill="rgb(248,89,42)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="666.5" font-size="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 (1 samples, 0.16%)</title><rect x="733.1" y="2768" width="1.9" height="15.0" fill="rgb(243,91,10)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1584" width="1.9" height="15.0" fill="rgb(234,126,37)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1594.5" font-size="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::invoke (1 samples, 0.16%)</title><rect x="406.5" y="272" width="1.9" height="15.0" fill="rgb(235,183,3)" rx="2" ry="2" />
<text text-anchor="" x="409.48" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="496" width="1.8" height="15.0" fill="rgb(242,10,43)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="506.5" font-size="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.16%)</title><rect x="436.7" y="400" width="1.9" height="15.0" fill="rgb(231,41,22)" rx="2" ry="2" />
<text text-anchor="" x="439.69" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/DefaultFileSystemSnapshotter$FileVisitorImpl:::visitFile (2 samples, 0.32%)</title><rect x="176.1" y="160" width="3.8" height="15.0" fill="rgb(228,40,28)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2256" width="1.9" height="15.0" fill="rgb(205,52,46)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="432.9" y="160" width="1.9" height="15.0" fill="rgb(250,77,28)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="736" width="1.9" height="15.0" fill="rgb(219,59,40)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2336" width="1.9" height="15.0" fill="rgb(214,114,32)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1728" width="1.9" height="15.0" fill="rgb(234,126,2)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="896" width="1.8" height="15.0" fill="rgb(254,226,0)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="906.5" font-size="12" 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.48%)</title><rect x="170.5" y="576" width="5.6" height="15.0" fill="rgb(220,158,51)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="586.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="308.3" y="256" width="1.9" height="15.0" fill="rgb(252,210,37)" rx="2" ry="2" />
<text text-anchor="" x="311.30" y="266.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1552" width="15.1" height="15.0" fill="rgb(251,199,44)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (4 samples, 0.64%)</title><rect x="755.8" y="1792" width="7.5" height="15.0" fill="rgb(208,195,47)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1802.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1712" width="43.4" height="15.0" fill="rgb(207,175,43)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1722.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>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="304" width="1.9" height="15.0" fill="rgb(225,188,36)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="314.5" font-size="12" 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.32%)</title><rect x="429.1" y="960" width="3.8" height="15.0" fill="rgb(213,62,44)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="970.5" font-size="12" 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.32%)</title><rect x="164.8" y="1296" width="3.8" height="15.0" fill="rgb(205,146,38)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1952" width="1.9" height="15.0" fill="rgb(218,70,32)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (1 samples, 0.16%)</title><rect x="412.1" y="448" width="1.9" height="15.0" fill="rgb(222,54,3)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="816" width="1.9" height="15.0" fill="rgb(224,219,40)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="752" width="1.9" height="15.0" fill="rgb(227,6,23)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2176" width="1.9" height="15.0" fill="rgb(236,89,29)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="960" width="1.8" height="15.0" fill="rgb(229,160,13)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="970.5" font-size="12" 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.64%)</title><rect x="755.8" y="2064" width="7.5" height="15.0" fill="rgb(235,131,45)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="138.4" y="288" width="1.9" height="15.0" fill="rgb(212,203,20)" rx="2" ry="2" />
<text text-anchor="" x="141.38" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="304" width="1.9" height="15.0" fill="rgb(247,78,46)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="2000" width="1.9" height="15.0" fill="rgb(226,103,21)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="944" width="1.9" height="15.0" fill="rgb(205,73,7)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="954.5" font-size="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::run (1 samples, 0.16%)</title><rect x="104.4" y="2672" width="1.9" height="15.0" fill="rgb(242,144,34)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="1120" width="1.9" height="15.0" fill="rgb(205,19,18)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="2320" width="1.9" height="15.0" fill="rgb(224,33,48)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1696" width="1.9" height="15.0" fill="rgb(236,88,17)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="2304" width="1.9" height="15.0" fill="rgb(241,9,28)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribArgs (1 samples, 0.16%)</title><rect x="123.3" y="368" width="1.9" height="15.0" fill="rgb(223,71,19)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="378.5" font-size="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_OpVisitState::do_input (1 samples, 0.16%)</title><rect x="102.5" y="80" width="1.9" height="15.0" fill="rgb(206,194,22)" rx="2" ry="2" />
<text text-anchor="" x="105.51" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1472" width="1.9" height="15.0" fill="rgb(239,76,42)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="2256" width="1.9" height="15.0" fill="rgb(230,37,18)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1696" width="1.9" height="15.0" fill="rgb(226,38,22)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1706.5" font-size="12" 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.64%)</title><rect x="506.5" y="432" width="7.6" height="15.0" fill="rgb(227,43,42)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="2032" width="1.9" height="15.0" fill="rgb(225,88,17)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2042.5" font-size="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_start (1 samples, 0.16%)</title><rect x="432.9" y="2672" width="1.9" height="15.0" fill="rgb(244,223,40)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.16%)</title><rect x="414.0" y="144" width="1.9" height="15.0" fill="rgb(248,50,3)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1008" width="1.9" height="15.0" fill="rgb(216,214,47)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="992" width="1.8" height="15.0" fill="rgb(243,70,2)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1056" width="1.9" height="15.0" fill="rgb(219,96,40)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1066.5" font-size="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 (1 samples, 0.16%)</title><rect x="449.9" y="112" width="1.9" height="15.0" fill="rgb(243,138,35)" rx="2" ry="2" />
<text text-anchor="" x="452.90" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="736" width="1.9" height="15.0" fill="rgb(246,202,43)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="2112" width="1.9" height="15.0" fill="rgb(247,185,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="1664" width="1.9" height="15.0" fill="rgb(208,116,36)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="1674.5" font-size="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::run (1 samples, 0.16%)</title><rect x="108.2" y="2544" width="1.9" height="15.0" fill="rgb(207,107,16)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="720" width="1.8" height="15.0" fill="rgb(232,205,29)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="2432" width="1.9" height="15.0" fill="rgb(233,172,21)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1040" width="1.9" height="15.0" fill="rgb(251,87,0)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="672" width="1.9" height="15.0" fill="rgb(207,224,37)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="27.0" y="208" width="1.9" height="15.0" fill="rgb(230,80,3)" rx="2" ry="2" />
<text text-anchor="" x="29.99" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="704" width="1.9" height="15.0" fill="rgb(228,24,41)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1664" width="1.9" height="15.0" fill="rgb(224,211,44)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::complete (1 samples, 0.16%)</title><rect x="132.7" y="208" width="1.9" height="15.0" fill="rgb(248,76,15)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1536" width="1.9" height="15.0" fill="rgb(205,165,45)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="976" width="1.9" height="15.0" fill="rgb(246,198,17)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="986.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="1137.1" y="464" width="1.9" height="15.0" fill="rgb(233,210,32)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="2288" width="1.9" height="15.0" fill="rgb(214,18,16)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="1792" width="1.8" height="15.0" fill="rgb(254,95,41)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="752" width="1.9" height="15.0" fill="rgb(229,95,27)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="160" width="1.9" height="15.0" fill="rgb(252,172,53)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="2000" width="1.9" height="15.0" fill="rgb(226,58,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1568" width="1.9" height="15.0" fill="rgb(206,52,30)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1120" width="1.9" height="15.0" fill="rgb(240,101,13)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1424" width="1.9" height="15.0" fill="rgb(248,100,41)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="736" width="1.8" height="15.0" fill="rgb(207,67,30)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="746.5" font-size="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 (2 samples, 0.32%)</title><rect x="1133.4" y="336" width="3.7" height="15.0" fill="rgb(254,163,18)" rx="2" ry="2" />
<text text-anchor="" x="1136.36" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (4 samples, 0.64%)</title><rect x="506.5" y="224" width="7.6" height="15.0" fill="rgb(220,22,26)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="280.0" y="624" width="1.9" height="15.0" fill="rgb(239,164,34)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2000" width="1.9" height="15.0" fill="rgb(224,183,16)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="134.6" y="752" width="1.9" height="15.0" fill="rgb(210,39,53)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1664" width="1.9" height="15.0" fill="rgb(206,160,21)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1674.5" font-size="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_SetIntField (1 samples, 0.16%)</title><rect x="414.0" y="240" width="1.9" height="15.0" fill="rgb(222,7,45)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="250.5" font-size="12" 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.32%)</title><rect x="1150.4" y="832" width="3.7" height="15.0" fill="rgb(247,39,16)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="608" width="1.9" height="15.0" fill="rgb(249,6,5)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (2 samples, 0.32%)</title><rect x="429.1" y="240" width="3.8" height="15.0" fill="rgb(219,85,27)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1632" width="1.9" height="15.0" fill="rgb(235,186,4)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1642.5" font-size="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-85641/85645 (1 samples, 0.16%)</title><rect x="1161.7" y="224" width="1.9" height="15.0" fill="rgb(227,70,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.68" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="78.0" y="624" width="1.9" height="15.0" fill="rgb(218,174,44)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1696" width="1.9" height="15.0" fill="rgb(246,162,38)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1706.5" font-size="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 (1 samples, 0.16%)</title><rect x="415.9" y="2672" width="1.9" height="15.0" fill="rgb(225,62,11)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="2320" width="1.9" height="15.0" fill="rgb(224,183,10)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="848" width="1.8" height="15.0" fill="rgb(224,98,10)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="2352" width="1.9" height="15.0" fill="rgb(232,132,49)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="2362.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="363.1" y="160" width="1.8" height="15.0" fill="rgb(227,19,27)" rx="2" ry="2" />
<text text-anchor="" x="366.06" y="170.5" font-size="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.16%)</title><rect x="278.1" y="528" width="1.9" height="15.0" fill="rgb(214,88,35)" rx="2" ry="2" />
<text text-anchor="" x="281.10" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="338.5" y="96" width="1.9" height="15.0" fill="rgb(216,74,22)" rx="2" ry="2" />
<text text-anchor="" x="341.51" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="2608" width="1.9" height="15.0" fill="rgb(253,104,54)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2 samples, 0.32%)</title><rect x="429.1" y="1152" width="3.8" height="15.0" fill="rgb(226,43,48)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="2256" width="1.9" height="15.0" fill="rgb(208,42,54)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="528" width="164.3" height="15.0" fill="rgb(233,198,0)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="538.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>start_thread (1 samples, 0.16%)</title><rect x="151.6" y="2576" width="1.9" height="15.0" fill="rgb(253,103,36)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="592" width="1.9" height="15.0" fill="rgb(231,218,20)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="1392" width="1.9" height="15.0" fill="rgb(216,57,3)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1968" width="1.9" height="15.0" fill="rgb(233,123,6)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1978.5" font-size="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_start (1 samples, 0.16%)</title><rect x="395.2" y="224" width="1.8" height="15.0" fill="rgb(211,224,6)" rx="2" ry="2" />
<text text-anchor="" x="398.15" y="234.5" font-size="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::GraphBuilder (1 samples, 0.16%)</title><rect x="36.4" y="384" width="1.9" height="15.0" fill="rgb(251,147,1)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="394.5" font-size="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 (1 samples, 0.16%)</title><rect x="727.4" y="976" width="1.9" height="15.0" fill="rgb(245,200,33)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="986.5" font-size="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_start (1 samples, 0.16%)</title><rect x="287.5" y="224" width="1.9" height="15.0" fill="rgb(247,74,37)" rx="2" ry="2" />
<text text-anchor="" x="290.54" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deflate_slow (1 samples, 0.16%)</title><rect x="442.4" y="128" width="1.8" height="15.0" fill="rgb(209,144,25)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="134.6" y="1152" width="1.9" height="15.0" fill="rgb(226,29,3)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="816" width="1.9" height="15.0" fill="rgb(231,192,2)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Type$MethodType:::accept (1 samples, 0.16%)</title><rect x="112.0" y="112" width="1.8" height="15.0" fill="rgb(241,73,29)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2432" width="1.8" height="15.0" fill="rgb(231,133,40)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="640" width="1.9" height="15.0" fill="rgb(252,83,5)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="650.5" font-size="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_start (1 samples, 0.16%)</title><rect x="45.9" y="256" width="1.9" height="15.0" fill="rgb(242,93,8)" rx="2" ry="2" />
<text text-anchor="" x="48.87" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2112" width="1.9" height="15.0" fill="rgb(235,48,20)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (2 samples, 0.32%)</title><rect x="1150.4" y="448" width="3.7" height="15.0" fill="rgb(217,117,38)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="784" width="1.9" height="15.0" fill="rgb(251,162,26)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile (87 samples, 13.92%)</title><rect x="514.1" y="192" width="164.3" height="15.0" fill="rgb(224,27,43)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="336" width="366.3" height="15.0" fill="rgb(251,161,7)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="346.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="442.4" y="1008" width="1.8" height="15.0" fill="rgb(226,165,24)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="1018.5" font-size="12" 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.80%)</title><rect x="1163.6" y="2160" width="9.4" height="15.0" fill="rgb(253,160,11)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1072" width="1.9" height="15.0" fill="rgb(229,176,23)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1082.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="432" width="43.4" height="15.0" fill="rgb(240,52,22)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="442.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>GraphBuilder::invoke (1 samples, 0.16%)</title><rect x="393.3" y="192" width="1.9" height="15.0" fill="rgb(209,159,54)" rx="2" ry="2" />
<text text-anchor="" x="396.26" y="202.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1312" width="15.1" height="15.0" fill="rgb(222,209,28)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/main/JavaCompiler:::genCode (1 samples, 0.16%)</title><rect x="130.8" y="160" width="1.9" height="15.0" fill="rgb(238,133,45)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="170.5" font-size="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.16%)</title><rect x="130.8" y="2304" width="1.9" height="15.0" fill="rgb(235,40,26)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="2314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="738.8" y="2736" width="1.9" height="15.0" fill="rgb(237,201,13)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2746.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="684.0" y="2672" width="1.9" height="15.0" fill="rgb(249,29,54)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="2096" width="1.9" height="15.0" fill="rgb(233,40,21)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1616" width="1.9" height="15.0" fill="rgb(247,93,15)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1626.5" font-size="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::run (1 samples, 0.16%)</title><rect x="19.4" y="432" width="1.9" height="15.0" fill="rgb(213,70,39)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Invoke::Invoke (1 samples, 0.16%)</title><rect x="89.3" y="64" width="1.9" height="15.0" fill="rgb(252,123,48)" rx="2" ry="2" />
<text text-anchor="" x="92.30" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (2 samples, 0.32%)</title><rect x="47.8" y="144" width="3.7" height="15.0" fill="rgb(241,28,5)" rx="2" ry="2" />
<text text-anchor="" x="50.76" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1776" width="1.9" height="15.0" fill="rgb(233,113,36)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1786.5" font-size="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 (14 samples, 2.24%)</title><rect x="691.6" y="2640" width="26.4" height="15.0" fill="rgb(214,114,28)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="2650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="400" width="1.9" height="15.0" fill="rgb(242,57,3)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (1 samples, 0.16%)</title><rect x="1139.0" y="480" width="1.9" height="15.0" fill="rgb(248,162,15)" rx="2" ry="2" />
<text text-anchor="" x="1142.02" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="117.6" y="1184" width="1.9" height="15.0" fill="rgb(211,143,32)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="912" width="1.9" height="15.0" fill="rgb(227,181,37)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="176" width="1.9" height="15.0" fill="rgb(243,15,37)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="161.0" y="848" width="1.9" height="15.0" fill="rgb(224,185,43)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="858.5" font-size="12" 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.48%)</title><rect x="750.1" y="1664" width="5.7" height="15.0" fill="rgb(246,151,10)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="400" width="1.8" height="15.0" fill="rgb(233,27,7)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1264" width="1.8" height="15.0" fill="rgb(247,208,3)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1274.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="27.0" y="224" width="1.9" height="15.0" fill="rgb(227,44,32)" rx="2" ry="2" />
<text text-anchor="" x="29.99" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1392" width="1.9" height="15.0" fill="rgb(228,8,27)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1402.5" font-size="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.16%)</title><rect x="125.2" y="2752" width="1.9" height="15.0" fill="rgb(216,4,46)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1440" width="1.9" height="15.0" fill="rgb(208,163,49)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1488" width="1.8" height="15.0" fill="rgb(214,194,31)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="2128" width="1.9" height="15.0" fill="rgb(207,173,8)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2138.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1856" width="15.1" height="15.0" fill="rgb(234,124,16)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2224" width="1.9" height="15.0" fill="rgb(231,161,40)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2234.5" font-size="12" 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.32%)</title><rect x="176.1" y="1680" width="3.8" height="15.0" fill="rgb(215,141,41)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="928" width="1.9" height="15.0" fill="rgb(223,193,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1680" width="32.1" height="15.0" fill="rgb(245,7,22)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1690.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>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (87 samples, 13.92%)</title><rect x="514.1" y="2464" width="164.3" height="15.0" fill="rgb(237,160,27)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="2474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (14 samples, 2.24%)</title><rect x="691.6" y="1136" width="26.4" height="15.0" fill="rgb(228,30,4)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1146.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.16%)</title><rect x="408.4" y="1072" width="1.9" height="15.0" fill="rgb(221,77,19)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="104.4" y="960" width="1.9" height="15.0" fill="rgb(213,72,21)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="970.5" font-size="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.16%)</title><rect x="740.7" y="2208" width="1.8" height="15.0" fill="rgb(243,26,3)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1152" width="1.9" height="15.0" fill="rgb(213,204,40)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method (1 samples, 0.16%)</title><rect x="100.6" y="208" width="1.9" height="15.0" fill="rgb(209,61,16)" rx="2" ry="2" />
<text text-anchor="" x="103.62" y="218.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="89.3" y="256" width="1.9" height="15.0" fill="rgb(251,48,29)" rx="2" ry="2" />
<text text-anchor="" x="92.30" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="1760" width="1.9" height="15.0" fill="rgb(225,68,20)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="928" width="1.9" height="15.0" fill="rgb(249,48,21)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1488" width="1.9" height="15.0" fill="rgb(235,142,11)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.16%)</title><rect x="727.4" y="240" width="1.9" height="15.0" fill="rgb(242,150,39)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method (1 samples, 0.16%)</title><rect x="40.2" y="464" width="1.9" height="15.0" fill="rgb(233,193,52)" rx="2" ry="2" />
<text text-anchor="" x="43.21" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2416" width="1.8" height="15.0" fill="rgb(215,85,3)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="149.7" y="496" width="1.9" height="15.0" fill="rgb(253,71,53)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="1140.9" y="1120" width="1.9" height="15.0" fill="rgb(226,57,34)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1072" width="1.9" height="15.0" fill="rgb(227,3,4)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="992" width="1.9" height="15.0" fill="rgb(224,58,19)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1002.5" font-size="12" 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.32%)</title><rect x="176.1" y="864" width="3.8" height="15.0" fill="rgb(250,28,8)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="874.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="421.6" y="2528" width="1.9" height="15.0" fill="rgb(210,111,52)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="400" width="1.9" height="15.0" fill="rgb(249,226,32)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1920" width="1.9" height="15.0" fill="rgb(220,192,10)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1248" width="1.9" height="15.0" fill="rgb(219,97,25)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="2528" width="1.9" height="15.0" fill="rgb(225,24,32)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2538.5" font-size="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_write (1 samples, 0.16%)</title><rect x="1131.5" y="352" width="1.9" height="15.0" fill="rgb(212,113,32)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ContiguousSpace::oop_since_save_marks_iterate_nv (1 samples, 0.16%)</title><rect x="28.9" y="64" width="1.9" height="15.0" fill="rgb(246,178,47)" rx="2" ry="2" />
<text text-anchor="" x="31.88" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2672" width="1.9" height="15.0" fill="rgb(210,74,23)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/project/taskfactory/TaskPropertyInfo:::getValue (1 samples, 0.16%)</title><rect x="748.2" y="1008" width="1.9" height="15.0" fill="rgb(243,91,3)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="2080" width="1.9" height="15.0" fill="rgb(216,224,33)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="784" width="1.8" height="15.0" fill="rgb(253,159,38)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="640" width="1.9" height="15.0" fill="rgb(207,134,19)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="1584" width="1.8" height="15.0" fill="rgb(216,166,20)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/file/ZipFileIndex:::inflate (1 samples, 0.16%)</title><rect x="159.2" y="80" width="1.8" height="15.0" fill="rgb(211,149,13)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="592" width="1.9" height="15.0" fill="rgb(221,78,7)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1232" width="1.9" height="15.0" fill="rgb(246,204,23)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="512" width="1.9" height="15.0" fill="rgb(207,10,15)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="522.5" font-size="12" 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.32%)</title><rect x="176.1" y="1072" width="3.8" height="15.0" fill="rgb(223,38,32)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="2208" width="1.9" height="15.0" fill="rgb(253,102,44)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="560" width="1.9" height="15.0" fill="rgb(245,51,3)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1312" width="32.1" height="15.0" fill="rgb(239,85,17)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1322.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>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="512" width="1.9" height="15.0" fill="rgb(253,132,26)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="522.5" font-size="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 (1 samples, 0.16%)</title><rect x="153.5" y="2240" width="1.9" height="15.0" fill="rgb(237,44,43)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="704" width="1.9" height="15.0" fill="rgb(228,63,50)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1904" width="1.9" height="15.0" fill="rgb(243,177,40)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1914.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1664" width="26.4" height="15.0" fill="rgb(226,20,53)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1674.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="499.0" y="1536" width="1.9" height="15.0" fill="rgb(242,6,54)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1392" width="1.9" height="15.0" fill="rgb(220,39,47)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="721.8" y="1648" width="1.9" height="15.0" fill="rgb(251,78,36)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="1658.5" font-size="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 (1 samples, 0.16%)</title><rect x="159.2" y="3008" width="1.8" height="15.0" fill="rgb(243,115,30)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="3018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="746.3" y="672" width="1.9" height="15.0" fill="rgb(231,20,0)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="2000" width="1.9" height="15.0" fill="rgb(251,208,23)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1264" width="1.8" height="15.0" fill="rgb(209,43,24)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1664" width="1.9" height="15.0" fill="rgb(215,107,47)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="2704" width="1.9" height="15.0" fill="rgb(218,117,5)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="880" width="1.9" height="15.0" fill="rgb(228,60,47)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1712" width="1.9" height="15.0" fill="rgb(233,181,13)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1968" width="1.9" height="15.0" fill="rgb(224,64,53)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1184" width="1.9" height="15.0" fill="rgb(216,206,25)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="304" width="1.9" height="15.0" fill="rgb(228,209,29)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="512" width="1.9" height="15.0" fill="rgb(241,213,16)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="522.5" font-size="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::run (1 samples, 0.16%)</title><rect x="161.0" y="2576" width="1.9" height="15.0" fill="rgb(249,12,47)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="2512" width="1.9" height="15.0" fill="rgb(243,37,4)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (87 samples, 13.92%)</title><rect x="514.1" y="944" width="164.3" height="15.0" fill="rgb(245,87,49)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="2128" width="1.8" height="15.0" fill="rgb(225,170,4)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1856" width="1.9" height="15.0" fill="rgb(219,116,46)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="2576" width="1.9" height="15.0" fill="rgb(240,140,14)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="560" width="1.9" height="15.0" fill="rgb(224,49,46)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="570.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="1129.6" y="144" width="1.9" height="15.0" fill="rgb(211,190,51)" rx="2" ry="2" />
<text text-anchor="" x="1132.58" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_java_method (1 samples, 0.16%)</title><rect x="138.4" y="144" width="1.9" height="15.0" fill="rgb(233,70,52)" rx="2" ry="2" />
<text text-anchor="" x="141.38" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (1 samples, 0.16%)</title><rect x="1139.0" y="448" width="1.9" height="15.0" fill="rgb(216,62,0)" rx="2" ry="2" />
<text text-anchor="" x="1142.02" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1296" width="1.9" height="15.0" fill="rgb(224,138,54)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="736" width="1.9" height="15.0" fill="rgb(205,120,20)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="746.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1776" width="9.4" height="15.0" fill="rgb(220,77,52)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="2432" width="1.9" height="15.0" fill="rgb(213,80,40)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="2442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (4 samples, 0.64%)</title><rect x="506.5" y="768" width="7.6" height="15.0" fill="rgb(230,211,33)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1456" width="1.9" height="15.0" fill="rgb(219,130,43)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1952" width="1.9" height="15.0" fill="rgb(226,5,1)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="159.2" y="448" width="1.8" height="15.0" fill="rgb(236,72,53)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (4 samples, 0.64%)</title><rect x="506.5" y="784" width="7.6" height="15.0" fill="rgb(218,164,2)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="794.5" font-size="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.16%)</title><rect x="93.1" y="64" width="1.9" height="15.0" fill="rgb(212,40,14)" rx="2" ry="2" />
<text text-anchor="" x="96.07" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1968" width="1.9" height="15.0" fill="rgb(228,188,5)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="464" width="1.9" height="15.0" fill="rgb(244,158,8)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1488" width="1.9" height="15.0" fill="rgb(241,53,16)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1456" width="1.9" height="15.0" fill="rgb(249,220,12)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1056" width="1.9" height="15.0" fill="rgb(221,161,45)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1066.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1472" width="9.4" height="15.0" fill="rgb(234,36,46)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1482.5" font-size="12" 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.48%)</title><rect x="170.5" y="464" width="5.6" height="15.0" fill="rgb(207,149,21)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="474.5" font-size="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::Code_Gen (1 samples, 0.16%)</title><rect x="57.2" y="112" width="1.9" height="15.0" fill="rgb(242,210,42)" rx="2" ry="2" />
<text text-anchor="" x="60.20" y="122.5" font-size="12" 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.32%)</title><rect x="164.8" y="1088" width="3.8" height="15.0" fill="rgb(220,103,28)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1098.5" font-size="12" 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.48%)</title><rect x="750.1" y="576" width="5.7" height="15.0" fill="rgb(234,94,42)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="752" width="1.9" height="15.0" fill="rgb(217,189,32)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="762.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1168" width="9.4" height="15.0" fill="rgb(251,13,38)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1178.5" font-size="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.16%)</title><rect x="1131.5" y="2864" width="1.9" height="15.0" fill="rgb(219,131,36)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Symbol$MethodSymbol:::implementation (1 samples, 0.16%)</title><rect x="112.0" y="176" width="1.8" height="15.0" fill="rgb(216,227,26)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1632" width="1.8" height="15.0" fill="rgb(227,122,44)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="848" width="1.8" height="15.0" fill="rgb(241,53,49)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="858.5" font-size="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___libc_close (1 samples, 0.16%)</title><rect x="1178.7" y="112" width="1.9" height="15.0" fill="rgb(240,41,0)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitTypeApply (1 samples, 0.16%)</title><rect x="125.2" y="368" width="1.9" height="15.0" fill="rgb(214,225,31)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="378.5" font-size="12" 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.80%)</title><rect x="1163.6" y="2112" width="9.4" height="15.0" fill="rgb(225,25,22)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1824" width="1.9" height="15.0" fill="rgb(237,138,43)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2608" width="1.9" height="15.0" fill="rgb(240,211,12)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.16%)</title><rect x="721.8" y="112" width="1.9" height="15.0" fill="rgb(242,64,45)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::hash (1 samples, 0.16%)</title><rect x="1144.7" y="416" width="1.9" height="15.0" fill="rgb(227,139,10)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1424" width="1.9" height="15.0" fill="rgb(232,202,9)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1664" width="1.9" height="15.0" fill="rgb(220,22,13)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1952" width="1.9" height="15.0" fill="rgb(228,158,20)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="608" width="1.9" height="15.0" fill="rgb(243,28,49)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="880" width="1.9" height="15.0" fill="rgb(230,116,24)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="1264" width="1.9" height="15.0" fill="rgb(234,41,34)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="1274.5" font-size="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.16%)</title><rect x="432.9" y="736" width="1.9" height="15.0" fill="rgb(222,194,16)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="848" width="1.9" height="15.0" fill="rgb(216,226,44)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="464" width="1.9" height="15.0" fill="rgb(249,136,5)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="1440" width="1.9" height="15.0" fill="rgb(238,113,23)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1072" width="1.9" height="15.0" fill="rgb(236,56,11)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="432" width="1.9" height="15.0" fill="rgb(210,165,43)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="2416" width="1.8" height="15.0" fill="rgb(212,137,9)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="2426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="685.9" y="1136" width="1.9" height="15.0" fill="rgb(223,25,41)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1146.5" font-size="12" 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.64%)</title><rect x="506.5" y="576" width="7.6" height="15.0" fill="rgb(245,87,3)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="576" width="1.9" height="15.0" fill="rgb(212,42,52)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="2256" width="1.9" height="15.0" fill="rgb(252,103,37)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2032" width="1.8" height="15.0" fill="rgb(236,165,35)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitVarDef (1 samples, 0.16%)</title><rect x="113.8" y="336" width="1.9" height="15.0" fill="rgb(247,205,43)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile (194 samples, 31.04%)</title><rect x="763.3" y="208" width="366.3" height="15.0" fill="rgb(221,80,7)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/archive/ZipCopyActi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::oop_oop_iterate_nv (4 samples, 0.64%)</title><rect x="62.9" y="64" width="7.5" height="15.0" fill="rgb(234,48,42)" rx="2" ry="2" />
<text text-anchor="" x="65.86" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="2160" width="1.9" height="15.0" fill="rgb(214,31,45)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1584" width="1.9" height="15.0" fill="rgb(210,73,33)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1594.5" font-size="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.16%)</title><rect x="159.2" y="2944" width="1.8" height="15.0" fill="rgb(254,105,0)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2954.5" font-size="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_start (1 samples, 0.16%)</title><rect x="59.1" y="240" width="1.9" height="15.0" fill="rgb(208,104,22)" rx="2" ry="2" />
<text text-anchor="" x="62.09" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="157.3" y="864" width="1.9" height="15.0" fill="rgb(252,214,53)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="2160" width="1.9" height="15.0" fill="rgb(216,158,11)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="416" width="1.9" height="15.0" fill="rgb(248,59,45)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1440" width="1.9" height="15.0" fill="rgb(212,211,7)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1568" width="1.9" height="15.0" fill="rgb(210,119,47)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1578.5" font-size="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.16%)</title><rect x="1182.4" y="80" width="1.9" height="15.0" fill="rgb(238,188,50)" rx="2" ry="2" />
<text text-anchor="" x="1185.45" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1104" width="1.9" height="15.0" fill="rgb(215,99,38)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="880" width="1.9" height="15.0" fill="rgb(251,10,51)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1024" width="1.9" height="15.0" fill="rgb(205,72,10)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_queue_bio (2 samples, 0.32%)</title><rect x="1133.4" y="160" width="3.7" height="15.0" fill="rgb(215,126,31)" rx="2" ry="2" />
<text text-anchor="" x="1136.36" y="170.5" font-size="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_start (1 samples, 0.16%)</title><rect x="742.5" y="2656" width="1.9" height="15.0" fill="rgb(250,189,8)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1440" width="1.9" height="15.0" fill="rgb(223,65,41)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="1504" width="1.8" height="15.0" fill="rgb(224,6,5)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="748.2" y="1760" width="1.9" height="15.0" fill="rgb(209,188,42)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1152" width="1.9" height="15.0" fill="rgb(241,12,24)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1904" width="1.9" height="15.0" fill="rgb(209,92,45)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1914.5" font-size="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-85641/85650 (1 samples, 0.16%)</title><rect x="397.0" y="288" width="1.9" height="15.0" fill="rgb(242,5,8)" rx="2" ry="2" />
<text text-anchor="" x="400.04" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1072" width="1.9" height="15.0" fill="rgb(248,214,0)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1082.5" font-size="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.16%)</title><rect x="733.1" y="832" width="1.9" height="15.0" fill="rgb(227,194,23)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1456" width="1.9" height="15.0" fill="rgb(224,80,12)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1466.5" font-size="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.16%)</title><rect x="85.5" y="2160" width="1.9" height="15.0" fill="rgb(209,17,22)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1200" width="1.9" height="15.0" fill="rgb(212,180,0)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1536" width="1.9" height="15.0" fill="rgb(213,179,38)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1546.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2704" width="1.8" height="15.0" fill="rgb(225,94,12)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2128" width="1.9" height="15.0" fill="rgb(221,119,27)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="725.6" y="1920" width="1.8" height="15.0" fill="rgb(210,148,45)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="1808" width="1.9" height="15.0" fill="rgb(215,217,41)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1818.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1632" width="43.4" height="15.0" fill="rgb(210,93,15)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1642.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>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2336" width="1.9" height="15.0" fill="rgb(224,57,6)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2346.5" font-size="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.16%)</title><rect x="395.2" y="128" width="1.8" height="15.0" fill="rgb(245,155,6)" rx="2" ry="2" />
<text text-anchor="" x="398.15" y="138.5" font-size="12" 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.48%)</title><rect x="750.1" y="1984" width="5.7" height="15.0" fill="rgb(250,187,20)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::readName (1 samples, 0.16%)</title><rect x="134.6" y="96" width="1.9" height="15.0" fill="rgb(253,164,34)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1488" width="1.9" height="15.0" fill="rgb(239,132,35)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="2016" width="1.8" height="15.0" fill="rgb(234,67,49)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2026.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="544" width="1.9" height="15.0" fill="rgb(224,137,16)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="554.5" font-size="12" 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.32%)</title><rect x="176.1" y="1744" width="3.8" height="15.0" fill="rgb(218,139,9)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="113.8" y="1760" width="1.9" height="15.0" fill="rgb(222,123,33)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="592" width="1.9" height="15.0" fill="rgb(206,190,31)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1456" width="1.9" height="15.0" fill="rgb(228,159,44)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="512" width="1.9" height="15.0" fill="rgb(246,89,19)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="2240" width="1.9" height="15.0" fill="rgb(240,137,19)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1312" width="1.9" height="15.0" fill="rgb(253,10,0)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="1136" width="1.9" height="15.0" fill="rgb(241,68,2)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="1146.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1184" width="43.4" height="15.0" fill="rgb(214,211,53)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1194.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>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="2720" width="1.9" height="15.0" fill="rgb(240,69,26)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="735.0" y="448" width="1.9" height="15.0" fill="rgb(246,46,53)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1104" width="1.9" height="15.0" fill="rgb(249,160,45)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1200" width="1.8" height="15.0" fill="rgb(208,107,38)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method (1 samples, 0.16%)</title><rect x="147.8" y="208" width="1.9" height="15.0" fill="rgb(217,93,5)" rx="2" ry="2" />
<text text-anchor="" x="150.82" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1616" width="1.9" height="15.0" fill="rgb(228,74,16)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="132.7" y="352" width="1.9" height="15.0" fill="rgb(208,14,48)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="87.4" y="240" width="1.9" height="15.0" fill="rgb(214,64,41)" rx="2" ry="2" />
<text text-anchor="" x="90.41" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="576" width="1.8" height="15.0" fill="rgb(207,100,10)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="586.5" font-size="12" 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.32%)</title><rect x="429.1" y="1504" width="3.8" height="15.0" fill="rgb(218,77,41)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="2096" width="1.9" height="15.0" fill="rgb(222,129,38)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="720" width="1.9" height="15.0" fill="rgb(205,226,26)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1056" width="1.9" height="15.0" fill="rgb(217,228,2)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1066.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="346.1" y="240" width="1.9" height="15.0" fill="rgb(217,157,54)" rx="2" ry="2" />
<text text-anchor="" x="349.06" y="250.5" font-size="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_start (1 samples, 0.16%)</title><rect x="678.4" y="2688" width="1.8" height="15.0" fill="rgb(210,207,43)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="656" width="1.9" height="15.0" fill="rgb(222,175,7)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="1136" width="1.8" height="15.0" fill="rgb(231,189,2)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (2 samples, 0.32%)</title><rect x="164.8" y="2288" width="3.8" height="15.0" fill="rgb(231,120,12)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="256" width="39.7" height="15.0" fill="rgb(237,133,52)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="266.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>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1056" width="39.7" height="15.0" fill="rgb(220,215,52)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1066.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>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="2016" width="1.8" height="15.0" fill="rgb(215,41,10)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="2026.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="656" width="32.1" height="15.0" fill="rgb(254,185,11)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="666.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>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="2320" width="1.9" height="15.0" fill="rgb(227,4,34)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="2330.5" font-size="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::push_scope (1 samples, 0.16%)</title><rect x="17.6" y="80" width="1.8" height="15.0" fill="rgb(235,49,22)" rx="2" ry="2" />
<text text-anchor="" x="20.55" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NullCheckEliminator::iterate_one (2 samples, 0.32%)</title><rect x="295.1" y="64" width="3.8" height="15.0" fill="rgb(224,113,19)" rx="2" ry="2" />
<text text-anchor="" x="298.09" y="74.5" font-size="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::locate_operand (1 samples, 0.16%)</title><rect x="13.8" y="64" width="1.9" height="15.0" fill="rgb(250,160,50)" rx="2" ry="2" />
<text text-anchor="" x="16.78" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1920" width="1.8" height="15.0" fill="rgb(235,148,20)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="2464" width="1.9" height="15.0" fill="rgb(207,70,51)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (1 samples, 0.16%)</title><rect x="91.2" y="256" width="1.9" height="15.0" fill="rgb(213,81,3)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1664" width="1.9" height="15.0" fill="rgb(241,224,2)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1674.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="432.9" y="816" width="1.9" height="15.0" fill="rgb(244,90,1)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/zip/ZipUtils:::dosToJavaTime (1 samples, 0.16%)</title><rect x="266.8" y="112" width="1.9" height="15.0" fill="rgb(244,228,14)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="122.5" font-size="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.16%)</title><rect x="1142.8" y="2512" width="1.9" height="15.0" fill="rgb(244,131,37)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="2048" width="1.9" height="15.0" fill="rgb(240,8,14)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2688" width="1.9" height="15.0" fill="rgb(246,168,36)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="410.3" y="736" width="1.8" height="15.0" fill="rgb(249,21,41)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="127.1" y="496" width="1.8" height="15.0" fill="rgb(211,207,44)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1984" width="1.8" height="15.0" fill="rgb(250,147,42)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1994.5" font-size="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.16%)</title><rect x="119.5" y="2752" width="1.9" height="15.0" fill="rgb(219,225,45)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1376" width="1.9" height="15.0" fill="rgb(214,33,32)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="896" width="1.9" height="15.0" fill="rgb(235,61,47)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1936" width="1.9" height="15.0" fill="rgb(227,27,13)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="496" width="1.8" height="15.0" fill="rgb(213,68,32)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1152" width="1.9" height="15.0" fill="rgb(217,86,48)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="912" width="1.9" height="15.0" fill="rgb(215,33,43)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_method (1 samples, 0.16%)</title><rect x="13.8" y="208" width="1.9" height="15.0" fill="rgb(228,203,10)" rx="2" ry="2" />
<text text-anchor="" x="16.78" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="752" width="1.9" height="15.0" fill="rgb(247,229,54)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="2096" width="1.8" height="15.0" fill="rgb(254,192,48)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="2106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1904" width="1.9" height="15.0" fill="rgb(243,181,38)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="592" width="164.3" height="15.0" fill="rgb(213,155,48)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="602.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.16%)</title><rect x="410.3" y="864" width="1.8" height="15.0" fill="rgb(240,125,32)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="874.5" font-size="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::try_inline_full (1 samples, 0.16%)</title><rect x="40.2" y="192" width="1.9" height="15.0" fill="rgb(251,61,25)" rx="2" ry="2" />
<text text-anchor="" x="43.21" y="202.5" font-size="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 (1 samples, 0.16%)</title><rect x="425.4" y="2544" width="1.8" height="15.0" fill="rgb(206,182,48)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="2048" width="1.9" height="15.0" fill="rgb(220,86,18)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="2058.5" font-size="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.16%)</title><rect x="1180.6" y="2736" width="1.8" height="15.0" fill="rgb(216,216,17)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="2746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="864" width="1.9" height="15.0" fill="rgb(221,165,26)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="421.6" y="1376" width="1.9" height="15.0" fill="rgb(215,45,8)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="1386.5" font-size="12" 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.32%)</title><rect x="429.1" y="1040" width="3.8" height="15.0" fill="rgb(217,91,17)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="656" width="1.8" height="15.0" fill="rgb(216,161,11)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1888" width="1.9" height="15.0" fill="rgb(245,222,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1898.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="359.3" y="176" width="1.9" height="15.0" fill="rgb(206,73,13)" rx="2" ry="2" />
<text text-anchor="" x="362.28" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="176" width="1.9" height="15.0" fill="rgb(244,137,41)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="800" width="1.9" height="15.0" fill="rgb(225,113,12)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="2064" width="1.9" height="15.0" fill="rgb(238,119,1)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="2352" width="1.9" height="15.0" fill="rgb(217,169,10)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitMethodDef (1 samples, 0.16%)</title><rect x="121.4" y="336" width="1.9" height="15.0" fill="rgb(209,72,43)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="346.5" font-size="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 (1 samples, 0.16%)</title><rect x="168.6" y="2080" width="1.9" height="15.0" fill="rgb(222,120,54)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="2090.5" font-size="12" 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.32%)</title><rect x="164.8" y="1680" width="3.8" height="15.0" fill="rgb(239,51,49)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="816" width="1.9" height="15.0" fill="rgb(231,141,53)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="826.5" font-size="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.48%)</title><rect x="735.0" y="320" width="5.7" height="15.0" fill="rgb(218,57,15)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (194 samples, 31.04%)</title><rect x="763.3" y="944" width="366.3" height="15.0" fill="rgb(248,44,45)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperati..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="560" width="1.9" height="15.0" fill="rgb(231,63,41)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="736" width="1.9" height="15.0" fill="rgb(215,75,24)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1216" width="32.1" height="15.0" fill="rgb(208,35,5)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1226.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>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1920" width="1.9" height="15.0" fill="rgb(212,203,43)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1280" width="1.9" height="15.0" fill="rgb(222,188,22)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="352" width="1.9" height="15.0" fill="rgb(225,143,42)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1776" width="1.8" height="15.0" fill="rgb(209,182,12)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1786.5" font-size="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.16%)</title><rect x="735.0" y="944" width="1.9" height="15.0" fill="rgb(254,148,6)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="1184.3" y="1120" width="1.9" height="15.0" fill="rgb(250,86,33)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1130.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1008" width="15.1" height="15.0" fill="rgb(225,62,50)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="736" width="1.9" height="15.0" fill="rgb(252,6,33)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="1648" width="1.8" height="15.0" fill="rgb(207,165,30)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2592" width="1.9" height="15.0" fill="rgb(241,54,42)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="688" width="1.9" height="15.0" fill="rgb(209,162,35)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1936" width="1.9" height="15.0" fill="rgb(217,1,28)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1072" width="1.9" height="15.0" fill="rgb(238,58,27)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1082.5" font-size="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 (23 samples, 3.68%)</title><rect x="455.6" y="2624" width="43.4" height="15.0" fill="rgb(242,216,23)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Java..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="93.1" y="144" width="1.9" height="15.0" fill="rgb(229,79,12)" rx="2" ry="2" />
<text text-anchor="" x="96.07" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="896" width="1.9" height="15.0" fill="rgb(214,64,38)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="446.1" y="1808" width="1.9" height="15.0" fill="rgb(250,173,28)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1168" width="1.9" height="15.0" fill="rgb(254,0,50)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="412.1" y="496" width="1.9" height="15.0" fill="rgb(232,114,4)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="800" width="1.8" height="15.0" fill="rgb(244,197,41)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="2496" width="1.9" height="15.0" fill="rgb(244,164,24)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2506.5" font-size="12" 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.32%)</title><rect x="687.8" y="1632" width="3.8" height="15.0" fill="rgb(243,213,15)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1440" width="1.9" height="15.0" fill="rgb(219,180,3)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2352" width="1.8" height="15.0" fill="rgb(205,223,15)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2224" width="1.9" height="15.0" fill="rgb(248,46,7)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IR::IR (1 samples, 0.16%)</title><rect x="406.5" y="352" width="1.9" height="15.0" fill="rgb(248,219,37)" rx="2" ry="2" />
<text text-anchor="" x="409.48" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="464" width="1.9" height="15.0" fill="rgb(216,64,19)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1744" width="1.9" height="15.0" fill="rgb(208,215,26)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="544" width="1.9" height="15.0" fill="rgb(229,50,23)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="928" width="1.9" height="15.0" fill="rgb(212,220,54)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="672" width="1.9" height="15.0" fill="rgb(214,167,30)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="682.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1920" width="26.4" height="15.0" fill="rgb(238,142,2)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1930.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.16%)</title><rect x="735.0" y="1184" width="1.9" height="15.0" fill="rgb(220,86,38)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="704" width="1.9" height="15.0" fill="rgb(251,63,22)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="640" width="1.9" height="15.0" fill="rgb(216,156,22)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="650.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1792" width="1.9" height="15.0" fill="rgb(213,144,1)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="816" width="1.9" height="15.0" fill="rgb(242,7,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="944" width="1.8" height="15.0" fill="rgb(238,217,39)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="954.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="1056" width="1.9" height="15.0" fill="rgb(218,197,19)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="912" width="1.9" height="15.0" fill="rgb(253,40,50)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="2496" width="1.9" height="15.0" fill="rgb(209,45,27)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="2064" width="1.9" height="15.0" fill="rgb(242,4,16)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="2496" width="1.9" height="15.0" fill="rgb(252,162,25)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1344" width="1.9" height="15.0" fill="rgb(221,180,49)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1354.5" font-size="12" 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.48%)</title><rect x="170.5" y="368" width="5.6" height="15.0" fill="rgb(207,27,36)" rx="2" ry="2" />
<text text-anchor="" x="173.48" y="378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="720" width="1.9" height="15.0" fill="rgb(242,63,22)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="2576" width="1.9" height="15.0" fill="rgb(241,27,5)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="464" width="1.9" height="15.0" fill="rgb(213,30,52)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="2000" width="1.9" height="15.0" fill="rgb(226,184,11)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="2010.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="280.0" y="560" width="1.9" height="15.0" fill="rgb(236,140,52)" rx="2" ry="2" />
<text text-anchor="" x="282.98" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1872" width="1.9" height="15.0" fill="rgb(210,222,15)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_perform_write (3 samples, 0.48%)</title><rect x="735.0" y="208" width="5.7" height="15.0" fill="rgb(221,112,3)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="720" width="1.9" height="15.0" fill="rgb(237,191,28)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="352" width="164.3" height="15.0" fill="rgb(216,159,28)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="362.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.16%)</title><rect x="502.8" y="1200" width="1.9" height="15.0" fill="rgb(207,98,35)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="1472" width="1.9" height="15.0" fill="rgb(213,110,45)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1600" width="1.9" height="15.0" fill="rgb(231,4,5)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1610.5" font-size="12" 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.32%)</title><rect x="687.8" y="1392" width="3.8" height="15.0" fill="rgb(227,204,41)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="336" width="164.3" height="15.0" fill="rgb(233,203,18)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="346.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>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="444.2" y="576" width="1.9" height="15.0" fill="rgb(236,120,42)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="586.5" font-size="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.16%)</title><rect x="400.8" y="144" width="1.9" height="15.0" fill="rgb(227,8,12)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1408" width="1.9" height="15.0" fill="rgb(237,192,34)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="560" width="1.8" height="15.0" fill="rgb(208,67,45)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NullCheckEliminator::iterate_one (1 samples, 0.16%)</title><rect x="298.9" y="80" width="1.9" height="15.0" fill="rgb(205,17,24)" rx="2" ry="2" />
<text text-anchor="" x="301.86" y="90.5" font-size="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.16%)</title><rect x="123.3" y="2784" width="1.9" height="15.0" fill="rgb(209,19,29)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1936" width="1.9" height="15.0" fill="rgb(246,79,54)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="2560" width="1.8" height="15.0" fill="rgb(239,165,28)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="2570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="464" width="1.9" height="15.0" fill="rgb(225,201,13)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="474.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2400" width="43.4" height="15.0" fill="rgb(212,165,52)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2410.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>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="512" width="1.9" height="15.0" fill="rgb(248,207,45)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="1776" width="1.9" height="15.0" fill="rgb(206,98,7)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="2848" width="1.9" height="15.0" fill="rgb(217,84,31)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="2858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="1264" width="1.9" height="15.0" fill="rgb(210,210,16)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Date:::normalize (1 samples, 0.16%)</title><rect x="266.8" y="80" width="1.9" height="15.0" fill="rgb(238,51,9)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="2208" width="1.9" height="15.0" fill="rgb(234,204,41)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1808" width="1.9" height="15.0" fill="rgb(228,44,14)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="928" width="1.9" height="15.0" fill="rgb(246,29,14)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="2384" width="1.9" height="15.0" fill="rgb(221,26,38)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/zip/Deflater:::deflateBytes (16 samples, 2.56%)</title><rect x="687.8" y="128" width="30.2" height="15.0" fill="rgb(220,49,39)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lj..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="1936" width="1.9" height="15.0" fill="rgb(231,216,16)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (2 samples, 0.32%)</title><rect x="687.8" y="1200" width="3.8" height="15.0" fill="rgb(214,87,31)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="444.2" y="1104" width="1.9" height="15.0" fill="rgb(225,138,21)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="151.6" y="1424" width="1.9" height="15.0" fill="rgb(230,21,13)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="438.6" y="1904" width="1.9" height="15.0" fill="rgb(236,124,48)" rx="2" ry="2" />
<text text-anchor="" x="441.58" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1664" width="1.9" height="15.0" fill="rgb(245,112,38)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1674.5" font-size="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_cache_readahead (7 samples, 1.12%)</title><rect x="1140.9" y="224" width="13.2" height="15.0" fill="rgb(239,19,37)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="234.5" font-size="12" 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.32%)</title><rect x="429.1" y="768" width="3.8" height="15.0" fill="rgb(250,7,23)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::hash (4 samples, 0.64%)</title><rect x="168.6" y="112" width="7.5" height="15.0" fill="rgb(227,119,23)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2000" width="1.9" height="15.0" fill="rgb(227,93,20)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2672" width="1.9" height="15.0" fill="rgb(214,180,6)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1872" width="1.9" height="15.0" fill="rgb(246,118,10)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="720" width="1.9" height="15.0" fill="rgb(220,47,33)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="1536" width="1.9" height="15.0" fill="rgb(226,170,8)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="1546.5" font-size="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 (1 samples, 0.16%)</title><rect x="400.8" y="112" width="1.9" height="15.0" fill="rgb(245,178,32)" rx="2" ry="2" />
<text text-anchor="" x="403.82" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2320" width="1.8" height="15.0" fill="rgb(226,35,0)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2330.5" font-size="12" 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.32%)</title><rect x="176.1" y="1552" width="3.8" height="15.0" fill="rgb(251,37,9)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="415.9" y="848" width="1.9" height="15.0" fill="rgb(212,47,4)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="858.5" font-size="12" 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.64%)</title><rect x="506.5" y="1424" width="7.6" height="15.0" fill="rgb(228,198,4)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="1280" width="1.8" height="15.0" fill="rgb(206,12,3)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="1290.5" font-size="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.16%)</title><rect x="119.5" y="912" width="1.9" height="15.0" fill="rgb(205,27,49)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1440" width="39.7" height="15.0" fill="rgb(205,61,30)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1450.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>JavaThread::thread_main_inner (1 samples, 0.16%)</title><rect x="130.8" y="2368" width="1.9" height="15.0" fill="rgb(247,70,31)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="2378.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1440" width="1.9" height="15.0" fill="rgb(218,22,20)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1450.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="2240" width="1.9" height="15.0" fill="rgb(245,61,11)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1824" width="1.9" height="15.0" fill="rgb(208,195,23)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="480" width="1.9" height="15.0" fill="rgb(225,179,20)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1728" width="1.9" height="15.0" fill="rgb(215,99,33)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1738.5" font-size="12" 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.32%)</title><rect x="164.8" y="544" width="3.8" height="15.0" fill="rgb(248,206,51)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1216" width="1.9" height="15.0" fill="rgb(209,76,14)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::sweep_code_cache (2 samples, 0.32%)</title><rect x="1157.9" y="96" width="3.8" height="15.0" fill="rgb(241,131,22)" rx="2" ry="2" />
<text text-anchor="" x="1160.90" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="499.0" y="352" width="1.9" height="15.0" fill="rgb(212,192,43)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1792" width="1.9" height="15.0" fill="rgb(250,203,40)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1802.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1744" width="9.4" height="15.0" fill="rgb(211,63,33)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_try_charge (1 samples, 0.16%)</title><rect x="727.4" y="80" width="1.9" height="15.0" fill="rgb(220,214,14)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="528" width="1.9" height="15.0" fill="rgb(245,152,44)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="608" width="1.9" height="15.0" fill="rgb(241,191,22)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1392" width="1.9" height="15.0" fill="rgb(220,16,23)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2128" width="1.9" height="15.0" fill="rgb(232,124,36)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="688" width="1.8" height="15.0" fill="rgb(210,93,27)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1360" width="1.9" height="15.0" fill="rgb(251,62,38)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1520" width="1.9" height="15.0" fill="rgb(223,41,2)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="2112" width="1.9" height="15.0" fill="rgb(245,4,6)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="2122.5" font-size="12" 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.32%)</title><rect x="687.8" y="2544" width="3.8" height="15.0" fill="rgb(228,228,48)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="744.4" y="208" width="1.9" height="15.0" fill="rgb(227,45,53)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="2224" width="1.9" height="15.0" fill="rgb(231,190,37)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="51.5" y="96" width="1.9" height="15.0" fill="rgb(243,183,33)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (2 samples, 0.32%)</title><rect x="176.1" y="800" width="3.8" height="15.0" fill="rgb(208,6,54)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="1248" width="1.8" height="15.0" fill="rgb(218,58,36)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1258.5" font-size="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_start (1 samples, 0.16%)</title><rect x="421.6" y="2496" width="1.9" height="15.0" fill="rgb(221,116,4)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2506.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="287.5" y="160" width="1.9" height="15.0" fill="rgb(217,153,3)" rx="2" ry="2" />
<text text-anchor="" x="290.54" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.16%)</title><rect x="731.2" y="224" width="1.9" height="15.0" fill="rgb(206,57,14)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="336" width="1.9" height="15.0" fill="rgb(236,106,18)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1744" width="1.9" height="15.0" fill="rgb(213,74,53)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1936" width="1.9" height="15.0" fill="rgb(252,34,41)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1946.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="161.0" y="2624" width="1.9" height="15.0" fill="rgb(239,168,4)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="848" width="1.8" height="15.0" fill="rgb(213,30,49)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="1184" width="1.8" height="15.0" fill="rgb(250,33,7)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="2336" width="1.9" height="15.0" fill="rgb(207,85,37)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2346.5" font-size="12" 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.64%)</title><rect x="70.4" y="272" width="7.6" height="15.0" fill="rgb(234,222,43)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="2528" width="1.9" height="15.0" fill="rgb(226,145,38)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2320" width="1.9" height="15.0" fill="rgb(211,147,13)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="1952" width="1.9" height="15.0" fill="rgb(247,217,15)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1962.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="738.8" y="2912" width="1.9" height="15.0" fill="rgb(221,34,53)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="1152" width="1.9" height="15.0" fill="rgb(207,11,25)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="1162.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.16%)</title><rect x="502.8" y="128" width="1.9" height="15.0" fill="rgb(244,14,38)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2048" width="1.8" height="15.0" fill="rgb(216,27,13)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="121.4" y="832" width="1.9" height="15.0" fill="rgb(245,82,1)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/DeferredAttr$DeferredChecker$1:::process (1 samples, 0.16%)</title><rect x="123.3" y="304" width="1.9" height="15.0" fill="rgb(248,178,25)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="2336" width="1.9" height="15.0" fill="rgb(239,205,15)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="2346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="1008" width="1.9" height="15.0" fill="rgb(250,41,47)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1018.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="720" width="1.9" height="15.0" fill="rgb(221,212,24)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1456" width="1.9" height="15.0" fill="rgb(218,179,3)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="2448" width="1.9" height="15.0" fill="rgb(216,104,28)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="2458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="2240" width="1.9" height="15.0" fill="rgb(216,85,7)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2250.5" font-size="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 (1 samples, 0.16%)</title><rect x="408.4" y="2624" width="1.9" height="15.0" fill="rgb(228,176,26)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2634.5" font-size="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::ciMethod (2 samples, 0.32%)</title><rect x="402.7" y="112" width="3.8" height="15.0" fill="rgb(237,41,28)" rx="2" ry="2" />
<text text-anchor="" x="405.70" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="2048" width="1.9" height="15.0" fill="rgb(215,128,20)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="2058.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="304.5" y="240" width="1.9" height="15.0" fill="rgb(205,100,31)" rx="2" ry="2" />
<text text-anchor="" x="307.53" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="688" width="1.9" height="15.0" fill="rgb(252,162,25)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="960" width="1.9" height="15.0" fill="rgb(227,141,23)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="970.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="1056" width="1.9" height="15.0" fill="rgb(234,132,30)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="672" width="1.9" height="15.0" fill="rgb(244,19,0)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="1840" width="1.8" height="15.0" fill="rgb(224,152,17)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1808" width="1.9" height="15.0" fill="rgb(224,38,21)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.16%)</title><rect x="117.6" y="848" width="1.9" height="15.0" fill="rgb(227,165,26)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (2 samples, 0.32%)</title><rect x="53.4" y="144" width="3.8" height="15.0" fill="rgb(222,114,9)" rx="2" ry="2" />
<text text-anchor="" x="56.42" y="154.5" font-size="12" 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.32%)</title><rect x="687.8" y="512" width="3.8" height="15.0" fill="rgb(243,117,5)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="522.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="404.6" y="176" width="1.9" height="15.0" fill="rgb(254,180,2)" rx="2" ry="2" />
<text text-anchor="" x="407.59" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1376" width="1.9" height="15.0" fill="rgb(225,152,2)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1386.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1760" width="43.4" height="15.0" fill="rgb(242,217,43)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1770.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="78.0" y="384" width="1.9" height="15.0" fill="rgb(230,203,43)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="394.5" font-size="12" 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.64%)</title><rect x="506.5" y="320" width="7.6" height="15.0" fill="rgb(232,129,48)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (1 samples, 0.16%)</title><rect x="442.4" y="240" width="1.8" height="15.0" fill="rgb(237,15,45)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCAssign:::accept (1 samples, 0.16%)</title><rect x="106.3" y="192" width="1.9" height="15.0" fill="rgb(211,97,10)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2064" width="1.8" height="15.0" fill="rgb(210,158,20)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2074.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="1188.1" y="208" width="1.9" height="15.0" fill="rgb(225,86,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.11" y="218.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="1176.8" y="144" width="1.9" height="15.0" fill="rgb(252,210,5)" rx="2" ry="2" />
<text text-anchor="" x="1179.78" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1840" width="1.9" height="15.0" fill="rgb(253,30,21)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1850.5" font-size="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.16%)</title><rect x="415.9" y="784" width="1.9" height="15.0" fill="rgb(226,42,18)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="144" width="1.8" height="15.0" fill="rgb(216,34,16)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/DefaultFileCollectionResolveContext:::doResolve (1 samples, 0.16%)</title><rect x="162.9" y="656" width="1.9" height="15.0" fill="rgb(234,18,6)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/BufferedInputStream:::read (1 samples, 0.16%)</title><rect x="149.7" y="64" width="1.9" height="15.0" fill="rgb(229,216,17)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="1148.5" y="560" width="1.9" height="15.0" fill="rgb(228,104,35)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="570.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="159.2" y="1200" width="1.8" height="15.0" fill="rgb(252,220,18)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1024" width="1.9" height="15.0" fill="rgb(217,163,21)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1034.5" font-size="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_start (1 samples, 0.16%)</title><rect x="1184.3" y="2608" width="1.9" height="15.0" fill="rgb(231,146,3)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="2618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="912" width="1.9" height="15.0" fill="rgb(239,137,23)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="922.5" font-size="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.16%)</title><rect x="266.8" y="672" width="1.9" height="15.0" fill="rgb(223,5,36)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="682.5" font-size="12" 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.32%)</title><rect x="164.8" y="1520" width="3.8" height="15.0" fill="rgb(240,224,16)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (5 samples, 0.80%)</title><rect x="1163.6" y="848" width="9.4" height="15.0" fill="rgb(237,42,5)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1680" width="1.9" height="15.0" fill="rgb(219,58,37)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (2 samples, 0.32%)</title><rect x="429.1" y="864" width="3.8" height="15.0" fill="rgb(207,111,26)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1568" width="1.9" height="15.0" fill="rgb(216,23,41)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Types:::unboxedType (1 samples, 0.16%)</title><rect x="123.3" y="272" width="1.9" height="15.0" fill="rgb(254,137,33)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="282.5" font-size="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.16%)</title><rect x="731.2" y="864" width="1.9" height="15.0" fill="rgb(251,133,27)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="496" width="1.9" height="15.0" fill="rgb(254,211,35)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="506.5" font-size="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 (1 samples, 0.16%)</title><rect x="127.1" y="464" width="1.8" height="15.0" fill="rgb(249,8,34)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="474.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="2112" width="1.9" height="15.0" fill="rgb(228,3,45)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1744" width="32.1" height="15.0" fill="rgb(239,29,26)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1754.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>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1024" width="1.8" height="15.0" fill="rgb(210,218,13)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="656" width="1.9" height="15.0" fill="rgb(221,102,41)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1680" width="1.9" height="15.0" fill="rgb(222,181,13)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1690.5" font-size="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.16%)</title><rect x="444.2" y="2896" width="1.9" height="15.0" fill="rgb(243,53,33)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1840" width="1.9" height="15.0" fill="rgb(231,167,24)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/codehaus/groovy/util/ManagedReference:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="161.0" y="64" width="1.9" height="15.0" fill="rgb(213,79,23)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="74.5" font-size="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 (23 samples, 3.68%)</title><rect x="455.6" y="720" width="43.4" height="15.0" fill="rgb(248,126,50)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1536" width="1.9" height="15.0" fill="rgb(205,54,44)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1546.5" font-size="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.32%)</title><rect x="176.1" y="2160" width="3.8" height="15.0" fill="rgb(224,66,15)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="2170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_java_method (1 samples, 0.16%)</title><rect x="449.9" y="192" width="1.9" height="15.0" fill="rgb(218,59,36)" rx="2" ry="2" />
<text text-anchor="" x="452.90" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="128.9" y="960" width="1.9" height="15.0" fill="rgb(252,48,16)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="970.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1744" width="1.9" height="15.0" fill="rgb(229,55,45)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1754.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ZIP_Get_From_Cache (1 samples, 0.16%)</title><rect x="408.4" y="64" width="1.9" height="15.0" fill="rgb(252,58,3)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (3 samples, 0.48%)</title><rect x="750.1" y="768" width="5.7" height="15.0" fill="rgb(227,157,23)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2288" width="1.9" height="15.0" fill="rgb(253,194,42)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="2528" width="1.9" height="15.0" fill="rgb(228,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="2538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="1680" width="1.9" height="15.0" fill="rgb(229,144,35)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="1690.5" font-size="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.16%)</title><rect x="1148.5" y="1008" width="1.9" height="15.0" fill="rgb(251,125,3)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1018.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2480" width="43.4" height="15.0" fill="rgb(217,125,24)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2490.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>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="352" width="1.8" height="15.0" fill="rgb(224,111,2)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="70.4" y="832" width="1.9" height="15.0" fill="rgb(229,62,16)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="842.5" font-size="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 (2 samples, 0.32%)</title><rect x="164.8" y="2224" width="3.8" height="15.0" fill="rgb(217,4,38)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (1 samples, 0.16%)</title><rect x="738.8" y="448" width="1.9" height="15.0" fill="rgb(248,84,6)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="1920" width="164.3" height="15.0" fill="rgb(226,99,36)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1930.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.16%)</title><rect x="432.9" y="1696" width="1.9" height="15.0" fill="rgb(217,157,29)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1706.5" font-size="12" 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.48%)</title><rect x="750.1" y="2272" width="5.7" height="15.0" fill="rgb(252,165,5)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="2282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="414.0" y="2144" width="1.9" height="15.0" fill="rgb(245,45,31)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="1088" width="366.3" height="15.0" fill="rgb(249,122,53)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="1098.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.16%)</title><rect x="119.5" y="1968" width="1.9" height="15.0" fill="rgb(243,62,3)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1978.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1648" width="1.8" height="15.0" fill="rgb(249,36,26)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="2256" width="1.9" height="15.0" fill="rgb(242,79,53)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="2266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="1040" width="1.9" height="15.0" fill="rgb(244,8,39)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="287.5" y="144" width="1.9" height="15.0" fill="rgb(237,104,27)" rx="2" ry="2" />
<text text-anchor="" x="290.54" y="154.5" font-size="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 (1 samples, 0.16%)</title><rect x="719.9" y="192" width="1.9" height="15.0" fill="rgb(211,146,36)" rx="2" ry="2" />
<text text-anchor="" x="722.89" y="202.5" font-size="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::run (1 samples, 0.16%)</title><rect x="310.2" y="176" width="1.9" height="15.0" fill="rgb(235,152,25)" rx="2" ry="2" />
<text text-anchor="" x="313.19" y="186.5" font-size="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::run (1 samples, 0.16%)</title><rect x="415.9" y="2704" width="1.9" height="15.0" fill="rgb(214,134,31)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="912" width="1.9" height="15.0" fill="rgb(207,226,16)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="106.3" y="1264" width="1.9" height="15.0" fill="rgb(254,94,13)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="1456" width="1.8" height="15.0" fill="rgb(249,220,21)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="1466.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (1 samples, 0.16%)</title><rect x="383.8" y="160" width="1.9" height="15.0" fill="rgb(223,142,29)" rx="2" ry="2" />
<text text-anchor="" x="386.82" y="170.5" font-size="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_start (1 samples, 0.16%)</title><rect x="159.2" y="3056" width="1.8" height="15.0" fill="rgb(207,140,53)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="3066.5" font-size="12" 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.32%)</title><rect x="429.1" y="1216" width="3.8" height="15.0" fill="rgb(236,153,20)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1226.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="83.6" y="704" width="1.9" height="15.0" fill="rgb(224,32,25)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="738.8" y="1728" width="1.9" height="15.0" fill="rgb(222,97,0)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="1728" width="164.3" height="15.0" fill="rgb(234,0,27)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1738.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.16%)</title><rect x="79.9" y="880" width="1.8" height="15.0" fill="rgb(244,131,1)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1952" width="1.9" height="15.0" fill="rgb(231,205,29)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="1142.8" y="2384" width="1.9" height="15.0" fill="rgb(224,5,11)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="2592" width="1.9" height="15.0" fill="rgb(241,48,46)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="656" width="1.8" height="15.0" fill="rgb(233,137,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="666.5" font-size="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::Code_Gen (1 samples, 0.16%)</title><rect x="59.1" y="128" width="1.9" height="15.0" fill="rgb(223,110,27)" rx="2" ry="2" />
<text text-anchor="" x="62.09" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="800" width="1.8" height="15.0" fill="rgb(232,85,2)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="810.5" font-size="12" 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.32%)</title><rect x="164.8" y="976" width="3.8" height="15.0" fill="rgb(218,218,34)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="986.5" font-size="12" 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.64%)</title><rect x="506.5" y="1952" width="7.6" height="15.0" fill="rgb(242,51,34)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2000" width="1.9" height="15.0" fill="rgb(232,17,54)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="2208" width="1.9" height="15.0" fill="rgb(205,180,34)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="125.2" y="512" width="1.9" height="15.0" fill="rgb(212,36,52)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="522.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="278.1" y="608" width="1.9" height="15.0" fill="rgb(214,206,36)" rx="2" ry="2" />
<text text-anchor="" x="281.10" y="618.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::hash (1 samples, 0.16%)</title><rect x="85.5" y="160" width="1.9" height="15.0" fill="rgb(214,212,46)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="816" width="1.9" height="15.0" fill="rgb(247,57,44)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="688" width="1.9" height="15.0" fill="rgb(208,163,35)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="748.2" y="1520" width="1.9" height="15.0" fill="rgb(222,77,13)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1530.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1984" width="1.9" height="15.0" fill="rgb(217,206,19)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1994.5" font-size="12" 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.32%)</title><rect x="176.1" y="2112" width="3.8" height="15.0" fill="rgb(215,65,24)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="2122.5" font-size="12" 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.32%)</title><rect x="429.1" y="160" width="3.8" height="15.0" fill="rgb(233,168,18)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="170.5" font-size="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_start (1 samples, 0.16%)</title><rect x="104.4" y="2688" width="1.9" height="15.0" fill="rgb(208,64,52)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1472" width="1.9" height="15.0" fill="rgb(211,118,40)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1482.5" font-size="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-85641/85650 (1 samples, 0.16%)</title><rect x="283.8" y="240" width="1.8" height="15.0" fill="rgb(212,106,46)" rx="2" ry="2" />
<text text-anchor="" x="286.76" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="1600" width="1.9" height="15.0" fill="rgb(232,3,21)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1504" width="1.9" height="15.0" fill="rgb(226,59,50)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="1776" width="1.9" height="15.0" fill="rgb(236,192,17)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1824" width="1.9" height="15.0" fill="rgb(251,3,33)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="1616" width="1.9" height="15.0" fill="rgb(237,32,5)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1712" width="1.9" height="15.0" fill="rgb(227,142,5)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1072" width="1.9" height="15.0" fill="rgb(219,106,13)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1082.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="816" width="1.9" height="15.0" fill="rgb(213,114,30)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="688" width="1.9" height="15.0" fill="rgb(240,91,24)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="698.5" font-size="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.16%)</title><rect x="127.1" y="400" width="1.8" height="15.0" fill="rgb(227,121,42)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="1088" width="164.3" height="15.0" fill="rgb(248,22,3)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.32%)</title><rect x="687.8" y="2000" width="3.8" height="15.0" fill="rgb(222,107,13)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="2010.5" font-size="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.16%)</title><rect x="1173.0" y="128" width="1.9" height="15.0" fill="rgb(214,114,12)" rx="2" ry="2" />
<text text-anchor="" x="1176.01" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="448" width="1.8" height="15.0" fill="rgb(237,34,44)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1216" width="1.8" height="15.0" fill="rgb(222,127,36)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1226.5" font-size="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 (1 samples, 0.16%)</title><rect x="442.4" y="816" width="1.8" height="15.0" fill="rgb(237,34,24)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="104.4" y="816" width="1.9" height="15.0" fill="rgb(223,30,32)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::term (1 samples, 0.16%)</title><rect x="128.9" y="272" width="1.9" height="15.0" fill="rgb(221,135,48)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="1392" width="1.9" height="15.0" fill="rgb(251,132,20)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1232" width="1.9" height="15.0" fill="rgb(243,228,45)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1242.5" font-size="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::thread_main_inner (1 samples, 0.16%)</title><rect x="30.8" y="192" width="1.9" height="15.0" fill="rgb(251,1,20)" rx="2" ry="2" />
<text text-anchor="" x="33.77" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="106.3" y="1632" width="1.9" height="15.0" fill="rgb(225,89,37)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1648" width="1.9" height="15.0" fill="rgb(229,31,7)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="115.7" y="1856" width="1.9" height="15.0" fill="rgb(253,168,46)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1264" width="1.9" height="15.0" fill="rgb(222,220,26)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="2352" width="1.9" height="15.0" fill="rgb(249,52,25)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="2362.5" font-size="12" 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.64%)</title><rect x="506.5" y="2016" width="7.6" height="15.0" fill="rgb(223,109,15)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2026.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.16%)</title><rect x="298.9" y="176" width="1.9" height="15.0" fill="rgb(207,100,11)" rx="2" ry="2" />
<text text-anchor="" x="301.86" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="733.1" y="1856" width="1.9" height="15.0" fill="rgb(215,56,18)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="1866.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1920" width="1.9" height="15.0" fill="rgb(249,137,40)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="738.8" y="2048" width="1.9" height="15.0" fill="rgb(218,55,10)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="744.4" y="2144" width="1.9" height="15.0" fill="rgb(218,169,52)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="752" width="1.9" height="15.0" fill="rgb(239,195,15)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1280" width="1.9" height="15.0" fill="rgb(235,145,2)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="151.6" y="1680" width="1.9" height="15.0" fill="rgb(241,153,21)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="992" width="1.9" height="15.0" fill="rgb(247,37,38)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1002.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="1200" width="1.9" height="15.0" fill="rgb(233,116,4)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="1210.5" font-size="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-85641/85649 (1 samples, 0.16%)</title><rect x="440.5" y="336" width="1.9" height="15.0" fill="rgb(237,120,16)" rx="2" ry="2" />
<text text-anchor="" x="443.46" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="2240" width="1.8" height="15.0" fill="rgb(239,24,2)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="2250.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="1840" width="43.4" height="15.0" fill="rgb(246,21,25)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1850.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>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="2000" width="1.9" height="15.0" fill="rgb(252,215,21)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (87 samples, 13.92%)</title><rect x="514.1" y="224" width="164.3" height="15.0" fill="rgb(219,19,40)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1120" width="1.9" height="15.0" fill="rgb(215,25,22)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="266.8" y="1296" width="1.9" height="15.0" fill="rgb(249,98,33)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="134.6" y="1264" width="1.9" height="15.0" fill="rgb(213,2,37)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="1776" width="1.9" height="15.0" fill="rgb(241,208,30)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="1786.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="112" width="1.9" height="15.0" fill="rgb(216,104,7)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="122.5" font-size="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.16%)</title><rect x="723.7" y="144" width="1.9" height="15.0" fill="rgb(254,84,12)" rx="2" ry="2" />
<text text-anchor="" x="726.66" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="1184" width="1.9" height="15.0" fill="rgb(210,183,15)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="157.3" y="2480" width="1.9" height="15.0" fill="rgb(217,0,41)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2490.5" font-size="12" 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.64%)</title><rect x="506.5" y="2128" width="7.6" height="15.0" fill="rgb(236,165,32)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1148.5" y="1168" width="1.9" height="15.0" fill="rgb(236,199,35)" rx="2" ry="2" />
<text text-anchor="" x="1151.46" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="784" width="1.9" height="15.0" fill="rgb(254,111,18)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/tools/zip/ZipOutputStream:::writeDeflated (1 samples, 0.16%)</title><rect x="414.0" y="288" width="1.9" height="15.0" fill="rgb(235,162,34)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="298.5" font-size="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_start (1 samples, 0.16%)</title><rect x="442.4" y="2736" width="1.8" height="15.0" fill="rgb(206,207,25)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="256" width="1.8" height="15.0" fill="rgb(246,2,36)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="266.5" font-size="12" 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.32%)</title><rect x="176.1" y="1776" width="3.8" height="15.0" fill="rgb(239,194,48)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1786.5" font-size="12" 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.32%)</title><rect x="1150.4" y="2128" width="3.7" height="15.0" fill="rgb(206,94,26)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="2138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="1840" width="1.9" height="15.0" fill="rgb(236,76,7)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="1850.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1142.8" y="864" width="1.9" height="15.0" fill="rgb(238,18,28)" rx="2" ry="2" />
<text text-anchor="" x="1145.80" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="336" width="32.1" height="15.0" fill="rgb(227,39,28)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="346.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>Lcom/sun/tools/javac/comp/Attr:::visitNewClass (1 samples, 0.16%)</title><rect x="104.4" y="128" width="1.9" height="15.0" fill="rgb(244,33,16)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="138.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="132.7" y="1536" width="1.9" height="15.0" fill="rgb(226,8,38)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1546.5" font-size="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 (1 samples, 0.16%)</title><rect x="108.2" y="672" width="1.9" height="15.0" fill="rgb(231,138,8)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="682.5" font-size="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::run (1 samples, 0.16%)</title><rect x="684.0" y="2688" width="1.9" height="15.0" fill="rgb(227,100,22)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="2480" width="1.9" height="15.0" fill="rgb(223,22,34)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="2490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="157.3" y="1568" width="1.9" height="15.0" fill="rgb(248,161,37)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="1712" width="1.9" height="15.0" fill="rgb(238,19,34)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1722.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="500.9" y="1280" width="1.9" height="15.0" fill="rgb(216,158,28)" rx="2" ry="2" />
<text text-anchor="" x="503.88" y="1290.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1232" width="1.9" height="15.0" fill="rgb(242,122,46)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="408.4" y="832" width="1.9" height="15.0" fill="rgb(205,227,44)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="842.5" font-size="12" 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.64%)</title><rect x="506.5" y="1504" width="7.6" height="15.0" fill="rgb(233,11,25)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="162.9" y="304" width="1.9" height="15.0" fill="rgb(221,96,44)" rx="2" ry="2" />
<text text-anchor="" x="165.93" y="314.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="912" width="1.9" height="15.0" fill="rgb(207,143,19)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="922.5" font-size="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.16%)</title><rect x="83.6" y="1760" width="1.9" height="15.0" fill="rgb(247,8,30)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="2464" width="1.9" height="15.0" fill="rgb(211,133,39)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2474.5" font-size="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.16%)</title><rect x="731.2" y="288" width="1.9" height="15.0" fill="rgb(213,106,13)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="128" width="1.9" height="15.0" fill="rgb(221,102,7)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="138.5" font-size="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_start (2 samples, 0.32%)</title><rect x="164.8" y="2272" width="3.8" height="15.0" fill="rgb(232,149,47)" rx="2" ry="2" />
<text text-anchor="" x="167.82" y="2282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="2224" width="1.9" height="15.0" fill="rgb(233,66,26)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="1140.9" y="1824" width="1.9" height="15.0" fill="rgb(251,110,54)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="1248" width="1.9" height="15.0" fill="rgb(243,190,9)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="544" width="1.9" height="15.0" fill="rgb(233,203,52)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="554.5" font-size="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.16%)</title><rect x="725.6" y="208" width="1.8" height="15.0" fill="rgb(234,139,0)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="218.5" font-size="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.16%)</title><rect x="446.1" y="2624" width="1.9" height="15.0" fill="rgb(243,109,21)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="421.6" y="1168" width="1.9" height="15.0" fill="rgb(241,44,15)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::doHash (1 samples, 0.16%)</title><rect x="421.6" y="336" width="1.9" height="15.0" fill="rgb(219,37,49)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_getattr (1 samples, 0.16%)</title><rect x="723.7" y="80" width="1.9" height="15.0" fill="rgb(223,2,29)" rx="2" ry="2" />
<text text-anchor="" x="726.66" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="2144" width="1.8" height="15.0" fill="rgb(209,93,39)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (13 samples, 2.08%)</title><rect x="1133.4" y="80" width="24.5" height="15.0" fill="rgb(229,206,39)" rx="2" ry="2" />
<text text-anchor="" x="1136.36" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1392" width="1.9" height="15.0" fill="rgb(227,12,25)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1402.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1264" width="1.9" height="15.0" fill="rgb(241,90,47)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1274.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="378.2" y="176" width="1.8" height="15.0" fill="rgb(245,1,6)" rx="2" ry="2" />
<text text-anchor="" x="381.16" y="186.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="1920" width="1.8" height="15.0" fill="rgb(254,100,36)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="1930.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2432" width="43.4" height="15.0" fill="rgb(220,184,52)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2442.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>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="1264" width="1.9" height="15.0" fill="rgb(234,119,39)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1360" width="1.9" height="15.0" fill="rgb(231,167,46)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="288" width="1.9" height="15.0" fill="rgb(249,226,13)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="678.4" y="672" width="1.8" height="15.0" fill="rgb(215,162,37)" rx="2" ry="2" />
<text text-anchor="" x="681.35" y="682.5" font-size="12" 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.80%)</title><rect x="1163.6" y="928" width="9.4" height="15.0" fill="rgb(253,165,16)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="115.7" y="1552" width="1.9" height="15.0" fill="rgb(212,186,48)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="1562.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="272" width="15.1" height="15.0" fill="rgb(220,157,36)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="282.5" font-size="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 (1 samples, 0.16%)</title><rect x="104.4" y="800" width="1.9" height="15.0" fill="rgb(223,10,1)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="414.0" y="1104" width="1.9" height="15.0" fill="rgb(215,162,35)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="496" width="1.9" height="15.0" fill="rgb(247,150,41)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="410.3" y="64" width="1.8" height="15.0" fill="rgb(235,43,1)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="79.9" y="1568" width="1.8" height="15.0" fill="rgb(247,189,12)" rx="2" ry="2" />
<text text-anchor="" x="82.86" y="1578.5" font-size="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.16%)</title><rect x="134.6" y="1088" width="1.9" height="15.0" fill="rgb(221,54,52)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="746.3" y="1632" width="1.9" height="15.0" fill="rgb(210,192,0)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="256" width="1.9" height="15.0" fill="rgb(213,193,52)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="880" width="1.9" height="15.0" fill="rgb(222,84,34)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="2400" width="1.9" height="15.0" fill="rgb(234,149,23)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="2410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (21 samples, 3.36%)</title><rect x="179.9" y="1936" width="39.7" height="15.0" fill="rgb(254,46,23)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="1946.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>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1504" width="1.9" height="15.0" fill="rgb(225,16,36)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="768" width="1.9" height="15.0" fill="rgb(225,204,25)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="2512" width="1.9" height="15.0" fill="rgb(239,169,6)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="2522.5" font-size="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 (1 samples, 0.16%)</title><rect x="421.6" y="2448" width="1.9" height="15.0" fill="rgb(243,217,10)" rx="2" ry="2" />
<text text-anchor="" x="424.58" y="2458.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="151.6" y="1648" width="1.9" height="15.0" fill="rgb(220,20,19)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1658.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="446.1" y="1376" width="1.9" height="15.0" fill="rgb(215,2,16)" rx="2" ry="2" />
<text text-anchor="" x="449.13" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="544" width="366.3" height="15.0" fill="rgb(233,20,23)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="554.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>GraphBuilder::iterate_bytecodes_for_block (1 samples, 0.16%)</title><rect x="38.3" y="432" width="1.9" height="15.0" fill="rgb(206,142,3)" rx="2" ry="2" />
<text text-anchor="" x="41.32" y="442.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.6" y="544" width="1.8" height="15.0" fill="rgb(223,35,53)" rx="2" ry="2" />
<text text-anchor="" x="1183.56" y="554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1104" width="1.9" height="15.0" fill="rgb(248,201,25)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1114.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="272" width="1.9" height="15.0" fill="rgb(211,76,13)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="704" width="1.9" height="15.0" fill="rgb(253,110,21)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="714.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1664" width="1.9" height="15.0" fill="rgb(236,103,4)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1674.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="684.0" y="2736" width="1.9" height="15.0" fill="rgb(242,21,14)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="2746.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="480" width="1.9" height="15.0" fill="rgb(225,163,48)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (1 samples, 0.16%)</title><rect x="685.9" y="384" width="1.9" height="15.0" fill="rgb(227,192,35)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="2496" width="1.9" height="15.0" fill="rgb(227,156,10)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2506.5" font-size="12" 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.32%)</title><rect x="176.1" y="1472" width="3.8" height="15.0" fill="rgb(254,103,31)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="682.1" y="1584" width="1.9" height="15.0" fill="rgb(237,5,22)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="1594.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="684.0" y="592" width="1.9" height="15.0" fill="rgb(214,145,52)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="381.9" y="96" width="1.9" height="15.0" fill="rgb(247,196,41)" rx="2" ry="2" />
<text text-anchor="" x="384.94" y="106.5" font-size="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_start (2 samples, 0.32%)</title><rect x="334.7" y="208" width="3.8" height="15.0" fill="rgb(210,49,2)" rx="2" ry="2" />
<text text-anchor="" x="337.74" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (87 samples, 13.92%)</title><rect x="514.1" y="544" width="164.3" height="15.0" fill="rgb(214,128,17)" rx="2" ry="2" />
<text text-anchor="" x="517.10" y="554.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 (4 samples, 0.64%)</title><rect x="755.8" y="1632" width="7.5" height="15.0" fill="rgb(230,138,1)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1152" width="1.9" height="15.0" fill="rgb(223,125,42)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1162.5" font-size="12" 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.32%)</title><rect x="687.8" y="624" width="3.8" height="15.0" fill="rgb(212,186,0)" rx="2" ry="2" />
<text text-anchor="" x="690.79" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="427.2" y="1920" width="1.9" height="15.0" fill="rgb(223,26,54)" rx="2" ry="2" />
<text text-anchor="" x="430.25" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="1424" width="1.9" height="15.0" fill="rgb(236,121,28)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="1434.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="2000" width="1.9" height="15.0" fill="rgb(231,225,22)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="2010.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="592" width="1.9" height="15.0" fill="rgb(213,214,22)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="602.5" font-size="12" 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.48%)</title><rect x="750.1" y="336" width="5.7" height="15.0" fill="rgb(221,165,40)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (1 samples, 0.16%)</title><rect x="380.0" y="80" width="1.9" height="15.0" fill="rgb(207,40,20)" rx="2" ry="2" />
<text text-anchor="" x="383.05" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="132.7" y="1616" width="1.9" height="15.0" fill="rgb(253,154,39)" rx="2" ry="2" />
<text text-anchor="" x="135.72" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCTry:::accept (1 samples, 0.16%)</title><rect x="159.2" y="656" width="1.8" height="15.0" fill="rgb(238,98,26)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="666.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1504" width="1.9" height="15.0" fill="rgb(251,57,32)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1514.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/FileInputStream:::readBytes (2 samples, 0.32%)</title><rect x="1150.4" y="416" width="3.7" height="15.0" fill="rgb(207,193,13)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="502.8" y="1680" width="1.9" height="15.0" fill="rgb(210,43,6)" rx="2" ry="2" />
<text text-anchor="" x="505.77" y="1690.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="1632" width="1.9" height="15.0" fill="rgb(252,166,15)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="1642.5" font-size="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.16%)</title><rect x="1173.0" y="144" width="1.9" height="15.0" fill="rgb(228,162,43)" rx="2" ry="2" />
<text text-anchor="" x="1176.01" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="1328" width="1.9" height="15.0" fill="rgb(250,65,50)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="1338.5" font-size="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_start (1 samples, 0.16%)</title><rect x="125.2" y="2832" width="1.9" height="15.0" fill="rgb(227,20,36)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="2842.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="735.0" y="2048" width="1.9" height="15.0" fill="rgb(233,188,21)" rx="2" ry="2" />
<text text-anchor="" x="737.99" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Flow$BaseAnalyzer:::scan (1 samples, 0.16%)</title><rect x="159.2" y="672" width="1.8" height="15.0" fill="rgb(241,198,35)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="682.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2240" width="1.9" height="15.0" fill="rgb(224,74,28)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="688" width="1.9" height="15.0" fill="rgb(220,137,49)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="415.9" y="2544" width="1.9" height="15.0" fill="rgb(226,45,33)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="2554.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::compile_java_method (1 samples, 0.16%)</title><rect x="19.4" y="320" width="1.9" height="15.0" fill="rgb(218,151,8)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="95.0" y="1696" width="1.8" height="15.0" fill="rgb(237,159,46)" rx="2" ry="2" />
<text text-anchor="" x="97.96" y="1706.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1344" width="1.8" height="15.0" fill="rgb(242,181,21)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1354.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="1024" width="1.9" height="15.0" fill="rgb(248,103,7)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1168" width="1.9" height="15.0" fill="rgb(212,15,23)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1144.7" y="1952" width="1.9" height="15.0" fill="rgb(249,58,29)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="1962.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="104.4" y="1056" width="1.9" height="15.0" fill="rgb(250,217,48)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="78.0" y="1360" width="1.9" height="15.0" fill="rgb(229,188,33)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="1370.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1936" width="1.9" height="15.0" fill="rgb(213,185,9)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1946.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="736" width="1.9" height="15.0" fill="rgb(230,92,39)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="746.5" font-size="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.16%)</title><rect x="104.4" y="2576" width="1.9" height="15.0" fill="rgb(254,226,12)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="1632" width="1.9" height="15.0" fill="rgb(239,204,38)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/RandomAccessFile:::writeBytes (1 samples, 0.16%)</title><rect x="415.9" y="160" width="1.9" height="15.0" fill="rgb(226,220,37)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="170.5" font-size="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::Compile (1 samples, 0.16%)</title><rect x="61.0" y="144" width="1.9" height="15.0" fill="rgb(223,26,22)" rx="2" ry="2" />
<text text-anchor="" x="63.98" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2048" width="1.9" height="15.0" fill="rgb(247,8,49)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2058.5" font-size="12" 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.32%)</title><rect x="429.1" y="2080" width="3.8" height="15.0" fill="rgb(247,204,54)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="2090.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="1178.7" y="1552" width="1.9" height="15.0" fill="rgb(247,35,46)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="1562.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1600" width="1.9" height="15.0" fill="rgb(226,189,27)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="410.3" y="816" width="1.8" height="15.0" fill="rgb(213,95,49)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="826.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="444.2" y="2784" width="1.9" height="15.0" fill="rgb(234,115,40)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="2794.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1140.9" y="2352" width="1.9" height="15.0" fill="rgb(217,108,35)" rx="2" ry="2" />
<text text-anchor="" x="1143.91" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1728" width="1.9" height="15.0" fill="rgb(253,3,31)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="128.9" y="2032" width="1.9" height="15.0" fill="rgb(251,126,37)" rx="2" ry="2" />
<text text-anchor="" x="131.94" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="70.4" y="1296" width="1.9" height="15.0" fill="rgb(250,218,6)" rx="2" ry="2" />
<text text-anchor="" x="73.42" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1131.5" y="1616" width="1.9" height="15.0" fill="rgb(228,169,40)" rx="2" ry="2" />
<text text-anchor="" x="1134.47" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1312" width="1.9" height="15.0" fill="rgb(247,137,14)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1322.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="2000" width="1.8" height="15.0" fill="rgb(230,117,8)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="2010.5" font-size="12" 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.64%)</title><rect x="755.8" y="2512" width="7.5" height="15.0" fill="rgb(235,59,5)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1472" width="1.9" height="15.0" fill="rgb(212,181,44)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1482.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="2144" width="1.8" height="15.0" fill="rgb(228,90,44)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="2154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="117.6" y="800" width="1.9" height="15.0" fill="rgb(246,141,23)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="2336" width="1.9" height="15.0" fill="rgb(208,159,23)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="2346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="2096" width="1.9" height="15.0" fill="rgb(205,31,45)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="2106.5" font-size="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.16%)</title><rect x="266.8" y="2576" width="1.9" height="15.0" fill="rgb(231,172,51)" rx="2" ry="2" />
<text text-anchor="" x="269.77" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2032" width="1.8" height="15.0" fill="rgb(232,150,9)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="1920" width="1.9" height="15.0" fill="rgb(221,108,48)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="1616" width="1.9" height="15.0" fill="rgb(216,118,27)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="1626.5" font-size="12" 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, 3.68%)</title><rect x="455.6" y="2128" width="43.4" height="15.0" fill="rgb(245,131,4)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="2138.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>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1312" width="1.9" height="15.0" fill="rgb(232,222,33)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1322.5" font-size="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.16%)</title><rect x="453.7" y="2592" width="1.9" height="15.0" fill="rgb(214,221,1)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="718.0" y="1664" width="1.9" height="15.0" fill="rgb(222,68,38)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1674.5" font-size="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::compiler_thread_loop (1 samples, 0.16%)</title><rect x="25.1" y="240" width="1.9" height="15.0" fill="rgb(249,190,13)" rx="2" ry="2" />
<text text-anchor="" x="28.10" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1632" width="1.9" height="15.0" fill="rgb(223,79,39)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1 samples, 0.16%)</title><rect x="733.1" y="160" width="1.9" height="15.0" fill="rgb(215,184,0)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="170.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1904" width="1.9" height="15.0" fill="rgb(240,102,17)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/commons/io/IOUtils:::copyLarge (1 samples, 0.16%)</title><rect x="444.2" y="480" width="1.9" height="15.0" fill="rgb(219,46,33)" rx="2" ry="2" />
<text text-anchor="" x="447.24" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="112.0" y="1648" width="1.8" height="15.0" fill="rgb(228,143,43)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1658.5" font-size="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.16%)</title><rect x="130.8" y="2320" width="1.9" height="15.0" fill="rgb(233,104,48)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="2330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="108.2" y="1040" width="1.9" height="15.0" fill="rgb(250,10,29)" rx="2" ry="2" />
<text text-anchor="" x="111.18" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1728" width="32.1" height="15.0" fill="rgb(221,124,41)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1738.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>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="400" width="1.9" height="15.0" fill="rgb(254,214,21)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="410.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::build__physical (1 samples, 0.16%)</title><rect x="51.5" y="80" width="1.9" height="15.0" fill="rgb(231,84,24)" rx="2" ry="2" />
<text text-anchor="" x="54.54" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::Compilation (1 samples, 0.16%)</title><rect x="393.3" y="416" width="1.9" height="15.0" fill="rgb(220,25,2)" rx="2" ry="2" />
<text text-anchor="" x="396.26" y="426.5" font-size="12" 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.80%)</title><rect x="1163.6" y="912" width="9.4" height="15.0" fill="rgb(235,125,46)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="922.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/TreeScanner:::scan (1 samples, 0.16%)</title><rect x="159.2" y="416" width="1.8" height="15.0" fill="rgb(224,163,8)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="426.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="106.3" y="1200" width="1.9" height="15.0" fill="rgb(218,136,7)" rx="2" ry="2" />
<text text-anchor="" x="109.29" y="1210.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="81.7" y="640" width="1.9" height="15.0" fill="rgb(218,213,42)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="650.5" font-size="12" 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.48%)</title><rect x="750.1" y="1600" width="5.7" height="15.0" fill="rgb(212,197,12)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1610.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="117.6" y="1168" width="1.9" height="15.0" fill="rgb(232,142,47)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1178.5" font-size="12" 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.32%)</title><rect x="176.1" y="1936" width="3.8" height="15.0" fill="rgb(226,78,21)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1946.5" font-size="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_Deflater_deflateBytes (5 samples, 0.80%)</title><rect x="1163.6" y="144" width="9.4" height="15.0" fill="rgb(206,158,7)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="168.6" y="592" width="1.9" height="15.0" fill="rgb(234,147,49)" rx="2" ry="2" />
<text text-anchor="" x="171.59" y="602.5" font-size="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-85641/85659 (1 samples, 0.16%)</title><rect x="157.3" y="2720" width="1.9" height="15.0" fill="rgb(240,191,7)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="2730.5" font-size="12" 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.80%)</title><rect x="1163.6" y="1376" width="9.4" height="15.0" fill="rgb(239,37,35)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__breadahead (2 samples, 0.32%)</title><rect x="1133.4" y="240" width="3.7" height="15.0" fill="rgb(230,56,3)" rx="2" ry="2" />
<text text-anchor="" x="1136.36" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1184.3" y="272" width="1.9" height="15.0" fill="rgb(231,51,53)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="282.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="412.1" y="256" width="1.9" height="15.0" fill="rgb(242,171,49)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="125.2" y="1984" width="1.9" height="15.0" fill="rgb(244,65,41)" rx="2" ry="2" />
<text text-anchor="" x="128.17" y="1994.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1248" width="1.9" height="15.0" fill="rgb(234,30,33)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1258.5" font-size="12" 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, 1.28%)</title><rect x="219.6" y="1632" width="15.1" height="15.0" fill="rgb(222,214,16)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="1642.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="112.0" y="1328" width="1.8" height="15.0" fill="rgb(217,78,6)" rx="2" ry="2" />
<text text-anchor="" x="114.95" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="2000" width="1.9" height="15.0" fill="rgb(218,68,25)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="2010.5" font-size="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::invoke_compiler_on_method (1 samples, 0.16%)</title><rect x="27.0" y="128" width="1.9" height="15.0" fill="rgb(227,91,44)" rx="2" ry="2" />
<text text-anchor="" x="29.99" y="138.5" font-size="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.16%)</title><rect x="415.9" y="768" width="1.9" height="15.0" fill="rgb(223,151,48)" rx="2" ry="2" />
<text text-anchor="" x="418.92" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.16%)</title><rect x="685.9" y="192" width="1.9" height="15.0" fill="rgb(251,185,43)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="202.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="704" width="1.9" height="15.0" fill="rgb(252,20,31)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="714.5" font-size="12" 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.32%)</title><rect x="429.1" y="1904" width="3.8" height="15.0" fill="rgb(225,222,22)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="2576" width="1.9" height="15.0" fill="rgb(249,203,42)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="414.0" y="928" width="1.9" height="15.0" fill="rgb(243,28,16)" rx="2" ry="2" />
<text text-anchor="" x="417.03" y="938.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1168" width="1.9" height="15.0" fill="rgb(232,180,14)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1178.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile (1 samples, 0.16%)</title><rect x="1184.3" y="144" width="1.9" height="15.0" fill="rgb(243,190,25)" rx="2" ry="2" />
<text text-anchor="" x="1187.34" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="76.1" y="1056" width="1.9" height="15.0" fill="rgb(206,182,45)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="1066.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="134.6" y="848" width="1.9" height="15.0" fill="rgb(232,80,19)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="684.0" y="1808" width="1.9" height="15.0" fill="rgb(210,109,32)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (1 samples, 0.16%)</title><rect x="121.4" y="352" width="1.9" height="15.0" fill="rgb(231,10,48)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="362.5" font-size="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.16%)</title><rect x="159.2" y="1136" width="1.8" height="15.0" fill="rgb(208,27,38)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="624" width="1.9" height="15.0" fill="rgb(248,4,21)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="912" width="1.9" height="15.0" fill="rgb(239,208,35)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="922.5" font-size="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.16%)</title><rect x="1178.7" y="2384" width="1.9" height="15.0" fill="rgb(209,0,53)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCNewClass:::accept (1 samples, 0.16%)</title><rect x="104.4" y="144" width="1.9" height="15.0" fill="rgb(217,193,25)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="154.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="1728" width="1.9" height="15.0" fill="rgb(219,219,29)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="2016" width="1.9" height="15.0" fill="rgb(242,179,44)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2026.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1040" width="1.8" height="15.0" fill="rgb(240,83,51)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1050.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="1872" width="1.9" height="15.0" fill="rgb(244,95,6)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultFileLockManager$DefaultFileLock:::readFile (1 samples, 0.16%)</title><rect x="149.7" y="256" width="1.9" height="15.0" fill="rgb(243,104,43)" rx="2" ry="2" />
<text text-anchor="" x="152.71" y="266.5" font-size="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_start (1 samples, 0.16%)</title><rect x="398.9" y="320" width="1.9" height="15.0" fill="rgb(214,93,25)" rx="2" ry="2" />
<text text-anchor="" x="401.93" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::sigToType (2 samples, 0.32%)</title><rect x="123.3" y="80" width="3.8" height="15.0" fill="rgb(237,223,17)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="90.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="727.4" y="528" width="1.9" height="15.0" fill="rgb(252,86,20)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="538.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1328" width="1.9" height="15.0" fill="rgb(241,96,24)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1338.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="2352" width="1.9" height="15.0" fill="rgb(247,37,9)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="423.5" y="288" width="1.9" height="15.0" fill="rgb(216,167,26)" rx="2" ry="2" />
<text text-anchor="" x="426.47" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="685.9" y="1824" width="1.9" height="15.0" fill="rgb(216,120,45)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="1834.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2208" width="1.8" height="15.0" fill="rgb(248,10,16)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="425.4" y="1872" width="1.8" height="15.0" fill="rgb(252,176,40)" rx="2" ry="2" />
<text text-anchor="" x="428.36" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (23 samples, 3.68%)</title><rect x="455.6" y="1248" width="43.4" height="15.0" fill="rgb(224,48,37)" rx="2" ry="2" />
<text text-anchor="" x="458.57" y="1258.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="1904" width="1.9" height="15.0" fill="rgb(236,93,38)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="161.0" y="576" width="1.9" height="15.0" fill="rgb(212,204,36)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="586.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (194 samples, 31.04%)</title><rect x="763.3" y="2496" width="366.3" height="15.0" fill="rgb(205,25,12)" rx="2" ry="2" />
<text text-anchor="" x="766.31" y="2506.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (1 samples, 0.16%)</title><rect x="72.3" y="1920" width="1.9" height="15.0" fill="rgb(236,167,40)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::assign_reg_num (1 samples, 0.16%)</title><rect x="102.5" y="112" width="1.9" height="15.0" fill="rgb(236,66,15)" rx="2" ry="2" />
<text text-anchor="" x="105.51" y="122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1648" width="1.9" height="15.0" fill="rgb(217,164,9)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1658.5" font-size="12" 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.64%)</title><rect x="506.5" y="2352" width="7.6" height="15.0" fill="rgb(205,129,26)" rx="2" ry="2" />
<text text-anchor="" x="509.54" y="2362.5" font-size="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_start (1 samples, 0.16%)</title><rect x="1129.6" y="192" width="1.9" height="15.0" fill="rgb(215,91,3)" rx="2" ry="2" />
<text text-anchor="" x="1132.58" y="202.5" font-size="12" 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.32%)</title><rect x="1150.4" y="2208" width="3.7" height="15.0" fill="rgb(242,217,11)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="2218.5" font-size="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::evaluate_operation (1 samples, 0.16%)</title><rect x="62.9" y="208" width="1.9" height="15.0" fill="rgb(239,8,38)" rx="2" ry="2" />
<text text-anchor="" x="65.86" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="2352" width="1.9" height="15.0" fill="rgb(207,208,21)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1184" width="1.8" height="15.0" fill="rgb(246,66,2)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1194.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="748.2" y="1776" width="1.9" height="15.0" fill="rgb(241,185,23)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1786.5" font-size="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.16%)</title><rect x="746.3" y="2032" width="1.9" height="15.0" fill="rgb(228,104,48)" rx="2" ry="2" />
<text text-anchor="" x="749.32" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="2288" width="1.9" height="15.0" fill="rgb(227,56,34)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="2298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.7" y="2112" width="1.9" height="15.0" fill="rgb(223,211,43)" rx="2" ry="2" />
<text text-anchor="" x="1181.67" y="2122.5" font-size="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.16%)</title><rect x="104.4" y="752" width="1.9" height="15.0" fill="rgb(221,80,48)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="762.5" font-size="12" 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.64%)</title><rect x="755.8" y="400" width="7.5" height="15.0" fill="rgb(219,79,17)" rx="2" ry="2" />
<text text-anchor="" x="758.76" y="410.5" font-size="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.16%)</title><rect x="733.1" y="880" width="1.9" height="15.0" fill="rgb(239,127,5)" rx="2" ry="2" />
<text text-anchor="" x="736.10" y="890.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="731.2" y="1616" width="1.9" height="15.0" fill="rgb(215,106,31)" rx="2" ry="2" />
<text text-anchor="" x="734.22" y="1626.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (2 samples, 0.32%)</title><rect x="429.1" y="2624" width="3.8" height="15.0" fill="rgb(218,146,8)" rx="2" ry="2" />
<text text-anchor="" x="432.14" y="2634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="1920" width="1.9" height="15.0" fill="rgb(234,40,52)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="1930.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="159.2" y="2512" width="1.8" height="15.0" fill="rgb(206,170,19)" rx="2" ry="2" />
<text text-anchor="" x="162.15" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (17 samples, 2.72%)</title><rect x="234.7" y="1424" width="32.1" height="15.0" fill="rgb(224,179,52)" rx="2" ry="2" />
<text text-anchor="" x="237.67" y="1434.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>JavaCalls::call_virtual (1 samples, 0.16%)</title><rect x="117.6" y="2592" width="1.9" height="15.0" fill="rgb(252,73,2)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="2602.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="718.0" y="1088" width="1.9" height="15.0" fill="rgb(221,118,30)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1098.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (1 samples, 0.16%)</title><rect x="410.3" y="224" width="1.8" height="15.0" fill="rgb(218,150,32)" rx="2" ry="2" />
<text text-anchor="" x="413.26" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="740.7" y="1216" width="1.8" height="15.0" fill="rgb(223,2,54)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="1226.5" font-size="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 (1 samples, 0.16%)</title><rect x="725.6" y="896" width="1.8" height="15.0" fill="rgb(232,225,1)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="906.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (1 samples, 0.16%)</title><rect x="442.4" y="864" width="1.8" height="15.0" fill="rgb(222,12,32)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="874.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="161.0" y="688" width="1.9" height="15.0" fill="rgb(241,185,19)" rx="2" ry="2" />
<text text-anchor="" x="164.04" y="698.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="742.5" y="2384" width="1.9" height="15.0" fill="rgb(238,162,6)" rx="2" ry="2" />
<text text-anchor="" x="745.54" y="2394.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="384" width="1.9" height="15.0" fill="rgb(247,11,49)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="394.5" font-size="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_GetArrayLength (1 samples, 0.16%)</title><rect x="740.7" y="64" width="1.8" height="15.0" fill="rgb(219,49,10)" rx="2" ry="2" />
<text text-anchor="" x="743.66" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="127.1" y="1136" width="1.8" height="15.0" fill="rgb(233,173,30)" rx="2" ry="2" />
<text text-anchor="" x="130.06" y="1146.5" font-size="12" 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.32%)</title><rect x="176.1" y="1456" width="3.8" height="15.0" fill="rgb(230,152,5)" rx="2" ry="2" />
<text text-anchor="" x="179.14" y="1466.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="2448" width="26.4" height="15.0" fill="rgb(210,167,24)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="2458.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>Lorg/gradle/api/internal/hash/DefaultFileHasher:::hash (25 samples, 4.00%)</title><rect x="219.6" y="96" width="47.2" height="15.0" fill="rgb(207,121,31)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="123.3" y="752" width="1.9" height="15.0" fill="rgb(250,88,22)" rx="2" ry="2" />
<text text-anchor="" x="126.28" y="762.5" font-size="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::invoke (2 samples, 0.32%)</title><rect x="36.4" y="336" width="3.8" height="15.0" fill="rgb(229,1,15)" rx="2" ry="2" />
<text text-anchor="" x="39.43" y="346.5" font-size="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_mark_inode_dirty (1 samples, 0.16%)</title><rect x="685.9" y="64" width="1.9" height="15.0" fill="rgb(213,95,15)" rx="2" ry="2" />
<text text-anchor="" x="688.90" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="83.6" y="1568" width="1.9" height="15.0" fill="rgb(216,214,28)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="1578.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="91.2" y="1376" width="1.9" height="15.0" fill="rgb(227,192,54)" rx="2" ry="2" />
<text text-anchor="" x="94.18" y="1386.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1264" width="1.9" height="15.0" fill="rgb(239,155,41)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1274.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="121.4" y="1408" width="1.9" height="15.0" fill="rgb(224,198,41)" rx="2" ry="2" />
<text text-anchor="" x="124.39" y="1418.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="442.4" y="2032" width="1.8" height="15.0" fill="rgb(215,124,53)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="2042.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="104.4" y="2480" width="1.9" height="15.0" fill="rgb(250,11,50)" rx="2" ry="2" />
<text text-anchor="" x="107.40" y="2490.5" font-size="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_start (1 samples, 0.16%)</title><rect x="25.1" y="288" width="1.9" height="15.0" fill="rgb(249,172,8)" rx="2" ry="2" />
<text text-anchor="" x="28.10" y="298.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="81.7" y="768" width="1.9" height="15.0" fill="rgb(224,90,17)" rx="2" ry="2" />
<text text-anchor="" x="84.74" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="1632" width="1.9" height="15.0" fill="rgb(231,76,0)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="1642.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="880" width="26.4" height="15.0" fill="rgb(234,218,54)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="890.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.16%)</title><rect x="72.3" y="800" width="1.9" height="15.0" fill="rgb(232,138,8)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="624" width="1.9" height="15.0" fill="rgb(239,69,33)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="634.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="680.2" y="752" width="1.9" height="15.0" fill="rgb(208,180,28)" rx="2" ry="2" />
<text text-anchor="" x="683.24" y="762.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1488" width="1.8" height="15.0" fill="rgb(222,205,41)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1232" width="1.9" height="15.0" fill="rgb(219,163,32)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1242.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="682.1" y="720" width="1.9" height="15.0" fill="rgb(216,199,20)" rx="2" ry="2" />
<text text-anchor="" x="685.13" y="730.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.16%)</title><rect x="119.5" y="2848" width="1.9" height="15.0" fill="rgb(253,78,52)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="2858.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compiler::compile_method (1 samples, 0.16%)</title><rect x="98.7" y="256" width="1.9" height="15.0" fill="rgb(252,21,16)" rx="2" ry="2" />
<text text-anchor="" x="101.74" y="266.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="151.6" y="1664" width="1.9" height="15.0" fill="rgb(229,224,8)" rx="2" ry="2" />
<text text-anchor="" x="154.60" y="1674.5" font-size="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.16%)</title><rect x="1144.7" y="2352" width="1.9" height="15.0" fill="rgb(234,163,26)" rx="2" ry="2" />
<text text-anchor="" x="1147.69" y="2362.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="110.1" y="1296" width="1.9" height="15.0" fill="rgb(221,129,13)" rx="2" ry="2" />
<text text-anchor="" x="113.06" y="1306.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="1186.2" y="1136" width="1.9" height="15.0" fill="rgb(217,98,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1146.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="153.5" y="2048" width="1.9" height="15.0" fill="rgb(216,63,35)" rx="2" ry="2" />
<text text-anchor="" x="156.49" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribClassBody (1 samples, 0.16%)</title><rect x="115.7" y="480" width="1.9" height="15.0" fill="rgb(227,17,44)" rx="2" ry="2" />
<text text-anchor="" x="118.73" y="490.5" font-size="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-85641/85650 (1 samples, 0.16%)</title><rect x="147.8" y="320" width="1.9" height="15.0" fill="rgb(231,111,44)" rx="2" ry="2" />
<text text-anchor="" x="150.82" y="330.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="130.8" y="768" width="1.9" height="15.0" fill="rgb(245,54,46)" rx="2" ry="2" />
<text text-anchor="" x="133.83" y="778.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="72.3" y="1120" width="1.9" height="15.0" fill="rgb(229,163,13)" rx="2" ry="2" />
<text text-anchor="" x="75.30" y="1130.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="117.6" y="1792" width="1.9" height="15.0" fill="rgb(230,218,15)" rx="2" ry="2" />
<text text-anchor="" x="120.62" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1186.2" y="1792" width="1.9" height="15.0" fill="rgb(226,120,22)" rx="2" ry="2" />
<text text-anchor="" x="1189.22" y="1802.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1024" width="1.8" height="15.0" fill="rgb(243,112,26)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1034.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="1904" width="1.9" height="15.0" fill="rgb(226,104,42)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="1914.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="119.5" y="1888" width="1.9" height="15.0" fill="rgb(237,138,4)" rx="2" ry="2" />
<text text-anchor="" x="122.50" y="1898.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="499.0" y="992" width="1.9" height="15.0" fill="rgb(246,13,6)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="1002.5" font-size="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_user_generic_unrolled (3 samples, 0.48%)</title><rect x="499.0" y="64" width="5.7" height="15.0" fill="rgb(209,114,11)" rx="2" ry="2" />
<text text-anchor="" x="501.99" y="74.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="113.8" y="1728" width="1.9" height="15.0" fill="rgb(242,172,36)" rx="2" ry="2" />
<text text-anchor="" x="116.84" y="1738.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="725.6" y="1872" width="1.8" height="15.0" fill="rgb(213,222,5)" rx="2" ry="2" />
<text text-anchor="" x="728.55" y="1882.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__add_to_page_cache_locked (1 samples, 0.16%)</title><rect x="727.4" y="96" width="1.9" height="15.0" fill="rgb(205,185,17)" rx="2" ry="2" />
<text text-anchor="" x="730.44" y="106.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="157.3" y="1664" width="1.9" height="15.0" fill="rgb(224,110,4)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="1674.5" font-size="12" 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.80%)</title><rect x="1163.6" y="480" width="9.4" height="15.0" fill="rgb(219,170,15)" rx="2" ry="2" />
<text text-anchor="" x="1166.57" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="738.8" y="1488" width="1.9" height="15.0" fill="rgb(207,126,37)" rx="2" ry="2" />
<text text-anchor="" x="741.77" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="432.9" y="2112" width="1.9" height="15.0" fill="rgb(237,135,0)" rx="2" ry="2" />
<text text-anchor="" x="435.91" y="2122.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="157.3" y="192" width="1.9" height="15.0" fill="rgb(219,119,45)" rx="2" ry="2" />
<text text-anchor="" x="160.26" y="202.5" font-size="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::invoke (1 samples, 0.16%)</title><rect x="19.4" y="208" width="1.9" height="15.0" fill="rgb(229,144,7)" rx="2" ry="2" />
<text text-anchor="" x="22.44" y="218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="721.8" y="2256" width="1.9" height="15.0" fill="rgb(208,192,49)" rx="2" ry="2" />
<text text-anchor="" x="724.78" y="2266.5" font-size="12" 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, 2.24%)</title><rect x="691.6" y="1936" width="26.4" height="15.0" fill="rgb(241,42,27)" rx="2" ry="2" />
<text text-anchor="" x="694.57" y="1946.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 (8 samples, 1.28%)</title><rect x="219.6" y="480" width="15.1" height="15.0" fill="rgb(253,210,7)" rx="2" ry="2" />
<text text-anchor="" x="222.57" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="134.6" y="480" width="1.9" height="15.0" fill="rgb(216,113,23)" rx="2" ry="2" />
<text text-anchor="" x="137.61" y="490.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/dispatch/ProxyDispatchAdapter$DispatchingInvocationHandler:::invoke (1 samples, 0.16%)</title><rect x="155.4" y="240" width="1.9" height="15.0" fill="rgb(250,208,31)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="250.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="412.1" y="2336" width="1.9" height="15.0" fill="rgb(224,119,22)" rx="2" ry="2" />
<text text-anchor="" x="415.14" y="2346.5" font-size="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_start (1 samples, 0.16%)</title><rect x="274.3" y="224" width="1.9" height="15.0" fill="rgb(245,86,50)" rx="2" ry="2" />
<text text-anchor="" x="277.32" y="234.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (21 samples, 3.36%)</title><rect x="179.9" y="2048" width="39.7" height="15.0" fill="rgb(237,45,34)" rx="2" ry="2" />
<text text-anchor="" x="182.92" y="2058.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.48%)</title><rect x="750.1" y="1760" width="5.7" height="15.0" fill="rgb(208,105,52)" rx="2" ry="2" />
<text text-anchor="" x="753.10" y="1770.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="155.4" y="1488" width="1.9" height="15.0" fill="rgb(227,126,9)" rx="2" ry="2" />
<text text-anchor="" x="158.38" y="1498.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="442.4" y="336" width="1.8" height="15.0" fill="rgb(242,189,47)" rx="2" ry="2" />
<text text-anchor="" x="445.35" y="346.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="748.2" y="1808" width="1.9" height="15.0" fill="rgb(225,27,29)" rx="2" ry="2" />
<text text-anchor="" x="751.21" y="1818.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1137.1" y="800" width="1.9" height="15.0" fill="rgb(226,118,2)" rx="2" ry="2" />
<text text-anchor="" x="1140.14" y="810.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="453.7" y="2208" width="1.9" height="15.0" fill="rgb(220,49,51)" rx="2" ry="2" />
<text text-anchor="" x="456.68" y="2218.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="408.4" y="608" width="1.9" height="15.0" fill="rgb(244,126,14)" rx="2" ry="2" />
<text text-anchor="" x="411.37" y="618.5" font-size="12" 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.32%)</title><rect x="1150.4" y="2512" width="3.7" height="15.0" fill="rgb(234,207,23)" rx="2" ry="2" />
<text text-anchor="" x="1153.35" y="2522.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="85.5" y="1888" width="1.9" height="15.0" fill="rgb(242,223,32)" rx="2" ry="2" />
<text text-anchor="" x="88.52" y="1898.5" font-size="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_global_code_motion (1 samples, 0.16%)</title><rect x="293.2" y="112" width="1.9" height="15.0" fill="rgb(246,119,6)" rx="2" ry="2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment