Skip to content

Instantly share code, notes, and snippets.

@DanielThomas
Created July 6, 2017 19:08
Show Gist options
  • Save DanielThomas/c6a4a152dd77e79144b206018c856f62 to your computer and use it in GitHub Desktop.
Save DanielThomas/c6a4a152dd77e79144b206018c856f62 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="3682" onload="init(evt)" viewBox="0 0 1200 3682" 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 (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="3682.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="3665" 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="3665" 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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="1089" width="1.9" height="15.0" fill="rgb(210,112,6)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mempool_free (1 samples, 0.17%)</title><rect x="12.0" y="3313" width="1.9" height="15.0" fill="rgb(246,80,42)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.17%)</title><rect x="10.0" y="3537" width="2.0" height="15.0" fill="rgb(231,119,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3547.5" font-size="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_reserve_inode_write (1 samples, 0.17%)</title><rect x="280.5" y="3361" width="2.0" height="15.0" fill="rgb(208,74,20)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3371.5" font-size="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/Enter:::classEnter (1 samples, 0.17%)</title><rect x="351.1" y="1345" width="1.9" height="15.0" fill="rgb(230,223,40)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1355.5" font-size="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_read_iter (4 samples, 0.66%)</title><rect x="274.6" y="3457" width="7.9" height="15.0" fill="rgb(246,105,47)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3467.5" font-size="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.17%)</title><rect x="190.3" y="2641" width="2.0" height="15.0" fill="rgb(208,177,1)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2651.5" font-size="12" 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 (326 samples, 54.15%)</title><rect x="519.6" y="1025" width="639.0" height="15.0" fill="rgb(210,199,5)" rx="2" ry="2" />
<text text-anchor="" x="522.63" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Java_java_util_zip_Deflater_deflateBytes</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.17%)</title><rect x="315.8" y="1217" width="1.9" height="15.0" fill="rgb(235,104,5)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1227.5" font-size="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 (3 samples, 0.50%)</title><rect x="309.9" y="1201" width="5.9" height="15.0" fill="rgb(252,72,40)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1211.5" font-size="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:::isAssignable (1 samples, 0.17%)</title><rect x="358.9" y="1025" width="2.0" height="15.0" fill="rgb(242,180,19)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1035.5" font-size="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$JCVariableDecl:::accept (1 samples, 0.17%)</title><rect x="319.7" y="1105" width="2.0" height="15.0" fill="rgb(237,134,0)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1115.5" font-size="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.17%)</title><rect x="313.8" y="1025" width="2.0" height="15.0" fill="rgb(227,220,30)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3361" width="1.9" height="15.0" fill="rgb(226,125,10)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2081" width="54.8" height="15.0" fill="rgb(252,18,9)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitApply (1 samples, 0.17%)</title><rect x="335.4" y="1121" width="1.9" height="15.0" fill="rgb(243,120,11)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1131.5" font-size="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.17%)</title><rect x="333.4" y="1089" width="2.0" height="15.0" fill="rgb(221,94,26)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1099.5" font-size="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.17%)</title><rect x="1188.0" y="1617" width="2.0" height="15.0" fill="rgb(249,212,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1627.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1665" width="50.9" height="15.0" fill="rgb(250,168,22)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Refle..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_flush_plug_list (1 samples, 0.17%)</title><rect x="264.8" y="3393" width="2.0" height="15.0" fill="rgb(243,22,1)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3403.5" font-size="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 (26 samples, 4.32%)</title><rect x="196.2" y="3553" width="51.0" height="15.0" fill="rgb(241,25,34)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaT..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.17%)</title><rect x="1184.1" y="3601" width="2.0" height="15.0" fill="rgb(212,48,41)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3611.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1681" width="715.4" height="15.0" fill="rgb(229,224,45)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1691.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>Lcom/sun/tools/javac/comp/Attr:::visitReturn (1 samples, 0.17%)</title><rect x="313.8" y="945" width="2.0" height="15.0" fill="rgb(223,129,41)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::run (1 samples, 0.17%)</title><rect x="12.0" y="3569" width="1.9" height="15.0" fill="rgb(232,113,52)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3579.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="343.2" y="833" width="2.0" height="15.0" fill="rgb(214,199,3)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3249" width="1.9" height="15.0" fill="rgb(241,197,38)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3259.5" font-size="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 (1 samples, 0.17%)</title><rect x="486.3" y="737" width="2.0" height="15.0" fill="rgb(237,83,23)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="747.5" font-size="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 (2 samples, 0.33%)</title><rect x="317.7" y="1249" width="4.0" height="15.0" fill="rgb(219,135,25)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1259.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="1073" width="1.9" height="15.0" fill="rgb(220,86,6)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1083.5" font-size="12" 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 (5 samples, 0.83%)</title><rect x="31.6" y="3585" width="9.8" height="15.0" fill="rgb(220,162,2)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3595.5" font-size="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.17%)</title><rect x="355.0" y="721" width="1.9" height="15.0" fill="rgb(253,187,22)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (3 samples, 0.50%)</title><rect x="1164.5" y="833" width="5.9" height="15.0" fill="rgb(240,175,27)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="843.5" font-size="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.17%)</title><rect x="307.9" y="1057" width="2.0" height="15.0" fill="rgb(220,200,38)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1889" width="823.2" height="15.0" fill="rgb(234,194,30)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1899.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>scsi_softirq_done (1 samples, 0.17%)</title><rect x="12.0" y="3441" width="1.9" height="15.0" fill="rgb(225,180,11)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3451.5" font-size="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.17%)</title><rect x="311.9" y="577" width="1.9" height="15.0" fill="rgb(254,46,45)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1153" width="1.9" height="15.0" fill="rgb(209,25,14)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1163.5" font-size="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_read_iter (9 samples, 1.50%)</title><rect x="255.0" y="3473" width="17.7" height="15.0" fill="rgb(252,28,51)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3483.5" font-size="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:::isAccessible (1 samples, 0.17%)</title><rect x="323.6" y="881" width="2.0" height="15.0" fill="rgb(227,49,32)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="891.5" font-size="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.17%)</title><rect x="472.6" y="913" width="2.0" height="15.0" fill="rgb(207,84,50)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="923.5" font-size="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$DeferredType:::check (1 samples, 0.17%)</title><rect x="331.5" y="897" width="1.9" height="15.0" fill="rgb(207,152,53)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="907.5" font-size="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.17%)</title><rect x="1188.0" y="3505" width="2.0" height="15.0" fill="rgb(241,209,46)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3515.5" font-size="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 (2 samples, 0.33%)</title><rect x="496.1" y="1025" width="3.9" height="15.0" fill="rgb(232,184,54)" rx="2" ry="2" />
<text text-anchor="" x="499.11" y="1035.5" font-size="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 (1 samples, 0.17%)</title><rect x="233.5" y="3377" width="1.9" height="15.0" fill="rgb(235,134,3)" rx="2" ry="2" />
<text text-anchor="" x="236.46" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ContiguousSpaceDCTOC::walk_mem_region_with_cl (1 samples, 0.17%)</title><rect x="45.3" y="3329" width="1.9" height="15.0" fill="rgb(253,150,23)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3339.5" font-size="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:::loadClass (1 samples, 0.17%)</title><rect x="323.6" y="897" width="2.0" height="15.0" fill="rgb(251,22,52)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="907.5" font-size="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:::flushDeflater (1 samples, 0.17%)</title><rect x="480.4" y="1073" width="2.0" height="15.0" fill="rgb(234,144,2)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2593" width="891.8" height="15.0" fill="rgb(225,34,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2603.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 (6 samples, 1.00%)</title><rect x="349.1" y="2081" width="11.8" height="15.0" fill="rgb(252,56,46)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="801" width="1.9" height="15.0" fill="rgb(208,157,4)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="811.5" font-size="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.17%)</title><rect x="1188.0" y="1633" width="2.0" height="15.0" fill="rgb(239,192,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1643.5" font-size="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.17%)</title><rect x="12.0" y="3457" width="1.9" height="15.0" fill="rgb(235,80,53)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2385" width="891.8" height="15.0" fill="rgb(242,167,18)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2395.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:::selectSym (1 samples, 0.17%)</title><rect x="331.5" y="753" width="1.9" height="15.0" fill="rgb(249,56,27)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2753" width="891.8" height="15.0" fill="rgb(242,52,52)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2763.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/parser/JavacParser:::block (1 samples, 0.17%)</title><rect x="300.1" y="609" width="2.0" height="15.0" fill="rgb(208,73,53)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="251.1" y="3121" width="2.0" height="15.0" fill="rgb(243,31,17)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3131.5" font-size="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:::arguments (1 samples, 0.17%)</title><rect x="302.1" y="1089" width="1.9" height="15.0" fill="rgb(248,190,1)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="300.1" y="849" width="2.0" height="15.0" fill="rgb(221,117,45)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="859.5" font-size="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 (4 samples, 0.66%)</title><rect x="47.2" y="3441" width="7.9" height="15.0" fill="rgb(232,198,44)" rx="2" ry="2" />
<text text-anchor="" x="50.24" y="3451.5" font-size="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 (3 samples, 0.50%)</title><rect x="1164.5" y="785" width="5.9" height="15.0" fill="rgb(244,192,40)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="795.5" font-size="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.17%)</title><rect x="251.1" y="3521" width="2.0" height="15.0" fill="rgb(206,190,47)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3531.5" font-size="12" 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 (9 samples, 1.50%)</title><rect x="502.0" y="1025" width="17.6" height="15.0" fill="rgb(207,133,5)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="1035.5" font-size="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:::writeMethods (1 samples, 0.17%)</title><rect x="337.3" y="1297" width="2.0" height="15.0" fill="rgb(253,142,38)" rx="2" ry="2" />
<text text-anchor="" x="340.34" y="1307.5" font-size="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.17%)</title><rect x="484.4" y="833" width="1.9" height="15.0" fill="rgb(236,111,14)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3217" width="2.0" height="15.0" fill="rgb(241,214,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3227.5" font-size="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/Scanner:::nextToken (1 samples, 0.17%)</title><rect x="302.1" y="1057" width="1.9" height="15.0" fill="rgb(251,192,32)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1067.5" font-size="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 (1 samples, 0.17%)</title><rect x="196.2" y="3265" width="2.0" height="15.0" fill="rgb(213,110,19)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3275.5" font-size="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.50%)</title><rect x="31.6" y="3457" width="5.8" height="15.0" fill="rgb(211,210,39)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3467.5" font-size="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] (4 samples, 0.66%)</title><rect x="1162.6" y="1057" width="7.8" height="15.0" fill="rgb(254,69,20)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1067.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="721" width="2.0" height="15.0" fill="rgb(239,175,20)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (4 samples, 0.66%)</title><rect x="470.6" y="1153" width="7.9" height="15.0" fill="rgb(226,107,41)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeBuffer::copy_code_to (1 samples, 0.17%)</title><rect x="237.4" y="3377" width="1.9" height="15.0" fill="rgb(205,115,41)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3387.5" font-size="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 (2 samples, 0.33%)</title><rect x="360.9" y="1473" width="3.9" height="15.0" fill="rgb(253,72,47)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1483.5" font-size="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 (1 samples, 0.17%)</title><rect x="1172.4" y="897" width="1.9" height="15.0" fill="rgb(230,220,18)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="907.5" font-size="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.17%)</title><rect x="280.5" y="3409" width="2.0" height="15.0" fill="rgb(206,22,12)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3419.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3521" width="891.8" height="15.0" fill="rgb(249,145,11)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_virtual</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.17%)</title><rect x="313.8" y="913" width="2.0" height="15.0" fill="rgb(211,76,30)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1953" width="823.2" height="15.0" fill="rgb(221,212,24)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1963.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.17%)</title><rect x="468.7" y="1105" width="1.9" height="15.0" fill="rgb(218,174,21)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1115.5" font-size="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.17%)</title><rect x="311.9" y="1041" width="1.9" height="15.0" fill="rgb(240,37,54)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1051.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="2097" width="11.8" height="15.0" fill="rgb(237,84,44)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2107.5" font-size="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$JCForLoop:::accept (1 samples, 0.17%)</title><rect x="341.3" y="1137" width="1.9" height="15.0" fill="rgb(227,7,51)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82832 (1 samples, 0.17%)</title><rect x="1184.1" y="3617" width="2.0" height="15.0" fill="rgb(249,144,51)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_free_security (1 samples, 0.17%)</title><rect x="482.4" y="881" width="2.0" height="15.0" fill="rgb(214,162,48)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1857" width="54.8" height="15.0" fill="rgb(223,169,11)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::removeLast (1 samples, 0.17%)</title><rect x="468.7" y="753" width="1.9" height="15.0" fill="rgb(240,163,2)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConstantPool::klass_at_impl (1 samples, 0.17%)</title><rect x="27.6" y="3329" width="2.0" height="15.0" fill="rgb(220,108,27)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2577" width="891.8" height="15.0" fill="rgb(210,182,2)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2587.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 (420 samples, 69.77%)</title><rect x="360.9" y="2017" width="823.2" height="15.0" fill="rgb(207,37,42)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2027.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>Compile::fill_buffer (1 samples, 0.17%)</title><rect x="62.9" y="3457" width="2.0" height="15.0" fill="rgb(243,106,4)" rx="2" ry="2" />
<text text-anchor="" x="65.92" y="3467.5" font-size="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_flush_plug_list (3 samples, 0.50%)</title><rect x="490.2" y="801" width="5.9" height="15.0" fill="rgb(224,91,40)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="27.6" y="3393" width="2.0" height="15.0" fill="rgb(242,112,16)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3403.5" font-size="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$JCBinary:::accept (1 samples, 0.17%)</title><rect x="339.3" y="1025" width="2.0" height="15.0" fill="rgb(220,201,43)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1035.5" font-size="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 (347 samples, 57.64%)</title><rect x="482.4" y="1089" width="680.2" height="15.0" fill="rgb(233,110,44)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.17%)</title><rect x="1184.1" y="3553" width="2.0" height="15.0" fill="rgb(232,218,53)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="913" width="1.9" height="15.0" fill="rgb(237,212,0)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1169" width="1.9" height="15.0" fill="rgb(235,21,22)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1179.5" font-size="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 (4 samples, 0.66%)</title><rect x="329.5" y="1313" width="7.8" height="15.0" fill="rgb(208,47,42)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1323.5" font-size="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.17%)</title><rect x="327.5" y="993" width="2.0" height="15.0" fill="rgb(226,162,36)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3393" width="1.9" height="15.0" fill="rgb(239,88,4)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="2033" width="823.2" height="15.0" fill="rgb(206,197,19)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2043.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.17%)</title><rect x="27.6" y="3361" width="2.0" height="15.0" fill="rgb(240,43,49)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3371.5" font-size="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:::term1 (1 samples, 0.17%)</title><rect x="302.1" y="1137" width="1.9" height="15.0" fill="rgb(215,122,48)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1147.5" font-size="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/Lower:::visitNewClass (1 samples, 0.17%)</title><rect x="319.7" y="1041" width="2.0" height="15.0" fill="rgb(241,141,34)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CardTableModRefBS::non_clean_card_iterate_possibly_parallel (1 samples, 0.17%)</title><rect x="45.3" y="3393" width="1.9" height="15.0" fill="rgb(237,43,36)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1505" width="11.8" height="15.0" fill="rgb(216,98,39)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1515.5" font-size="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/Gen:::visitBlock (1 samples, 0.17%)</title><rect x="341.3" y="945" width="1.9" height="15.0" fill="rgb(214,126,26)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="955.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="1009" width="1.9" height="15.0" fill="rgb(205,207,24)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="355.0" y="1009" width="1.9" height="15.0" fill="rgb(230,166,8)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1019.5" font-size="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.17%)</title><rect x="190.3" y="2657" width="2.0" height="15.0" fill="rgb(226,190,33)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2667.5" font-size="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::final_graph_reshaping_impl (1 samples, 0.17%)</title><rect x="149.2" y="3425" width="1.9" height="15.0" fill="rgb(225,103,46)" rx="2" ry="2" />
<text text-anchor="" x="152.17" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="313.8" y="1057" width="2.0" height="15.0" fill="rgb(245,74,4)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1067.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1665" width="715.4" height="15.0" fill="rgb(240,201,41)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JVM_InvokeMethod</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (1 samples, 0.17%)</title><rect x="272.7" y="3409" width="1.9" height="15.0" fill="rgb(232,179,21)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>State::_sub_Op_AddP (1 samples, 0.17%)</title><rect x="66.8" y="3361" width="2.0" height="15.0" fill="rgb(225,57,41)" rx="2" ry="2" />
<text text-anchor="" x="69.84" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2945" width="891.8" height="15.0" fill="rgb(209,100,21)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2955.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>copy_user_generic_unrolled (1 samples, 0.17%)</title><rect x="249.1" y="3377" width="2.0" height="15.0" fill="rgb(209,137,7)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3009" width="2.0" height="15.0" fill="rgb(246,12,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3019.5" font-size="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/Lower:::translate (2 samples, 0.33%)</title><rect x="317.7" y="1313" width="4.0" height="15.0" fill="rgb(217,16,2)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1057" width="1.9" height="15.0" fill="rgb(254,132,20)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2801" width="2.0" height="15.0" fill="rgb(254,145,52)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.17%)</title><rect x="10.0" y="3441" width="2.0" height="15.0" fill="rgb(242,200,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3451.5" font-size="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 (9 samples, 1.50%)</title><rect x="196.2" y="3393" width="17.7" height="15.0" fill="rgb(253,212,35)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3403.5" font-size="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:::complete (1 samples, 0.17%)</title><rect x="351.1" y="1281" width="1.9" height="15.0" fill="rgb(217,81,36)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1291.5" font-size="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_flush_plug_list (2 samples, 0.33%)</title><rect x="260.9" y="3393" width="3.9" height="15.0" fill="rgb(236,149,21)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2785" width="2.0" height="15.0" fill="rgb(215,70,20)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2795.5" font-size="12" 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.33%)</title><rect x="360.9" y="1537" width="3.9" height="15.0" fill="rgb(240,72,39)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.17%)</title><rect x="1184.1" y="3457" width="2.0" height="15.0" fill="rgb(251,132,30)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1585" width="715.4" height="15.0" fill="rgb(228,36,23)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1595.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/parser/JavacParser:::parseStatementAsBlock (1 samples, 0.17%)</title><rect x="300.1" y="1105" width="2.0" height="15.0" fill="rgb(233,73,13)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1745" width="1.9" height="15.0" fill="rgb(243,194,34)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1755.5" font-size="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] (10 samples, 1.66%)</title><rect x="272.7" y="3585" width="19.6" height="15.0" fill="rgb(245,126,47)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3595.5" font-size="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.17%)</title><rect x="355.0" y="881" width="1.9" height="15.0" fill="rgb(218,76,8)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="891.5" font-size="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.17%)</title><rect x="206.0" y="3137" width="2.0" height="15.0" fill="rgb(212,24,32)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3147.5" font-size="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] (22 samples, 3.65%)</title><rect x="249.1" y="3601" width="43.2" height="15.0" fill="rgb(246,148,54)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2849" width="891.8" height="15.0" fill="rgb(253,92,5)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2859.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/jvm/Gen:::visitBlock (1 samples, 0.17%)</title><rect x="341.3" y="1025" width="1.9" height="15.0" fill="rgb(226,45,7)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2913" width="891.8" height="15.0" fill="rgb(242,111,35)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2923.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/jvm/Gen:::visitBinary (1 samples, 0.17%)</title><rect x="343.2" y="961" width="2.0" height="15.0" fill="rgb(240,105,18)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="971.5" font-size="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 (9 samples, 1.50%)</title><rect x="255.0" y="3537" width="17.7" height="15.0" fill="rgb(253,33,15)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 1.83%)</title><rect x="445.1" y="1617" width="21.6" height="15.0" fill="rgb(238,37,50)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1627.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 (365 samples, 60.63%)</title><rect x="468.7" y="1393" width="715.4" height="15.0" fill="rgb(234,152,46)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1403.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 (55 samples, 9.14%)</title><rect x="360.9" y="1761" width="107.8" height="15.0" fill="rgb(241,53,22)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1771.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.17%)</title><rect x="292.3" y="1425" width="1.9" height="15.0" fill="rgb(240,91,8)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (3 samples, 0.50%)</title><rect x="490.2" y="769" width="5.9" height="15.0" fill="rgb(222,92,26)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="779.5" font-size="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.17%)</title><rect x="190.3" y="3345" width="2.0" height="15.0" fill="rgb(244,180,33)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3355.5" font-size="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] (3 samples, 0.50%)</title><rect x="284.4" y="3553" width="5.9" height="15.0" fill="rgb(246,71,53)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>updateBytesCRC32 (2 samples, 0.33%)</title><rect x="1158.6" y="1041" width="4.0" height="15.0" fill="rgb(205,202,23)" rx="2" ry="2" />
<text text-anchor="" x="1161.64" y="1051.5" font-size="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 (5 samples, 0.83%)</title><rect x="509.8" y="897" width="9.8" height="15.0" fill="rgb(242,221,35)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="907.5" font-size="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.17%)</title><rect x="307.9" y="1297" width="2.0" height="15.0" fill="rgb(254,215,8)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.17%)</title><rect x="153.1" y="3409" width="1.9" height="15.0" fill="rgb(211,196,22)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3419.5" font-size="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_cache_sync_readahead (3 samples, 0.50%)</title><rect x="274.6" y="3441" width="5.9" height="15.0" fill="rgb(254,33,43)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3451.5" font-size="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.17%)</title><rect x="190.3" y="2753" width="2.0" height="15.0" fill="rgb(254,214,25)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.17%)</title><rect x="49.2" y="3393" width="2.0" height="15.0" fill="rgb(209,165,6)" rx="2" ry="2" />
<text text-anchor="" x="52.20" y="3403.5" font-size="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.17%)</title><rect x="294.2" y="1649" width="2.0" height="15.0" fill="rgb(233,73,6)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1659.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="331.5" y="769" width="1.9" height="15.0" fill="rgb(247,107,34)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="779.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="1857" width="11.8" height="15.0" fill="rgb(237,35,44)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1867.5" font-size="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.17%)</title><rect x="23.7" y="3505" width="2.0" height="15.0" fill="rgb(225,97,15)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3515.5" font-size="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:::writeCode (1 samples, 0.17%)</title><rect x="353.0" y="1265" width="2.0" height="15.0" fill="rgb(211,182,46)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RangeCheckEliminator::RangeCheckEliminator (2 samples, 0.33%)</title><rect x="223.7" y="3409" width="3.9" height="15.0" fill="rgb(206,111,13)" rx="2" ry="2" />
<text text-anchor="" x="226.65" y="3419.5" font-size="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.17%)</title><rect x="341.3" y="1041" width="1.9" height="15.0" fill="rgb(213,167,18)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1793" width="50.9" height="15.0" fill="rgb(239,42,54)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/LinkedBlockingDeque:::offerLast (1 samples, 0.17%)</title><rect x="15.9" y="3601" width="1.9" height="15.0" fill="rgb(239,181,28)" rx="2" ry="2" />
<text text-anchor="" x="18.88" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_unplugged (1 samples, 0.17%)</title><rect x="264.8" y="3377" width="2.0" height="15.0" fill="rgb(230,27,49)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3387.5" font-size="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 (4 samples, 0.66%)</title><rect x="329.5" y="1281" width="7.8" height="15.0" fill="rgb(218,73,3)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseConservativeCoalesce::copy_copy (1 samples, 0.17%)</title><rect x="139.4" y="3409" width="1.9" height="15.0" fill="rgb(235,150,24)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KlassScanClosure::do_klass (1 samples, 0.17%)</title><rect x="43.3" y="3377" width="2.0" height="15.0" fill="rgb(213,84,5)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjArrayKlass::oop_oop_iterate_nv (1 samples, 0.17%)</title><rect x="51.2" y="3393" width="1.9" height="15.0" fill="rgb(222,21,9)" rx="2" ry="2" />
<text text-anchor="" x="54.16" y="3403.5" font-size="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.17%)</title><rect x="115.8" y="3425" width="2.0" height="15.0" fill="rgb(243,159,34)" rx="2" ry="2" />
<text text-anchor="" x="118.85" y="3435.5" font-size="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$9:::doLookup (1 samples, 0.17%)</title><rect x="343.2" y="881" width="2.0" height="15.0" fill="rgb(220,171,29)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="891.5" font-size="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 (3 samples, 0.50%)</title><rect x="82.5" y="3441" width="5.9" height="15.0" fill="rgb(206,18,43)" rx="2" ry="2" />
<text text-anchor="" x="85.52" y="3451.5" font-size="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:::parseStatementAsBlock (1 samples, 0.17%)</title><rect x="300.1" y="753" width="2.0" height="15.0" fill="rgb(235,107,13)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCoalesce::coalesce_driver (1 samples, 0.17%)</title><rect x="139.4" y="3441" width="1.9" height="15.0" fill="rgb(248,180,24)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="3451.5" font-size="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$AliveAnalyzer:::scanStat (1 samples, 0.17%)</title><rect x="349.1" y="1185" width="2.0" height="15.0" fill="rgb(248,64,51)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1985" width="2.0" height="15.0" fill="rgb(225,191,35)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1995.5" font-size="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$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="331.5" y="1073" width="1.9" height="15.0" fill="rgb(218,71,48)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1083.5" font-size="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.17%)</title><rect x="1156.7" y="1009" width="1.9" height="15.0" fill="rgb(249,25,27)" rx="2" ry="2" />
<text text-anchor="" x="1159.68" y="1019.5" font-size="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 (2 samples, 0.33%)</title><rect x="276.6" y="3313" width="3.9" height="15.0" fill="rgb(231,120,27)" rx="2" ry="2" />
<text text-anchor="" x="279.58" y="3323.5" font-size="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.17%)</title><rect x="300.1" y="1137" width="2.0" height="15.0" fill="rgb(207,76,2)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1147.5" font-size="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 (1 samples, 0.17%)</title><rect x="1188.0" y="1041" width="2.0" height="15.0" fill="rgb(223,50,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1051.5" font-size="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:::readAttrs (1 samples, 0.17%)</title><rect x="335.4" y="689" width="1.9" height="15.0" fill="rgb(250,140,24)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::findType (1 samples, 0.17%)</title><rect x="323.6" y="1217" width="2.0" height="15.0" fill="rgb(234,196,0)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1227.5" font-size="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::smear_to_sets (1 samples, 0.17%)</title><rect x="131.5" y="3425" width="2.0" height="15.0" fill="rgb(212,74,2)" rx="2" ry="2" />
<text text-anchor="" x="134.53" y="3435.5" font-size="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/Gen:::visitNewArray (1 samples, 0.17%)</title><rect x="343.2" y="1009" width="2.0" height="15.0" fill="rgb(210,47,9)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::pinned (1 samples, 0.17%)</title><rect x="159.0" y="3441" width="1.9" height="15.0" fill="rgb(230,212,19)" rx="2" ry="2" />
<text text-anchor="" x="161.97" y="3451.5" font-size="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.17%)</title><rect x="247.2" y="3585" width="1.9" height="15.0" fill="rgb(206,40,54)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3595.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="897" width="3.9" height="15.0" fill="rgb(218,140,53)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="907.5" font-size="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::process_roots (1 samples, 0.17%)</title><rect x="43.3" y="3425" width="2.0" height="15.0" fill="rgb(222,21,39)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3435.5" font-size="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:::attribImportQualifier (1 samples, 0.17%)</title><rect x="323.6" y="993" width="2.0" height="15.0" fill="rgb(225,199,22)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1003.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="945" width="5.9" height="15.0" fill="rgb(210,31,43)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lookup_slow (1 samples, 0.17%)</title><rect x="251.1" y="3377" width="2.0" height="15.0" fill="rgb(246,185,48)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3387.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="331.5" y="1009" width="1.9" height="15.0" fill="rgb(248,53,53)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1873" width="54.8" height="15.0" fill="rgb(234,119,30)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="311.9" y="273" width="1.9" height="15.0" fill="rgb(234,34,8)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="283.5" font-size="12" 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.17%)</title><rect x="23.7" y="3585" width="2.0" height="15.0" fill="rgb(253,151,24)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3595.5" font-size="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$DefaultTypeVisitor:::visitClassType (1 samples, 0.17%)</title><rect x="358.9" y="929" width="2.0" height="15.0" fill="rgb(231,172,15)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (3 samples, 0.50%)</title><rect x="284.4" y="3329" width="5.9" height="15.0" fill="rgb(217,129,11)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3339.5" font-size="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.17%)</title><rect x="1188.0" y="1697" width="2.0" height="15.0" fill="rgb(214,149,53)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1601" width="80.3" height="15.0" fill="rgb(228,163,30)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-82526.map] (1 samples, 0.17%)</title><rect x="302.1" y="1105" width="1.9" height="15.0" fill="rgb(214,48,36)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3345" width="891.8" height="15.0" fill="rgb(242,200,14)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3355.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_file_write_iter (1 samples, 0.17%)</title><rect x="249.1" y="3425" width="2.0" height="15.0" fill="rgb(231,203,54)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3435.5" font-size="12" 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 (70 samples, 11.63%)</title><rect x="59.0" y="3585" width="137.2" height="15.0" fill="rgb(248,224,30)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.17%)</title><rect x="1172.4" y="865" width="1.9" height="15.0" fill="rgb(237,11,35)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="875.5" font-size="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 (1 samples, 0.17%)</title><rect x="264.8" y="3345" width="2.0" height="15.0" fill="rgb(222,17,42)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3355.5" font-size="12" 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.66%)</title><rect x="470.6" y="1073" width="7.9" height="15.0" fill="rgb(215,127,38)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1083.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3345" width="5.9" height="15.0" fill="rgb(224,79,19)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3355.5" font-size="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.17%)</title><rect x="1188.0" y="3601" width="2.0" height="15.0" fill="rgb(223,34,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3611.5" font-size="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.17%)</title><rect x="10.0" y="3553" width="2.0" height="15.0" fill="rgb(234,189,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3563.5" font-size="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 (8 samples, 1.33%)</title><rect x="198.2" y="3329" width="15.7" height="15.0" fill="rgb(229,219,27)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1153" width="1.9" height="15.0" fill="rgb(251,25,49)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1163.5" font-size="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.17%)</title><rect x="333.4" y="1153" width="2.0" height="15.0" fill="rgb(216,47,12)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1163.5" font-size="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.17%)</title><rect x="333.4" y="1105" width="2.0" height="15.0" fill="rgb(245,83,27)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1115.5" font-size="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$2:::getEnclosingType (1 samples, 0.17%)</title><rect x="335.4" y="817" width="1.9" height="15.0" fill="rgb(234,134,4)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="827.5" font-size="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 (7 samples, 1.16%)</title><rect x="119.8" y="3441" width="13.7" height="15.0" fill="rgb(231,112,3)" rx="2" ry="2" />
<text text-anchor="" x="122.77" y="3451.5" font-size="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/Scope:::includes (1 samples, 0.17%)</title><rect x="325.6" y="1169" width="1.9" height="15.0" fill="rgb(205,159,9)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1179.5" font-size="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$JCIdent:::accept (1 samples, 0.17%)</title><rect x="323.6" y="1265" width="2.0" height="15.0" fill="rgb(209,138,26)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1275.5" font-size="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::loop (8 samples, 1.33%)</title><rect x="43.3" y="3553" width="15.7" height="15.0" fill="rgb(236,107,20)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3563.5" font-size="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/Code:::emitop1w (1 samples, 0.17%)</title><rect x="341.3" y="369" width="1.9" height="15.0" fill="rgb(247,2,2)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JNU_GetStringPlatformChars (1 samples, 0.17%)</title><rect x="304.0" y="1185" width="2.0" height="15.0" fill="rgb(242,30,52)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1905" width="2.0" height="15.0" fill="rgb(211,147,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1915.5" font-size="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 (348 samples, 57.81%)</title><rect x="480.4" y="1201" width="682.2" height="15.0" fill="rgb(237,166,47)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile</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.17%)</title><rect x="355.0" y="1057" width="1.9" height="15.0" fill="rgb(254,106,16)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1067.5" font-size="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 (3 samples, 0.50%)</title><rect x="355.0" y="1297" width="5.9" height="15.0" fill="rgb(254,45,2)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1307.5" font-size="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.17%)</title><rect x="206.0" y="3057" width="2.0" height="15.0" fill="rgb(219,67,44)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="349.1" y="1345" width="2.0" height="15.0" fill="rgb(213,222,34)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_or_fail (1 samples, 0.17%)</title><rect x="27.6" y="3313" width="2.0" height="15.0" fill="rgb(221,9,32)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="333.4" y="1169" width="2.0" height="15.0" fill="rgb(228,197,51)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1179.5" font-size="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.17%)</title><rect x="486.3" y="897" width="2.0" height="15.0" fill="rgb(239,136,2)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1121" width="1.9" height="15.0" fill="rgb(233,171,52)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1131.5" font-size="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.17%)</title><rect x="486.3" y="913" width="2.0" height="15.0" fill="rgb(225,123,35)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3265" width="2.0" height="15.0" fill="rgb(221,183,35)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3275.5" font-size="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.33%)</title><rect x="360.9" y="1489" width="3.9" height="15.0" fill="rgb(249,86,52)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-71584/71613 (1 samples, 0.17%)</title><rect x="25.7" y="3617" width="1.9" height="15.0" fill="rgb(226,1,52)" rx="2" ry="2" />
<text text-anchor="" x="28.68" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1505" width="49.0" height="15.0" fill="rgb(237,95,30)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1515.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>Filtering_DCTOC::walk_mem_region (1 samples, 0.17%)</title><rect x="45.3" y="3345" width="1.9" height="15.0" fill="rgb(217,165,36)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3355.5" font-size="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:::isAccessible (1 samples, 0.17%)</title><rect x="323.6" y="1169" width="2.0" height="15.0" fill="rgb(238,106,22)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1137" width="1.9" height="15.0" fill="rgb(215,69,8)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1147.5" font-size="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.17%)</title><rect x="309.9" y="1041" width="2.0" height="15.0" fill="rgb(246,20,23)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1051.5" font-size="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/Lower:::translate (2 samples, 0.33%)</title><rect x="317.7" y="1329" width="4.0" height="15.0" fill="rgb(212,39,52)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1377" width="1.9" height="15.0" fill="rgb(205,11,9)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1387.5" font-size="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 (2 samples, 0.33%)</title><rect x="360.9" y="1441" width="3.9" height="15.0" fill="rgb(252,78,23)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="961" width="1.9" height="15.0" fill="rgb(209,42,14)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="971.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1633" width="50.9" height="15.0" fill="rgb(220,189,26)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1643.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.17%)</title><rect x="294.2" y="1585" width="2.0" height="15.0" fill="rgb(250,183,23)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1595.5" font-size="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.17%)</title><rect x="300.1" y="673" width="2.0" height="15.0" fill="rgb(212,101,25)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1905" width="54.8" height="15.0" fill="rgb(235,170,49)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciObjectFactory::create_new_metadata (1 samples, 0.17%)</title><rect x="239.3" y="3473" width="2.0" height="15.0" fill="rgb(254,92,29)" rx="2" ry="2" />
<text text-anchor="" x="242.34" y="3483.5" font-size="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.17%)</title><rect x="306.0" y="1201" width="1.9" height="15.0" fill="rgb(253,53,19)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node_Array::insert (1 samples, 0.17%)</title><rect x="35.5" y="3409" width="1.9" height="15.0" fill="rgb(243,53,32)" rx="2" ry="2" />
<text text-anchor="" x="38.48" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::access_field (2 samples, 0.33%)</title><rect x="198.2" y="3265" width="3.9" height="15.0" fill="rgb(239,117,41)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1905" width="823.2" height="15.0" fill="rgb(242,59,54)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1915.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>__check_heap_object (1 samples, 0.17%)</title><rect x="247.2" y="3425" width="1.9" height="15.0" fill="rgb(224,176,44)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3435.5" font-size="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.17%)</title><rect x="206.0" y="2993" width="2.0" height="15.0" fill="rgb(234,141,31)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3003.5" font-size="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:::notOverriddenIn (1 samples, 0.17%)</title><rect x="355.0" y="481" width="1.9" height="15.0" fill="rgb(250,193,32)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/ConventionAwareHelper:::getConventionValue (1 samples, 0.17%)</title><rect x="345.2" y="1553" width="1.9" height="15.0" fill="rgb(208,164,50)" rx="2" ry="2" />
<text text-anchor="" x="348.18" y="1563.5" font-size="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 (1 samples, 0.17%)</title><rect x="1176.3" y="897" width="1.9" height="15.0" fill="rgb(241,192,11)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="907.5" font-size="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] (2 samples, 0.33%)</title><rect x="474.6" y="1009" width="3.9" height="15.0" fill="rgb(246,172,0)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2369" width="891.8" height="15.0" fill="rgb(212,144,51)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-82526.map] (1 samples, 0.17%)</title><rect x="300.1" y="401" width="2.0" height="15.0" fill="rgb(207,123,29)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke_method (1 samples, 0.17%)</title><rect x="1188.0" y="1649" width="2.0" height="15.0" fill="rgb(214,78,52)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1659.5" font-size="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.17%)</title><rect x="472.6" y="977" width="2.0" height="15.0" fill="rgb(224,36,25)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="849" width="1.9" height="15.0" fill="rgb(254,176,21)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1505" width="715.4" height="15.0" fill="rgb(242,198,29)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1515.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/jvm/Gen:::genCond (1 samples, 0.17%)</title><rect x="341.3" y="497" width="1.9" height="15.0" fill="rgb(227,204,45)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::loadClass (1 samples, 0.17%)</title><rect x="323.6" y="1185" width="2.0" height="15.0" fill="rgb(250,71,1)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1195.5" font-size="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.17%)</title><rect x="290.3" y="3473" width="2.0" height="15.0" fill="rgb(230,5,8)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::frequency_counter_overflow_inner (1 samples, 0.17%)</title><rect x="468.7" y="705" width="1.9" height="15.0" fill="rgb(245,223,16)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="715.5" font-size="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 (420 samples, 69.77%)</title><rect x="360.9" y="2097" width="823.2" height="15.0" fill="rgb(219,165,39)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (1 samples, 0.17%)</title><rect x="274.6" y="3313" width="2.0" height="15.0" fill="rgb(220,28,3)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3323.5" font-size="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.17%)</title><rect x="190.3" y="3297" width="2.0" height="15.0" fill="rgb(207,56,27)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3307.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="737" width="5.9" height="15.0" fill="rgb(218,104,1)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="747.5" font-size="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$JCReturn:::accept (1 samples, 0.17%)</title><rect x="317.7" y="1105" width="2.0" height="15.0" fill="rgb(253,193,28)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1115.5" font-size="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.17%)</title><rect x="300.1" y="1041" width="2.0" height="15.0" fill="rgb(235,158,19)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIRGenerator::block_do (2 samples, 0.33%)</title><rect x="229.5" y="3409" width="4.0" height="15.0" fill="rgb(212,123,7)" rx="2" ry="2" />
<text text-anchor="" x="232.53" y="3419.5" font-size="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.33%)</title><rect x="204.1" y="3201" width="3.9" height="15.0" fill="rgb(238,180,45)" rx="2" ry="2" />
<text text-anchor="" x="207.05" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::dominates (1 samples, 0.17%)</title><rect x="188.4" y="3089" width="1.9" height="15.0" fill="rgb(245,157,38)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3099.5" font-size="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/Lower:::visitMethodDef (2 samples, 0.33%)</title><rect x="317.7" y="1233" width="4.0" height="15.0" fill="rgb(208,188,16)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1243.5" font-size="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 (46 samples, 7.64%)</title><rect x="59.0" y="3473" width="90.2" height="15.0" fill="rgb(215,74,24)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Compile::C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>compiledVFrame::compiledVFrame (1 samples, 0.17%)</title><rect x="55.1" y="3409" width="1.9" height="15.0" fill="rgb(230,154,51)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3361" width="1.9" height="15.0" fill="rgb(249,54,20)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3371.5" font-size="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.17%)</title><rect x="509.8" y="817" width="2.0" height="15.0" fill="rgb(227,181,3)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.17%)</title><rect x="117.8" y="3361" width="2.0" height="15.0" fill="rgb(244,117,23)" rx="2" ry="2" />
<text text-anchor="" x="120.81" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1441" width="49.0" height="15.0" fill="rgb(224,41,4)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1451.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>java-82837/82837 (1 samples, 0.17%)</title><rect x="1188.0" y="3617" width="2.0" height="15.0" fill="rgb(242,150,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>build_ (3 samples, 0.50%)</title><rect x="686.2" y="961" width="5.9" height="15.0" fill="rgb(241,50,26)" rx="2" ry="2" />
<text text-anchor="" x="689.25" y="971.5" font-size="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:::findGlobalType (1 samples, 0.17%)</title><rect x="323.6" y="1201" width="2.0" height="15.0" fill="rgb(250,187,29)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1537" width="715.4" height="15.0" fill="rgb(214,135,14)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1547.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/RandomAccessFile:::readFully (1 samples, 0.17%)</title><rect x="356.9" y="721" width="2.0" height="15.0" fill="rgb(238,133,32)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="817" width="1.9" height="15.0" fill="rgb(248,55,28)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="827.5" font-size="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.17%)</title><rect x="317.7" y="1057" width="2.0" height="15.0" fill="rgb(213,179,46)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1067.5" font-size="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_es_can_be_merged (1 samples, 0.17%)</title><rect x="502.0" y="785" width="2.0" height="15.0" fill="rgb(237,223,4)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 9.14%)</title><rect x="360.9" y="1873" width="107.8" height="15.0" fill="rgb(244,68,24)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1883.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_java_util_zip_Deflater_deflateBytes (1 samples, 0.17%)</title><rect x="480.4" y="1025" width="2.0" height="15.0" fill="rgb(216,91,46)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1035.5" font-size="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.17%)</title><rect x="484.4" y="849" width="1.9" height="15.0" fill="rgb(223,226,43)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="859.5" font-size="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:::visitIf (1 samples, 0.17%)</title><rect x="311.9" y="1169" width="1.9" height="15.0" fill="rgb(222,148,22)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3121" width="2.0" height="15.0" fill="rgb(244,33,21)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3131.5" font-size="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$DeferredTypeMap:::&lt;init&gt; (1 samples, 0.17%)</title><rect x="329.5" y="929" width="2.0" height="15.0" fill="rgb(206,98,36)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="939.5" font-size="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:::visitNewClass (1 samples, 0.17%)</title><rect x="331.5" y="1121" width="1.9" height="15.0" fill="rgb(227,65,43)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2833" width="2.0" height="15.0" fill="rgb(243,207,12)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2843.5" font-size="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_cache_sync_readahead (1 samples, 0.17%)</title><rect x="264.8" y="3457" width="2.0" height="15.0" fill="rgb(226,184,31)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3467.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1761" width="50.9" height="15.0" fill="rgb(211,141,7)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1771.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>Lcom/sun/tools/javac/parser/JavacParser:::block (1 samples, 0.17%)</title><rect x="300.1" y="625" width="2.0" height="15.0" fill="rgb(234,162,14)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitApply (1 samples, 0.17%)</title><rect x="327.5" y="1105" width="2.0" height="15.0" fill="rgb(231,153,4)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1115.5" font-size="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.17%)</title><rect x="1184.1" y="3569" width="2.0" height="15.0" fill="rgb(216,227,43)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3579.5" font-size="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/CompositeFileCollection:::getSourceCollections (1 samples, 0.17%)</title><rect x="294.2" y="1777" width="2.0" height="15.0" fill="rgb(239,55,18)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1787.5" font-size="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.17%)</title><rect x="313.8" y="1073" width="2.0" height="15.0" fill="rgb(249,216,46)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1083.5" font-size="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_write_end (1 samples, 0.17%)</title><rect x="504.0" y="833" width="1.9" height="15.0" fill="rgb(234,71,1)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="843.5" font-size="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 (348 samples, 57.81%)</title><rect x="480.4" y="1153" width="682.2" height="15.0" fill="rgb(244,169,15)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile</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.17%)</title><rect x="306.0" y="1281" width="1.9" height="15.0" fill="rgb(240,118,0)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1291.5" font-size="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 (10 samples, 1.66%)</title><rect x="196.2" y="3409" width="19.6" height="15.0" fill="rgb(249,207,48)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3419.5" font-size="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.17%)</title><rect x="313.8" y="929" width="2.0" height="15.0" fill="rgb(231,121,32)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1073" width="1.9" height="15.0" fill="rgb(246,55,25)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1083.5" font-size="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.17%)</title><rect x="355.0" y="1105" width="1.9" height="15.0" fill="rgb(231,218,31)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1115.5" font-size="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.17%)</title><rect x="249.1" y="3489" width="2.0" height="15.0" fill="rgb(248,4,29)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3329" width="1.9" height="15.0" fill="rgb(220,151,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3339.5" font-size="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__tree_impl (1 samples, 0.17%)</title><rect x="180.5" y="3425" width="2.0" height="15.0" fill="rgb(242,158,46)" rx="2" ry="2" />
<text text-anchor="" x="183.53" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__block_commit_write.isra.28 (1 samples, 0.17%)</title><rect x="504.0" y="801" width="1.9" height="15.0" fill="rgb(212,222,29)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="811.5" font-size="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 (10 samples, 1.66%)</title><rect x="1162.6" y="1249" width="19.6" height="15.0" fill="rgb(216,191,12)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1259.5" font-size="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 (41 samples, 6.81%)</title><rect x="364.8" y="1489" width="80.3" height="15.0" fill="rgb(228,113,44)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (8 samples, 1.33%)</title><rect x="43.3" y="3601" width="15.7" height="15.0" fill="rgb(205,57,3)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2945" width="2.0" height="15.0" fill="rgb(242,217,10)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2955.5" font-size="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 (1 samples, 0.17%)</title><rect x="264.8" y="3297" width="2.0" height="15.0" fill="rgb(253,127,3)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3307.5" font-size="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:::classOrInterfaceBodyDeclaration (2 samples, 0.33%)</title><rect x="300.1" y="1265" width="3.9" height="15.0" fill="rgb(248,1,44)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1809" width="11.8" height="15.0" fill="rgb(219,162,30)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1819.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="817" width="5.9" height="15.0" fill="rgb(251,127,52)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="827.5" font-size="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::initialize (1 samples, 0.17%)</title><rect x="147.2" y="3393" width="2.0" height="15.0" fill="rgb(226,203,17)" rx="2" ry="2" />
<text text-anchor="" x="150.21" y="3403.5" font-size="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$JCBinary:::accept (1 samples, 0.17%)</title><rect x="343.2" y="977" width="2.0" height="15.0" fill="rgb(216,12,50)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="987.5" font-size="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 (1 samples, 0.17%)</title><rect x="12.0" y="3521" width="1.9" height="15.0" fill="rgb(208,214,1)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3531.5" font-size="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.17%)</title><rect x="294.2" y="1633" width="2.0" height="15.0" fill="rgb(240,229,31)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::resolve_ldc (1 samples, 0.17%)</title><rect x="29.6" y="3457" width="2.0" height="15.0" fill="rgb(253,70,16)" rx="2" ry="2" />
<text text-anchor="" x="32.60" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3201" width="891.8" height="15.0" fill="rgb(241,147,29)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3211.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/tree/JCTree$JCBlock:::accept (3 samples, 0.50%)</title><rect x="309.9" y="1233" width="5.9" height="15.0" fill="rgb(245,136,9)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1243.5" font-size="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 (1 samples, 0.17%)</title><rect x="1172.4" y="881" width="1.9" height="15.0" fill="rgb(220,124,13)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="891.5" font-size="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.17%)</title><rect x="311.9" y="497" width="1.9" height="15.0" fill="rgb(235,155,23)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.17%)</title><rect x="311.9" y="1105" width="1.9" height="15.0" fill="rgb(244,106,4)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1115.5" font-size="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.17%)</title><rect x="323.6" y="1057" width="2.0" height="15.0" fill="rgb(233,8,9)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1067.5" font-size="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/Attributes:::read (1 samples, 0.17%)</title><rect x="351.1" y="1009" width="1.9" height="15.0" fill="rgb(251,140,10)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1019.5" font-size="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 (5 samples, 0.83%)</title><rect x="202.1" y="3265" width="9.8" height="15.0" fill="rgb(250,108,21)" rx="2" ry="2" />
<text text-anchor="" x="205.09" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1105" width="1.9" height="15.0" fill="rgb(221,180,14)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1115.5" font-size="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_open_execat (1 samples, 0.17%)</title><rect x="1188.0" y="1185" width="2.0" height="15.0" fill="rgb(252,20,3)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (354 samples, 58.80%)</title><rect x="468.7" y="1249" width="693.9" height="15.0" fill="rgb(252,79,24)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1259.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.17%)</title><rect x="311.9" y="593" width="1.9" height="15.0" fill="rgb(240,181,8)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grab_cache_page_write_begin (1 samples, 0.17%)</title><rect x="1174.3" y="881" width="2.0" height="15.0" fill="rgb(222,202,23)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="891.5" font-size="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.17%)</title><rect x="313.8" y="1041" width="2.0" height="15.0" fill="rgb(242,199,42)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1051.5" font-size="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 (4 samples, 0.66%)</title><rect x="329.5" y="1233" width="7.8" height="15.0" fill="rgb(237,170,37)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1243.5" font-size="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.17%)</title><rect x="356.9" y="961" width="2.0" height="15.0" fill="rgb(231,206,29)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="313.8" y="1169" width="2.0" height="15.0" fill="rgb(252,155,5)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="1148.8" y="737" width="2.0" height="15.0" fill="rgb(226,167,18)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3057" width="891.8" height="15.0" fill="rgb(217,217,40)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3067.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/Resolve:::findMethodInScope (1 samples, 0.17%)</title><rect x="331.5" y="657" width="1.9" height="15.0" fill="rgb(211,42,13)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handleWrite (1 samples, 0.17%)</title><rect x="500.0" y="993" width="2.0" height="15.0" fill="rgb(227,171,27)" rx="2" ry="2" />
<text text-anchor="" x="503.03" y="1003.5" font-size="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 (41 samples, 6.81%)</title><rect x="364.8" y="1441" width="80.3" height="15.0" fill="rgb(254,29,43)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/file/ZipFileIndex:::getHeader (1 samples, 0.17%)</title><rect x="356.9" y="737" width="2.0" height="15.0" fill="rgb(254,142,6)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="747.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3473" width="891.8" height="15.0" fill="rgb(236,142,37)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3483.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>Lorg/gradle/internal/reflect/JavaMethod:::invoke (1 samples, 0.17%)</title><rect x="1188.0" y="1729" width="2.0" height="15.0" fill="rgb(244,46,37)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1739.5" font-size="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$HasSameArgs:::visitMethodType (1 samples, 0.17%)</title><rect x="343.2" y="769" width="2.0" height="15.0" fill="rgb(216,55,45)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3393" width="891.8" height="15.0" fill="rgb(223,138,9)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3403.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/tree/TreeScanner:::visitExec (1 samples, 0.17%)</title><rect x="315.8" y="1201" width="1.9" height="15.0" fill="rgb(228,24,46)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3009" width="891.8" height="15.0" fill="rgb(220,216,29)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3019.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/Check$1:::compatible (1 samples, 0.17%)</title><rect x="358.9" y="1041" width="2.0" height="15.0" fill="rgb(206,120,21)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1051.5" font-size="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 (3 samples, 0.50%)</title><rect x="1164.5" y="801" width="5.9" height="15.0" fill="rgb(220,224,44)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="811.5" font-size="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:::attribClass (3 samples, 0.50%)</title><rect x="355.0" y="1345" width="5.9" height="15.0" fill="rgb(251,94,27)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1489" width="11.8" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1499.5" font-size="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_InternString (1 samples, 0.17%)</title><rect x="351.1" y="961" width="1.9" height="15.0" fill="rgb(205,4,12)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="971.5" font-size="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.17%)</title><rect x="1188.0" y="1873" width="2.0" height="15.0" fill="rgb(232,84,38)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3057" width="2.0" height="15.0" fill="rgb(232,112,39)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockList::iterate_forward (2 samples, 0.33%)</title><rect x="229.5" y="3425" width="4.0" height="15.0" fill="rgb(217,9,24)" rx="2" ry="2" />
<text text-anchor="" x="232.53" y="3435.5" font-size="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.17%)</title><rect x="480.4" y="993" width="2.0" height="15.0" fill="rgb(240,150,38)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1003.5" font-size="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 (9 samples, 1.50%)</title><rect x="255.0" y="3489" width="17.7" height="15.0" fill="rgb(237,1,45)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3499.5" font-size="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] (2 samples, 0.33%)</title><rect x="502.0" y="993" width="3.9" height="15.0" fill="rgb(216,166,19)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2545" width="891.8" height="15.0" fill="rgb(251,149,50)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2555.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/MemberEnter:::memberEnter (1 samples, 0.17%)</title><rect x="323.6" y="1105" width="2.0" height="15.0" fill="rgb(242,17,43)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="865" width="1.9" height="15.0" fill="rgb(225,119,40)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="875.5" font-size="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_inode_table (1 samples, 0.17%)</title><rect x="280.5" y="3345" width="2.0" height="15.0" fill="rgb(243,56,47)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3355.5" font-size="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:::visitClassDef (1 samples, 0.17%)</title><rect x="306.0" y="1249" width="1.9" height="15.0" fill="rgb(214,38,7)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>balance_dirty_pages_ratelimited (2 samples, 0.33%)</title><rect x="511.8" y="849" width="3.9" height="15.0" fill="rgb(213,163,53)" rx="2" ry="2" />
<text text-anchor="" x="514.79" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1089" width="1.9" height="15.0" fill="rgb(252,149,31)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1649" width="80.3" height="15.0" fill="rgb(229,151,32)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1659.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>ciInstanceKlass::exact_klass (1 samples, 0.17%)</title><rect x="209.9" y="3233" width="2.0" height="15.0" fill="rgb(235,73,17)" rx="2" ry="2" />
<text text-anchor="" x="212.93" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::resolve_instance_class_or_null (1 samples, 0.17%)</title><rect x="27.6" y="3297" width="2.0" height="15.0" fill="rgb(213,162,3)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (1 samples, 0.17%)</title><rect x="486.3" y="849" width="2.0" height="15.0" fill="rgb(252,168,26)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.17%)</title><rect x="1180.2" y="993" width="2.0" height="15.0" fill="rgb(239,66,37)" rx="2" ry="2" />
<text text-anchor="" x="1183.20" y="1003.5" font-size="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.17%)</title><rect x="306.0" y="1153" width="1.9" height="15.0" fill="rgb(238,224,24)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1163.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="331.5" y="1089" width="1.9" height="15.0" fill="rgb(245,86,46)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SystemDictionary::load_instance_class (1 samples, 0.17%)</title><rect x="27.6" y="3281" width="2.0" height="15.0" fill="rgb(206,134,50)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3291.5" font-size="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 (4 samples, 0.66%)</title><rect x="470.6" y="1201" width="7.9" height="15.0" fill="rgb(212,139,23)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1211.5" font-size="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:::visitExec (1 samples, 0.17%)</title><rect x="355.0" y="737" width="1.9" height="15.0" fill="rgb(245,227,16)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="478.5" y="1185" width="1.9" height="15.0" fill="rgb(246,167,22)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (3 samples, 0.50%)</title><rect x="274.6" y="3425" width="5.9" height="15.0" fill="rgb(237,61,48)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3435.5" font-size="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::merge_state_for (2 samples, 0.33%)</title><rect x="219.7" y="3377" width="4.0" height="15.0" fill="rgb(234,207,44)" rx="2" ry="2" />
<text text-anchor="" x="222.73" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_page_memcg (1 samples, 0.17%)</title><rect x="504.0" y="769" width="1.9" height="15.0" fill="rgb(234,128,16)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1521" width="1.9" height="15.0" fill="rgb(220,19,53)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1531.5" font-size="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.50%)</title><rect x="1172.4" y="993" width="5.8" height="15.0" fill="rgb(235,34,19)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2369" width="2.0" height="15.0" fill="rgb(248,1,38)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1777" width="11.8" height="15.0" fill="rgb(220,133,39)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1787.5" font-size="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.17%)</title><rect x="41.4" y="3489" width="1.9" height="15.0" fill="rgb(231,11,19)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swake_up (1 samples, 0.17%)</title><rect x="153.1" y="3313" width="1.9" height="15.0" fill="rgb(253,175,21)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3323.5" font-size="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.17%)</title><rect x="349.1" y="1169" width="2.0" height="15.0" fill="rgb(211,46,3)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3105" width="1.9" height="15.0" fill="rgb(244,61,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3115.5" font-size="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.17%)</title><rect x="445.1" y="1521" width="2.0" height="15.0" fill="rgb(237,183,9)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1531.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1873" width="715.4" height="15.0" fill="rgb(240,1,48)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2161" width="891.8" height="15.0" fill="rgb(219,43,1)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.17%)</title><rect x="272.7" y="3521" width="1.9" height="15.0" fill="rgb(245,42,18)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.17%)</title><rect x="10.0" y="3409" width="2.0" height="15.0" fill="rgb(221,178,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.17%)</title><rect x="290.3" y="3425" width="2.0" height="15.0" fill="rgb(245,78,7)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3435.5" font-size="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_flush_plug_list (3 samples, 0.50%)</title><rect x="1164.5" y="865" width="5.9" height="15.0" fill="rgb(216,97,53)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="875.5" font-size="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 (70 samples, 11.63%)</title><rect x="59.0" y="3601" width="137.2" height="15.0" fill="rgb(227,13,32)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::new_nmethod (1 samples, 0.17%)</title><rect x="237.4" y="3425" width="1.9" height="15.0" fill="rgb(205,9,38)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Monitor::lock_without_safepoint_check (1 samples, 0.17%)</title><rect x="12.0" y="3537" width="1.9" height="15.0" fill="rgb(232,185,53)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::_new (1 samples, 0.17%)</title><rect x="27.6" y="3345" width="2.0" height="15.0" fill="rgb(207,68,6)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3355.5" font-size="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/Gen:::callMethod (1 samples, 0.17%)</title><rect x="343.2" y="945" width="2.0" height="15.0" fill="rgb(221,191,2)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="955.5" font-size="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 (1 samples, 0.17%)</title><rect x="251.1" y="3137" width="2.0" height="15.0" fill="rgb(205,214,8)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3147.5" font-size="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 (1 samples, 0.17%)</title><rect x="445.1" y="1537" width="2.0" height="15.0" fill="rgb(253,204,43)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1547.5" font-size="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_block_write_begin (1 samples, 0.17%)</title><rect x="517.7" y="833" width="1.9" height="15.0" fill="rgb(252,95,12)" rx="2" ry="2" />
<text text-anchor="" x="520.67" y="843.5" font-size="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$AbstractMethodCheck:::argumentsAcceptable (1 samples, 0.17%)</title><rect x="311.9" y="801" width="1.9" height="15.0" fill="rgb(213,39,6)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParmNode::is_CFG (1 samples, 0.17%)</title><rect x="160.9" y="3441" width="2.0" height="15.0" fill="rgb(226,220,22)" rx="2" ry="2" />
<text text-anchor="" x="163.93" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryService::create_MemoryUsage_obj (2 samples, 0.33%)</title><rect x="19.8" y="3537" width="3.9" height="15.0" fill="rgb(227,93,11)" rx="2" ry="2" />
<text text-anchor="" x="22.80" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1473" width="715.4" height="15.0" fill="rgb(206,87,49)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1483.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.17%)</title><rect x="323.6" y="1281" width="2.0" height="15.0" fill="rgb(218,96,24)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1291.5" font-size="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.17%)</title><rect x="311.9" y="641" width="1.9" height="15.0" fill="rgb(234,87,46)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1089" width="1.9" height="15.0" fill="rgb(250,208,38)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1489" width="715.4" height="15.0" fill="rgb(212,45,51)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1499.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/tree/JCTree$JCMethodDecl:::accept (3 samples, 0.50%)</title><rect x="339.3" y="1297" width="5.9" height="15.0" fill="rgb(225,186,43)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1307.5" font-size="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.17%)</title><rect x="190.3" y="2913" width="2.0" height="15.0" fill="rgb(239,122,35)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1457" width="1.9" height="15.0" fill="rgb(232,90,12)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3153" width="1.9" height="15.0" fill="rgb(225,66,16)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3163.5" font-size="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.17%)</title><rect x="325.6" y="1265" width="1.9" height="15.0" fill="rgb(213,200,4)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1275.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="833" width="5.9" height="15.0" fill="rgb(225,29,32)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="843.5" font-size="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:::complete (1 samples, 0.17%)</title><rect x="356.9" y="849" width="2.0" height="15.0" fill="rgb(245,101,47)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="859.5" font-size="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.17%)</title><rect x="272.7" y="3377" width="1.9" height="15.0" fill="rgb(225,88,7)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="333.4" y="945" width="2.0" height="15.0" fill="rgb(249,228,24)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="2065" width="11.8" height="15.0" fill="rgb(245,57,8)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2075.5" font-size="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/Items$LocalItem:::load (1 samples, 0.17%)</title><rect x="341.3" y="385" width="1.9" height="15.0" fill="rgb(234,119,49)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.17%)</title><rect x="190.3" y="3265" width="2.0" height="15.0" fill="rgb(207,72,6)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3275.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="311.9" y="193" width="1.9" height="15.0" fill="rgb(235,129,2)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/hash/DefaultFileHasher:::doHash (11 samples, 1.83%)</title><rect x="445.1" y="1553" width="21.6" height="15.0" fill="rgb(212,181,54)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1563.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.17%)</title><rect x="355.0" y="1137" width="1.9" height="15.0" fill="rgb(234,154,30)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1147.5" font-size="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 (346 samples, 57.48%)</title><rect x="484.4" y="1057" width="678.2" height="15.0" fill="rgb(212,87,46)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="1067.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>new_sync_read (4 samples, 0.66%)</title><rect x="1162.6" y="977" width="7.8" height="15.0" fill="rgb(232,141,16)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="987.5" font-size="12" 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.66%)</title><rect x="337.3" y="1329" width="7.9" height="15.0" fill="rgb(214,159,20)" rx="2" ry="2" />
<text text-anchor="" x="340.34" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1185" width="1.9" height="15.0" fill="rgb(210,152,28)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1195.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="2449" width="891.8" height="15.0" fill="rgb(220,159,2)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (1 samples, 0.17%)</title><rect x="1188.0" y="1025" width="2.0" height="15.0" fill="rgb(234,85,16)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1035.5" font-size="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/regex/Pattern$CharProperty:::match (1 samples, 0.17%)</title><rect x="329.5" y="705" width="2.0" height="15.0" fill="rgb(222,115,22)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="715.5" font-size="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$Subst:::visitMethodType (1 samples, 0.17%)</title><rect x="335.4" y="881" width="1.9" height="15.0" fill="rgb(206,136,48)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="891.5" font-size="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.17%)</title><rect x="311.9" y="481" width="1.9" height="15.0" fill="rgb(246,106,6)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCTry:::accept (1 samples, 0.17%)</title><rect x="313.8" y="1185" width="2.0" height="15.0" fill="rgb(215,129,25)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1195.5" font-size="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.17%)</title><rect x="355.0" y="785" width="1.9" height="15.0" fill="rgb(254,144,54)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="795.5" font-size="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/concurrent/ConcurrentHashMap:::get (1 samples, 0.17%)</title><rect x="1186.1" y="3121" width="1.9" height="15.0" fill="rgb(228,96,27)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1825" width="11.8" height="15.0" fill="rgb(234,177,14)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1345" width="1.9" height="15.0" fill="rgb(253,214,45)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1355.5" font-size="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 (10 samples, 1.66%)</title><rect x="1162.6" y="1105" width="19.6" height="15.0" fill="rgb(241,10,47)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1115.5" font-size="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/Lower:::visitReturn (1 samples, 0.17%)</title><rect x="317.7" y="1089" width="2.0" height="15.0" fill="rgb(217,211,0)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1099.5" font-size="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$JCVariableDecl:::accept (1 samples, 0.17%)</title><rect x="358.9" y="1281" width="2.0" height="15.0" fill="rgb(251,114,0)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.17%)</title><rect x="470.6" y="929" width="2.0" height="15.0" fill="rgb(232,174,47)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="939.5" font-size="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.17%)</title><rect x="307.9" y="1217" width="2.0" height="15.0" fill="rgb(243,78,19)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1227.5" font-size="12" 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.33%)</title><rect x="292.3" y="1841" width="3.9" height="15.0" fill="rgb(232,27,0)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1851.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="609" width="1.9" height="15.0" fill="rgb(224,44,19)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BitMap::set_intersection_with_result (2 samples, 0.33%)</title><rect x="219.7" y="3361" width="4.0" height="15.0" fill="rgb(211,10,15)" rx="2" ry="2" />
<text text-anchor="" x="222.73" y="3371.5" font-size="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:::visitBlock (1 samples, 0.17%)</title><rect x="306.0" y="1137" width="1.9" height="15.0" fill="rgb(242,107,26)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RangeCheckEliminator::set_process_block_flags (1 samples, 0.17%)</title><rect x="225.6" y="3361" width="2.0" height="15.0" fill="rgb(231,223,28)" rx="2" ry="2" />
<text text-anchor="" x="228.61" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3361" width="2.0" height="15.0" fill="rgb(226,158,1)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1073" width="1.9" height="15.0" fill="rgb(233,221,4)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1083.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="327.5" y="1009" width="2.0" height="15.0" fill="rgb(234,222,34)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1019.5" font-size="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/FileOutputStream:::writeBytes (4 samples, 0.66%)</title><rect x="470.6" y="1025" width="7.9" height="15.0" fill="rgb(228,57,37)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1035.5" font-size="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.17%)</title><rect x="313.8" y="1089" width="2.0" height="15.0" fill="rgb(223,162,38)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3329" width="2.0" height="15.0" fill="rgb(241,169,54)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3339.5" font-size="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.17%)</title><rect x="190.3" y="3409" width="2.0" height="15.0" fill="rgb(221,196,8)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sg_free_table (1 samples, 0.17%)</title><rect x="12.0" y="3345" width="1.9" height="15.0" fill="rgb(234,154,4)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.17%)</title><rect x="470.6" y="897" width="2.0" height="15.0" fill="rgb(242,176,14)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="907.5" font-size="12" 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.50%)</title><rect x="349.1" y="1377" width="5.9" height="15.0" fill="rgb(232,113,10)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1387.5" font-size="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.17%)</title><rect x="306.0" y="1121" width="1.9" height="15.0" fill="rgb(221,156,15)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__xstat64 (1 samples, 0.17%)</title><rect x="251.1" y="3537" width="2.0" height="15.0" fill="rgb(210,142,13)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3547.5" font-size="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/DefaultCopySpec$DefaultCopySpecResolver:::getAllIncludeSpecs (1 samples, 0.17%)</title><rect x="1182.2" y="1281" width="1.9" height="15.0" fill="rgb(246,13,46)" rx="2" ry="2" />
<text text-anchor="" x="1185.16" y="1291.5" font-size="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.17%)</title><rect x="355.0" y="1121" width="1.9" height="15.0" fill="rgb(253,224,33)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1131.5" font-size="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/Lower:::visitClassDef (2 samples, 0.33%)</title><rect x="317.7" y="1281" width="4.0" height="15.0" fill="rgb(217,85,8)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1291.5" font-size="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 (2 samples, 0.33%)</title><rect x="64.9" y="3457" width="3.9" height="15.0" fill="rgb(219,219,45)" rx="2" ry="2" />
<text text-anchor="" x="67.88" y="3467.5" font-size="12" 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 (6 samples, 1.00%)</title><rect x="484.4" y="1025" width="11.7" height="15.0" fill="rgb(220,36,14)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="1035.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="355.0" y="513" width="1.9" height="15.0" fill="rgb(244,220,13)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_to_page_cache_lru (1 samples, 0.17%)</title><rect x="1174.3" y="849" width="2.0" height="15.0" fill="rgb(222,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1937" width="823.2" height="15.0" fill="rgb(239,134,46)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1947.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/DeferredAttr$DeferredChecker$2:::lookup (1 samples, 0.17%)</title><rect x="313.8" y="801" width="2.0" height="15.0" fill="rgb(225,39,41)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="811.5" font-size="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 (3 samples, 0.50%)</title><rect x="1164.5" y="753" width="5.9" height="15.0" fill="rgb(209,161,39)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="763.5" font-size="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 (3 samples, 0.50%)</title><rect x="204.1" y="3233" width="5.8" height="15.0" fill="rgb(229,228,0)" rx="2" ry="2" />
<text text-anchor="" x="207.05" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (1 samples, 0.17%)</title><rect x="145.2" y="3393" width="2.0" height="15.0" fill="rgb(227,47,23)" rx="2" ry="2" />
<text text-anchor="" x="148.25" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1825" width="2.0" height="15.0" fill="rgb(223,36,16)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_InvokeMethod (6 samples, 1.00%)</title><rect x="349.1" y="1697" width="11.8" height="15.0" fill="rgb(226,197,27)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_error_reported (1 samples, 0.17%)</title><rect x="13.9" y="3569" width="2.0" height="15.0" fill="rgb(240,190,42)" rx="2" ry="2" />
<text text-anchor="" x="16.92" y="3579.5" font-size="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$AliveAnalyzer:::scanStat (1 samples, 0.17%)</title><rect x="349.1" y="1233" width="2.0" height="15.0" fill="rgb(231,110,6)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.17%)</title><rect x="145.2" y="3345" width="2.0" height="15.0" fill="rgb(245,48,18)" rx="2" ry="2" />
<text text-anchor="" x="148.25" y="3355.5" font-size="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.17%)</title><rect x="1174.3" y="833" width="2.0" height="15.0" fill="rgb(236,166,2)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="843.5" font-size="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.33%)</title><rect x="170.7" y="3441" width="4.0" height="15.0" fill="rgb(237,173,3)" rx="2" ry="2" />
<text text-anchor="" x="173.73" y="3451.5" font-size="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.17%)</title><rect x="329.5" y="1089" width="2.0" height="15.0" fill="rgb(207,224,26)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1553" width="49.0" height="15.0" fill="rgb(242,141,5)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1563.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/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (10 samples, 1.66%)</title><rect x="1162.6" y="1217" width="19.6" height="15.0" fill="rgb(247,200,34)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1227.5" font-size="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.17%)</title><rect x="315.8" y="1185" width="1.9" height="15.0" fill="rgb(240,173,0)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="27.6" y="3441" width="2.0" height="15.0" fill="rgb(213,73,16)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3451.5" font-size="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 (321 samples, 53.32%)</title><rect x="521.6" y="993" width="629.2" height="15.0" fill="rgb(228,18,45)" rx="2" ry="2" />
<text text-anchor="" x="524.59" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >deflate_slow</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2417" width="891.8" height="15.0" fill="rgb(207,147,16)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2427.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>JavaThread::~JavaThread (2 samples, 0.33%)</title><rect x="249.1" y="3585" width="4.0" height="15.0" fill="rgb(226,152,1)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3595.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="1121" width="2.0" height="15.0" fill="rgb(213,76,3)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_page_fault (1 samples, 0.17%)</title><rect x="23.7" y="3377" width="2.0" height="15.0" fill="rgb(237,128,33)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3387.5" font-size="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/Gen:::genStat (3 samples, 0.50%)</title><rect x="339.3" y="1249" width="5.9" height="15.0" fill="rgb(219,141,20)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaMain (2 samples, 0.33%)</title><rect x="27.6" y="3585" width="4.0" height="15.0" fill="rgb(222,228,8)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3595.5" font-size="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/Infer$GraphSolver:::solve (1 samples, 0.17%)</title><rect x="331.5" y="593" width="1.9" height="15.0" fill="rgb(208,37,29)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCIf:::accept (1 samples, 0.17%)</title><rect x="309.9" y="961" width="2.0" height="15.0" fill="rgb(211,213,24)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="971.5" font-size="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.17%)</title><rect x="309.9" y="929" width="2.0" height="15.0" fill="rgb(229,38,4)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 9.14%)</title><rect x="360.9" y="1777" width="107.8" height="15.0" fill="rgb(247,128,43)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1787.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.17%)</title><rect x="1188.0" y="2673" width="2.0" height="15.0" fill="rgb(241,110,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="23.7" y="3425" width="2.0" height="15.0" fill="rgb(220,65,2)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2257" width="2.0" height="15.0" fill="rgb(225,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (348 samples, 57.81%)</title><rect x="480.4" y="1105" width="682.2" height="15.0" fill="rgb(216,192,21)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1115.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::access_field (1 samples, 0.17%)</title><rect x="196.2" y="3345" width="2.0" height="15.0" fill="rgb(207,49,2)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3355.5" font-size="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_read_iter (3 samples, 0.50%)</title><rect x="490.2" y="881" width="5.9" height="15.0" fill="rgb(238,144,41)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="891.5" font-size="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.17%)</title><rect x="333.4" y="1025" width="2.0" height="15.0" fill="rgb(209,18,35)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1035.5" font-size="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.17%)</title><rect x="356.9" y="1041" width="2.0" height="15.0" fill="rgb(213,158,7)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1051.5" font-size="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.17%)</title><rect x="355.0" y="801" width="1.9" height="15.0" fill="rgb(246,37,26)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="811.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1841" width="715.4" height="15.0" fill="rgb(232,120,2)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1 samples, 0.17%)</title><rect x="472.6" y="945" width="2.0" height="15.0" fill="rgb(252,107,13)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1409" width="715.4" height="15.0" fill="rgb(231,84,11)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1419.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>JavaThread::run (1 samples, 0.17%)</title><rect x="1188.0" y="3569" width="2.0" height="15.0" fill="rgb(226,179,17)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3579.5" font-size="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_lookup (1 samples, 0.17%)</title><rect x="251.1" y="3361" width="2.0" height="15.0" fill="rgb(241,104,37)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2529" width="891.8" height="15.0" fill="rgb(208,50,53)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2539.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>__set_page_dirty (1 samples, 0.17%)</title><rect x="1176.3" y="817" width="1.9" height="15.0" fill="rgb(208,172,20)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1825" width="715.4" height="15.0" fill="rgb(228,53,40)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1835.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>common_file_perm (1 samples, 0.17%)</title><rect x="1178.2" y="961" width="2.0" height="15.0" fill="rgb(237,8,13)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="971.5" font-size="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.17%)</title><rect x="356.9" y="1153" width="2.0" height="15.0" fill="rgb(216,3,21)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProjNode::Opcode (1 samples, 0.17%)</title><rect x="182.5" y="3425" width="2.0" height="15.0" fill="rgb(207,182,37)" rx="2" ry="2" />
<text text-anchor="" x="185.49" y="3435.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="335.4" y="945" width="1.9" height="15.0" fill="rgb(220,110,11)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2033" width="2.0" height="15.0" fill="rgb(247,69,9)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2043.5" font-size="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/security/provider/MD5:::implCompress (40 samples, 6.64%)</title><rect x="366.7" y="1393" width="78.4" height="15.0" fill="rgb(229,45,52)" rx="2" ry="2" />
<text text-anchor="" x="369.74" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/secu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>page_fault (1 samples, 0.17%)</title><rect x="23.7" y="3393" width="2.0" height="15.0" fill="rgb(253,110,39)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3403.5" font-size="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/Gen:::visitBlock (3 samples, 0.50%)</title><rect x="339.3" y="1201" width="5.9" height="15.0" fill="rgb(212,72,23)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1211.5" font-size="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.17%)</title><rect x="323.6" y="849" width="2.0" height="15.0" fill="rgb(222,109,0)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="2001" width="11.8" height="15.0" fill="rgb(218,201,17)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2011.5" font-size="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 (5 samples, 0.83%)</title><rect x="1162.6" y="1073" width="9.8" height="15.0" fill="rgb(216,30,38)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1083.5" font-size="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_new (1 samples, 0.17%)</title><rect x="39.4" y="3201" width="2.0" height="15.0" fill="rgb(238,213,2)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3211.5" font-size="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 (3 samples, 0.50%)</title><rect x="204.1" y="3249" width="5.8" height="15.0" fill="rgb(229,51,46)" rx="2" ry="2" />
<text text-anchor="" x="207.05" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="1188.0" y="977" width="2.0" height="15.0" fill="rgb(251,190,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3329" width="1.9" height="15.0" fill="rgb(228,228,35)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3339.5" font-size="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.17%)</title><rect x="302.1" y="1153" width="1.9" height="15.0" fill="rgb(241,45,21)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1163.5" font-size="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.17%)</title><rect x="313.8" y="1137" width="2.0" height="15.0" fill="rgb(252,90,20)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1147.5" font-size="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$4:::argumentsAcceptable (1 samples, 0.17%)</title><rect x="331.5" y="945" width="1.9" height="15.0" fill="rgb(240,39,17)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="955.5" font-size="12" 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.50%)</title><rect x="349.1" y="1361" width="5.9" height="15.0" fill="rgb(226,2,32)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1371.5" font-size="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] (10 samples, 1.66%)</title><rect x="253.1" y="3585" width="19.6" height="15.0" fill="rgb(208,10,33)" rx="2" ry="2" />
<text text-anchor="" x="256.06" y="3595.5" font-size="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:::term1 (1 samples, 0.17%)</title><rect x="300.1" y="897" width="2.0" height="15.0" fill="rgb(226,179,27)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="907.5" font-size="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] (2 samples, 0.33%)</title><rect x="1178.2" y="1057" width="4.0" height="15.0" fill="rgb(215,132,52)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="341.3" y="1105" width="1.9" height="15.0" fill="rgb(251,28,43)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1115.5" font-size="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 (3 samples, 0.50%)</title><rect x="1172.4" y="945" width="5.8" height="15.0" fill="rgb(244,164,12)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="955.5" font-size="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/regex/Pattern$BranchConn:::match (1 samples, 0.17%)</title><rect x="329.5" y="785" width="2.0" height="15.0" fill="rgb(216,98,34)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (3 samples, 0.50%)</title><rect x="1164.5" y="769" width="5.9" height="15.0" fill="rgb(227,24,0)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="779.5" font-size="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.33%)</title><rect x="12.0" y="3601" width="3.9" height="15.0" fill="rgb(213,21,15)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>balance_dirty_pages.isra.26 (1 samples, 0.17%)</title><rect x="513.8" y="833" width="1.9" height="15.0" fill="rgb(228,140,54)" rx="2" ry="2" />
<text text-anchor="" x="516.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2641" width="2.0" height="15.0" fill="rgb(245,125,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1985" width="54.8" height="15.0" fill="rgb(213,0,1)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (3 samples, 0.50%)</title><rect x="255.0" y="3457" width="5.9" height="15.0" fill="rgb(210,58,53)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3467.5" font-size="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 (5 samples, 0.83%)</title><rect x="509.8" y="913" width="9.8" height="15.0" fill="rgb(252,44,54)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_slowpath (1 samples, 0.17%)</title><rect x="482.4" y="961" width="2.0" height="15.0" fill="rgb(218,227,6)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="971.5" font-size="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.17%)</title><rect x="311.9" y="49" width="1.9" height="15.0" fill="rgb(242,30,47)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Type$MethodType:::accept (1 samples, 0.17%)</title><rect x="311.9" y="113" width="1.9" height="15.0" fill="rgb(214,107,44)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="494.2" y="705" width="1.9" height="15.0" fill="rgb(218,91,2)" rx="2" ry="2" />
<text text-anchor="" x="497.15" y="715.5" font-size="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/Gen:::genMethod (3 samples, 0.50%)</title><rect x="339.3" y="1265" width="5.9" height="15.0" fill="rgb(206,38,32)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1275.5" font-size="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 (2 samples, 0.33%)</title><rect x="355.0" y="1201" width="3.9" height="15.0" fill="rgb(238,152,53)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3233" width="891.8" height="15.0" fill="rgb(215,10,17)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3243.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>Compilation::build_ (16 samples, 2.66%)</title><rect x="196.2" y="3441" width="31.4" height="15.0" fill="rgb(223,123,21)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1041" width="1.9" height="15.0" fill="rgb(240,102,44)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1051.5" font-size="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_page_to_iter (1 samples, 0.17%)</title><rect x="1162.6" y="929" width="1.9" height="15.0" fill="rgb(219,77,52)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="939.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="343.2" y="817" width="2.0" height="15.0" fill="rgb(230,194,51)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="827.5" font-size="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.17%)</title><rect x="190.3" y="3073" width="2.0" height="15.0" fill="rgb(238,63,12)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3083.5" font-size="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.17%)</title><rect x="335.4" y="1105" width="1.9" height="15.0" fill="rgb(228,191,29)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AccessField::AccessField (1 samples, 0.17%)</title><rect x="198.2" y="3249" width="1.9" height="15.0" fill="rgb(254,154,22)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3259.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3505" width="891.8" height="15.0" fill="rgb(208,121,33)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_virtual</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (1 samples, 0.17%)</title><rect x="484.4" y="753" width="1.9" height="15.0" fill="rgb(229,218,24)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (3 samples, 0.50%)</title><rect x="1164.5" y="737" width="5.9" height="15.0" fill="rgb(228,114,28)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3281" width="1.9" height="15.0" fill="rgb(219,80,25)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3291.5" font-size="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::remove_speculative_types (1 samples, 0.17%)</title><rect x="155.0" y="3457" width="2.0" height="15.0" fill="rgb(240,26,27)" rx="2" ry="2" />
<text text-anchor="" x="158.05" y="3467.5" font-size="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 (326 samples, 54.15%)</title><rect x="519.6" y="1041" width="639.0" height="15.0" fill="rgb(221,29,12)" rx="2" ry="2" />
<text text-anchor="" x="522.63" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/util/zip/Deflater:::deflateBytes</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (1 samples, 0.17%)</title><rect x="39.4" y="3393" width="2.0" height="15.0" fill="rgb(248,73,31)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3403.5" font-size="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.17%)</title><rect x="190.3" y="2833" width="2.0" height="15.0" fill="rgb(245,204,31)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2843.5" font-size="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 (3 samples, 0.50%)</title><rect x="355.0" y="1313" width="5.9" height="15.0" fill="rgb(232,30,30)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3121" width="1.9" height="15.0" fill="rgb(234,196,5)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__irqentry_text_start (1 samples, 0.17%)</title><rect x="153.1" y="3425" width="1.9" height="15.0" fill="rgb(230,127,36)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3435.5" font-size="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::null_check (1 samples, 0.17%)</title><rect x="208.0" y="3217" width="1.9" height="15.0" fill="rgb(230,221,19)" rx="2" ry="2" />
<text text-anchor="" x="210.97" y="3227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhiNode::Value (1 samples, 0.17%)</title><rect x="190.3" y="2529" width="2.0" height="15.0" fill="rgb(221,121,3)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="929" width="1.9" height="15.0" fill="rgb(253,47,39)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="939.5" font-size="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.17%)</title><rect x="306.0" y="1217" width="1.9" height="15.0" fill="rgb(248,185,44)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2241" width="891.8" height="15.0" fill="rgb(254,147,20)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2251.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 (6 samples, 1.00%)</title><rect x="349.1" y="1969" width="11.8" height="15.0" fill="rgb(218,6,1)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1979.5" font-size="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.17%)</title><rect x="355.0" y="753" width="1.9" height="15.0" fill="rgb(210,94,35)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newlstat (1 samples, 0.17%)</title><rect x="247.2" y="3521" width="1.9" height="15.0" fill="rgb(218,31,43)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3531.5" font-size="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_run_queue (1 samples, 0.17%)</title><rect x="1148.8" y="817" width="2.0" height="15.0" fill="rgb(209,186,12)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="827.5" font-size="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:::rawInstantiate (1 samples, 0.17%)</title><rect x="311.9" y="177" width="1.9" height="15.0" fill="rgb(228,17,43)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1569" width="715.4" height="15.0" fill="rgb(218,128,29)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1579.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:::visitBlock (4 samples, 0.66%)</title><rect x="329.5" y="1217" width="7.8" height="15.0" fill="rgb(253,74,25)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2065" width="2.0" height="15.0" fill="rgb(223,178,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2075.5" font-size="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::interfere_with_live (2 samples, 0.33%)</title><rect x="127.6" y="3425" width="3.9" height="15.0" fill="rgb(245,48,21)" rx="2" ry="2" />
<text text-anchor="" x="130.61" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Metadata::is_klass (1 samples, 0.17%)</title><rect x="1184.1" y="3585" width="2.0" height="15.0" fill="rgb(208,17,22)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3595.5" font-size="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 (3 samples, 0.50%)</title><rect x="31.6" y="3473" width="5.8" height="15.0" fill="rgb(244,167,47)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2193" width="2.0" height="15.0" fill="rgb(226,97,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (1 samples, 0.17%)</title><rect x="29.6" y="3409" width="2.0" height="15.0" fill="rgb(206,120,16)" rx="2" ry="2" />
<text text-anchor="" x="32.60" y="3419.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="1185" width="2.0" height="15.0" fill="rgb(249,185,46)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1195.5" font-size="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.17%)</title><rect x="327.5" y="1201" width="2.0" height="15.0" fill="rgb(253,58,37)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>file_update_time (1 samples, 0.17%)</title><rect x="509.8" y="865" width="2.0" height="15.0" fill="rgb(214,229,30)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="875.5" font-size="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.17%)</title><rect x="249.1" y="3505" width="2.0" height="15.0" fill="rgb(209,134,49)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3515.5" font-size="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/Code:::emitStackMap (1 samples, 0.17%)</title><rect x="341.3" y="337" width="1.9" height="15.0" fill="rgb(247,73,12)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1777" width="2.0" height="15.0" fill="rgb(233,56,4)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3201" width="1.9" height="15.0" fill="rgb(221,112,33)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3211.5" font-size="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 (2 samples, 0.33%)</title><rect x="300.1" y="1201" width="3.9" height="15.0" fill="rgb(244,168,47)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1211.5" font-size="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/regex/Pattern$Branch:::match (1 samples, 0.17%)</title><rect x="329.5" y="753" width="2.0" height="15.0" fill="rgb(217,24,1)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="763.5" font-size="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 (1 samples, 0.17%)</title><rect x="515.7" y="849" width="2.0" height="15.0" fill="rgb(233,63,53)" rx="2" ry="2" />
<text text-anchor="" x="518.71" y="859.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="307.9" y="1313" width="2.0" height="15.0" fill="rgb(216,131,24)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1323.5" font-size="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:::visitNewClass (1 samples, 0.17%)</title><rect x="358.9" y="1217" width="2.0" height="15.0" fill="rgb(245,60,54)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CollectedHeap::common_mem_allocate_init (1 samples, 0.17%)</title><rect x="19.8" y="3505" width="2.0" height="15.0" fill="rgb(246,60,39)" rx="2" ry="2" />
<text text-anchor="" x="22.80" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1457" width="2.0" height="15.0" fill="rgb(245,40,47)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="945" width="1.9" height="15.0" fill="rgb(236,38,7)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1137" width="1.9" height="15.0" fill="rgb(206,157,46)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1147.5" font-size="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_run_queue (2 samples, 0.33%)</title><rect x="276.6" y="3345" width="3.9" height="15.0" fill="rgb(249,119,35)" rx="2" ry="2" />
<text text-anchor="" x="279.58" y="3355.5" font-size="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.17%)</title><rect x="10.0" y="3601" width="2.0" height="15.0" fill="rgb(214,54,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3611.5" font-size="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 (21 samples, 3.49%)</title><rect x="196.2" y="3457" width="41.2" height="15.0" fill="rgb(231,155,38)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1537" width="49.0" height="15.0" fill="rgb(254,9,17)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1547.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>Java_java_io_RandomAccessFile_writeBytes (1 samples, 0.17%)</title><rect x="500.0" y="1025" width="2.0" height="15.0" fill="rgb(230,91,31)" rx="2" ry="2" />
<text text-anchor="" x="503.03" y="1035.5" font-size="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_iget (1 samples, 0.17%)</title><rect x="251.1" y="3329" width="2.0" height="15.0" fill="rgb(229,124,30)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="27.6" y="3409" width="2.0" height="15.0" fill="rgb(211,13,47)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3419.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="355.0" y="641" width="1.9" height="15.0" fill="rgb(243,185,52)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (26 samples, 4.32%)</title><rect x="196.2" y="3601" width="51.0" height="15.0" fill="rgb(229,60,7)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1793" width="11.8" height="15.0" fill="rgb(215,207,7)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_field (1 samples, 0.17%)</title><rect x="196.2" y="3329" width="2.0" height="15.0" fill="rgb(213,49,13)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_execveat_common.isra.39 (1 samples, 0.17%)</title><rect x="1188.0" y="1201" width="2.0" height="15.0" fill="rgb(242,199,51)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1393" width="11.8" height="15.0" fill="rgb(240,194,31)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1403.5" font-size="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/Gen:::genExpr (1 samples, 0.17%)</title><rect x="343.2" y="993" width="2.0" height="15.0" fill="rgb(236,29,9)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1003.5" font-size="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.17%)</title><rect x="264.8" y="3409" width="2.0" height="15.0" fill="rgb(212,145,15)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3419.5" font-size="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_get_block_prep (1 samples, 0.17%)</title><rect x="502.0" y="817" width="2.0" height="15.0" fill="rgb(226,204,33)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="827.5" font-size="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.17%)</title><rect x="311.9" y="993" width="1.9" height="15.0" fill="rgb(241,88,54)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1003.5" font-size="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/ConventionAwareHelper$MappedPropertyImpl:::getValue (1 samples, 0.17%)</title><rect x="345.2" y="1537" width="1.9" height="15.0" fill="rgb(205,191,11)" rx="2" ry="2" />
<text text-anchor="" x="348.18" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>compress_block (23 samples, 3.82%)</title><rect x="692.1" y="961" width="45.1" height="15.0" fill="rgb(241,17,1)" rx="2" ry="2" />
<text text-anchor="" x="695.13" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >comp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.17%)</title><rect x="190.3" y="3377" width="2.0" height="15.0" fill="rgb(239,211,42)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StoreNode::Ideal (1 samples, 0.17%)</title><rect x="188.4" y="3425" width="1.9" height="15.0" fill="rgb(244,175,49)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3435.5" font-size="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_update_time (1 samples, 0.17%)</title><rect x="509.8" y="849" width="2.0" height="15.0" fill="rgb(218,21,40)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2561" width="891.8" height="15.0" fill="rgb(237,202,15)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2571.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>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="264.8" y="3281" width="2.0" height="15.0" fill="rgb(250,219,35)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3291.5" font-size="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.17%)</title><rect x="311.9" y="1121" width="1.9" height="15.0" fill="rgb(207,72,19)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1131.5" font-size="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:::attribClass (3 samples, 0.50%)</title><rect x="355.0" y="1329" width="5.9" height="15.0" fill="rgb(233,185,40)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1339.5" font-size="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 (2 samples, 0.33%)</title><rect x="233.5" y="3425" width="3.9" height="15.0" fill="rgb(233,153,18)" rx="2" ry="2" />
<text text-anchor="" x="236.46" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIRGenerator::do_Invoke (1 samples, 0.17%)</title><rect x="231.5" y="3393" width="2.0" height="15.0" fill="rgb(245,143,53)" rx="2" ry="2" />
<text text-anchor="" x="234.50" y="3403.5" font-size="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 (7 samples, 1.16%)</title><rect x="198.2" y="3297" width="13.7" height="15.0" fill="rgb(252,96,48)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3307.5" font-size="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/ClassFileAssembler:::incStack (1 samples, 0.17%)</title><rect x="294.2" y="1569" width="2.0" height="15.0" fill="rgb(218,166,51)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.17%)</title><rect x="117.8" y="3377" width="2.0" height="15.0" fill="rgb(246,69,36)" rx="2" ry="2" />
<text text-anchor="" x="120.81" y="3387.5" font-size="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.17%)</title><rect x="249.1" y="3409" width="2.0" height="15.0" fill="rgb(246,29,18)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3419.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="769" width="1.9" height="15.0" fill="rgb(246,124,2)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="779.5" font-size="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:::visitExec (1 samples, 0.17%)</title><rect x="356.9" y="1073" width="2.0" height="15.0" fill="rgb(232,190,7)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.17%)</title><rect x="1172.4" y="849" width="1.9" height="15.0" fill="rgb(244,211,36)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="859.5" font-size="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.17%)</title><rect x="300.1" y="1025" width="2.0" height="15.0" fill="rgb(223,148,42)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AbstractInterpreter::size_top_interpreter_activation (1 samples, 0.17%)</title><rect x="21.8" y="3489" width="1.9" height="15.0" fill="rgb(240,78,2)" rx="2" ry="2" />
<text text-anchor="" x="24.76" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3457" width="891.8" height="15.0" fill="rgb(216,25,51)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3467.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>AdvancedThresholdPolicy::method_invocation_event (1 samples, 0.17%)</title><rect x="468.7" y="673" width="1.9" height="15.0" fill="rgb(232,114,20)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3025" width="891.8" height="15.0" fill="rgb(242,139,51)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3035.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:::visitApply (1 samples, 0.17%)</title><rect x="355.0" y="689" width="1.9" height="15.0" fill="rgb(205,51,36)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.17%)</title><rect x="355.0" y="913" width="1.9" height="15.0" fill="rgb(238,61,7)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseAggressiveCoalesce::insert_copies (1 samples, 0.17%)</title><rect x="31.6" y="3441" width="1.9" height="15.0" fill="rgb(244,203,26)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3451.5" font-size="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 (1 samples, 0.17%)</title><rect x="1150.8" y="993" width="2.0" height="15.0" fill="rgb(253,146,4)" rx="2" ry="2" />
<text text-anchor="" x="1153.80" y="1003.5" font-size="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.17%)</title><rect x="190.3" y="3121" width="2.0" height="15.0" fill="rgb(243,125,10)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="2081" width="823.2" height="15.0" fill="rgb(223,190,27)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2091.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>entry_SYSCALL_64_fastpath (2 samples, 0.33%)</title><rect x="1178.2" y="1041" width="4.0" height="15.0" fill="rgb(232,54,51)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Trace::fixup_blocks (1 samples, 0.17%)</title><rect x="70.8" y="3425" width="1.9" height="15.0" fill="rgb(249,71,52)" rx="2" ry="2" />
<text text-anchor="" x="73.76" y="3435.5" font-size="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:::isAccessible (1 samples, 0.17%)</title><rect x="343.2" y="801" width="2.0" height="15.0" fill="rgb(205,24,7)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="811.5" font-size="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.17%)</title><rect x="319.7" y="993" width="2.0" height="15.0" fill="rgb(244,222,24)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sg_pool_free (1 samples, 0.17%)</title><rect x="12.0" y="3329" width="1.9" height="15.0" fill="rgb(213,170,39)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3339.5" font-size="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.17%)</title><rect x="331.5" y="1153" width="1.9" height="15.0" fill="rgb(233,18,13)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next (2 samples, 0.33%)</title><rect x="84.5" y="3409" width="3.9" height="15.0" fill="rgb(221,83,18)" rx="2" ry="2" />
<text text-anchor="" x="87.49" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1617" width="50.9" height="15.0" fill="rgb(223,227,8)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitApply (1 samples, 0.17%)</title><rect x="356.9" y="1025" width="2.0" height="15.0" fill="rgb(220,22,12)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1035.5" font-size="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.17%)</title><rect x="206.0" y="3105" width="2.0" height="15.0" fill="rgb(232,217,37)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.17%)</title><rect x="1152.8" y="993" width="1.9" height="15.0" fill="rgb(205,56,18)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2337" width="2.0" height="15.0" fill="rgb(234,201,27)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2347.5" font-size="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.17%)</title><rect x="339.3" y="1089" width="2.0" height="15.0" fill="rgb(210,0,14)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1099.5" font-size="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.17%)</title><rect x="323.6" y="913" width="2.0" height="15.0" fill="rgb(249,67,13)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::compile_method (1 samples, 0.17%)</title><rect x="468.7" y="641" width="1.9" height="15.0" fill="rgb(240,180,27)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mark_inode_dirty (1 samples, 0.17%)</title><rect x="509.8" y="833" width="2.0" height="15.0" fill="rgb(227,175,1)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="843.5" font-size="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.17%)</title><rect x="25.7" y="3601" width="1.9" height="15.0" fill="rgb(219,154,4)" rx="2" ry="2" />
<text text-anchor="" x="28.68" y="3611.5" font-size="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 (1 samples, 0.17%)</title><rect x="251.1" y="3297" width="2.0" height="15.0" fill="rgb(254,115,37)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3307.5" font-size="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 (70 samples, 11.63%)</title><rect x="59.0" y="3553" width="137.2" height="15.0" fill="rgb(251,71,37)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::threa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_dispatch_cmd (1 samples, 0.17%)</title><rect x="1188.0" y="993" width="2.0" height="15.0" fill="rgb(224,139,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1569" width="11.8" height="15.0" fill="rgb(242,164,52)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1393" width="49.0" height="15.0" fill="rgb(206,39,54)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1403.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.17%)</title><rect x="478.5" y="1201" width="1.9" height="15.0" fill="rgb(222,68,22)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1211.5" font-size="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 (8 samples, 1.33%)</title><rect x="198.2" y="3345" width="15.7" height="15.0" fill="rgb(226,80,50)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1985" width="823.2" height="15.0" fill="rgb(213,158,43)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1995.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.17%)</title><rect x="309.9" y="1169" width="2.0" height="15.0" fill="rgb(252,78,12)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1179.5" font-size="12" 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.33%)</title><rect x="360.9" y="1665" width="3.9" height="15.0" fill="rgb(206,57,38)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="2049" width="823.2" height="15.0" fill="rgb(217,115,16)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2059.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>CompilerOracle::has_option_string (1 samples, 0.17%)</title><rect x="202.1" y="3217" width="2.0" height="15.0" fill="rgb(244,118,51)" rx="2" ry="2" />
<text text-anchor="" x="205.09" y="3227.5" font-size="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.17%)</title><rect x="1188.0" y="1681" width="2.0" height="15.0" fill="rgb(230,196,15)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1691.5" font-size="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$JCLambda:::accept (1 samples, 0.17%)</title><rect x="355.0" y="1025" width="1.9" height="15.0" fill="rgb(207,95,49)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1035.5" font-size="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:::arguments (1 samples, 0.17%)</title><rect x="300.1" y="929" width="2.0" height="15.0" fill="rgb(216,81,1)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="939.5" font-size="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.17%)</title><rect x="327.5" y="1073" width="2.0" height="15.0" fill="rgb(243,116,47)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1083.5" font-size="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$NestedCheckContext:::compatible (1 samples, 0.17%)</title><rect x="358.9" y="1057" width="2.0" height="15.0" fill="rgb(232,84,1)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleThresholdPolicy::event (1 samples, 0.17%)</title><rect x="468.7" y="689" width="1.9" height="15.0" fill="rgb(217,172,40)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConNode::hash (1 samples, 0.17%)</title><rect x="39.4" y="3153" width="2.0" height="15.0" fill="rgb(238,215,45)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3163.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="335.4" y="1041" width="1.9" height="15.0" fill="rgb(251,157,46)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1051.5" font-size="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.17%)</title><rect x="323.6" y="1121" width="2.0" height="15.0" fill="rgb(207,224,45)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::cleanup_inline_caches (2 samples, 0.33%)</title><rect x="243.3" y="3457" width="3.9" height="15.0" fill="rgb(220,174,20)" rx="2" ry="2" />
<text text-anchor="" x="246.26" y="3467.5" font-size="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:::findConstructor (1 samples, 0.17%)</title><rect x="331.5" y="1041" width="1.9" height="15.0" fill="rgb(221,223,41)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 1.83%)</title><rect x="445.1" y="1665" width="21.6" height="15.0" fill="rgb(240,220,50)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1675.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/tree/JCTree$JCExpressionStatement:::accept (1 samples, 0.17%)</title><rect x="356.9" y="1089" width="2.0" height="15.0" fill="rgb(244,138,31)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1099.5" font-size="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$JCVariableDecl:::accept (1 samples, 0.17%)</title><rect x="343.2" y="1137" width="2.0" height="15.0" fill="rgb(254,189,45)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1147.5" font-size="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.17%)</title><rect x="1186.1" y="3505" width="1.9" height="15.0" fill="rgb(208,80,26)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (348 samples, 57.81%)</title><rect x="480.4" y="1169" width="682.2" height="15.0" fill="rgb(227,112,10)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1179.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>ContiguousSpace::oop_since_save_marks_iterate_nv (3 samples, 0.50%)</title><rect x="47.2" y="3409" width="5.9" height="15.0" fill="rgb(241,165,28)" rx="2" ry="2" />
<text text-anchor="" x="50.24" y="3419.5" font-size="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/Gen:::visitBinary (1 samples, 0.17%)</title><rect x="339.3" y="1009" width="2.0" height="15.0" fill="rgb(236,113,46)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RangeCheckEliminator::set_process_block_flags (1 samples, 0.17%)</title><rect x="225.6" y="3377" width="2.0" height="15.0" fill="rgb(234,181,20)" rx="2" ry="2" />
<text text-anchor="" x="228.61" y="3387.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="311.9" y="1185" width="1.9" height="15.0" fill="rgb(236,195,28)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1195.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="311.9" y="321" width="1.9" height="15.0" fill="rgb(209,221,42)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3393" width="2.0" height="15.0" fill="rgb(207,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="355.0" y="1169" width="1.9" height="15.0" fill="rgb(227,16,11)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1179.5" font-size="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.17%)</title><rect x="313.8" y="881" width="2.0" height="15.0" fill="rgb(232,146,31)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.17%)</title><rect x="290.3" y="3457" width="2.0" height="15.0" fill="rgb(209,81,19)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1921" width="823.2" height="15.0" fill="rgb(244,55,51)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1931.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.33%)</title><rect x="360.9" y="1601" width="3.9" height="15.0" fill="rgb(225,179,28)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2993" width="2.0" height="15.0" fill="rgb(205,16,10)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82541 (1 samples, 0.17%)</title><rect x="247.2" y="3617" width="1.9" height="15.0" fill="rgb(212,188,22)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3627.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="1073" width="2.0" height="15.0" fill="rgb(242,124,5)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1083.5" font-size="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.17%)</title><rect x="41.4" y="3473" width="1.9" height="15.0" fill="rgb(252,10,52)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3483.5" font-size="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.17%)</title><rect x="1174.3" y="817" width="2.0" height="15.0" fill="rgb(244,20,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1809" width="50.9" height="15.0" fill="rgb(218,61,20)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (4 samples, 0.66%)</title><rect x="309.9" y="1297" width="7.8" height="15.0" fill="rgb(243,61,50)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82530 (8 samples, 1.33%)</title><rect x="43.3" y="3617" width="15.7" height="15.0" fill="rgb(207,25,15)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="23.7" y="3409" width="2.0" height="15.0" fill="rgb(236,210,8)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3419.5" font-size="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_cache_async_readahead (2 samples, 0.33%)</title><rect x="260.9" y="3457" width="3.9" height="15.0" fill="rgb(215,28,45)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3467.5" font-size="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_RevokeBias::doit (1 samples, 0.17%)</title><rect x="55.1" y="3505" width="1.9" height="15.0" fill="rgb(215,45,42)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3515.5" font-size="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.17%)</title><rect x="1188.0" y="3553" width="2.0" height="15.0" fill="rgb(229,172,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3563.5" font-size="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_SetByteArrayRegion (1 samples, 0.17%)</title><rect x="1170.4" y="1057" width="2.0" height="15.0" fill="rgb(236,217,25)" rx="2" ry="2" />
<text text-anchor="" x="1173.40" y="1067.5" font-size="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:::visitImport (1 samples, 0.17%)</title><rect x="325.6" y="1217" width="1.9" height="15.0" fill="rgb(237,19,17)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1553" width="1.9" height="15.0" fill="rgb(219,167,7)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="294.2" y="1601" width="2.0" height="15.0" fill="rgb(242,82,27)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1611.5" font-size="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.17%)</title><rect x="206.0" y="3073" width="2.0" height="15.0" fill="rgb(218,193,10)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.17%)</title><rect x="145.2" y="3361" width="2.0" height="15.0" fill="rgb(237,180,37)" rx="2" ry="2" />
<text text-anchor="" x="148.25" y="3371.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="307.9" y="1089" width="2.0" height="15.0" fill="rgb(213,20,21)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 9.14%)</title><rect x="360.9" y="1809" width="107.8" height="15.0" fill="rgb(217,15,9)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1819.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>JavaThread::run (5 samples, 0.83%)</title><rect x="31.6" y="3569" width="9.8" height="15.0" fill="rgb(222,1,28)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3579.5" font-size="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 (2 samples, 0.33%)</title><rect x="317.7" y="1169" width="4.0" height="15.0" fill="rgb(241,152,49)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DefNewGeneration::collect (6 samples, 1.00%)</title><rect x="43.3" y="3457" width="11.8" height="15.0" fill="rgb(215,20,30)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2225" width="891.8" height="15.0" fill="rgb(208,96,23)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2235.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.17%)</title><rect x="1188.0" y="1441" width="2.0" height="15.0" fill="rgb(223,213,17)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1451.5" font-size="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_lookup (1 samples, 0.17%)</title><rect x="1188.0" y="1137" width="2.0" height="15.0" fill="rgb(239,34,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1147.5" font-size="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 (7 samples, 1.16%)</title><rect x="43.3" y="3537" width="13.7" height="15.0" fill="rgb(250,174,2)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3547.5" font-size="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::Output (2 samples, 0.33%)</title><rect x="59.0" y="3457" width="3.9" height="15.0" fill="rgb(230,81,7)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3467.5" font-size="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:::visitReturn (1 samples, 0.17%)</title><rect x="311.9" y="513" width="1.9" height="15.0" fill="rgb(236,31,28)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1521" width="11.8" height="15.0" fill="rgb(231,48,1)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseAggressiveCoalesce::insert_copies (2 samples, 0.33%)</title><rect x="78.6" y="3441" width="3.9" height="15.0" fill="rgb(253,124,19)" rx="2" ry="2" />
<text text-anchor="" x="81.60" y="3451.5" font-size="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_read (1 samples, 0.17%)</title><rect x="486.3" y="961" width="2.0" height="15.0" fill="rgb(240,152,16)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="971.5" font-size="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.17%)</title><rect x="1186.1" y="3521" width="1.9" height="15.0" fill="rgb(208,12,21)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3531.5" font-size="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.33%)</title><rect x="27.6" y="3537" width="4.0" height="15.0" fill="rgb(245,25,32)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3547.5" font-size="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/regex/Pattern$Curly:::match (1 samples, 0.17%)</title><rect x="329.5" y="801" width="2.0" height="15.0" fill="rgb(237,17,8)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.17%)</title><rect x="1184.1" y="3473" width="2.0" height="15.0" fill="rgb(207,226,42)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3483.5" font-size="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.17%)</title><rect x="333.4" y="769" width="2.0" height="15.0" fill="rgb(208,124,33)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2785" width="891.8" height="15.0" fill="rgb(212,15,51)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2795.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>PhaseRemoveUseless::PhaseRemoveUseless (1 samples, 0.17%)</title><rect x="192.3" y="3473" width="2.0" height="15.0" fill="rgb(215,69,42)" rx="2" ry="2" />
<text text-anchor="" x="195.29" y="3483.5" font-size="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:::isSubtypeUncheckedInternal (1 samples, 0.17%)</title><rect x="358.9" y="993" width="2.0" height="15.0" fill="rgb(227,15,54)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1003.5" font-size="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 (4 samples, 0.66%)</title><rect x="1162.6" y="961" width="7.8" height="15.0" fill="rgb(219,198,21)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1553" width="715.4" height="15.0" fill="rgb(246,131,34)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1563.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/jvm/Gen:::visitMethodDef (3 samples, 0.50%)</title><rect x="339.3" y="1281" width="5.9" height="15.0" fill="rgb(206,76,49)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1345" width="715.4" height="15.0" fill="rgb(238,124,40)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1355.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/util/SingleMessageLogger:::whileDisabled (1 samples, 0.17%)</title><rect x="294.2" y="1681" width="2.0" height="15.0" fill="rgb(220,11,20)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1691.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1601" width="715.4" height="15.0" fill="rgb(209,194,23)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1611.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>call_stub (2 samples, 0.33%)</title><rect x="27.6" y="3521" width="4.0" height="15.0" fill="rgb(229,217,41)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="2065" width="823.2" height="15.0" fill="rgb(222,192,33)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2075.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>[unknown] (1 samples, 0.17%)</title><rect x="249.1" y="3537" width="2.0" height="15.0" fill="rgb(236,204,51)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3547.5" font-size="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.17%)</title><rect x="333.4" y="1073" width="2.0" height="15.0" fill="rgb(215,147,16)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InterpreterRuntime::frequency_counter_overflow (1 samples, 0.17%)</title><rect x="468.7" y="721" width="1.9" height="15.0" fill="rgb(208,157,31)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-71584/71596 (5 samples, 0.83%)</title><rect x="15.9" y="3617" width="9.8" height="15.0" fill="rgb(207,59,41)" rx="2" ry="2" />
<text text-anchor="" x="18.88" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.17%)</title><rect x="464.8" y="1457" width="1.9" height="15.0" fill="rgb(226,84,39)" rx="2" ry="2" />
<text text-anchor="" x="467.75" y="1467.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="311.9" y="897" width="1.9" height="15.0" fill="rgb(243,28,30)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="907.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1713" width="50.9" height="15.0" fill="rgb(220,184,5)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fstatat (1 samples, 0.17%)</title><rect x="247.2" y="3505" width="1.9" height="15.0" fill="rgb(228,100,11)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2273" width="891.8" height="15.0" fill="rgb(212,21,50)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2283.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 (6 samples, 1.00%)</title><rect x="296.2" y="1313" width="11.7" height="15.0" fill="rgb(226,10,25)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1323.5" font-size="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_cache_async_readahead (1 samples, 0.17%)</title><rect x="272.7" y="3425" width="1.9" height="15.0" fill="rgb(235,33,0)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3435.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="311.9" y="225" width="1.9" height="15.0" fill="rgb(242,163,39)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Type$ClassType:::isRaw (1 samples, 0.17%)</title><rect x="356.9" y="897" width="2.0" height="15.0" fill="rgb(211,134,41)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="907.5" font-size="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_run_queue (2 samples, 0.33%)</title><rect x="260.9" y="3345" width="3.9" height="15.0" fill="rgb(224,182,29)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3355.5" font-size="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:::preVisitDirectory (1 samples, 0.17%)</title><rect x="478.5" y="1217" width="1.9" height="15.0" fill="rgb(234,86,36)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1953" width="11.8" height="15.0" fill="rgb(219,91,28)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1963.5" font-size="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::build_ (1 samples, 0.17%)</title><rect x="235.4" y="3409" width="2.0" height="15.0" fill="rgb(212,161,13)" rx="2" ry="2" />
<text text-anchor="" x="238.42" y="3419.5" font-size="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.17%)</title><rect x="335.4" y="785" width="1.9" height="15.0" fill="rgb(233,168,30)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1937" width="54.8" height="15.0" fill="rgb(223,133,46)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner (1 samples, 0.17%)</title><rect x="41.4" y="3553" width="1.9" height="15.0" fill="rgb(230,130,41)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3563.5" font-size="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.17%)</title><rect x="353.0" y="1345" width="2.0" height="15.0" fill="rgb(246,78,44)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1355.5" font-size="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.17%)</title><rect x="356.9" y="785" width="2.0" height="15.0" fill="rgb(251,146,35)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="795.5" font-size="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.17%)</title><rect x="41.4" y="3601" width="1.9" height="15.0" fill="rgb(218,48,10)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1489" width="2.0" height="15.0" fill="rgb(241,12,5)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1499.5" font-size="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/Lower:::translate (2 samples, 0.33%)</title><rect x="317.7" y="1265" width="4.0" height="15.0" fill="rgb(217,93,9)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1275.5" font-size="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$JCParens:::accept (1 samples, 0.17%)</title><rect x="329.5" y="1137" width="2.0" height="15.0" fill="rgb(212,191,11)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1147.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="1841" width="11.8" height="15.0" fill="rgb(225,208,28)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1851.5" font-size="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:::term2 (1 samples, 0.17%)</title><rect x="302.1" y="1121" width="1.9" height="15.0" fill="rgb(236,7,20)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1131.5" font-size="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.17%)</title><rect x="294.2" y="1617" width="2.0" height="15.0" fill="rgb(233,93,0)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1627.5" font-size="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.50%)</title><rect x="1172.4" y="977" width="5.8" height="15.0" fill="rgb(241,149,36)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (1 samples, 0.17%)</title><rect x="264.8" y="3441" width="2.0" height="15.0" fill="rgb(250,86,3)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3451.5" font-size="12" 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.17%)</title><rect x="1186.1" y="3585" width="1.9" height="15.0" fill="rgb(223,20,16)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3595.5" font-size="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 (26 samples, 4.32%)</title><rect x="196.2" y="3537" width="51.0" height="15.0" fill="rgb(228,138,45)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Compi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_invoke_static (2 samples, 0.33%)</title><rect x="27.6" y="3553" width="4.0" height="15.0" fill="rgb(242,116,11)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2801" width="891.8" height="15.0" fill="rgb(248,156,0)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2811.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.17%)</title><rect x="292.3" y="1361" width="1.9" height="15.0" fill="rgb(216,223,7)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1371.5" font-size="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.17%)</title><rect x="333.4" y="993" width="2.0" height="15.0" fill="rgb(220,189,44)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1003.5" font-size="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:::close0 (1 samples, 0.17%)</title><rect x="272.7" y="3569" width="1.9" height="15.0" fill="rgb(212,191,4)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.33%)</title><rect x="502.0" y="977" width="3.9" height="15.0" fill="rgb(219,197,49)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="987.5" font-size="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:::attribClass (1 samples, 0.17%)</title><rect x="327.5" y="1313" width="2.0" height="15.0" fill="rgb(246,43,7)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1323.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="323.6" y="945" width="2.0" height="15.0" fill="rgb(252,199,2)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1777" width="1.9" height="15.0" fill="rgb(211,74,39)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2113" width="54.8" height="15.0" fill="rgb(206,187,49)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NMethodSweeper::possibly_sweep (3 samples, 0.50%)</title><rect x="241.3" y="3505" width="5.9" height="15.0" fill="rgb(216,191,17)" rx="2" ry="2" />
<text text-anchor="" x="244.30" y="3515.5" font-size="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_read_iter (3 samples, 0.50%)</title><rect x="284.4" y="3441" width="5.9" height="15.0" fill="rgb(217,77,41)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="345.2" y="1505" width="1.9" height="15.0" fill="rgb(232,71,18)" rx="2" ry="2" />
<text text-anchor="" x="348.18" y="1515.5" font-size="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$14:::visitClassType (1 samples, 0.17%)</title><rect x="311.9" y="145" width="1.9" height="15.0" fill="rgb(232,116,34)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/File:::isDirectory (1 samples, 0.17%)</title><rect x="304.0" y="1249" width="2.0" height="15.0" fill="rgb(251,52,3)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1259.5" font-size="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 (21 samples, 3.49%)</title><rect x="149.2" y="3473" width="41.1" height="15.0" fill="rgb(213,139,54)" rx="2" ry="2" />
<text text-anchor="" x="152.17" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2881" width="2.0" height="15.0" fill="rgb(248,34,6)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="341.3" y="545" width="1.9" height="15.0" fill="rgb(206,147,46)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::checkMethodId (1 samples, 0.17%)</title><rect x="358.9" y="1185" width="2.0" height="15.0" fill="rgb(233,79,0)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1195.5" font-size="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::install_code (1 samples, 0.17%)</title><rect x="41.4" y="3457" width="1.9" height="15.0" fill="rgb(238,78,46)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3467.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1681" width="50.9" height="15.0" fill="rgb(235,141,46)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Refle..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 1.66%)</title><rect x="1162.6" y="1233" width="19.6" height="15.0" fill="rgb(230,13,32)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1243.5" font-size="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.17%)</title><rect x="251.1" y="3169" width="2.0" height="15.0" fill="rgb(220,33,54)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3179.5" font-size="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.17%)</title><rect x="358.9" y="977" width="2.0" height="15.0" fill="rgb(220,110,40)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1505" width="2.0" height="15.0" fill="rgb(210,122,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2401" width="2.0" height="15.0" fill="rgb(233,202,28)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2411.5" font-size="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.17%)</title><rect x="315.8" y="1249" width="1.9" height="15.0" fill="rgb(208,122,53)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1259.5" font-size="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.17%)</title><rect x="339.3" y="945" width="2.0" height="15.0" fill="rgb(222,76,23)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="955.5" font-size="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_GenCollectForAllocation::doit (6 samples, 1.00%)</title><rect x="43.3" y="3505" width="11.8" height="15.0" fill="rgb(222,229,52)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3515.5" font-size="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::build_ (1 samples, 0.17%)</title><rect x="72.7" y="3441" width="2.0" height="15.0" fill="rgb(216,197,39)" rx="2" ry="2" />
<text text-anchor="" x="75.72" y="3451.5" font-size="12" 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.33%)</title><rect x="300.1" y="1281" width="3.9" height="15.0" fill="rgb(241,89,24)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::register_finalizer (1 samples, 0.17%)</title><rect x="25.7" y="3585" width="1.9" height="15.0" fill="rgb(235,69,7)" rx="2" ry="2" />
<text text-anchor="" x="28.68" y="3595.5" font-size="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.17%)</title><rect x="239.3" y="3489" width="2.0" height="15.0" fill="rgb(230,201,6)" rx="2" ry="2" />
<text text-anchor="" x="242.34" y="3499.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="945" width="3.9" height="15.0" fill="rgb(243,69,2)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.17%)</title><rect x="470.6" y="913" width="2.0" height="15.0" fill="rgb(207,199,33)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3425" width="2.0" height="15.0" fill="rgb(247,150,53)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="341.3" y="1121" width="1.9" height="15.0" fill="rgb(253,166,45)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1131.5" font-size="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_tree (1 samples, 0.17%)</title><rect x="66.8" y="3425" width="2.0" height="15.0" fill="rgb(219,71,2)" rx="2" ry="2" />
<text text-anchor="" x="69.84" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3409" width="1.9" height="15.0" fill="rgb(228,200,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3419.5" font-size="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/Gen:::visitExec (1 samples, 0.17%)</title><rect x="339.3" y="1121" width="2.0" height="15.0" fill="rgb(205,159,22)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1131.5" font-size="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.17%)</title><rect x="333.4" y="913" width="2.0" height="15.0" fill="rgb(225,148,46)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="923.5" font-size="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:::deflate (1 samples, 0.17%)</title><rect x="480.4" y="1057" width="2.0" height="15.0" fill="rgb(228,177,31)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1067.5" font-size="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.17%)</title><rect x="206.0" y="3041" width="2.0" height="15.0" fill="rgb(245,97,51)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2017" width="54.8" height="15.0" fill="rgb(247,37,8)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>internal_word_Relocation::fix_relocation_after_move (1 samples, 0.17%)</title><rect x="237.4" y="3361" width="1.9" height="15.0" fill="rgb(220,47,44)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="1148.8" y="705" width="2.0" height="15.0" fill="rgb(249,228,22)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="715.5" font-size="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 (26 samples, 4.32%)</title><rect x="196.2" y="3569" width="51.0" height="15.0" fill="rgb(251,142,52)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaT..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next (1 samples, 0.17%)</title><rect x="129.6" y="3409" width="1.9" height="15.0" fill="rgb(229,71,4)" rx="2" ry="2" />
<text text-anchor="" x="132.57" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="484.4" y="721" width="1.9" height="15.0" fill="rgb(247,24,1)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (1 samples, 0.17%)</title><rect x="213.9" y="3393" width="1.9" height="15.0" fill="rgb(254,80,27)" rx="2" ry="2" />
<text text-anchor="" x="216.85" y="3403.5" font-size="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_cache_async_readahead (1 samples, 0.17%)</title><rect x="484.4" y="881" width="1.9" height="15.0" fill="rgb(237,121,26)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3089" width="891.8" height="15.0" fill="rgb(246,104,18)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3099.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_helper (1 samples, 0.17%)</title><rect x="1188.0" y="3489" width="2.0" height="15.0" fill="rgb(217,158,13)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3499.5" font-size="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.17%)</title><rect x="313.8" y="977" width="2.0" height="15.0" fill="rgb(205,106,30)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="987.5" font-size="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:::getBooleanAttributes (1 samples, 0.17%)</title><rect x="304.0" y="1233" width="2.0" height="15.0" fill="rgb(249,157,29)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1505" width="1.9" height="15.0" fill="rgb(246,32,44)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="345.2" y="1521" width="1.9" height="15.0" fill="rgb(232,205,40)" rx="2" ry="2" />
<text text-anchor="" x="348.18" y="1531.5" font-size="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/util/List$3:::hasNext (1 samples, 0.17%)</title><rect x="337.3" y="1265" width="2.0" height="15.0" fill="rgb(213,170,46)" rx="2" ry="2" />
<text text-anchor="" x="340.34" y="1275.5" font-size="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_end_request (2 samples, 0.33%)</title><rect x="1146.9" y="833" width="3.9" height="15.0" fill="rgb(236,227,5)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="311.9" y="625" width="1.9" height="15.0" fill="rgb(242,72,26)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.17%)</title><rect x="333.4" y="897" width="2.0" height="15.0" fill="rgb(233,69,28)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="907.5" font-size="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/Gen:::visitIf (1 samples, 0.17%)</title><rect x="341.3" y="865" width="1.9" height="15.0" fill="rgb(217,73,17)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="875.5" font-size="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.17%)</title><rect x="356.9" y="817" width="2.0" height="15.0" fill="rgb(223,157,19)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="827.5" font-size="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.17%)</title><rect x="335.4" y="753" width="1.9" height="15.0" fill="rgb(205,221,27)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="763.5" font-size="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.17%)</title><rect x="306.0" y="1233" width="1.9" height="15.0" fill="rgb(232,225,34)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1243.5" font-size="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 (11 samples, 1.83%)</title><rect x="445.1" y="1585" width="21.6" height="15.0" fill="rgb(205,217,13)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1595.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>Lsun/reflect/NativeMethodAccessorImpl:::invoke (26 samples, 4.32%)</title><rect x="296.2" y="1729" width="50.9" height="15.0" fill="rgb(222,221,16)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (6 samples, 1.00%)</title><rect x="349.1" y="1633" width="11.8" height="15.0" fill="rgb(242,73,54)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.17%)</title><rect x="1184.1" y="3505" width="2.0" height="15.0" fill="rgb(241,220,2)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (1 samples, 0.17%)</title><rect x="486.3" y="769" width="2.0" height="15.0" fill="rgb(210,213,29)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3249" width="891.8" height="15.0" fill="rgb(208,32,33)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3259.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 (26 samples, 4.32%)</title><rect x="296.2" y="1825" width="50.9" height="15.0" fill="rgb(209,46,38)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="306.0" y="1265" width="1.9" height="15.0" fill="rgb(219,98,7)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1275.5" font-size="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::compute_code (1 samples, 0.17%)</title><rect x="215.8" y="3425" width="2.0" height="15.0" fill="rgb(226,91,44)" rx="2" ry="2" />
<text text-anchor="" x="218.81" y="3435.5" font-size="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_code_body (1 samples, 0.17%)</title><rect x="227.6" y="3441" width="1.9" height="15.0" fill="rgb(220,135,31)" rx="2" ry="2" />
<text text-anchor="" x="230.57" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.17%)</title><rect x="145.2" y="3377" width="2.0" height="15.0" fill="rgb(251,152,50)" rx="2" ry="2" />
<text text-anchor="" x="148.25" y="3387.5" font-size="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.17%)</title><rect x="309.9" y="753" width="2.0" height="15.0" fill="rgb(227,127,23)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.17%)</title><rect x="10.0" y="3473" width="2.0" height="15.0" fill="rgb(243,76,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3483.5" font-size="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_CallStaticVoidMethod (2 samples, 0.33%)</title><rect x="27.6" y="3569" width="4.0" height="15.0" fill="rgb(211,211,44)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3579.5" font-size="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.17%)</title><rect x="23.7" y="3553" width="2.0" height="15.0" fill="rgb(244,217,7)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3563.5" font-size="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.17%)</title><rect x="327.5" y="1137" width="2.0" height="15.0" fill="rgb(209,68,17)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2465" width="2.0" height="15.0" fill="rgb(219,24,39)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2475.5" font-size="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:::block (1 samples, 0.17%)</title><rect x="300.1" y="705" width="2.0" height="15.0" fill="rgb(217,229,29)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="715.5" font-size="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.17%)</title><rect x="190.3" y="3057" width="2.0" height="15.0" fill="rgb(234,151,41)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3067.5" font-size="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.17%)</title><rect x="311.9" y="545" width="1.9" height="15.0" fill="rgb(230,156,37)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (2 samples, 0.33%)</title><rect x="355.0" y="1281" width="3.9" height="15.0" fill="rgb(245,124,1)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1291.5" font-size="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 (4 samples, 0.66%)</title><rect x="488.3" y="1009" width="7.8" height="15.0" fill="rgb(215,93,30)" rx="2" ry="2" />
<text text-anchor="" x="491.27" y="1019.5" font-size="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::install_code (1 samples, 0.17%)</title><rect x="237.4" y="3457" width="1.9" height="15.0" fill="rgb(213,63,25)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.66%)</title><rect x="284.4" y="3569" width="7.9" height="15.0" fill="rgb(231,2,2)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3579.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="313.8" y="737" width="2.0" height="15.0" fill="rgb(206,64,42)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2561" width="2.0" height="15.0" fill="rgb(219,140,15)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2481" width="891.8" height="15.0" fill="rgb(235,215,3)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2491.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>Parse::do_one_bytecode (1 samples, 0.17%)</title><rect x="39.4" y="3313" width="2.0" height="15.0" fill="rgb(220,193,26)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3323.5" font-size="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:::methodDeclaratorRest (2 samples, 0.33%)</title><rect x="300.1" y="1249" width="3.9" height="15.0" fill="rgb(247,40,54)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1259.5" font-size="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::add_liveout (2 samples, 0.33%)</title><rect x="145.2" y="3425" width="4.0" height="15.0" fill="rgb(228,161,11)" rx="2" ry="2" />
<text text-anchor="" x="148.25" y="3435.5" font-size="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::Dominators (1 samples, 0.17%)</title><rect x="37.4" y="3441" width="2.0" height="15.0" fill="rgb(253,216,46)" rx="2" ry="2" />
<text text-anchor="" x="40.44" y="3451.5" font-size="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:::writeMethods (1 samples, 0.17%)</title><rect x="353.0" y="1297" width="2.0" height="15.0" fill="rgb(222,98,0)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1307.5" font-size="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.17%)</title><rect x="1188.0" y="1713" width="2.0" height="15.0" fill="rgb(237,16,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1723.5" font-size="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/TreeTranslator:::visitMethodDef (2 samples, 0.33%)</title><rect x="317.7" y="1201" width="4.0" height="15.0" fill="rgb(217,183,4)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1211.5" font-size="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.17%)</title><rect x="517.7" y="849" width="1.9" height="15.0" fill="rgb(211,158,46)" rx="2" ry="2" />
<text text-anchor="" x="520.67" y="859.5" font-size="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.17%)</title><rect x="23.7" y="3569" width="2.0" height="15.0" fill="rgb(213,213,53)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3579.5" font-size="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 (2 samples, 0.33%)</title><rect x="260.9" y="3329" width="3.9" height="15.0" fill="rgb(231,138,3)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3339.5" font-size="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$JCReturn:::accept (1 samples, 0.17%)</title><rect x="311.9" y="529" width="1.9" height="15.0" fill="rgb(216,145,20)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.17%)</title><rect x="1186.1" y="3377" width="1.9" height="15.0" fill="rgb(208,179,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3387.5" font-size="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:::attribExpr (1 samples, 0.17%)</title><rect x="309.9" y="833" width="2.0" height="15.0" fill="rgb(214,125,4)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="843.5" font-size="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/Gen:::visitBlock (1 samples, 0.17%)</title><rect x="341.3" y="625" width="1.9" height="15.0" fill="rgb(232,129,5)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.17%)</title><rect x="335.4" y="1153" width="1.9" height="15.0" fill="rgb(212,125,7)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1163.5" font-size="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:::getTypeArguments (1 samples, 0.17%)</title><rect x="356.9" y="865" width="2.0" height="15.0" fill="rgb(230,22,46)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="875.5" font-size="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.17%)</title><rect x="309.9" y="1025" width="2.0" height="15.0" fill="rgb(215,94,16)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1035.5" font-size="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.17%)</title><rect x="329.5" y="1009" width="2.0" height="15.0" fill="rgb(209,106,46)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1019.5" font-size="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 (9 samples, 1.50%)</title><rect x="255.0" y="3521" width="17.7" height="15.0" fill="rgb(210,167,46)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3531.5" font-size="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.17%)</title><rect x="290.3" y="3441" width="2.0" height="15.0" fill="rgb(209,95,20)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3451.5" font-size="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/security/provider/MD5:::implCompress (10 samples, 1.66%)</title><rect x="447.1" y="1521" width="19.6" height="15.0" fill="rgb(238,199,3)" rx="2" ry="2" />
<text text-anchor="" x="450.11" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::handle_wrong_method_ic_miss (1 samples, 0.17%)</title><rect x="466.7" y="1697" width="2.0" height="15.0" fill="rgb(228,224,36)" rx="2" ry="2" />
<text text-anchor="" x="469.71" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3217" width="891.8" height="15.0" fill="rgb(224,110,32)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3227.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/tree/JCTree$JCVariableDecl:::accept (1 samples, 0.17%)</title><rect x="355.0" y="1073" width="1.9" height="15.0" fill="rgb(228,185,4)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1083.5" font-size="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.17%)</title><rect x="484.4" y="993" width="1.9" height="15.0" fill="rgb(234,90,3)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1585" width="11.8" height="15.0" fill="rgb(216,39,23)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1329" width="715.4" height="15.0" fill="rgb(227,43,7)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1339.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.17%)</title><rect x="1188.0" y="1377" width="2.0" height="15.0" fill="rgb(213,86,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1387.5" font-size="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.17%)</title><rect x="351.1" y="1265" width="1.9" height="15.0" fill="rgb(206,206,38)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2513" width="891.8" height="15.0" fill="rgb(248,83,0)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2523.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.17%)</title><rect x="1188.0" y="3313" width="2.0" height="15.0" fill="rgb(214,115,52)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3323.5" font-size="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.17%)</title><rect x="327.5" y="1169" width="2.0" height="15.0" fill="rgb(206,3,23)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1633" width="1.9" height="15.0" fill="rgb(214,76,45)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1643.5" font-size="12" 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_io_UnixFileSystem_getBooleanAttributes0 (1 samples, 0.17%)</title><rect x="304.0" y="1201" width="2.0" height="15.0" fill="rgb(226,82,47)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1211.5" font-size="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.17%)</title><rect x="486.3" y="785" width="2.0" height="15.0" fill="rgb(247,108,46)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="795.5" font-size="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.17%)</title><rect x="329.5" y="1057" width="2.0" height="15.0" fill="rgb(209,18,20)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1067.5" font-size="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 (41 samples, 6.81%)</title><rect x="364.8" y="1521" width="80.3" height="15.0" fill="rgb(219,97,33)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1569" width="2.0" height="15.0" fill="rgb(207,105,16)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pqdownheap (2 samples, 0.33%)</title><rect x="688.2" y="945" width="3.9" height="15.0" fill="rgb(206,120,18)" rx="2" ry="2" />
<text text-anchor="" x="691.21" y="955.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="311.9" y="849" width="1.9" height="15.0" fill="rgb(239,183,5)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="859.5" font-size="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:::creator (1 samples, 0.17%)</title><rect x="300.1" y="481" width="2.0" height="15.0" fill="rgb(238,190,40)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScanWalker::split_before_usage (1 samples, 0.17%)</title><rect x="233.5" y="3345" width="1.9" height="15.0" fill="rgb(205,181,31)" rx="2" ry="2" />
<text text-anchor="" x="236.46" y="3355.5" font-size="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.17%)</title><rect x="41.4" y="3505" width="1.9" height="15.0" fill="rgb(226,183,36)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3515.5" font-size="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:::resolveConstructor (1 samples, 0.17%)</title><rect x="331.5" y="1105" width="1.9" height="15.0" fill="rgb(205,198,39)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::nmethod (1 samples, 0.17%)</title><rect x="237.4" y="3409" width="1.9" height="15.0" fill="rgb(209,115,52)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3419.5" font-size="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/ast/stmt/ExpressionStatement:::visit (1 samples, 0.17%)</title><rect x="468.7" y="993" width="1.9" height="15.0" fill="rgb(230,94,3)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 1.66%)</title><rect x="1162.6" y="1137" width="19.6" height="15.0" fill="rgb(212,25,37)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1147.5" font-size="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/Manifest:::read (1 samples, 0.17%)</title><rect x="351.1" y="1025" width="1.9" height="15.0" fill="rgb(219,45,23)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1035.5" font-size="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__late (3 samples, 0.50%)</title><rect x="174.7" y="3441" width="5.8" height="15.0" fill="rgb(236,124,37)" rx="2" ry="2" />
<text text-anchor="" x="177.65" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileQueue::get (3 samples, 0.50%)</title><rect x="241.3" y="3521" width="5.9" height="15.0" fill="rgb(206,53,5)" rx="2" ry="2" />
<text text-anchor="" x="244.30" y="3531.5" font-size="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_flush_plug_list (3 samples, 0.50%)</title><rect x="274.6" y="3377" width="5.9" height="15.0" fill="rgb(239,126,35)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JDK_execvpe (1 samples, 0.17%)</title><rect x="1188.0" y="1281" width="2.0" height="15.0" fill="rgb(207,176,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1291.5" font-size="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$AliveAnalyzer:::visitBlock (1 samples, 0.17%)</title><rect x="349.1" y="1201" width="2.0" height="15.0" fill="rgb(216,54,31)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1777" width="715.4" height="15.0" fill="rgb(247,39,24)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1787.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>Parse::Parse (1 samples, 0.17%)</title><rect x="39.4" y="3457" width="2.0" height="15.0" fill="rgb(245,100,23)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3467.5" font-size="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.17%)</title><rect x="355.0" y="929" width="1.9" height="15.0" fill="rgb(232,174,42)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82836 (1 samples, 0.17%)</title><rect x="1186.1" y="3617" width="1.9" height="15.0" fill="rgb(246,171,26)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.17%)</title><rect x="251.1" y="3409" width="2.0" height="15.0" fill="rgb(236,229,28)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3419.5" font-size="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$JCForLoop:::accept (1 samples, 0.17%)</title><rect x="341.3" y="561" width="1.9" height="15.0" fill="rgb(221,202,12)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run (455 samples, 75.58%)</title><rect x="292.3" y="3569" width="891.8" height="15.0" fill="rgb(245,173,18)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3579.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>Parse::do_call (1 samples, 0.17%)</title><rect x="39.4" y="3297" width="2.0" height="15.0" fill="rgb(217,151,38)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3307.5" font-size="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.17%)</title><rect x="311.9" y="961" width="1.9" height="15.0" fill="rgb(239,31,30)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="971.5" font-size="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.17%)</title><rect x="249.1" y="3457" width="2.0" height="15.0" fill="rgb(214,204,25)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3467.5" font-size="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/Gen:::genExpr (1 samples, 0.17%)</title><rect x="341.3" y="481" width="1.9" height="15.0" fill="rgb(231,92,41)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1009" width="1.9" height="15.0" fill="rgb(247,154,52)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1019.5" font-size="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.17%)</title><rect x="302.1" y="1185" width="1.9" height="15.0" fill="rgb(217,126,3)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="300.1" y="833" width="2.0" height="15.0" fill="rgb(215,212,14)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="843.5" font-size="12" 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.33%)</title><rect x="360.9" y="1569" width="3.9" height="15.0" fill="rgb(236,154,24)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1579.5" font-size="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.17%)</title><rect x="190.3" y="3025" width="2.0" height="15.0" fill="rgb(253,21,3)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2817" width="891.8" height="15.0" fill="rgb(218,57,49)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2827.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 (455 samples, 75.58%)</title><rect x="292.3" y="2353" width="891.8" height="15.0" fill="rgb(241,99,10)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2363.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/DeferredAttr$DeferredType:::check (1 samples, 0.17%)</title><rect x="311.9" y="769" width="1.9" height="15.0" fill="rgb(241,167,32)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="480.4" y="1089" width="2.0" height="15.0" fill="rgb(230,47,11)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1889" width="2.0" height="15.0" fill="rgb(249,115,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1899.5" font-size="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.17%)</title><rect x="313.8" y="1009" width="2.0" height="15.0" fill="rgb(218,149,6)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2465" width="891.8" height="15.0" fill="rgb(240,114,43)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2475.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.17%)</title><rect x="1188.0" y="2417" width="2.0" height="15.0" fill="rgb(254,129,34)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2427.5" font-size="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$DeferredType:::check (1 samples, 0.17%)</title><rect x="311.9" y="785" width="1.9" height="15.0" fill="rgb(217,88,22)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1553" width="11.8" height="15.0" fill="rgb(243,111,29)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1563.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3473" width="5.9" height="15.0" fill="rgb(237,84,2)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3483.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="311.9" y="1025" width="1.9" height="15.0" fill="rgb(205,4,7)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_execve (1 samples, 0.17%)</title><rect x="1188.0" y="1217" width="2.0" height="15.0" fill="rgb(225,165,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="484.4" y="689" width="1.9" height="15.0" fill="rgb(243,26,37)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCNewClass:::accept (1 samples, 0.17%)</title><rect x="331.5" y="1137" width="1.9" height="15.0" fill="rgb(234,42,12)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1147.5" font-size="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:::checkMethodId (1 samples, 0.17%)</title><rect x="329.5" y="993" width="2.0" height="15.0" fill="rgb(219,177,7)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1003.5" font-size="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:::readClass (1 samples, 0.17%)</title><rect x="335.4" y="721" width="1.9" height="15.0" fill="rgb(228,29,34)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::insert_proj (1 samples, 0.17%)</title><rect x="35.5" y="3425" width="1.9" height="15.0" fill="rgb(249,24,36)" rx="2" ry="2" />
<text text-anchor="" x="38.48" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="306.0" y="1089" width="1.9" height="15.0" fill="rgb(236,76,51)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3217" width="1.9" height="15.0" fill="rgb(242,146,16)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1425" width="11.8" height="15.0" fill="rgb(210,174,10)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1435.5" font-size="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.17%)</title><rect x="472.6" y="961" width="2.0" height="15.0" fill="rgb(243,183,8)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="309.9" y="1057" width="2.0" height="15.0" fill="rgb(216,187,12)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ComputeLinearScanOrder::ComputeLinearScanOrder (1 samples, 0.17%)</title><rect x="215.8" y="3409" width="2.0" height="15.0" fill="rgb(219,98,45)" rx="2" ry="2" />
<text text-anchor="" x="218.81" y="3419.5" font-size="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 (5 samples, 0.83%)</title><rect x="274.6" y="3505" width="9.8" height="15.0" fill="rgb(218,63,18)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3153" width="891.8" height="15.0" fill="rgb(246,83,27)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3163.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/Resolve$9:::doLookup (1 samples, 0.17%)</title><rect x="311.9" y="913" width="1.9" height="15.0" fill="rgb(222,2,35)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="923.5" font-size="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.17%)</title><rect x="190.3" y="3185" width="2.0" height="15.0" fill="rgb(209,73,33)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3195.5" font-size="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.17%)</title><rect x="341.3" y="961" width="1.9" height="15.0" fill="rgb(248,7,36)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1425" width="2.0" height="15.0" fill="rgb(236,203,10)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>revoke_bias (1 samples, 0.17%)</title><rect x="55.1" y="3489" width="1.9" height="15.0" fill="rgb(232,193,39)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3499.5" font-size="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] (4 samples, 0.66%)</title><rect x="488.3" y="993" width="7.8" height="15.0" fill="rgb(229,84,52)" rx="2" ry="2" />
<text text-anchor="" x="491.27" y="1003.5" font-size="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_read_iter (4 samples, 0.66%)</title><rect x="1162.6" y="945" width="7.8" height="15.0" fill="rgb(253,97,19)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="955.5" font-size="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/Scope:::lookup (1 samples, 0.17%)</title><rect x="325.6" y="1153" width="1.9" height="15.0" fill="rgb(253,87,37)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1163.5" font-size="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.17%)</title><rect x="494.2" y="721" width="1.9" height="15.0" fill="rgb(234,1,34)" rx="2" ry="2" />
<text text-anchor="" x="497.15" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/management/MemoryPoolImpl:::getCollectionUsage0 (2 samples, 0.33%)</title><rect x="19.8" y="3569" width="3.9" height="15.0" fill="rgb(250,11,34)" rx="2" ry="2" />
<text text-anchor="" x="22.80" y="3579.5" font-size="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.17%)</title><rect x="1186.1" y="3265" width="1.9" height="15.0" fill="rgb(205,76,39)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3281" width="2.0" height="15.0" fill="rgb(218,190,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.17%)</title><rect x="1184.1" y="3489" width="2.0" height="15.0" fill="rgb(225,152,35)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3499.5" font-size="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.17%)</title><rect x="1186.1" y="3553" width="1.9" height="15.0" fill="rgb(230,75,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3563.5" font-size="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.50%)</title><rect x="1172.4" y="1025" width="5.8" height="15.0" fill="rgb(219,2,17)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1035.5" font-size="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:::classCreatorRest (1 samples, 0.17%)</title><rect x="300.1" y="465" width="2.0" height="15.0" fill="rgb(236,199,32)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::checkMethod (1 samples, 0.17%)</title><rect x="329.5" y="945" width="2.0" height="15.0" fill="rgb(235,197,32)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2257" width="891.8" height="15.0" fill="rgb(229,57,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2267.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>scsi_request_fn (2 samples, 0.33%)</title><rect x="276.6" y="3329" width="3.9" height="15.0" fill="rgb(244,4,51)" rx="2" ry="2" />
<text text-anchor="" x="279.58" y="3339.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="561" width="2.0" height="15.0" fill="rgb(220,2,31)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3185" width="2.0" height="15.0" fill="rgb(251,15,22)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3195.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="307.9" y="1233" width="2.0" height="15.0" fill="rgb(226,180,52)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1243.5" font-size="12" 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.17%)</title><rect x="41.4" y="3585" width="1.9" height="15.0" fill="rgb(223,152,36)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3595.5" font-size="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.17%)</title><rect x="190.3" y="3217" width="2.0" height="15.0" fill="rgb(217,44,52)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3227.5" font-size="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:::attribClass (5 samples, 0.83%)</title><rect x="327.5" y="1345" width="9.8" height="15.0" fill="rgb(233,126,39)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1355.5" font-size="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 (1 samples, 0.17%)</title><rect x="251.1" y="3185" width="2.0" height="15.0" fill="rgb(243,26,32)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1953" width="54.8" height="15.0" fill="rgb(237,86,54)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_queue_bio (1 samples, 0.17%)</title><rect x="251.1" y="3217" width="2.0" height="15.0" fill="rgb(222,67,21)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3227.5" font-size="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_cache_async_readahead (3 samples, 0.50%)</title><rect x="284.4" y="3425" width="5.9" height="15.0" fill="rgb(231,179,13)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3435.5" font-size="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 (1 samples, 0.17%)</title><rect x="484.4" y="705" width="1.9" height="15.0" fill="rgb(226,113,25)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="715.5" font-size="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_read (3 samples, 0.50%)</title><rect x="490.2" y="961" width="5.9" height="15.0" fill="rgb(226,140,29)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3089" width="2.0" height="15.0" fill="rgb(210,162,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.17%)</title><rect x="1184.1" y="3409" width="2.0" height="15.0" fill="rgb(219,117,49)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.17%)</title><rect x="29.6" y="3425" width="2.0" height="15.0" fill="rgb(212,184,30)" rx="2" ry="2" />
<text text-anchor="" x="32.60" y="3435.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="335.4" y="961" width="1.9" height="15.0" fill="rgb(232,169,3)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="971.5" font-size="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.17%)</title><rect x="294.2" y="1697" width="2.0" height="15.0" fill="rgb(241,36,31)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.66%)</title><rect x="1162.6" y="1041" width="7.8" height="15.0" fill="rgb(248,173,6)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1051.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="335.4" y="1073" width="1.9" height="15.0" fill="rgb(227,219,25)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1083.5" font-size="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.17%)</title><rect x="486.3" y="945" width="2.0" height="15.0" fill="rgb(221,13,26)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="955.5" font-size="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_es_insert_extent (1 samples, 0.17%)</title><rect x="502.0" y="801" width="2.0" height="15.0" fill="rgb(233,154,12)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="811.5" font-size="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.17%)</title><rect x="325.6" y="1249" width="1.9" height="15.0" fill="rgb(221,20,40)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1259.5" font-size="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.17%)</title><rect x="300.1" y="785" width="2.0" height="15.0" fill="rgb(205,208,15)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.17%)</title><rect x="1146.9" y="817" width="1.9" height="15.0" fill="rgb(238,226,5)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="23.7" y="3457" width="2.0" height="15.0" fill="rgb(254,131,27)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3467.5" font-size="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.17%)</title><rect x="1188.0" y="1601" width="2.0" height="15.0" fill="rgb(220,187,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1611.5" font-size="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 (7 samples, 1.16%)</title><rect x="198.2" y="3281" width="13.7" height="15.0" fill="rgb(249,66,6)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3291.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="865" width="3.9" height="15.0" fill="rgb(206,192,25)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1569" width="1.9" height="15.0" fill="rgb(228,78,20)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 1.83%)</title><rect x="445.1" y="1649" width="21.6" height="15.0" fill="rgb(254,90,18)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1659.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/parser/JavacParser:::blockStatements (2 samples, 0.33%)</title><rect x="300.1" y="1217" width="3.9" height="15.0" fill="rgb(248,204,46)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fput (1 samples, 0.17%)</title><rect x="482.4" y="897" width="2.0" height="15.0" fill="rgb(229,208,10)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="907.5" font-size="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.17%)</title><rect x="341.3" y="641" width="1.9" height="15.0" fill="rgb(241,229,52)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-82526.map] (1 samples, 0.17%)</title><rect x="300.1" y="865" width="2.0" height="15.0" fill="rgb(231,184,40)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="875.5" font-size="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.17%)</title><rect x="333.4" y="753" width="2.0" height="15.0" fill="rgb(249,80,47)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Reflection::invoke (6 samples, 1.00%)</title><rect x="349.1" y="1665" width="11.8" height="15.0" fill="rgb(232,167,12)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strncpy_from_user (1 samples, 0.17%)</title><rect x="247.2" y="3457" width="1.9" height="15.0" fill="rgb(208,184,12)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.83%)</title><rect x="274.6" y="3553" width="9.8" height="15.0" fill="rgb(219,168,51)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3563.5" font-size="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:::attribClass (5 samples, 0.83%)</title><rect x="327.5" y="1329" width="9.8" height="15.0" fill="rgb(225,73,25)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2721" width="891.8" height="15.0" fill="rgb(217,79,30)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2731.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/util/regex/Pattern$LastNode:::match (1 samples, 0.17%)</title><rect x="329.5" y="689" width="2.0" height="15.0" fill="rgb(211,215,18)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2209" width="2.0" height="15.0" fill="rgb(213,108,30)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RangeCheckElimination::eliminate (2 samples, 0.33%)</title><rect x="223.7" y="3425" width="3.9" height="15.0" fill="rgb(243,26,5)" rx="2" ry="2" />
<text text-anchor="" x="226.65" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3153" width="1.9" height="15.0" fill="rgb(212,187,45)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (54 samples, 8.97%)</title><rect x="360.9" y="1713" width="105.8" height="15.0" fill="rgb(235,170,47)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1723.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/DeferredAttr$DeferredChecker:::visitApply (1 samples, 0.17%)</title><rect x="313.8" y="849" width="2.0" height="15.0" fill="rgb(239,49,14)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="859.5" font-size="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:::term2 (1 samples, 0.17%)</title><rect x="300.1" y="977" width="2.0" height="15.0" fill="rgb(238,208,23)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="987.5" font-size="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:::checkMethodIdInternal (1 samples, 0.17%)</title><rect x="329.5" y="977" width="2.0" height="15.0" fill="rgb(251,205,15)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="987.5" font-size="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.17%)</title><rect x="190.3" y="3105" width="2.0" height="15.0" fill="rgb(218,0,8)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>State::DFA (1 samples, 0.17%)</title><rect x="66.8" y="3377" width="2.0" height="15.0" fill="rgb(245,58,7)" rx="2" ry="2" />
<text text-anchor="" x="69.84" y="3387.5" font-size="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$9:::doLookup (1 samples, 0.17%)</title><rect x="335.4" y="1009" width="1.9" height="15.0" fill="rgb(252,207,23)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1019.5" font-size="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:::notOverriddenIn (1 samples, 0.17%)</title><rect x="343.2" y="785" width="2.0" height="15.0" fill="rgb(229,216,47)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (1 samples, 0.17%)</title><rect x="247.2" y="3441" width="1.9" height="15.0" fill="rgb(212,194,6)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2161" width="2.0" height="15.0" fill="rgb(231,99,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2171.5" font-size="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::register_method (1 samples, 0.17%)</title><rect x="237.4" y="3441" width="1.9" height="15.0" fill="rgb(225,111,44)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3451.5" font-size="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.17%)</title><rect x="327.5" y="1217" width="2.0" height="15.0" fill="rgb(220,203,48)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3409" width="891.8" height="15.0" fill="rgb(224,0,48)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3419.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>mptspi_qcmd (1 samples, 0.17%)</title><rect x="251.1" y="3153" width="2.0" height="15.0" fill="rgb(206,53,20)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2017" width="2.0" height="15.0" fill="rgb(206,190,38)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2027.5" font-size="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.17%)</title><rect x="39.4" y="3265" width="2.0" height="15.0" fill="rgb(221,35,25)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3275.5" font-size="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.17%)</title><rect x="41.4" y="3521" width="1.9" height="15.0" fill="rgb(218,131,31)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::in (1 samples, 0.17%)</title><rect x="184.5" y="3377" width="1.9" height="15.0" fill="rgb(231,160,21)" rx="2" ry="2" />
<text text-anchor="" x="187.45" y="3387.5" font-size="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.17%)</title><rect x="351.1" y="1249" width="1.9" height="15.0" fill="rgb(236,26,19)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::allocate (1 samples, 0.17%)</title><rect x="41.4" y="3409" width="1.9" height="15.0" fill="rgb(219,208,43)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-71584/71595 (3 samples, 0.50%)</title><rect x="10.0" y="3617" width="5.9" height="15.0" fill="rgb(224,138,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PeriodicTask::real_time_tick (1 samples, 0.17%)</title><rect x="12.0" y="3553" width="1.9" height="15.0" fill="rgb(244,138,52)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (13 samples, 2.16%)</title><rect x="296.2" y="1345" width="25.5" height="15.0" fill="rgb(254,105,8)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1355.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:::attribTree (1 samples, 0.17%)</title><rect x="358.9" y="1249" width="2.0" height="15.0" fill="rgb(212,71,25)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3041" width="2.0" height="15.0" fill="rgb(211,224,37)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2129" width="54.8" height="15.0" fill="rgb(205,206,2)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1905" width="11.8" height="15.0" fill="rgb(253,148,41)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1915.5" font-size="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.17%)</title><rect x="311.9" y="161" width="1.9" height="15.0" fill="rgb(224,206,45)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="343.2" y="897" width="2.0" height="15.0" fill="rgb(228,193,11)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="907.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="307.9" y="1185" width="2.0" height="15.0" fill="rgb(214,125,15)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1195.5" font-size="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.17%)</title><rect x="323.6" y="833" width="2.0" height="15.0" fill="rgb(228,134,37)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="843.5" font-size="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$JCCompilationUnit:::accept (1 samples, 0.17%)</title><rect x="351.1" y="1313" width="1.9" height="15.0" fill="rgb(235,117,13)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1323.5" font-size="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.17%)</title><rect x="41.4" y="3537" width="1.9" height="15.0" fill="rgb(224,170,36)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_report_qs_rnp (1 samples, 0.17%)</title><rect x="153.1" y="3345" width="1.9" height="15.0" fill="rgb(205,154,24)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ll_rw_block (1 samples, 0.17%)</title><rect x="1188.0" y="1105" width="2.0" height="15.0" fill="rgb(242,223,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 9.14%)</title><rect x="360.9" y="1825" width="107.8" height="15.0" fill="rgb(234,214,48)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1835.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/cache/internal/DefaultProducerGuard:::guardByKey (1 samples, 0.17%)</title><rect x="466.7" y="1729" width="2.0" height="15.0" fill="rgb(226,150,45)" rx="2" ry="2" />
<text text-anchor="" x="469.71" y="1739.5" font-size="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 (7 samples, 1.16%)</title><rect x="505.9" y="1009" width="13.7" height="15.0" fill="rgb(215,81,48)" rx="2" ry="2" />
<text text-anchor="" x="508.91" y="1019.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="356.9" y="929" width="2.0" height="15.0" fill="rgb(224,54,22)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="939.5" font-size="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/Lower:::boxArgs (1 samples, 0.17%)</title><rect x="317.7" y="1025" width="2.0" height="15.0" fill="rgb(253,17,33)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1035.5" font-size="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.17%)</title><rect x="300.1" y="577" width="2.0" height="15.0" fill="rgb(236,208,17)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="753" width="1.9" height="15.0" fill="rgb(223,131,12)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="763.5" font-size="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.17%)</title><rect x="300.1" y="801" width="2.0" height="15.0" fill="rgb(240,74,37)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="811.5" font-size="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 (1 samples, 0.17%)</title><rect x="1148.8" y="721" width="2.0" height="15.0" fill="rgb(218,67,37)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_tree (1 samples, 0.17%)</title><rect x="480.4" y="961" width="2.0" height="15.0" fill="rgb(251,77,43)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="971.5" font-size="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:::visitBinary (1 samples, 0.17%)</title><rect x="309.9" y="721" width="2.0" height="15.0" fill="rgb(252,129,46)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Types$4:::visitClassType (1 samples, 0.17%)</title><rect x="358.9" y="961" width="2.0" height="15.0" fill="rgb(252,33,24)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="971.5" font-size="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 (1 samples, 0.17%)</title><rect x="274.6" y="3265" width="2.0" height="15.0" fill="rgb(218,210,47)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3275.5" font-size="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_run_queue (1 samples, 0.17%)</title><rect x="486.3" y="753" width="2.0" height="15.0" fill="rgb(244,188,6)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="763.5" font-size="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/Scope$StarImportScope:::importAll (1 samples, 0.17%)</title><rect x="325.6" y="1185" width="1.9" height="15.0" fill="rgb(218,115,9)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1393" width="1.9" height="15.0" fill="rgb(206,197,6)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1403.5" font-size="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 (5 samples, 0.83%)</title><rect x="31.6" y="3489" width="9.8" height="15.0" fill="rgb(210,71,51)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3499.5" font-size="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:::readMethod (1 samples, 0.17%)</title><rect x="335.4" y="705" width="1.9" height="15.0" fill="rgb(234,93,52)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StringTable::intern (1 samples, 0.17%)</title><rect x="351.1" y="929" width="1.9" height="15.0" fill="rgb(239,6,47)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="939.5" font-size="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_io_completion (1 samples, 0.17%)</title><rect x="12.0" y="3409" width="1.9" height="15.0" fill="rgb(251,9,7)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3419.5" font-size="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.17%)</title><rect x="272.7" y="3505" width="1.9" height="15.0" fill="rgb(234,196,4)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (2 samples, 0.33%)</title><rect x="260.9" y="3441" width="3.9" height="15.0" fill="rgb(229,107,48)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3451.5" font-size="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$11:::doLookup (1 samples, 0.17%)</title><rect x="331.5" y="1057" width="1.9" height="15.0" fill="rgb(224,219,7)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (43 samples, 7.14%)</title><rect x="360.9" y="1697" width="84.2" height="15.0" fill="rgb(252,172,34)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1707.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_da_write_begin (2 samples, 0.33%)</title><rect x="474.6" y="849" width="3.9" height="15.0" fill="rgb(232,107,7)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="859.5" font-size="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$Subst:::visitMethodType (1 samples, 0.17%)</title><rect x="311.9" y="97" width="1.9" height="15.0" fill="rgb(213,133,3)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (1 samples, 0.17%)</title><rect x="1188.0" y="3537" width="2.0" height="15.0" fill="rgb(241,178,44)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3547.5" font-size="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:::rawInstantiate (1 samples, 0.17%)</title><rect x="358.9" y="1105" width="2.0" height="15.0" fill="rgb(226,222,51)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1115.5" font-size="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.50%)</title><rect x="284.4" y="3537" width="5.9" height="15.0" fill="rgb(214,82,52)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3547.5" font-size="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/TaskClassValidator$FutureValue:::call (1 samples, 0.17%)</title><rect x="294.2" y="1713" width="2.0" height="15.0" fill="rgb(217,205,38)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1723.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="333.4" y="785" width="2.0" height="15.0" fill="rgb(225,101,3)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="795.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="355.0" y="609" width="1.9" height="15.0" fill="rgb(247,195,14)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::try_inline_full (7 samples, 1.16%)</title><rect x="198.2" y="3313" width="13.7" height="15.0" fill="rgb(244,217,31)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3323.5" font-size="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:::isPrimitive (1 samples, 0.17%)</title><rect x="317.7" y="1009" width="2.0" height="15.0" fill="rgb(221,75,14)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1489" width="49.0" height="15.0" fill="rgb(244,22,21)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1499.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>Lcom/sun/tools/javac/jvm/Gen:::visitIf (1 samples, 0.17%)</title><rect x="307.9" y="1121" width="2.0" height="15.0" fill="rgb(208,39,2)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1131.5" font-size="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_cache_async_readahead (3 samples, 0.50%)</title><rect x="490.2" y="865" width="5.9" height="15.0" fill="rgb(233,110,52)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2081" width="2.0" height="15.0" fill="rgb(251,104,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1553" width="2.0" height="15.0" fill="rgb(251,192,1)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1563.5" font-size="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:::visitIf (1 samples, 0.17%)</title><rect x="355.0" y="945" width="1.9" height="15.0" fill="rgb(243,215,16)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="955.5" font-size="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$JCLambda:::accept (1 samples, 0.17%)</title><rect x="311.9" y="705" width="1.9" height="15.0" fill="rgb(221,106,8)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="715.5" font-size="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:::rawInstantiate (1 samples, 0.17%)</title><rect x="335.4" y="929" width="1.9" height="15.0" fill="rgb(242,88,17)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1761" width="1.9" height="15.0" fill="rgb(233,41,43)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1771.5" font-size="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.17%)</title><rect x="355.0" y="1153" width="1.9" height="15.0" fill="rgb(221,164,53)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>____fput (1 samples, 0.17%)</title><rect x="482.4" y="913" width="2.0" height="15.0" fill="rgb(241,84,40)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="923.5" font-size="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 (1 samples, 0.17%)</title><rect x="196.2" y="3249" width="2.0" height="15.0" fill="rgb(230,164,40)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3259.5" font-size="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 (1 samples, 0.17%)</title><rect x="472.6" y="881" width="2.0" height="15.0" fill="rgb(247,107,38)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="891.5" font-size="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::Dominators (4 samples, 0.66%)</title><rect x="162.9" y="3441" width="7.8" height="15.0" fill="rgb(229,85,48)" rx="2" ry="2" />
<text text-anchor="" x="165.89" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>touch_atime (1 samples, 0.17%)</title><rect x="280.5" y="3441" width="2.0" height="15.0" fill="rgb(225,125,15)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_tr_flush_block (27 samples, 4.49%)</title><rect x="684.3" y="977" width="52.9" height="15.0" fill="rgb(232,143,50)" rx="2" ry="2" />
<text text-anchor="" x="687.29" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_tr_f..</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.17%)</title><rect x="327.5" y="1281" width="2.0" height="15.0" fill="rgb(249,135,32)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1291.5" font-size="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.17%)</title><rect x="333.4" y="1137" width="2.0" height="15.0" fill="rgb(228,57,45)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ShouldNotReachHereNode::is_block_proj (1 samples, 0.17%)</title><rect x="70.8" y="3409" width="1.9" height="15.0" fill="rgb(237,193,15)" rx="2" ry="2" />
<text text-anchor="" x="73.76" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.17%)</title><rect x="482.4" y="945" width="2.0" height="15.0" fill="rgb(207,31,31)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2529" width="2.0" height="15.0" fill="rgb(234,57,23)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2539.5" font-size="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/Gen:::visitMethodDef (1 samples, 0.17%)</title><rect x="307.9" y="1281" width="2.0" height="15.0" fill="rgb(243,174,28)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1291.5" font-size="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.17%)</title><rect x="190.3" y="2961" width="2.0" height="15.0" fill="rgb(209,207,5)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iov_iter_init (1 samples, 0.17%)</title><rect x="282.5" y="3473" width="1.9" height="15.0" fill="rgb(233,46,48)" rx="2" ry="2" />
<text text-anchor="" x="285.46" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.17%)</title><rect x="1178.2" y="993" width="2.0" height="15.0" fill="rgb(240,186,6)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="1003.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="307.9" y="1137" width="2.0" height="15.0" fill="rgb(229,8,14)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1147.5" font-size="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.17%)</title><rect x="190.3" y="2673" width="2.0" height="15.0" fill="rgb(212,146,31)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2683.5" font-size="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.17%)</title><rect x="23.7" y="3601" width="2.0" height="15.0" fill="rgb(251,72,0)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1969" width="54.8" height="15.0" fill="rgb(212,128,48)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="2001" width="823.2" height="15.0" fill="rgb(241,1,37)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2011.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:::visitSelect (1 samples, 0.17%)</title><rect x="327.5" y="961" width="2.0" height="15.0" fill="rgb(210,89,31)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bh_wbc (1 samples, 0.17%)</title><rect x="1188.0" y="1089" width="2.0" height="15.0" fill="rgb(223,45,5)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1099.5" font-size="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.17%)</title><rect x="309.9" y="1153" width="2.0" height="15.0" fill="rgb(235,74,48)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1163.5" font-size="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.17%)</title><rect x="23.7" y="3489" width="2.0" height="15.0" fill="rgb(245,97,28)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3499.5" font-size="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$9:::doLookup (1 samples, 0.17%)</title><rect x="355.0" y="577" width="1.9" height="15.0" fill="rgb(223,196,19)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.17%)</title><rect x="1188.0" y="2113" width="2.0" height="15.0" fill="rgb(216,63,13)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2123.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="331.5" y="689" width="1.9" height="15.0" fill="rgb(239,22,34)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitApply (1 samples, 0.17%)</title><rect x="331.5" y="817" width="1.9" height="15.0" fill="rgb(243,1,7)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1361" width="715.4" height="15.0" fill="rgb(221,77,17)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1371.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_all_blocks (2 samples, 0.33%)</title><rect x="204.1" y="3217" width="3.9" height="15.0" fill="rgb(225,227,6)" rx="2" ry="2" />
<text text-anchor="" x="207.05" y="3227.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="1009" width="3.9" height="15.0" fill="rgb(229,171,13)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="1019.5" font-size="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/Lower:::translate (1 samples, 0.17%)</title><rect x="319.7" y="1073" width="2.0" height="15.0" fill="rgb(225,142,5)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2817" width="2.0" height="15.0" fill="rgb(231,212,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2827.5" font-size="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.17%)</title><rect x="264.8" y="3329" width="2.0" height="15.0" fill="rgb(245,87,9)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (1 samples, 0.17%)</title><rect x="290.3" y="3505" width="2.0" height="15.0" fill="rgb(210,132,37)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3515.5" font-size="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_run_queue (1 samples, 0.17%)</title><rect x="274.6" y="3329" width="2.0" height="15.0" fill="rgb(254,165,42)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.17%)</title><rect x="153.1" y="3297" width="1.9" height="15.0" fill="rgb(221,119,9)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3307.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3489" width="5.9" height="15.0" fill="rgb(252,89,54)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3499.5" font-size="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 (3 samples, 0.50%)</title><rect x="309.9" y="1249" width="5.9" height="15.0" fill="rgb(206,5,28)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1259.5" font-size="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/DefaultProducerGuard:::guardByKey (41 samples, 6.81%)</title><rect x="364.8" y="1681" width="80.3" height="15.0" fill="rgb(249,149,24)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</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.17%)</title><rect x="337.3" y="1281" width="2.0" height="15.0" fill="rgb(232,215,47)" rx="2" ry="2" />
<text text-anchor="" x="340.34" y="1291.5" font-size="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.17%)</title><rect x="315.8" y="1169" width="1.9" height="15.0" fill="rgb(232,130,33)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1179.5" font-size="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:::flags (1 samples, 0.17%)</title><rect x="323.6" y="1153" width="2.0" height="15.0" fill="rgb(219,206,40)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3297" width="1.9" height="15.0" fill="rgb(225,63,54)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3307.5" font-size="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.17%)</title><rect x="306.0" y="1297" width="1.9" height="15.0" fill="rgb(214,4,20)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciField::ciField (1 samples, 0.17%)</title><rect x="196.2" y="3281" width="2.0" height="15.0" fill="rgb(249,207,40)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3291.5" font-size="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.17%)</title><rect x="358.9" y="1233" width="2.0" height="15.0" fill="rgb(236,217,21)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3281" width="891.8" height="15.0" fill="rgb(253,220,35)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3291.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.17%)</title><rect x="1188.0" y="1537" width="2.0" height="15.0" fill="rgb(223,177,36)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1547.5" font-size="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.17%)</title><rect x="333.4" y="1041" width="2.0" height="15.0" fill="rgb(225,25,16)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1051.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="311.9" y="209" width="1.9" height="15.0" fill="rgb(244,42,0)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2625" width="891.8" height="15.0" fill="rgb(209,62,28)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2635.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>JavaThread::run (70 samples, 11.63%)</title><rect x="59.0" y="3569" width="137.2" height="15.0" fill="rgb(228,90,37)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3579.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 (55 samples, 9.14%)</title><rect x="360.9" y="1841" width="107.8" height="15.0" fill="rgb(245,195,29)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1851.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.17%)</title><rect x="468.7" y="897" width="1.9" height="15.0" fill="rgb(223,182,8)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (3 samples, 0.50%)</title><rect x="490.2" y="849" width="5.9" height="15.0" fill="rgb(218,19,21)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="859.5" font-size="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.17%)</title><rect x="190.3" y="3169" width="2.0" height="15.0" fill="rgb(212,143,14)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3179.5" font-size="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.17%)</title><rect x="190.3" y="3313" width="2.0" height="15.0" fill="rgb(235,189,49)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3323.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="1057" width="1.9" height="15.0" fill="rgb(220,11,29)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1067.5" font-size="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.33%)</title><rect x="360.9" y="1505" width="3.9" height="15.0" fill="rgb(207,19,36)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1515.5" font-size="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.17%)</title><rect x="274.6" y="3297" width="2.0" height="15.0" fill="rgb(238,62,50)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3307.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="657" width="2.0" height="15.0" fill="rgb(248,176,26)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitVarDef (1 samples, 0.17%)</title><rect x="358.9" y="1265" width="2.0" height="15.0" fill="rgb(242,125,25)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1275.5" font-size="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_get_inode_loc (1 samples, 0.17%)</title><rect x="509.8" y="769" width="2.0" height="15.0" fill="rgb(208,88,3)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="779.5" font-size="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_write_end (1 samples, 0.17%)</title><rect x="1176.3" y="881" width="1.9" height="15.0" fill="rgb(219,174,7)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="891.5" font-size="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.17%)</title><rect x="355.0" y="673" width="1.9" height="15.0" fill="rgb(225,74,39)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::shorten_branches (1 samples, 0.17%)</title><rect x="61.0" y="3425" width="1.9" height="15.0" fill="rgb(236,100,33)" rx="2" ry="2" />
<text text-anchor="" x="63.96" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="27.6" y="3425" width="2.0" height="15.0" fill="rgb(251,150,43)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3435.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="331.5" y="673" width="1.9" height="15.0" fill="rgb(248,73,35)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCClassDecl:::accept (2 samples, 0.33%)</title><rect x="317.7" y="1297" width="4.0" height="15.0" fill="rgb(227,59,38)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1307.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="355.0" y="961" width="1.9" height="15.0" fill="rgb(224,152,11)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="971.5" font-size="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:::flags (1 samples, 0.17%)</title><rect x="323.6" y="865" width="2.0" height="15.0" fill="rgb(254,157,54)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="875.5" font-size="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/Gen:::visitBlock (1 samples, 0.17%)</title><rect x="307.9" y="1041" width="2.0" height="15.0" fill="rgb(215,57,44)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1051.5" font-size="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:::visitExec (1 samples, 0.17%)</title><rect x="333.4" y="833" width="2.0" height="15.0" fill="rgb(230,75,31)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="843.5" font-size="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:::term2 (1 samples, 0.17%)</title><rect x="300.1" y="513" width="2.0" height="15.0" fill="rgb(247,107,27)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1441" width="715.4" height="15.0" fill="rgb(206,154,49)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1451.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_all_blocks (1 samples, 0.17%)</title><rect x="206.0" y="2977" width="2.0" height="15.0" fill="rgb(254,205,6)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="2987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lxstat64 (1 samples, 0.17%)</title><rect x="247.2" y="3569" width="1.9" height="15.0" fill="rgb(240,176,8)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1473" width="1.9" height="15.0" fill="rgb(235,92,36)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1483.5" font-size="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_find_entry (1 samples, 0.17%)</title><rect x="1188.0" y="1121" width="2.0" height="15.0" fill="rgb(205,34,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1131.5" font-size="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.17%)</title><rect x="190.3" y="3249" width="2.0" height="15.0" fill="rgb(246,82,23)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.17%)</title><rect x="251.1" y="3441" width="2.0" height="15.0" fill="rgb(217,229,7)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3451.5" font-size="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/Gen:::genExpr (1 samples, 0.17%)</title><rect x="339.3" y="1041" width="2.0" height="15.0" fill="rgb(218,224,21)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="304.0" y="1265" width="2.0" height="15.0" fill="rgb(226,165,18)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3441" width="891.8" height="15.0" fill="rgb(245,60,54)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3451.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 (455 samples, 75.58%)</title><rect x="292.3" y="2401" width="891.8" height="15.0" fill="rgb(215,179,29)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2411.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>__xstat64 (1 samples, 0.17%)</title><rect x="290.3" y="3553" width="2.0" height="15.0" fill="rgb(252,47,48)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3563.5" font-size="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_sched_yield (1 samples, 0.17%)</title><rect x="57.0" y="3505" width="2.0" height="15.0" fill="rgb(217,137,19)" rx="2" ry="2" />
<text text-anchor="" x="60.04" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1665" width="1.9" height="15.0" fill="rgb(241,178,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1675.5" font-size="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:::resolveOperator (1 samples, 0.17%)</title><rect x="309.9" y="705" width="2.0" height="15.0" fill="rgb(220,34,21)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="715.5" font-size="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.33%)</title><rect x="27.6" y="3601" width="4.0" height="15.0" fill="rgb(231,147,49)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3611.5" font-size="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 (8 samples, 1.33%)</title><rect x="43.3" y="3569" width="15.7" height="15.0" fill="rgb(250,72,12)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3579.5" font-size="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/Gen:::genDef (3 samples, 0.50%)</title><rect x="339.3" y="1313" width="5.9" height="15.0" fill="rgb(245,71,42)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1323.5" font-size="12" 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.66%)</title><rect x="470.6" y="1121" width="7.9" height="15.0" fill="rgb(213,173,26)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1131.5" font-size="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$JCVariableDecl:::accept (1 samples, 0.17%)</title><rect x="335.4" y="1185" width="1.9" height="15.0" fill="rgb(236,19,45)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1195.5" font-size="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/Lower:::translate (2 samples, 0.33%)</title><rect x="317.7" y="1121" width="4.0" height="15.0" fill="rgb(216,177,42)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1131.5" font-size="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/Code:::fillLocalVarPosition (1 samples, 0.17%)</title><rect x="307.9" y="1009" width="2.0" height="15.0" fill="rgb(246,139,4)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1019.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="307.9" y="1073" width="2.0" height="15.0" fill="rgb(227,145,33)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1083.5" font-size="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$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="331.5" y="721" width="1.9" height="15.0" fill="rgb(225,8,32)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.17%)</title><rect x="507.9" y="929" width="1.9" height="15.0" fill="rgb(243,92,2)" rx="2" ry="2" />
<text text-anchor="" x="510.87" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SymbolTable::lookup_only (1 samples, 0.17%)</title><rect x="27.6" y="3201" width="2.0" height="15.0" fill="rgb(237,195,28)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1361" width="2.0" height="15.0" fill="rgb(245,118,29)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1371.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="309.9" y="609" width="2.0" height="15.0" fill="rgb(237,104,48)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1697" width="1.9" height="15.0" fill="rgb(214,229,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1707.5" font-size="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.17%)</title><rect x="484.4" y="801" width="1.9" height="15.0" fill="rgb(218,42,6)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="811.5" font-size="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.17%)</title><rect x="309.9" y="769" width="2.0" height="15.0" fill="rgb(243,97,25)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="779.5" font-size="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/Formatter:::parse (1 samples, 0.17%)</title><rect x="329.5" y="897" width="2.0" height="15.0" fill="rgb(214,95,32)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="907.5" font-size="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.17%)</title><rect x="10.0" y="3569" width="2.0" height="15.0" fill="rgb(246,28,33)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3579.5" font-size="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.17%)</title><rect x="311.9" y="609" width="1.9" height="15.0" fill="rgb(254,104,30)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (10 samples, 1.66%)</title><rect x="253.1" y="3569" width="19.6" height="15.0" fill="rgb(236,34,20)" rx="2" ry="2" />
<text text-anchor="" x="256.06" y="3579.5" font-size="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.17%)</title><rect x="323.6" y="1041" width="2.0" height="15.0" fill="rgb(228,135,48)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1051.5" font-size="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::print_inlining (1 samples, 0.17%)</title><rect x="202.1" y="3249" width="2.0" height="15.0" fill="rgb(206,195,0)" rx="2" ry="2" />
<text text-anchor="" x="205.09" y="3259.5" font-size="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 (1 samples, 0.17%)</title><rect x="1188.0" y="961" width="2.0" height="15.0" fill="rgb(215,31,42)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="971.5" font-size="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.17%)</title><rect x="39.4" y="3425" width="2.0" height="15.0" fill="rgb(214,219,49)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3249" width="1.9" height="15.0" fill="rgb(247,138,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3259.5" font-size="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.17%)</title><rect x="325.6" y="1313" width="1.9" height="15.0" fill="rgb(231,48,17)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1323.5" font-size="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.17%)</title><rect x="206.0" y="2961" width="2.0" height="15.0" fill="rgb(217,142,22)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="2971.5" font-size="12" 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.33%)</title><rect x="360.9" y="1585" width="3.9" height="15.0" fill="rgb(252,70,15)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Bytecode_loadconstant::resolve_constant (1 samples, 0.17%)</title><rect x="29.6" y="3441" width="2.0" height="15.0" fill="rgb(247,133,11)" rx="2" ry="2" />
<text text-anchor="" x="32.60" y="3451.5" font-size="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.17%)</title><rect x="190.3" y="2977" width="2.0" height="15.0" fill="rgb(245,70,25)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2987.5" font-size="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.17%)</title><rect x="349.1" y="1297" width="2.0" height="15.0" fill="rgb(211,20,40)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIFG::effective_degree (1 samples, 0.17%)</title><rect x="139.4" y="3393" width="1.9" height="15.0" fill="rgb(211,175,23)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="3403.5" font-size="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 (5 samples, 0.83%)</title><rect x="31.6" y="3601" width="9.8" height="15.0" fill="rgb(226,225,49)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3611.5" font-size="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.17%)</title><rect x="313.8" y="1121" width="2.0" height="15.0" fill="rgb(249,155,41)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1131.5" font-size="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.17%)</title><rect x="356.9" y="1137" width="2.0" height="15.0" fill="rgb(235,109,17)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1147.5" font-size="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.17%)</title><rect x="353.0" y="1281" width="2.0" height="15.0" fill="rgb(207,87,36)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseGVN::transform_no_reclaim (1 samples, 0.17%)</title><rect x="190.3" y="2545" width="2.0" height="15.0" fill="rgb(240,99,45)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2555.5" font-size="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/Gen:::appendStrings (1 samples, 0.17%)</title><rect x="339.3" y="977" width="2.0" height="15.0" fill="rgb(216,5,3)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="987.5" font-size="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.17%)</title><rect x="190.3" y="3153" width="2.0" height="15.0" fill="rgb(214,71,0)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3163.5" font-size="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:::allparams (1 samples, 0.17%)</title><rect x="356.9" y="881" width="2.0" height="15.0" fill="rgb(227,227,30)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoaderDataGraph::roots_cld_do (1 samples, 0.17%)</title><rect x="43.3" y="3409" width="2.0" height="15.0" fill="rgb(237,104,5)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1761" width="715.4" height="15.0" fill="rgb(219,190,43)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1771.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>PhaseIdealLoop::split_if_with_blocks (1 samples, 0.17%)</title><rect x="184.5" y="3441" width="1.9" height="15.0" fill="rgb(236,202,20)" rx="2" ry="2" />
<text text-anchor="" x="187.45" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_CallObjectMethod (1 samples, 0.17%)</title><rect x="304.0" y="1169" width="2.0" height="15.0" fill="rgb(248,147,52)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1179.5" font-size="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 (1 samples, 0.17%)</title><rect x="194.3" y="3489" width="1.9" height="15.0" fill="rgb(220,21,49)" rx="2" ry="2" />
<text text-anchor="" x="197.25" y="3499.5" font-size="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.17%)</title><rect x="300.1" y="593" width="2.0" height="15.0" fill="rgb(245,23,48)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2321" width="891.8" height="15.0" fill="rgb(218,88,18)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2331.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.17%)</title><rect x="1188.0" y="2433" width="2.0" height="15.0" fill="rgb(244,98,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.17%)</title><rect x="464.8" y="1473" width="1.9" height="15.0" fill="rgb(247,213,51)" rx="2" ry="2" />
<text text-anchor="" x="467.75" y="1483.5" font-size="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 (2 samples, 0.33%)</title><rect x="360.9" y="1457" width="3.9" height="15.0" fill="rgb(248,212,15)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1467.5" font-size="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/security/provider/DigestBase:::engineUpdate (41 samples, 6.81%)</title><rect x="364.8" y="1409" width="80.3" height="15.0" fill="rgb(238,200,3)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/secu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$GroupHead:::match (1 samples, 0.17%)</title><rect x="329.5" y="721" width="2.0" height="15.0" fill="rgb(248,39,1)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genExpr (1 samples, 0.17%)</title><rect x="343.2" y="1041" width="2.0" height="15.0" fill="rgb(207,212,47)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1051.5" font-size="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/Gen:::genStat (3 samples, 0.50%)</title><rect x="339.3" y="1185" width="5.9" height="15.0" fill="rgb(253,207,38)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-82526.map] (1 samples, 0.17%)</title><rect x="300.1" y="961" width="2.0" height="15.0" fill="rgb(251,106,36)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="971.5" font-size="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.17%)</title><rect x="190.3" y="2705" width="2.0" height="15.0" fill="rgb(232,103,22)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2321" width="2.0" height="15.0" fill="rgb(249,228,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2331.5" font-size="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$2:::complete (1 samples, 0.17%)</title><rect x="331.5" y="881" width="1.9" height="15.0" fill="rgb(211,16,54)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="274.6" y="3249" width="2.0" height="15.0" fill="rgb(251,165,40)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3259.5" font-size="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.17%)</title><rect x="190.3" y="2993" width="2.0" height="15.0" fill="rgb(241,121,22)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3003.5" font-size="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.17%)</title><rect x="41.4" y="3569" width="1.9" height="15.0" fill="rgb(241,120,3)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3579.5" font-size="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 (4 samples, 0.66%)</title><rect x="309.9" y="1281" width="7.8" height="15.0" fill="rgb(214,17,15)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::can_capture_store (1 samples, 0.17%)</title><rect x="188.4" y="3409" width="1.9" height="15.0" fill="rgb(218,42,24)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3419.5" font-size="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.17%)</title><rect x="486.3" y="929" width="2.0" height="15.0" fill="rgb(240,201,7)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="939.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="335.4" y="977" width="1.9" height="15.0" fill="rgb(241,87,7)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="987.5" font-size="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.17%)</title><rect x="300.1" y="1089" width="2.0" height="15.0" fill="rgb(215,55,23)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1099.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="313.8" y="817" width="2.0" height="15.0" fill="rgb(240,138,11)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="827.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="355.0" y="545" width="1.9" height="15.0" fill="rgb(228,78,2)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3025" width="2.0" height="15.0" fill="rgb(232,187,51)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3035.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="309.9" y="641" width="2.0" height="15.0" fill="rgb(251,8,10)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2929" width="2.0" height="15.0" fill="rgb(222,129,16)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2939.5" font-size="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.17%)</title><rect x="355.0" y="1185" width="1.9" height="15.0" fill="rgb(206,223,14)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1169" width="1.9" height="15.0" fill="rgb(240,228,32)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1179.5" font-size="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$7:::visitType (1 samples, 0.17%)</title><rect x="358.9" y="913" width="2.0" height="15.0" fill="rgb(235,113,2)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3361" width="891.8" height="15.0" fill="rgb(235,229,29)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3371.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>Parse::do_all_blocks (1 samples, 0.17%)</title><rect x="190.3" y="2769" width="2.0" height="15.0" fill="rgb(219,133,1)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2779.5" font-size="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.17%)</title><rect x="309.9" y="1105" width="2.0" height="15.0" fill="rgb(252,184,52)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1601" width="50.9" height="15.0" fill="rgb(225,193,23)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2513" width="2.0" height="15.0" fill="rgb(243,65,3)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2523.5" font-size="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:::isParameterized (1 samples, 0.17%)</title><rect x="321.7" y="1281" width="1.9" height="15.0" fill="rgb(232,177,20)" rx="2" ry="2" />
<text text-anchor="" x="324.66" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2609" width="891.8" height="15.0" fill="rgb(249,114,42)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2619.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/Resolve:::findIdent (1 samples, 0.17%)</title><rect x="323.6" y="1233" width="2.0" height="15.0" fill="rgb(244,130,24)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bio (1 samples, 0.17%)</title><rect x="251.1" y="3249" width="2.0" height="15.0" fill="rgb(207,51,15)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1537" width="1.9" height="15.0" fill="rgb(224,182,28)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (354 samples, 58.80%)</title><rect x="468.7" y="1233" width="693.9" height="15.0" fill="rgb(240,131,35)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1243.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 (4 samples, 0.66%)</title><rect x="329.5" y="1201" width="7.8" height="15.0" fill="rgb(248,59,14)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DefNewGeneration::oop_since_save_marks_iterate_nv (3 samples, 0.50%)</title><rect x="47.2" y="3425" width="5.9" height="15.0" fill="rgb(236,166,29)" rx="2" ry="2" />
<text text-anchor="" x="50.24" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1793" width="715.4" height="15.0" fill="rgb(205,159,24)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1803.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>mptscsih_qcmd (2 samples, 0.33%)</title><rect x="260.9" y="3281" width="3.9" height="15.0" fill="rgb(227,174,31)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3291.5" font-size="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/launcher/daemon/server/health/gc/GarbageCollectionCheck:::run (3 samples, 0.50%)</title><rect x="17.8" y="3585" width="5.9" height="15.0" fill="rgb(222,92,6)" rx="2" ry="2" />
<text text-anchor="" x="20.84" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2849" width="2.0" height="15.0" fill="rgb(218,95,34)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GraphBuilder::access_field (1 samples, 0.17%)</title><rect x="204.1" y="3185" width="1.9" height="15.0" fill="rgb(215,168,17)" rx="2" ry="2" />
<text text-anchor="" x="207.05" y="3195.5" font-size="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/regex/Pattern$Branch:::match (1 samples, 0.17%)</title><rect x="329.5" y="849" width="2.0" height="15.0" fill="rgb(250,202,48)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="859.5" font-size="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$StackMapTableFrame$SameLocals1StackItemFrame:::getFrameType (1 samples, 0.17%)</title><rect x="353.0" y="1217" width="2.0" height="15.0" fill="rgb(242,116,26)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (602 samples, 100%)</title><rect x="10.0" y="3633" width="1180.0" height="15.0" fill="rgb(235,216,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3643.5" font-size="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.17%)</title><rect x="311.9" y="449" width="1.9" height="15.0" fill="rgb(249,148,49)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="300.1" y="641" width="2.0" height="15.0" fill="rgb(233,210,48)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.17%)</title><rect x="309.9" y="881" width="2.0" height="15.0" fill="rgb(242,221,52)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1969" width="2.0" height="15.0" fill="rgb(240,48,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bio (1 samples, 0.17%)</title><rect x="1188.0" y="1073" width="2.0" height="15.0" fill="rgb(208,188,20)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1083.5" font-size="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/Gen:::genExpr (1 samples, 0.17%)</title><rect x="339.3" y="1105" width="2.0" height="15.0" fill="rgb(232,222,20)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1115.5" font-size="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::process_nmethod (3 samples, 0.50%)</title><rect x="241.3" y="3473" width="5.9" height="15.0" fill="rgb(225,9,7)" rx="2" ry="2" />
<text text-anchor="" x="244.30" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::new_nmethod (1 samples, 0.17%)</title><rect x="41.4" y="3425" width="1.9" height="15.0" fill="rgb(233,91,49)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3435.5" font-size="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:::visitParens (1 samples, 0.17%)</title><rect x="329.5" y="1121" width="2.0" height="15.0" fill="rgb(236,33,0)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (1 samples, 0.17%)</title><rect x="274.6" y="3345" width="2.0" height="15.0" fill="rgb(253,62,49)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3355.5" font-size="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::allocate_registers (1 samples, 0.17%)</title><rect x="233.5" y="3409" width="1.9" height="15.0" fill="rgb(238,24,15)" rx="2" ry="2" />
<text text-anchor="" x="236.46" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="333.4" y="1057" width="2.0" height="15.0" fill="rgb(231,219,54)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1067.5" font-size="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.17%)</title><rect x="1188.0" y="3473" width="2.0" height="15.0" fill="rgb(205,50,1)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3483.5" font-size="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_make_request (1 samples, 0.17%)</title><rect x="1188.0" y="1057" width="2.0" height="15.0" fill="rgb(212,51,5)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1067.5" font-size="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:::attribute (3 samples, 0.50%)</title><rect x="355.0" y="1377" width="5.9" height="15.0" fill="rgb(213,51,47)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1387.5" font-size="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$JCNewArray:::accept (1 samples, 0.17%)</title><rect x="343.2" y="1025" width="2.0" height="15.0" fill="rgb(230,170,15)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1035.5" font-size="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$JCImport:::accept (1 samples, 0.17%)</title><rect x="323.6" y="1025" width="2.0" height="15.0" fill="rgb(220,169,51)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::Label_Root (1 samples, 0.17%)</title><rect x="66.8" y="3393" width="2.0" height="15.0" fill="rgb(251,200,39)" rx="2" ry="2" />
<text text-anchor="" x="69.84" y="3403.5" font-size="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.17%)</title><rect x="482.4" y="977" width="2.0" height="15.0" fill="rgb(250,23,28)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="987.5" font-size="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 (3 samples, 0.50%)</title><rect x="274.6" y="3393" width="5.9" height="15.0" fill="rgb(247,212,1)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeBlob::CodeBlob (1 samples, 0.17%)</title><rect x="237.4" y="3393" width="1.9" height="15.0" fill="rgb(245,10,46)" rx="2" ry="2" />
<text text-anchor="" x="240.38" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 1.66%)</title><rect x="1162.6" y="1185" width="19.6" height="15.0" fill="rgb(250,178,47)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="27.6" y="3377" width="2.0" height="15.0" fill="rgb(253,148,29)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3387.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1617" width="715.4" height="15.0" fill="rgb(253,56,16)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_helper</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Enter:::classEnter (1 samples, 0.17%)</title><rect x="351.1" y="1329" width="1.9" height="15.0" fill="rgb(213,109,0)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1339.5" font-size="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.17%)</title><rect x="349.1" y="1137" width="2.0" height="15.0" fill="rgb(241,72,51)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1147.5" font-size="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::method_return (1 samples, 0.17%)</title><rect x="206.0" y="2945" width="2.0" height="15.0" fill="rgb(213,130,20)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="2955.5" font-size="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.17%)</title><rect x="486.3" y="833" width="2.0" height="15.0" fill="rgb(251,66,8)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="843.5" font-size="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_newstat (1 samples, 0.17%)</title><rect x="290.3" y="3521" width="2.0" height="15.0" fill="rgb(225,191,21)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3531.5" font-size="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:::isAccessible (1 samples, 0.17%)</title><rect x="355.0" y="497" width="1.9" height="15.0" fill="rgb(254,61,2)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NodeHash::hash_find_insert (1 samples, 0.17%)</title><rect x="39.4" y="3169" width="2.0" height="15.0" fill="rgb(234,54,24)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3179.5" font-size="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.17%)</title><rect x="313.8" y="865" width="2.0" height="15.0" fill="rgb(233,172,19)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="875.5" font-size="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:::attribStats (1 samples, 0.17%)</title><rect x="311.9" y="673" width="1.9" height="15.0" fill="rgb(244,174,19)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.17%)</title><rect x="272.7" y="3537" width="1.9" height="15.0" fill="rgb(215,22,36)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3547.5" font-size="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::final_graph_reshaping (3 samples, 0.50%)</title><rect x="149.2" y="3457" width="5.8" height="15.0" fill="rgb(205,106,13)" rx="2" ry="2" />
<text text-anchor="" x="152.17" y="3467.5" font-size="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.17%)</title><rect x="356.9" y="801" width="2.0" height="15.0" fill="rgb(233,209,30)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="811.5" font-size="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 (11 samples, 1.83%)</title><rect x="445.1" y="1569" width="21.6" height="15.0" fill="rgb(225,124,42)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1579.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>iov_iter_fault_in_readable (1 samples, 0.17%)</title><rect x="472.6" y="865" width="2.0" height="15.0" fill="rgb(231,171,47)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="875.5" font-size="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_from_handle (1 samples, 0.17%)</title><rect x="239.3" y="3505" width="2.0" height="15.0" fill="rgb(234,45,13)" rx="2" ry="2" />
<text text-anchor="" x="242.34" y="3515.5" font-size="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$DeferredType:::check (1 samples, 0.17%)</title><rect x="331.5" y="913" width="1.9" height="15.0" fill="rgb(220,205,22)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="923.5" font-size="12" 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.33%)</title><rect x="321.7" y="1313" width="3.9" height="15.0" fill="rgb(247,112,7)" rx="2" ry="2" />
<text text-anchor="" x="324.66" y="1323.5" font-size="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:::attribClass (4 samples, 0.66%)</title><rect x="309.9" y="1329" width="7.8" height="15.0" fill="rgb(206,167,39)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1457" width="11.8" height="15.0" fill="rgb(243,206,26)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1467.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3601" width="891.8" height="15.0" fill="rgb(233,222,14)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Split (1 samples, 0.17%)</title><rect x="35.5" y="3441" width="1.9" height="15.0" fill="rgb(231,136,28)" rx="2" ry="2" />
<text text-anchor="" x="38.48" y="3451.5" font-size="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.17%)</title><rect x="39.4" y="3473" width="2.0" height="15.0" fill="rgb(220,219,26)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3483.5" font-size="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$StackMapTableFrame$SameLocals1StackItemFrame:::write (1 samples, 0.17%)</title><rect x="353.0" y="1233" width="2.0" height="15.0" fill="rgb(238,13,8)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1243.5" font-size="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.33%)</title><rect x="260.9" y="3425" width="3.9" height="15.0" fill="rgb(232,69,39)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3435.5" font-size="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_run_queue (1 samples, 0.17%)</title><rect x="251.1" y="3201" width="2.0" height="15.0" fill="rgb(253,133,12)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1473" width="2.0" height="15.0" fill="rgb(249,178,29)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframe::sender (1 samples, 0.17%)</title><rect x="55.1" y="3441" width="1.9" height="15.0" fill="rgb(207,60,32)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3451.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="785" width="5.9" height="15.0" fill="rgb(226,112,54)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="795.5" font-size="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.17%)</title><rect x="333.4" y="1185" width="2.0" height="15.0" fill="rgb(234,199,15)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1195.5" font-size="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__late_post (1 samples, 0.17%)</title><rect x="176.6" y="3425" width="2.0" height="15.0" fill="rgb(205,30,25)" rx="2" ry="2" />
<text text-anchor="" x="179.61" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82544 (477 samples, 79.24%)</title><rect x="249.1" y="3617" width="935.0" height="15.0" fill="rgb(218,229,10)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-82526/82544</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3137" width="1.9" height="15.0" fill="rgb(246,40,17)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.66%)</title><rect x="488.3" y="977" width="7.8" height="15.0" fill="rgb(232,4,20)" rx="2" ry="2" />
<text text-anchor="" x="491.27" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2737" width="2.0" height="15.0" fill="rgb(229,38,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2747.5" font-size="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.17%)</title><rect x="309.9" y="1009" width="2.0" height="15.0" fill="rgb(234,67,20)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2001" width="54.8" height="15.0" fill="rgb(218,103,4)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</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.17%)</title><rect x="331.5" y="833" width="1.9" height="15.0" fill="rgb(230,57,16)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (1 samples, 0.17%)</title><rect x="484.4" y="785" width="1.9" height="15.0" fill="rgb(229,220,35)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="795.5" font-size="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/Lower:::boxArgs (1 samples, 0.17%)</title><rect x="319.7" y="961" width="2.0" height="15.0" fill="rgb(217,187,7)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="971.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="881" width="3.9" height="15.0" fill="rgb(226,26,41)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1537" width="80.3" height="15.0" fill="rgb(211,5,27)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1547.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/cache/internal/DefaultProducerGuard:::guardByKey (11 samples, 1.83%)</title><rect x="445.1" y="1697" width="21.6" height="15.0" fill="rgb(216,13,16)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1707.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>PhaseIFG::re_insert (2 samples, 0.33%)</title><rect x="84.5" y="3425" width="3.9" height="15.0" fill="rgb(237,86,18)" rx="2" ry="2" />
<text text-anchor="" x="87.49" y="3435.5" font-size="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.17%)</title><rect x="1188.0" y="3377" width="2.0" height="15.0" fill="rgb(236,192,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3169" width="891.8" height="15.0" fill="rgb(214,57,51)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3179.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>blk_done_softirq (2 samples, 0.33%)</title><rect x="1146.9" y="897" width="3.9" height="15.0" fill="rgb(218,107,14)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="907.5" font-size="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$Subst:::visitMethodType (1 samples, 0.17%)</title><rect x="335.4" y="897" width="1.9" height="15.0" fill="rgb(230,155,38)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="907.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="331.5" y="641" width="1.9" height="15.0" fill="rgb(243,132,43)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_iget_normal (1 samples, 0.17%)</title><rect x="251.1" y="3345" width="2.0" height="15.0" fill="rgb(248,134,47)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3355.5" font-size="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.17%)</title><rect x="294.2" y="1761" width="2.0" height="15.0" fill="rgb(243,23,33)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1771.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1745" width="50.9" height="15.0" fill="rgb(221,81,15)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava..</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.17%)</title><rect x="355.0" y="769" width="1.9" height="15.0" fill="rgb(215,84,9)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="779.5" font-size="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/Lower:::translate (1 samples, 0.17%)</title><rect x="317.7" y="1073" width="2.0" height="15.0" fill="rgb(206,82,15)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1083.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="311.9" y="977" width="1.9" height="15.0" fill="rgb(219,44,3)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="987.5" font-size="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.17%)</title><rect x="327.5" y="1185" width="2.0" height="15.0" fill="rgb(220,215,41)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1195.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="313.8" y="785" width="2.0" height="15.0" fill="rgb(228,120,51)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="795.5" font-size="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] (7 samples, 1.16%)</title><rect x="505.9" y="993" width="13.7" height="15.0" fill="rgb(211,90,38)" rx="2" ry="2" />
<text text-anchor="" x="508.91" y="1003.5" font-size="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/security/provider/DigestBase:::engineUpdate (2 samples, 0.33%)</title><rect x="360.9" y="1409" width="3.9" height="15.0" fill="rgb(205,228,36)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1393" width="2.0" height="15.0" fill="rgb(238,194,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1403.5" font-size="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.17%)</title><rect x="327.5" y="1297" width="2.0" height="15.0" fill="rgb(217,5,13)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1307.5" font-size="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:::arguments (1 samples, 0.17%)</title><rect x="300.1" y="945" width="2.0" height="15.0" fill="rgb(226,4,21)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ll_rw_block (1 samples, 0.17%)</title><rect x="251.1" y="3281" width="2.0" height="15.0" fill="rgb(216,87,20)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3291.5" font-size="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.17%)</title><rect x="309.9" y="897" width="2.0" height="15.0" fill="rgb(238,10,1)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="907.5" font-size="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.17%)</title><rect x="190.3" y="3425" width="2.0" height="15.0" fill="rgb(249,191,50)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.17%)</title><rect x="153.1" y="3377" width="1.9" height="15.0" fill="rgb(218,91,51)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3387.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="577" width="1.9" height="15.0" fill="rgb(208,212,9)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassWriter:::writeStackMap (1 samples, 0.17%)</title><rect x="353.0" y="1249" width="2.0" height="15.0" fill="rgb(214,212,15)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1921" width="54.8" height="15.0" fill="rgb(226,109,47)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</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.17%)</title><rect x="339.3" y="1137" width="2.0" height="15.0" fill="rgb(217,184,5)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next (1 samples, 0.17%)</title><rect x="145.2" y="3409" width="2.0" height="15.0" fill="rgb(230,159,5)" rx="2" ry="2" />
<text text-anchor="" x="148.25" y="3419.5" font-size="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 (10 samples, 1.66%)</title><rect x="1162.6" y="1201" width="19.6" height="15.0" fill="rgb(251,151,9)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1211.5" font-size="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.17%)</title><rect x="311.9" y="1009" width="1.9" height="15.0" fill="rgb(221,22,0)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1019.5" font-size="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.17%)</title><rect x="196.2" y="3313" width="2.0" height="15.0" fill="rgb(216,73,9)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3323.5" font-size="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 (1 samples, 0.17%)</title><rect x="494.2" y="689" width="1.9" height="15.0" fill="rgb(239,197,25)" rx="2" ry="2" />
<text text-anchor="" x="497.15" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2193" width="891.8" height="15.0" fill="rgb(210,151,41)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2203.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>ciEnv::register_method (1 samples, 0.17%)</title><rect x="41.4" y="3441" width="1.9" height="15.0" fill="rgb(241,146,52)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3451.5" font-size="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.17%)</title><rect x="327.5" y="945" width="2.0" height="15.0" fill="rgb(222,2,10)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="955.5" font-size="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/regex/Pattern$BmpCharProperty:::match (1 samples, 0.17%)</title><rect x="329.5" y="865" width="2.0" height="15.0" fill="rgb(254,126,4)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="875.5" font-size="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/JavaTokenizer:::readToken (1 samples, 0.17%)</title><rect x="300.1" y="417" width="2.0" height="15.0" fill="rgb(214,156,16)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.17%)</title><rect x="290.3" y="3537" width="2.0" height="15.0" fill="rgb(210,22,27)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3547.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3457" width="5.9" height="15.0" fill="rgb(222,29,44)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="264.8" y="3313" width="2.0" height="15.0" fill="rgb(244,78,12)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2497" width="2.0" height="15.0" fill="rgb(241,196,35)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2507.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="913" width="3.9" height="15.0" fill="rgb(243,52,45)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.33%)</title><rect x="260.9" y="3297" width="3.9" height="15.0" fill="rgb(252,226,49)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3307.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3537" width="891.8" height="15.0" fill="rgb(240,8,52)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_entry</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.17%)</title><rect x="1154.7" y="993" width="2.0" height="15.0" fill="rgb(225,12,32)" rx="2" ry="2" />
<text text-anchor="" x="1157.72" y="1003.5" font-size="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.17%)</title><rect x="190.3" y="2689" width="2.0" height="15.0" fill="rgb(225,208,24)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2699.5" font-size="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$JCBinary:::accept (1 samples, 0.17%)</title><rect x="309.9" y="737" width="2.0" height="15.0" fill="rgb(252,18,14)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="747.5" font-size="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 (1 samples, 0.17%)</title><rect x="239.3" y="3457" width="2.0" height="15.0" fill="rgb(235,52,26)" rx="2" ry="2" />
<text text-anchor="" x="242.34" y="3467.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="881" width="3.9" height="15.0" fill="rgb(242,205,47)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="891.5" font-size="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.17%)</title><rect x="341.3" y="417" width="1.9" height="15.0" fill="rgb(219,12,44)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::intern (1 samples, 0.17%)</title><rect x="351.1" y="977" width="1.9" height="15.0" fill="rgb(241,150,44)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="987.5" font-size="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.17%)</title><rect x="12.0" y="3425" width="1.9" height="15.0" fill="rgb(241,52,33)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3435.5" font-size="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.17%)</title><rect x="356.9" y="1121" width="2.0" height="15.0" fill="rgb(230,148,33)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3265" width="1.9" height="15.0" fill="rgb(232,2,46)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3275.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="913" width="1.9" height="15.0" fill="rgb(213,2,43)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="1188.0" y="945" width="2.0" height="15.0" fill="rgb(233,113,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2865" width="891.8" height="15.0" fill="rgb(253,77,42)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2875.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>Matcher::xform (2 samples, 0.33%)</title><rect x="64.9" y="3441" width="3.9" height="15.0" fill="rgb(246,4,22)" rx="2" ry="2" />
<text text-anchor="" x="67.88" y="3451.5" font-size="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$Subst:::subst (1 samples, 0.17%)</title><rect x="311.9" y="65" width="1.9" height="15.0" fill="rgb(242,23,26)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.17%)</title><rect x="10.0" y="3505" width="2.0" height="15.0" fill="rgb(221,187,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3515.5" font-size="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$FileCollectionConverter:::convertInto (1 samples, 0.17%)</title><rect x="294.2" y="1745" width="2.0" height="15.0" fill="rgb(207,134,2)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1755.5" font-size="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.17%)</title><rect x="333.4" y="881" width="2.0" height="15.0" fill="rgb(243,31,27)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="891.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="307.9" y="1153" width="2.0" height="15.0" fill="rgb(217,116,21)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3153" width="2.0" height="15.0" fill="rgb(245,70,49)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1633" width="80.3" height="15.0" fill="rgb(246,109,18)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1643.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>__vfs_read (1 samples, 0.17%)</title><rect x="272.7" y="3489" width="1.9" height="15.0" fill="rgb(220,106,43)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3499.5" font-size="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.17%)</title><rect x="249.1" y="3441" width="2.0" height="15.0" fill="rgb(211,197,29)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1025" width="1.9" height="15.0" fill="rgb(243,196,5)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3089" width="1.9" height="15.0" fill="rgb(237,210,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3099.5" font-size="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.17%)</title><rect x="311.9" y="561" width="1.9" height="15.0" fill="rgb(223,134,17)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_newstat (1 samples, 0.17%)</title><rect x="251.1" y="3505" width="2.0" height="15.0" fill="rgb(234,53,42)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3515.5" font-size="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 (2 samples, 0.33%)</title><rect x="1146.9" y="865" width="3.9" height="15.0" fill="rgb(233,101,6)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="875.5" font-size="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:::isPrimitive (1 samples, 0.17%)</title><rect x="341.3" y="305" width="1.9" height="15.0" fill="rgb(230,165,24)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="315.5" font-size="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.17%)</title><rect x="311.9" y="305" width="1.9" height="15.0" fill="rgb(218,79,3)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="315.5" font-size="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.17%)</title><rect x="333.4" y="929" width="2.0" height="15.0" fill="rgb(249,44,10)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2177" width="891.8" height="15.0" fill="rgb(208,203,34)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2187.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/tree/JCTree$JCCompilationUnit:::accept (1 samples, 0.17%)</title><rect x="325.6" y="1297" width="1.9" height="15.0" fill="rgb(247,77,15)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1307.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="929" width="3.9" height="15.0" fill="rgb(222,217,30)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JNIHandles::make_local (1 samples, 0.17%)</title><rect x="498.1" y="993" width="1.9" height="15.0" fill="rgb(237,12,3)" rx="2" ry="2" />
<text text-anchor="" x="501.07" y="1003.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1633" width="715.4" height="15.0" fill="rgb(252,68,12)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Reflection::invoke</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.17%)</title><rect x="1188.0" y="1841" width="2.0" height="15.0" fill="rgb(212,24,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1851.5" font-size="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] (3 samples, 0.50%)</title><rect x="1172.4" y="1041" width="5.8" height="15.0" fill="rgb(246,25,33)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1051.5" font-size="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] (2 samples, 0.33%)</title><rect x="249.1" y="3553" width="4.0" height="15.0" fill="rgb(213,223,29)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3563.5" font-size="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:::rawInstantiate (1 samples, 0.17%)</title><rect x="331.5" y="625" width="1.9" height="15.0" fill="rgb(249,149,13)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.17%)</title><rect x="1188.0" y="2097" width="2.0" height="15.0" fill="rgb(235,68,10)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2107.5" font-size="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:::isConvertible (1 samples, 0.17%)</title><rect x="358.9" y="1009" width="2.0" height="15.0" fill="rgb(221,182,21)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1019.5" font-size="12" 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.66%)</title><rect x="470.6" y="1137" width="7.9" height="15.0" fill="rgb(241,139,13)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 1.16%)</title><rect x="296.2" y="1329" width="13.7" height="15.0" fill="rgb(231,217,5)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (364 samples, 60.47%)</title><rect x="468.7" y="1297" width="713.5" height="15.0" fill="rgb(243,222,41)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1307.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 (3 samples, 0.50%)</title><rect x="355.0" y="1361" width="5.9" height="15.0" fill="rgb(229,137,19)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1371.5" font-size="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:::readBytes (1 samples, 0.17%)</title><rect x="356.9" y="753" width="2.0" height="15.0" fill="rgb(253,206,47)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="763.5" font-size="12" 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.50%)</title><rect x="300.1" y="1297" width="5.9" height="15.0" fill="rgb(219,76,42)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1307.5" font-size="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] (2 samples, 0.33%)</title><rect x="474.6" y="993" width="3.9" height="15.0" fill="rgb(213,104,28)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="1003.5" font-size="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:::arguments (1 samples, 0.17%)</title><rect x="302.1" y="1073" width="1.9" height="15.0" fill="rgb(208,153,37)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1083.5" font-size="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_flush_plug_list (1 samples, 0.17%)</title><rect x="272.7" y="3361" width="1.9" height="15.0" fill="rgb(210,176,4)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3371.5" font-size="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 (3 samples, 0.50%)</title><rect x="241.3" y="3489" width="5.9" height="15.0" fill="rgb(233,206,41)" rx="2" ry="2" />
<text text-anchor="" x="244.30" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciField::will_link (1 samples, 0.17%)</title><rect x="200.1" y="3233" width="2.0" height="15.0" fill="rgb(219,15,13)" rx="2" ry="2" />
<text text-anchor="" x="203.13" y="3243.5" font-size="12" 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.33%)</title><rect x="292.3" y="1809" width="3.9" height="15.0" fill="rgb(224,120,37)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1819.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="311.9" y="369" width="1.9" height="15.0" fill="rgb(245,85,22)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="689" width="1.9" height="15.0" fill="rgb(241,73,34)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (3 samples, 0.50%)</title><rect x="1164.5" y="849" width="5.9" height="15.0" fill="rgb(208,10,44)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="859.5" font-size="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.17%)</title><rect x="190.3" y="2881" width="2.0" height="15.0" fill="rgb(242,54,25)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2891.5" font-size="12" 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.33%)</title><rect x="27.6" y="3489" width="4.0" height="15.0" fill="rgb(212,11,22)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3499.5" font-size="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/Infer:::generateReturnConstraints (1 samples, 0.17%)</title><rect x="358.9" y="1073" width="2.0" height="15.0" fill="rgb(212,167,30)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1083.5" font-size="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.17%)</title><rect x="309.9" y="1073" width="2.0" height="15.0" fill="rgb(229,29,37)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_newlstat (1 samples, 0.17%)</title><rect x="247.2" y="3537" width="1.9" height="15.0" fill="rgb(232,35,26)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1745" width="2.0" height="15.0" fill="rgb(234,25,9)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1755.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1729" width="715.4" height="15.0" fill="rgb(245,111,53)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/reflect/JavaMethod:::invoke</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.17%)</title><rect x="358.9" y="1201" width="2.0" height="15.0" fill="rgb(220,100,46)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="325.6" y="1281" width="1.9" height="15.0" fill="rgb(215,174,23)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3233" width="1.9" height="15.0" fill="rgb(239,20,35)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3243.5" font-size="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.17%)</title><rect x="472.6" y="1009" width="2.0" height="15.0" fill="rgb(252,34,50)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="1019.5" font-size="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 (2 samples, 0.33%)</title><rect x="286.4" y="3281" width="3.9" height="15.0" fill="rgb(231,10,25)" rx="2" ry="2" />
<text text-anchor="" x="289.38" y="3291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1473" width="11.8" height="15.0" fill="rgb(215,134,41)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2289" width="2.0" height="15.0" fill="rgb(232,119,47)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2299.5" font-size="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.17%)</title><rect x="280.5" y="3377" width="2.0" height="15.0" fill="rgb(242,41,54)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3387.5" font-size="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.17%)</title><rect x="37.4" y="3457" width="2.0" height="15.0" fill="rgb(246,86,52)" rx="2" ry="2" />
<text text-anchor="" x="40.44" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompiledIC::set_to_megamorphic (1 samples, 0.17%)</title><rect x="466.7" y="1665" width="2.0" height="15.0" fill="rgb(228,69,21)" rx="2" ry="2" />
<text text-anchor="" x="469.71" y="1675.5" font-size="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.17%)</title><rect x="356.9" y="1105" width="2.0" height="15.0" fill="rgb(221,79,47)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1115.5" font-size="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_from_jni_environment (1 samples, 0.17%)</title><rect x="519.6" y="1009" width="2.0" height="15.0" fill="rgb(244,137,43)" rx="2" ry="2" />
<text text-anchor="" x="522.63" y="1019.5" font-size="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.17%)</title><rect x="355.0" y="977" width="1.9" height="15.0" fill="rgb(208,118,19)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="987.5" font-size="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.17%)</title><rect x="33.5" y="3441" width="2.0" height="15.0" fill="rgb(236,0,21)" rx="2" ry="2" />
<text text-anchor="" x="36.52" y="3451.5" font-size="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_read (9 samples, 1.50%)</title><rect x="255.0" y="3553" width="17.7" height="15.0" fill="rgb(232,217,29)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3563.5" font-size="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 (1 samples, 0.17%)</title><rect x="272.7" y="3313" width="1.9" height="15.0" fill="rgb(224,74,37)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3323.5" font-size="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.17%)</title><rect x="190.3" y="2593" width="2.0" height="15.0" fill="rgb(216,80,20)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2603.5" font-size="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] (2 samples, 0.33%)</title><rect x="1178.2" y="1073" width="4.0" height="15.0" fill="rgb(220,32,26)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="1083.5" font-size="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$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="309.9" y="673" width="2.0" height="15.0" fill="rgb(234,195,50)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.17%)</title><rect x="333.4" y="865" width="2.0" height="15.0" fill="rgb(246,63,42)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1601" width="1.9" height="15.0" fill="rgb(252,31,32)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1611.5" font-size="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.17%)</title><rect x="264.8" y="3425" width="2.0" height="15.0" fill="rgb(223,156,43)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3435.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="1713" width="11.8" height="15.0" fill="rgb(237,122,17)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1723.5" font-size="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:::visitMethodDef (1 samples, 0.17%)</title><rect x="306.0" y="1185" width="1.9" height="15.0" fill="rgb(220,77,1)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1195.5" font-size="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.17%)</title><rect x="311.9" y="353" width="1.9" height="15.0" fill="rgb(221,136,34)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/artifacts/DefaultResolvedArtifact:::getFile (1 samples, 0.17%)</title><rect x="1186.1" y="3233" width="1.9" height="15.0" fill="rgb(248,148,27)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3243.5" font-size="12" 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.66%)</title><rect x="470.6" y="1089" width="7.9" height="15.0" fill="rgb(233,37,5)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1099.5" font-size="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.17%)</title><rect x="482.4" y="993" width="2.0" height="15.0" fill="rgb(230,27,9)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1003.5" font-size="12" 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 (455 samples, 75.58%)</title><rect x="292.3" y="3585" width="891.8" height="15.0" fill="rgb(223,104,29)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::findMethod (1 samples, 0.17%)</title><rect x="313.8" y="769" width="2.0" height="15.0" fill="rgb(239,14,44)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="779.5" font-size="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_flush_plug_list (3 samples, 0.50%)</title><rect x="284.4" y="3361" width="5.9" height="15.0" fill="rgb(224,164,51)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2337" width="891.8" height="15.0" fill="rgb(245,27,5)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2347.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 (455 samples, 75.58%)</title><rect x="292.3" y="3297" width="891.8" height="15.0" fill="rgb(218,7,47)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3307.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.17%)</title><rect x="1188.0" y="2177" width="2.0" height="15.0" fill="rgb(208,185,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2187.5" font-size="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.17%)</title><rect x="190.3" y="3089" width="2.0" height="15.0" fill="rgb(241,192,31)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3099.5" font-size="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::split_if_with_blocks_pre (1 samples, 0.17%)</title><rect x="184.5" y="3425" width="1.9" height="15.0" fill="rgb(210,42,31)" rx="2" ry="2" />
<text text-anchor="" x="187.45" y="3435.5" font-size="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$JCReturn:::accept (1 samples, 0.17%)</title><rect x="313.8" y="961" width="2.0" height="15.0" fill="rgb(245,143,13)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="971.5" font-size="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.17%)</title><rect x="323.6" y="961" width="2.0" height="15.0" fill="rgb(212,96,15)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool (1 samples, 0.17%)</title><rect x="27.6" y="3233" width="2.0" height="15.0" fill="rgb(239,127,48)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Optimizer::eliminate_null_checks (3 samples, 0.50%)</title><rect x="217.8" y="3409" width="5.9" height="15.0" fill="rgb(231,173,21)" rx="2" ry="2" />
<text text-anchor="" x="220.77" y="3419.5" font-size="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.17%)</title><rect x="311.9" y="1089" width="1.9" height="15.0" fill="rgb(210,132,34)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1099.5" font-size="12" 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 (26 samples, 4.32%)</title><rect x="196.2" y="3585" width="51.0" height="15.0" fill="rgb(213,220,44)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3595.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>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (347 samples, 57.64%)</title><rect x="482.4" y="1073" width="680.2" height="15.0" fill="rgb(222,96,33)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_GetObjectField (2 samples, 0.33%)</title><rect x="496.1" y="1009" width="3.9" height="15.0" fill="rgb(250,178,6)" rx="2" ry="2" />
<text text-anchor="" x="499.11" y="1019.5" font-size="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.17%)</title><rect x="190.3" y="3009" width="2.0" height="15.0" fill="rgb(212,179,30)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3019.5" font-size="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.17%)</title><rect x="251.1" y="3393" width="2.0" height="15.0" fill="rgb(208,209,46)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeBytes (1 samples, 0.17%)</title><rect x="500.0" y="1009" width="2.0" height="15.0" fill="rgb(222,195,39)" rx="2" ry="2" />
<text text-anchor="" x="503.03" y="1019.5" font-size="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/Gen:::visitSelect (1 samples, 0.17%)</title><rect x="341.3" y="401" width="1.9" height="15.0" fill="rgb(216,56,32)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1313" width="715.4" height="15.0" fill="rgb(217,205,3)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1323.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>PhaseIterGVN::optimize (2 samples, 0.33%)</title><rect x="186.4" y="3457" width="3.9" height="15.0" fill="rgb(222,193,51)" rx="2" ry="2" />
<text text-anchor="" x="189.41" y="3467.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="313.8" y="753" width="2.0" height="15.0" fill="rgb(215,173,11)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="763.5" font-size="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/Gen:::visitApply (1 samples, 0.17%)</title><rect x="343.2" y="1073" width="2.0" height="15.0" fill="rgb(220,182,40)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.17%)</title><rect x="57.0" y="3489" width="2.0" height="15.0" fill="rgb(252,68,9)" rx="2" ry="2" />
<text text-anchor="" x="60.04" y="3499.5" font-size="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 (1 samples, 0.17%)</title><rect x="249.1" y="3393" width="2.0" height="15.0" fill="rgb(213,124,3)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_get_entry (2 samples, 0.33%)</title><rect x="268.7" y="3441" width="4.0" height="15.0" fill="rgb(225,118,25)" rx="2" ry="2" />
<text text-anchor="" x="271.74" y="3451.5" font-size="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:::getBooleanAttributes0 (1 samples, 0.17%)</title><rect x="304.0" y="1217" width="2.0" height="15.0" fill="rgb(220,84,44)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1227.5" font-size="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/Infer:::checkWithinBounds (1 samples, 0.17%)</title><rect x="331.5" y="577" width="1.9" height="15.0" fill="rgb(242,178,8)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.33%)</title><rect x="27.6" y="3473" width="4.0" height="15.0" fill="rgb(225,74,22)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3483.5" font-size="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::should_not_inline (1 samples, 0.17%)</title><rect x="211.9" y="3313" width="2.0" height="15.0" fill="rgb(240,72,34)" rx="2" ry="2" />
<text text-anchor="" x="214.89" y="3323.5" font-size="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::gather_lrg_masks (1 samples, 0.17%)</title><rect x="133.5" y="3441" width="1.9" height="15.0" fill="rgb(224,173,28)" rx="2" ry="2" />
<text text-anchor="" x="136.49" y="3451.5" font-size="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/Lower:::visitApply (1 samples, 0.17%)</title><rect x="317.7" y="1041" width="2.0" height="15.0" fill="rgb(215,110,3)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1051.5" font-size="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.17%)</title><rect x="323.6" y="929" width="2.0" height="15.0" fill="rgb(250,152,42)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1457" width="715.4" height="15.0" fill="rgb(247,219,3)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1467.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/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.17%)</title><rect x="355.0" y="657" width="1.9" height="15.0" fill="rgb(213,88,47)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="929" width="1.9" height="15.0" fill="rgb(226,218,6)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="939.5" font-size="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:::close0 (1 samples, 0.17%)</title><rect x="482.4" y="1009" width="2.0" height="15.0" fill="rgb(215,52,41)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1019.5" font-size="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_filp_open (1 samples, 0.17%)</title><rect x="1188.0" y="1169" width="2.0" height="15.0" fill="rgb(216,126,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1179.5" font-size="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:::checkIdInternal (1 samples, 0.17%)</title><rect x="329.5" y="961" width="2.0" height="15.0" fill="rgb(208,89,34)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="971.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3297" width="5.9" height="15.0" fill="rgb(213,74,5)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3307.5" font-size="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.17%)</title><rect x="323.6" y="1137" width="2.0" height="15.0" fill="rgb(242,7,54)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="785" width="1.9" height="15.0" fill="rgb(226,17,34)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="795.5" font-size="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:::checkMethodIdInternal (1 samples, 0.17%)</title><rect x="358.9" y="1169" width="2.0" height="15.0" fill="rgb(229,116,41)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1179.5" font-size="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.17%)</title><rect x="333.4" y="817" width="2.0" height="15.0" fill="rgb(253,9,13)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="827.5" font-size="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/Gen:::genArgs (1 samples, 0.17%)</title><rect x="343.2" y="1057" width="2.0" height="15.0" fill="rgb(251,152,19)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1377" width="49.0" height="15.0" fill="rgb(230,171,25)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1387.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>Compiler::compile_method (22 samples, 3.65%)</title><rect x="196.2" y="3505" width="43.1" height="15.0" fill="rgb(240,176,2)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Comp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseValues::uncached_makecon (1 samples, 0.17%)</title><rect x="39.4" y="3185" width="2.0" height="15.0" fill="rgb(246,29,11)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3195.5" font-size="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 (322 samples, 53.49%)</title><rect x="521.6" y="1009" width="631.2" height="15.0" fill="rgb(207,25,25)" rx="2" ry="2" />
<text text-anchor="" x="524.59" y="1019.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 (1 samples, 0.17%)</title><rect x="292.3" y="1649" width="1.9" height="15.0" fill="rgb(218,89,37)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82405/82427 (5 samples, 0.83%)</title><rect x="31.6" y="3617" width="9.8" height="15.0" fill="rgb(240,142,2)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82405/82428 (1 samples, 0.17%)</title><rect x="41.4" y="3617" width="1.9" height="15.0" fill="rgb(217,18,47)" rx="2" ry="2" />
<text text-anchor="" x="44.36" y="3627.5" font-size="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.17%)</title><rect x="349.1" y="1153" width="2.0" height="15.0" fill="rgb(220,22,52)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::merge_common (1 samples, 0.17%)</title><rect x="190.3" y="2561" width="2.0" height="15.0" fill="rgb(220,79,3)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2571.5" font-size="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/security/provider/MD5:::implCompress (2 samples, 0.33%)</title><rect x="360.9" y="1393" width="3.9" height="15.0" fill="rgb(215,139,33)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1403.5" font-size="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$JCCompilationUnit:::accept (1 samples, 0.17%)</title><rect x="323.6" y="1089" width="2.0" height="15.0" fill="rgb(226,224,52)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1099.5" font-size="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_block_write_begin (2 samples, 0.33%)</title><rect x="474.6" y="833" width="3.9" height="15.0" fill="rgb(239,140,29)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="843.5" font-size="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.17%)</title><rect x="333.4" y="1121" width="2.0" height="15.0" fill="rgb(209,185,49)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.17%)</title><rect x="10.0" y="3425" width="2.0" height="15.0" fill="rgb(205,76,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3105" width="2.0" height="15.0" fill="rgb(250,191,43)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1521" width="2.0" height="15.0" fill="rgb(226,225,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1531.5" font-size="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$Subst:::visitMethodType (1 samples, 0.17%)</title><rect x="311.9" y="81" width="1.9" height="15.0" fill="rgb(209,205,8)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3041" width="891.8" height="15.0" fill="rgb(252,146,18)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3051.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>VtableStubs::find_stub (1 samples, 0.17%)</title><rect x="466.7" y="1649" width="2.0" height="15.0" fill="rgb(219,3,49)" rx="2" ry="2" />
<text text-anchor="" x="469.71" y="1659.5" font-size="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$AliveAnalyzer:::analyzeTree (1 samples, 0.17%)</title><rect x="349.1" y="1313" width="2.0" height="15.0" fill="rgb(229,94,25)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="274.6" y="3281" width="2.0" height="15.0" fill="rgb(232,33,0)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3291.5" font-size="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 (1 samples, 0.17%)</title><rect x="272.7" y="3265" width="1.9" height="15.0" fill="rgb(216,32,25)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ic_miss_stub (1 samples, 0.17%)</title><rect x="466.7" y="1713" width="2.0" height="15.0" fill="rgb(247,155,32)" rx="2" ry="2" />
<text text-anchor="" x="469.71" y="1723.5" font-size="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:::createDefaultFileCopyDetails (1 samples, 0.17%)</title><rect x="478.5" y="1153" width="1.9" height="15.0" fill="rgb(229,62,11)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82534 (70 samples, 11.63%)</title><rect x="59.0" y="3617" width="137.2" height="15.0" fill="rgb(248,107,49)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-82526/82534</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.17%)</title><rect x="311.9" y="1137" width="1.9" height="15.0" fill="rgb(225,184,42)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="977" width="1.9" height="15.0" fill="rgb(236,163,16)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2209" width="891.8" height="15.0" fill="rgb(215,12,46)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2219.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/RandomAccessFile:::readBytes (1 samples, 0.17%)</title><rect x="356.9" y="705" width="2.0" height="15.0" fill="rgb(250,214,42)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="353.0" y="1329" width="2.0" height="15.0" fill="rgb(240,21,45)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1339.5" font-size="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.17%)</title><rect x="1188.0" y="3521" width="2.0" height="15.0" fill="rgb(232,167,28)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3531.5" font-size="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.17%)</title><rect x="309.9" y="817" width="2.0" height="15.0" fill="rgb(229,118,33)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="827.5" font-size="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.17%)</title><rect x="311.9" y="337" width="1.9" height="15.0" fill="rgb(215,35,2)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::lookupMethod (1 samples, 0.17%)</title><rect x="331.5" y="737" width="1.9" height="15.0" fill="rgb(224,108,45)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2705" width="891.8" height="15.0" fill="rgb(223,29,41)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2715.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/util/ArrayList:::addAll (1 samples, 0.17%)</title><rect x="1182.2" y="1265" width="1.9" height="15.0" fill="rgb(240,218,25)" rx="2" ry="2" />
<text text-anchor="" x="1185.16" y="1275.5" font-size="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_ReleasePrimitiveArrayCritical (1 samples, 0.17%)</title><rect x="1154.7" y="1009" width="2.0" height="15.0" fill="rgb(247,192,40)" rx="2" ry="2" />
<text text-anchor="" x="1157.72" y="1019.5" font-size="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.17%)</title><rect x="292.3" y="1585" width="1.9" height="15.0" fill="rgb(206,129,5)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1595.5" font-size="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_read (1 samples, 0.17%)</title><rect x="484.4" y="977" width="1.9" height="15.0" fill="rgb(239,58,53)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2657" width="2.0" height="15.0" fill="rgb(208,70,18)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2667.5" font-size="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.17%)</title><rect x="57.0" y="3521" width="2.0" height="15.0" fill="rgb(239,84,42)" rx="2" ry="2" />
<text text-anchor="" x="60.04" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2913" width="2.0" height="15.0" fill="rgb(240,200,47)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LShiftLNode::Value (1 samples, 0.17%)</title><rect x="184.5" y="3393" width="1.9" height="15.0" fill="rgb(209,90,23)" rx="2" ry="2" />
<text text-anchor="" x="187.45" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_unplugged (1 samples, 0.17%)</title><rect x="272.7" y="3345" width="1.9" height="15.0" fill="rgb(250,1,45)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3355.5" font-size="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/Gen:::visitApply (1 samples, 0.17%)</title><rect x="339.3" y="1073" width="2.0" height="15.0" fill="rgb(215,41,50)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1083.5" font-size="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.17%)</title><rect x="1186.1" y="3473" width="1.9" height="15.0" fill="rgb(251,60,5)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3483.5" font-size="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_reserve_inode_write (1 samples, 0.17%)</title><rect x="509.8" y="785" width="2.0" height="15.0" fill="rgb(254,62,43)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="795.5" font-size="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.17%)</title><rect x="306.0" y="1169" width="1.9" height="15.0" fill="rgb(225,226,0)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_sse2_unaligned_erms (1 samples, 0.17%)</title><rect x="445.1" y="1505" width="2.0" height="15.0" fill="rgb(253,175,0)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemNode::all_controls_dominate (1 samples, 0.17%)</title><rect x="188.4" y="3105" width="1.9" height="15.0" fill="rgb(241,157,50)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NTarjan::DFS (3 samples, 0.50%)</title><rect x="164.9" y="3425" width="5.8" height="15.0" fill="rgb(207,90,18)" rx="2" ry="2" />
<text text-anchor="" x="167.85" y="3435.5" font-size="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.17%)</title><rect x="190.3" y="3233" width="2.0" height="15.0" fill="rgb(222,34,0)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2897" width="2.0" height="15.0" fill="rgb(225,23,46)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NewInstance::declared_type (1 samples, 0.17%)</title><rect x="206.0" y="2929" width="2.0" height="15.0" fill="rgb(246,12,25)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="2939.5" font-size="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:::visitReturn (1 samples, 0.17%)</title><rect x="331.5" y="1169" width="1.9" height="15.0" fill="rgb(240,143,53)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1179.5" font-size="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::post_allocate_copy_removal (2 samples, 0.33%)</title><rect x="135.4" y="3441" width="4.0" height="15.0" fill="rgb(221,71,22)" rx="2" ry="2" />
<text text-anchor="" x="138.45" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3425" width="1.9" height="15.0" fill="rgb(227,80,14)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ComputeLinearScanOrder::compute_order (1 samples, 0.17%)</title><rect x="215.8" y="3393" width="2.0" height="15.0" fill="rgb(220,183,37)" rx="2" ry="2" />
<text text-anchor="" x="218.81" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.17%)</title><rect x="153.1" y="3393" width="1.9" height="15.0" fill="rgb(216,165,11)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_unplugged (2 samples, 0.33%)</title><rect x="276.6" y="3361" width="3.9" height="15.0" fill="rgb(217,79,27)" rx="2" ry="2" />
<text text-anchor="" x="279.58" y="3371.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="309.9" y="625" width="2.0" height="15.0" fill="rgb(248,126,52)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1457" width="49.0" height="15.0" fill="rgb(217,7,52)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1467.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>Parse::do_one_bytecode (1 samples, 0.17%)</title><rect x="190.3" y="2929" width="2.0" height="15.0" fill="rgb(206,109,9)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2939.5" font-size="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::do_collection (6 samples, 1.00%)</title><rect x="43.3" y="3473" width="11.8" height="15.0" fill="rgb(252,103,6)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3483.5" font-size="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/Lower:::visitBlock (2 samples, 0.33%)</title><rect x="317.7" y="1153" width="4.0" height="15.0" fill="rgb(210,162,53)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.17%)</title><rect x="29.6" y="3393" width="2.0" height="15.0" fill="rgb(243,52,36)" rx="2" ry="2" />
<text text-anchor="" x="32.60" y="3403.5" font-size="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_make_request (1 samples, 0.17%)</title><rect x="251.1" y="3233" width="2.0" height="15.0" fill="rgb(213,186,8)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3243.5" font-size="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.17%)</title><rect x="343.2" y="1089" width="2.0" height="15.0" fill="rgb(207,82,30)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1099.5" font-size="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 (5 samples, 0.83%)</title><rect x="31.6" y="3521" width="9.8" height="15.0" fill="rgb(214,177,11)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3531.5" font-size="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 (3 samples, 0.50%)</title><rect x="339.3" y="1217" width="5.9" height="15.0" fill="rgb(230,174,34)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_tr_flush_block (1 samples, 0.17%)</title><rect x="480.4" y="977" width="2.0" height="15.0" fill="rgb(211,147,53)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1377" width="715.4" height="15.0" fill="rgb(216,73,36)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1387.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/DeferredAttr:::attribSpeculative (1 samples, 0.17%)</title><rect x="311.9" y="737" width="1.9" height="15.0" fill="rgb(238,98,5)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1729" width="1.9" height="15.0" fill="rgb(250,110,35)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1739.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="331.5" y="993" width="1.9" height="15.0" fill="rgb(253,9,49)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1003.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="307.9" y="1169" width="2.0" height="15.0" fill="rgb(219,32,26)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="278.5" y="3265" width="2.0" height="15.0" fill="rgb(221,14,52)" rx="2" ry="2" />
<text text-anchor="" x="281.54" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1425" width="715.4" height="15.0" fill="rgb(246,150,16)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1435.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>PhaseIterGVN::transform_old (2 samples, 0.33%)</title><rect x="186.4" y="3441" width="3.9" height="15.0" fill="rgb(210,145,15)" rx="2" ry="2" />
<text text-anchor="" x="189.41" y="3451.5" font-size="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.17%)</title><rect x="327.5" y="1041" width="2.0" height="15.0" fill="rgb(246,135,10)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1051.5" font-size="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.17%)</title><rect x="190.3" y="2865" width="2.0" height="15.0" fill="rgb(217,200,37)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2875.5" font-size="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 (1 samples, 0.17%)</title><rect x="206.0" y="3009" width="2.0" height="15.0" fill="rgb(228,164,3)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3019.5" font-size="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/security/provider/ByteArrayAccess:::b2iLittle64 (1 samples, 0.17%)</title><rect x="362.8" y="1377" width="2.0" height="15.0" fill="rgb(219,91,26)" rx="2" ry="2" />
<text text-anchor="" x="365.82" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3073" width="2.0" height="15.0" fill="rgb(235,18,53)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[perf-82526.map] (1 samples, 0.17%)</title><rect x="300.1" y="497" width="2.0" height="15.0" fill="rgb(206,116,11)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (1 samples, 0.17%)</title><rect x="117.8" y="3393" width="2.0" height="15.0" fill="rgb(208,68,51)" rx="2" ry="2" />
<text text-anchor="" x="120.81" y="3403.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="993" width="1.9" height="15.0" fill="rgb(236,180,29)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2737" width="891.8" height="15.0" fill="rgb(208,220,6)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2747.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>LIR_Assembler::emit_slow_case_stubs (1 samples, 0.17%)</title><rect x="227.6" y="3409" width="1.9" height="15.0" fill="rgb(243,170,53)" rx="2" ry="2" />
<text text-anchor="" x="230.57" y="3419.5" font-size="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_code_epilog (1 samples, 0.17%)</title><rect x="227.6" y="3425" width="1.9" height="15.0" fill="rgb(220,149,22)" rx="2" ry="2" />
<text text-anchor="" x="230.57" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoader::load_classfile (1 samples, 0.17%)</title><rect x="27.6" y="3265" width="2.0" height="15.0" fill="rgb(234,47,21)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.33%)</title><rect x="474.6" y="977" width="3.9" height="15.0" fill="rgb(214,184,22)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeBytes (1 samples, 0.17%)</title><rect x="470.6" y="993" width="2.0" height="15.0" fill="rgb(214,183,32)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 1.83%)</title><rect x="445.1" y="1601" width="21.6" height="15.0" fill="rgb(220,120,7)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1611.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/parser/JavacParser:::term (1 samples, 0.17%)</title><rect x="300.1" y="1009" width="2.0" height="15.0" fill="rgb(243,55,53)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.17%)</title><rect x="12.0" y="3473" width="1.9" height="15.0" fill="rgb(229,83,5)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2241" width="2.0" height="15.0" fill="rgb(227,108,50)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::hash (1 samples, 0.17%)</title><rect x="186.4" y="3425" width="2.0" height="15.0" fill="rgb(207,83,47)" rx="2" ry="2" />
<text text-anchor="" x="189.41" y="3435.5" font-size="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.17%)</title><rect x="331.5" y="801" width="1.9" height="15.0" fill="rgb(228,21,38)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframe::new_vframe (1 samples, 0.17%)</title><rect x="55.1" y="3425" width="1.9" height="15.0" fill="rgb(232,30,31)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3435.5" font-size="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 (1 samples, 0.17%)</title><rect x="206.0" y="3089" width="2.0" height="15.0" fill="rgb(230,201,27)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3099.5" font-size="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_read_iter (1 samples, 0.17%)</title><rect x="486.3" y="881" width="2.0" height="15.0" fill="rgb(231,55,7)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3169" width="1.9" height="15.0" fill="rgb(226,216,19)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1569" width="80.3" height="15.0" fill="rgb(211,156,36)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1579.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_da_write_begin (1 samples, 0.17%)</title><rect x="502.0" y="849" width="2.0" height="15.0" fill="rgb(242,82,1)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="859.5" font-size="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$HasSameArgs:::visitMethodType (1 samples, 0.17%)</title><rect x="355.0" y="449" width="1.9" height="15.0" fill="rgb(243,200,3)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Infer:::instantiateMethod (1 samples, 0.17%)</title><rect x="331.5" y="609" width="1.9" height="15.0" fill="rgb(233,35,37)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.17%)</title><rect x="335.4" y="1089" width="1.9" height="15.0" fill="rgb(236,0,37)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vforkChild (1 samples, 0.17%)</title><rect x="1188.0" y="1313" width="2.0" height="15.0" fill="rgb(214,173,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1323.5" font-size="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.17%)</title><rect x="470.6" y="977" width="2.0" height="15.0" fill="rgb(219,34,18)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_UNIXProcess_forkAndExec (1 samples, 0.17%)</title><rect x="1188.0" y="1329" width="2.0" height="15.0" fill="rgb(208,29,27)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1339.5" font-size="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.17%)</title><rect x="39.4" y="3441" width="2.0" height="15.0" fill="rgb(221,79,20)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3451.5" font-size="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.17%)</title><rect x="355.0" y="833" width="1.9" height="15.0" fill="rgb(220,37,34)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="843.5" font-size="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.17%)</title><rect x="1186.1" y="3537" width="1.9" height="15.0" fill="rgb(221,206,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3547.5" font-size="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:::termRest (1 samples, 0.17%)</title><rect x="302.1" y="1169" width="1.9" height="15.0" fill="rgb(223,8,2)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3137" width="1.9" height="15.0" fill="rgb(244,147,49)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3147.5" font-size="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 (4 samples, 0.66%)</title><rect x="329.5" y="1249" width="7.8" height="15.0" fill="rgb(228,228,24)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>childProcess (1 samples, 0.17%)</title><rect x="1188.0" y="1297" width="2.0" height="15.0" fill="rgb(254,198,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_work_run (1 samples, 0.17%)</title><rect x="482.4" y="929" width="2.0" height="15.0" fill="rgb(237,46,31)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="939.5" font-size="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::elide_copy (1 samples, 0.17%)</title><rect x="137.4" y="3425" width="2.0" height="15.0" fill="rgb(254,186,44)" rx="2" ry="2" />
<text text-anchor="" x="140.41" y="3435.5" font-size="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_GetObjectField (1 samples, 0.17%)</title><rect x="1152.8" y="1009" width="1.9" height="15.0" fill="rgb(207,82,28)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" y="1019.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="356.9" y="1185" width="2.0" height="15.0" fill="rgb(239,223,35)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1195.5" font-size="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:::quicklyResolveMethod (1 samples, 0.17%)</title><rect x="313.8" y="833" width="2.0" height="15.0" fill="rgb(217,59,24)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="843.5" font-size="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 (2 samples, 0.33%)</title><rect x="1178.2" y="1025" width="4.0" height="15.0" fill="rgb(247,97,50)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.33%)</title><rect x="276.6" y="3297" width="3.9" height="15.0" fill="rgb(227,96,32)" rx="2" ry="2" />
<text text-anchor="" x="279.58" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IntervalWalker::walk_to (1 samples, 0.17%)</title><rect x="233.5" y="3393" width="1.9" height="15.0" fill="rgb(238,65,31)" rx="2" ry="2" />
<text text-anchor="" x="236.46" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2977" width="2.0" height="15.0" fill="rgb(234,24,34)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2987.5" font-size="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/Infer:::instantiateMethod (1 samples, 0.17%)</title><rect x="358.9" y="1089" width="2.0" height="15.0" fill="rgb(219,52,3)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1099.5" font-size="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.17%)</title><rect x="190.3" y="2577" width="2.0" height="15.0" fill="rgb(249,102,30)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2587.5" font-size="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_flush_plug_list (1 samples, 0.17%)</title><rect x="486.3" y="801" width="2.0" height="15.0" fill="rgb(244,204,44)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="811.5" font-size="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:::block (1 samples, 0.17%)</title><rect x="300.1" y="1057" width="2.0" height="15.0" fill="rgb(250,190,48)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1067.5" font-size="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.17%)</title><rect x="190.3" y="2849" width="2.0" height="15.0" fill="rgb(216,181,51)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2049" width="2.0" height="15.0" fill="rgb(210,48,54)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2769" width="891.8" height="15.0" fill="rgb(229,138,9)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1 samples, 0.17%)</title><rect x="1188.0" y="1233" width="2.0" height="15.0" fill="rgb(207,127,17)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.17%)</title><rect x="10.0" y="3489" width="2.0" height="15.0" fill="rgb(222,45,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3499.5" font-size="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/Gen:::visitIf (1 samples, 0.17%)</title><rect x="341.3" y="705" width="1.9" height="15.0" fill="rgb(227,125,25)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_newstat (1 samples, 0.17%)</title><rect x="251.1" y="3489" width="2.0" height="15.0" fill="rgb(237,95,23)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2625" width="2.0" height="15.0" fill="rgb(224,174,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2635.5" font-size="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.17%)</title><rect x="472.6" y="993" width="2.0" height="15.0" fill="rgb(228,100,41)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="1003.5" font-size="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.17%)</title><rect x="190.3" y="2625" width="2.0" height="15.0" fill="rgb(252,226,10)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2635.5" font-size="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.17%)</title><rect x="300.1" y="913" width="2.0" height="15.0" fill="rgb(231,209,25)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3393" width="1.9" height="15.0" fill="rgb(211,185,0)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3403.5" font-size="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.17%)</title><rect x="333.4" y="977" width="2.0" height="15.0" fill="rgb(242,62,34)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="987.5" font-size="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.17%)</title><rect x="349.1" y="1265" width="2.0" height="15.0" fill="rgb(234,64,25)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (7 samples, 1.16%)</title><rect x="347.1" y="2113" width="13.8" height="15.0" fill="rgb(249,27,6)" rx="2" ry="2" />
<text text-anchor="" x="350.14" y="2123.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3377" width="891.8" height="15.0" fill="rgb(246,171,45)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_file_write_iter (2 samples, 0.33%)</title><rect x="502.0" y="897" width="3.9" height="15.0" fill="rgb(208,184,33)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2833" width="891.8" height="15.0" fill="rgb(210,115,51)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2843.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>irq_exit (1 samples, 0.17%)</title><rect x="12.0" y="3489" width="1.9" height="15.0" fill="rgb(205,1,31)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3499.5" font-size="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 (4 samples, 0.66%)</title><rect x="309.9" y="1313" width="7.8" height="15.0" fill="rgb(245,174,7)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1323.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="961" width="3.9" height="15.0" fill="rgb(236,51,32)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3185" width="1.9" height="15.0" fill="rgb(209,43,28)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3195.5" font-size="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$4:::create (1 samples, 0.17%)</title><rect x="294.2" y="1665" width="2.0" height="15.0" fill="rgb(222,95,22)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1675.5" font-size="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.17%)</title><rect x="472.6" y="929" width="2.0" height="15.0" fill="rgb(219,178,19)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="939.5" font-size="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_read (4 samples, 0.66%)</title><rect x="1162.6" y="1025" width="7.8" height="15.0" fill="rgb(247,49,6)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1035.5" font-size="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.17%)</title><rect x="470.6" y="961" width="2.0" height="15.0" fill="rgb(245,144,11)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="971.5" font-size="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.17%)</title><rect x="206.0" y="3153" width="2.0" height="15.0" fill="rgb(215,201,1)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3163.5" font-size="12" 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.33%)</title><rect x="360.9" y="1633" width="3.9" height="15.0" fill="rgb(251,99,27)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1643.5" font-size="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:::term1 (1 samples, 0.17%)</title><rect x="300.1" y="993" width="2.0" height="15.0" fill="rgb(252,154,4)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3345" width="2.0" height="15.0" fill="rgb(207,218,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3355.5" font-size="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.17%)</title><rect x="356.9" y="945" width="2.0" height="15.0" fill="rgb(226,216,9)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3185" width="1.9" height="15.0" fill="rgb(211,229,12)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3195.5" font-size="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.17%)</title><rect x="356.9" y="1057" width="2.0" height="15.0" fill="rgb(229,145,28)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1067.5" font-size="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.17%)</title><rect x="313.8" y="1105" width="2.0" height="15.0" fill="rgb(206,115,50)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1745" width="715.4" height="15.0" fill="rgb(252,17,19)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1755.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/code/Type$MethodType:::accept (1 samples, 0.17%)</title><rect x="355.0" y="465" width="1.9" height="15.0" fill="rgb(206,191,40)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (3 samples, 0.50%)</title><rect x="284.4" y="3313" width="5.9" height="15.0" fill="rgb(217,87,9)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3323.5" font-size="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.17%)</title><rect x="484.4" y="913" width="1.9" height="15.0" fill="rgb(249,148,11)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1937" width="2.0" height="15.0" fill="rgb(232,194,21)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1947.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="327.5" y="1057" width="2.0" height="15.0" fill="rgb(231,155,12)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3457" width="1.9" height="15.0" fill="rgb(244,225,2)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3121" width="891.8" height="15.0" fill="rgb(209,85,35)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3131.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>SimpleThresholdPolicy::compile (1 samples, 0.17%)</title><rect x="468.7" y="657" width="1.9" height="15.0" fill="rgb(247,66,10)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/Scanner:::nextToken (1 samples, 0.17%)</title><rect x="300.1" y="433" width="2.0" height="15.0" fill="rgb(220,146,2)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1921" width="2.0" height="15.0" fill="rgb(225,46,54)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1931.5" font-size="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$JCWhileLoop:::accept (1 samples, 0.17%)</title><rect x="306.0" y="1105" width="1.9" height="15.0" fill="rgb(250,139,43)" rx="2" ry="2" />
<text text-anchor="" x="308.98" y="1115.5" font-size="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.17%)</title><rect x="247.2" y="3601" width="1.9" height="15.0" fill="rgb(230,186,35)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2481" width="2.0" height="15.0" fill="rgb(252,108,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2491.5" font-size="12" 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_io_FileOutputStream_writeBytes (3 samples, 0.50%)</title><rect x="1172.4" y="1073" width="5.8" height="15.0" fill="rgb(254,54,33)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1441" width="11.8" height="15.0" fill="rgb(208,83,41)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1451.5" font-size="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.17%)</title><rect x="39.4" y="3217" width="2.0" height="15.0" fill="rgb(209,74,29)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="325.6" y="1201" width="1.9" height="15.0" fill="rgb(218,189,19)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1211.5" font-size="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.17%)</title><rect x="300.1" y="1153" width="2.0" height="15.0" fill="rgb(249,177,20)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1163.5" font-size="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_run_queue (3 samples, 0.50%)</title><rect x="490.2" y="753" width="5.9" height="15.0" fill="rgb(209,170,5)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="763.5" font-size="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$JCImport:::accept (1 samples, 0.17%)</title><rect x="325.6" y="1233" width="1.9" height="15.0" fill="rgb(213,49,52)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1243.5" font-size="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 (2 samples, 0.33%)</title><rect x="1146.9" y="881" width="3.9" height="15.0" fill="rgb(247,194,30)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1441" width="1.9" height="15.0" fill="rgb(252,70,34)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1451.5" font-size="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 (4 samples, 0.66%)</title><rect x="329.5" y="1265" width="7.8" height="15.0" fill="rgb(246,66,52)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1275.5" font-size="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 (14 samples, 2.33%)</title><rect x="159.0" y="3457" width="27.4" height="15.0" fill="rgb(235,15,41)" rx="2" ry="2" />
<text text-anchor="" x="161.97" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >P..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_cache_readahead (3 samples, 0.50%)</title><rect x="284.4" y="3393" width="5.9" height="15.0" fill="rgb(208,174,12)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3403.5" font-size="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 (1 samples, 0.17%)</title><rect x="206.0" y="3169" width="2.0" height="15.0" fill="rgb(210,115,50)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1409" width="1.9" height="15.0" fill="rgb(227,27,22)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1419.5" font-size="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.17%)</title><rect x="309.9" y="801" width="2.0" height="15.0" fill="rgb(245,81,14)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="811.5" font-size="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:::getEnclosingType (1 samples, 0.17%)</title><rect x="311.9" y="33" width="1.9" height="15.0" fill="rgb(206,134,10)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.17%)</title><rect x="327.5" y="1233" width="2.0" height="15.0" fill="rgb(215,106,36)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1243.5" font-size="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.17%)</title><rect x="333.4" y="801" width="2.0" height="15.0" fill="rgb(254,204,24)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="811.5" font-size="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:::writeClassFile (1 samples, 0.17%)</title><rect x="353.0" y="1313" width="2.0" height="15.0" fill="rgb(226,221,38)" rx="2" ry="2" />
<text text-anchor="" x="356.02" y="1323.5" font-size="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$14:::visitClassType (1 samples, 0.17%)</title><rect x="311.9" y="129" width="1.9" height="15.0" fill="rgb(207,220,19)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname_flags (1 samples, 0.17%)</title><rect x="247.2" y="3473" width="1.9" height="15.0" fill="rgb(248,47,22)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3483.5" font-size="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/Gen:::appendStrings (1 samples, 0.17%)</title><rect x="339.3" y="993" width="2.0" height="15.0" fill="rgb(235,61,53)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1003.5" font-size="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.17%)</title><rect x="247.2" y="3489" width="1.9" height="15.0" fill="rgb(211,65,11)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1409" width="49.0" height="15.0" fill="rgb(244,23,3)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1419.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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.17%)</title><rect x="307.9" y="1249" width="2.0" height="15.0" fill="rgb(216,163,33)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1259.5" font-size="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/Scope:::lookup (1 samples, 0.17%)</title><rect x="325.6" y="1137" width="1.9" height="15.0" fill="rgb(232,50,31)" rx="2" ry="2" />
<text text-anchor="" x="328.58" y="1147.5" font-size="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:::getManifest (1 samples, 0.17%)</title><rect x="351.1" y="1057" width="1.9" height="15.0" fill="rgb(212,48,9)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (1 samples, 0.17%)</title><rect x="272.7" y="3281" width="1.9" height="15.0" fill="rgb(236,17,44)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3291.5" font-size="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.17%)</title><rect x="194.3" y="3505" width="1.9" height="15.0" fill="rgb(224,208,32)" rx="2" ry="2" />
<text text-anchor="" x="197.25" y="3515.5" font-size="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 (3 samples, 0.50%)</title><rect x="274.6" y="3409" width="5.9" height="15.0" fill="rgb(251,10,20)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3419.5" font-size="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/Gen:::genArgs (1 samples, 0.17%)</title><rect x="339.3" y="1057" width="2.0" height="15.0" fill="rgb(235,163,10)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3313" width="891.8" height="15.0" fill="rgb(241,39,25)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.17%)</title><rect x="12.0" y="3505" width="1.9" height="15.0" fill="rgb(226,216,23)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3515.5" font-size="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.17%)</title><rect x="313.8" y="1153" width="2.0" height="15.0" fill="rgb(234,137,27)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1163.5" font-size="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.17%)</title><rect x="280.5" y="3393" width="2.0" height="15.0" fill="rgb(243,220,13)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="478.5" y="1169" width="1.9" height="15.0" fill="rgb(217,46,3)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1179.5" font-size="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.17%)</title><rect x="355.0" y="1041" width="1.9" height="15.0" fill="rgb(222,167,36)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1051.5" font-size="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.17%)</title><rect x="21.8" y="3505" width="1.9" height="15.0" fill="rgb(225,229,42)" rx="2" ry="2" />
<text text-anchor="" x="24.76" y="3515.5" font-size="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 (4 samples, 0.66%)</title><rect x="511.8" y="865" width="7.8" height="15.0" fill="rgb(241,15,52)" rx="2" ry="2" />
<text text-anchor="" x="514.79" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_special (1 samples, 0.17%)</title><rect x="21.8" y="3521" width="1.9" height="15.0" fill="rgb(244,82,28)" rx="2" ry="2" />
<text text-anchor="" x="24.76" y="3531.5" font-size="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.17%)</title><rect x="1184.1" y="3521" width="2.0" height="15.0" fill="rgb(245,213,52)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3409" width="2.0" height="15.0" fill="rgb(237,46,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptspi_qcmd (2 samples, 0.33%)</title><rect x="286.4" y="3265" width="3.9" height="15.0" fill="rgb(215,151,10)" rx="2" ry="2" />
<text text-anchor="" x="289.38" y="3275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3313" width="1.9" height="15.0" fill="rgb(220,206,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3137" width="891.8" height="15.0" fill="rgb(242,171,45)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3147.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/jvm/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="737" width="1.9" height="15.0" fill="rgb(212,213,2)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="747.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="343.2" y="865" width="2.0" height="15.0" fill="rgb(231,226,21)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1953" width="2.0" height="15.0" fill="rgb(226,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1963.5" font-size="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:::checkMethod (1 samples, 0.17%)</title><rect x="358.9" y="1121" width="2.0" height="15.0" fill="rgb(242,104,24)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1131.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="897" width="1.9" height="15.0" fill="rgb(212,155,14)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="907.5" font-size="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 (3 samples, 0.50%)</title><rect x="1164.5" y="881" width="5.9" height="15.0" fill="rgb(243,226,52)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="891.5" font-size="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.17%)</title><rect x="329.5" y="1153" width="2.0" height="15.0" fill="rgb(205,203,1)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1163.5" font-size="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.17%)</title><rect x="311.9" y="657" width="1.9" height="15.0" fill="rgb(210,172,12)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (1 samples, 0.17%)</title><rect x="272.7" y="3329" width="1.9" height="15.0" fill="rgb(209,10,43)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2977" width="891.8" height="15.0" fill="rgb(227,73,48)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2987.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/parser/UnicodeReader:::putChar (1 samples, 0.17%)</title><rect x="302.1" y="1025" width="1.9" height="15.0" fill="rgb(207,40,45)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sg_free_table_chained (1 samples, 0.17%)</title><rect x="12.0" y="3361" width="1.9" height="15.0" fill="rgb(243,151,9)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3371.5" font-size="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.17%)</title><rect x="39.4" y="3409" width="2.0" height="15.0" fill="rgb(223,46,49)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3419.5" font-size="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:::visitNewClass (1 samples, 0.17%)</title><rect x="313.8" y="897" width="2.0" height="15.0" fill="rgb(221,196,42)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (364 samples, 60.47%)</title><rect x="468.7" y="1281" width="713.5" height="15.0" fill="rgb(248,129,1)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1291.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>scsi_end_request (1 samples, 0.17%)</title><rect x="12.0" y="3393" width="1.9" height="15.0" fill="rgb(213,92,51)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3403.5" font-size="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.17%)</title><rect x="335.4" y="737" width="1.9" height="15.0" fill="rgb(208,39,9)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1617" width="11.8" height="15.0" fill="rgb(214,15,16)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1627.5" font-size="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.17%)</title><rect x="1188.0" y="2129" width="2.0" height="15.0" fill="rgb(242,34,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3217" width="1.9" height="15.0" fill="rgb(252,171,47)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>return_from_SYSCALL_64 (1 samples, 0.17%)</title><rect x="1188.0" y="1249" width="2.0" height="15.0" fill="rgb(250,228,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1259.5" font-size="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.17%)</title><rect x="309.9" y="977" width="2.0" height="15.0" fill="rgb(254,98,19)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="987.5" font-size="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$1:::close (1 samples, 0.17%)</title><rect x="482.4" y="1025" width="2.0" height="15.0" fill="rgb(217,216,53)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1521" width="715.4" height="15.0" fill="rgb(219,41,25)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1531.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>[libpthread-2.24.so] (1 samples, 0.17%)</title><rect x="486.3" y="993" width="2.0" height="15.0" fill="rgb(233,117,38)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1537" width="11.8" height="15.0" fill="rgb(237,176,37)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1547.5" font-size="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::Split (12 samples, 1.99%)</title><rect x="96.2" y="3441" width="23.6" height="15.0" fill="rgb(222,93,12)" rx="2" ry="2" />
<text text-anchor="" x="99.25" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >P..</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.17%)</title><rect x="327.5" y="1265" width="2.0" height="15.0" fill="rgb(236,142,7)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1275.5" font-size="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.17%)</title><rect x="333.4" y="1009" width="2.0" height="15.0" fill="rgb(212,6,48)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="1019.5" font-size="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.50%)</title><rect x="1172.4" y="913" width="5.8" height="15.0" fill="rgb(210,79,14)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="923.5" font-size="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::getfreeset (1 samples, 0.17%)</title><rect x="147.2" y="3409" width="2.0" height="15.0" fill="rgb(216,168,16)" rx="2" ry="2" />
<text text-anchor="" x="150.21" y="3419.5" font-size="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.17%)</title><rect x="190.3" y="2785" width="2.0" height="15.0" fill="rgb(229,147,15)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2795.5" font-size="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.17%)</title><rect x="37.4" y="3473" width="2.0" height="15.0" fill="rgb(254,61,26)" rx="2" ry="2" />
<text text-anchor="" x="40.44" y="3483.5" font-size="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$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="311.9" y="929" width="1.9" height="15.0" fill="rgb(210,39,24)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1425" width="49.0" height="15.0" fill="rgb(205,100,31)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1435.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>Lcom/sun/tools/javac/comp/Resolve$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="335.4" y="1025" width="1.9" height="15.0" fill="rgb(216,156,0)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1035.5" font-size="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.17%)</title><rect x="309.9" y="1185" width="2.0" height="15.0" fill="rgb(207,134,39)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1195.5" font-size="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.17%)</title><rect x="206.0" y="3025" width="2.0" height="15.0" fill="rgb(254,227,50)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3035.5" font-size="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/collections/map/AbstractReferenceMap:::get (1 samples, 0.17%)</title><rect x="478.5" y="1121" width="1.9" height="15.0" fill="rgb(205,196,20)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1131.5" font-size="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 (2 samples, 0.33%)</title><rect x="355.0" y="1217" width="3.9" height="15.0" fill="rgb(208,33,48)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_fault (1 samples, 0.17%)</title><rect x="23.7" y="3361" width="2.0" height="15.0" fill="rgb(221,152,11)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_charge (1 samples, 0.17%)</title><rect x="1174.3" y="801" width="2.0" height="15.0" fill="rgb(222,144,17)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="811.5" font-size="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 (4 samples, 0.66%)</title><rect x="1162.6" y="993" width="7.8" height="15.0" fill="rgb(245,12,35)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1003.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="673" width="1.9" height="15.0" fill="rgb(246,51,4)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (2 samples, 0.33%)</title><rect x="260.9" y="3377" width="3.9" height="15.0" fill="rgb(232,83,39)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3387.5" font-size="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.17%)</title><rect x="323.6" y="1249" width="2.0" height="15.0" fill="rgb(232,13,38)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bh_wbc (1 samples, 0.17%)</title><rect x="251.1" y="3265" width="2.0" height="15.0" fill="rgb(218,114,17)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3275.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1697" width="715.4" height="15.0" fill="rgb(209,226,53)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/reflect/NativeMethodAccessorImpl:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::findMethod (1 samples, 0.17%)</title><rect x="343.2" y="849" width="2.0" height="15.0" fill="rgb(231,25,27)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="859.5" font-size="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:::attribType (1 samples, 0.17%)</title><rect x="323.6" y="1297" width="2.0" height="15.0" fill="rgb(221,180,41)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1307.5" font-size="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.17%)</title><rect x="39.4" y="3281" width="2.0" height="15.0" fill="rgb(231,200,29)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2657" width="891.8" height="15.0" fill="rgb(224,56,10)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2667.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>__blk_run_queue (1 samples, 0.17%)</title><rect x="484.4" y="769" width="1.9" height="15.0" fill="rgb(217,87,53)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="779.5" font-size="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 (4 samples, 0.66%)</title><rect x="309.9" y="1265" width="7.8" height="15.0" fill="rgb(231,134,51)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next (1 samples, 0.17%)</title><rect x="90.4" y="3425" width="1.9" height="15.0" fill="rgb(221,103,10)" rx="2" ry="2" />
<text text-anchor="" x="93.37" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2593" width="2.0" height="15.0" fill="rgb(211,55,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2603.5" font-size="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 (4 samples, 0.66%)</title><rect x="337.3" y="1345" width="7.9" height="15.0" fill="rgb(233,46,23)" rx="2" ry="2" />
<text text-anchor="" x="340.34" y="1355.5" font-size="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/Code:::emitStackMapFrame (1 samples, 0.17%)</title><rect x="341.3" y="321" width="1.9" height="15.0" fill="rgb(216,50,47)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.17%)</title><rect x="307.9" y="1105" width="2.0" height="15.0" fill="rgb(248,219,46)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1115.5" font-size="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::Simplify (4 samples, 0.66%)</title><rect x="88.4" y="3441" width="7.8" height="15.0" fill="rgb(220,55,36)" rx="2" ry="2" />
<text text-anchor="" x="91.41" y="3451.5" font-size="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:::checkMethod (1 samples, 0.17%)</title><rect x="358.9" y="1137" width="2.0" height="15.0" fill="rgb(217,74,27)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1585" width="80.3" height="15.0" fill="rgb(215,15,23)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1595.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>Parse::do_one_block (1 samples, 0.17%)</title><rect x="190.3" y="3329" width="2.0" height="15.0" fill="rgb(240,52,0)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2609" width="2.0" height="15.0" fill="rgb(239,22,12)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2619.5" font-size="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.17%)</title><rect x="190.3" y="3041" width="2.0" height="15.0" fill="rgb(221,134,23)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3051.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="657" width="1.9" height="15.0" fill="rgb(205,215,30)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DirtyCardToOopClosure::do_MemRegion (1 samples, 0.17%)</title><rect x="45.3" y="3361" width="1.9" height="15.0" fill="rgb(250,52,16)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3371.5" font-size="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.17%)</title><rect x="1174.3" y="897" width="2.0" height="15.0" fill="rgb(232,186,21)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="907.5" font-size="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.17%)</title><rect x="1188.0" y="1857" width="2.0" height="15.0" fill="rgb(223,219,20)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (1 samples, 0.17%)</title><rect x="484.4" y="865" width="1.9" height="15.0" fill="rgb(235,121,44)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagevec_lookup (1 samples, 0.17%)</title><rect x="476.5" y="801" width="2.0" height="15.0" fill="rgb(229,2,23)" rx="2" ry="2" />
<text text-anchor="" x="479.51" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2961" width="891.8" height="15.0" fill="rgb(239,95,5)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2971.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/Resolve:::resolveInternalMethod (1 samples, 0.17%)</title><rect x="343.2" y="929" width="2.0" height="15.0" fill="rgb(227,64,6)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2641" width="891.8" height="15.0" fill="rgb(238,162,33)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2651.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:::selectSym (1 samples, 0.17%)</title><rect x="335.4" y="1057" width="1.9" height="15.0" fill="rgb(215,12,54)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1067.5" font-size="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::gen_process_roots (2 samples, 0.33%)</title><rect x="43.3" y="3441" width="3.9" height="15.0" fill="rgb(239,37,20)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2065" width="54.8" height="15.0" fill="rgb(232,10,24)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Method:::invoke (6 samples, 1.00%)</title><rect x="349.1" y="1745" width="11.8" height="15.0" fill="rgb(226,227,32)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1755.5" font-size="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.17%)</title><rect x="355.0" y="1089" width="1.9" height="15.0" fill="rgb(244,36,52)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1099.5" font-size="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$UndetVar:::addBound (1 samples, 0.17%)</title><rect x="331.5" y="545" width="1.9" height="15.0" fill="rgb(219,117,25)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.17%)</title><rect x="190.3" y="3473" width="2.0" height="15.0" fill="rgb(206,183,7)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3249" width="2.0" height="15.0" fill="rgb(244,229,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::rematerialize (1 samples, 0.17%)</title><rect x="76.6" y="3441" width="2.0" height="15.0" fill="rgb(240,136,1)" rx="2" ry="2" />
<text text-anchor="" x="79.64" y="3451.5" font-size="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.17%)</title><rect x="1186.1" y="3601" width="1.9" height="15.0" fill="rgb(246,143,25)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3611.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1649" width="715.4" height="15.0" fill="rgb(214,155,46)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1659.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 (455 samples, 75.58%)</title><rect x="292.3" y="3329" width="891.8" height="15.0" fill="rgb(232,48,0)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3339.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.17%)</title><rect x="292.3" y="1617" width="1.9" height="15.0" fill="rgb(227,108,18)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1627.5" font-size="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.17%)</title><rect x="300.1" y="689" width="2.0" height="15.0" fill="rgb(223,198,31)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="349.1" y="1329" width="2.0" height="15.0" fill="rgb(219,74,46)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1339.5" font-size="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:::block (1 samples, 0.17%)</title><rect x="300.1" y="1169" width="2.0" height="15.0" fill="rgb(247,57,17)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1179.5" font-size="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/ClassGeneratorBackedInstantiator:::newInstance (1 samples, 0.17%)</title><rect x="478.5" y="1137" width="1.9" height="15.0" fill="rgb(232,61,28)" rx="2" ry="2" />
<text text-anchor="" x="481.47" y="1147.5" font-size="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 (9 samples, 1.50%)</title><rect x="196.2" y="3361" width="17.7" height="15.0" fill="rgb(230,64,39)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3371.5" font-size="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__tree (2 samples, 0.33%)</title><rect x="180.5" y="3441" width="4.0" height="15.0" fill="rgb(233,35,41)" rx="2" ry="2" />
<text text-anchor="" x="183.53" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="2049" width="11.8" height="15.0" fill="rgb(242,82,15)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (365 samples, 60.63%)</title><rect x="468.7" y="1809" width="715.4" height="15.0" fill="rgb(214,33,2)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1819.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/Lower:::visitMethodDefInternal (2 samples, 0.33%)</title><rect x="317.7" y="1217" width="4.0" height="15.0" fill="rgb(229,31,24)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1227.5" font-size="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.17%)</title><rect x="39.4" y="3361" width="2.0" height="15.0" fill="rgb(225,126,20)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3371.5" font-size="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.17%)</title><rect x="335.4" y="801" width="1.9" height="15.0" fill="rgb(232,77,43)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_sun_management_MemoryPoolImpl_getCollectionUsage0 (1 samples, 0.17%)</title><rect x="17.8" y="3569" width="2.0" height="15.0" fill="rgb(232,158,1)" rx="2" ry="2" />
<text text-anchor="" x="20.84" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjArrayKlass::oop_oop_iterate_nv_m (1 samples, 0.17%)</title><rect x="45.3" y="3313" width="1.9" height="15.0" fill="rgb(251,106,10)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3323.5" font-size="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.17%)</title><rect x="309.9" y="1137" width="2.0" height="15.0" fill="rgb(253,110,1)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1147.5" font-size="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.17%)</title><rect x="486.3" y="817" width="2.0" height="15.0" fill="rgb(242,190,47)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="827.5" font-size="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 (5 samples, 0.83%)</title><rect x="274.6" y="3489" width="9.8" height="15.0" fill="rgb(254,135,34)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3499.5" font-size="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 (2 samples, 0.33%)</title><rect x="355.0" y="1249" width="3.9" height="15.0" fill="rgb(244,143,5)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1259.5" font-size="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/Gen:::genMethod (1 samples, 0.17%)</title><rect x="307.9" y="1265" width="2.0" height="15.0" fill="rgb(211,208,13)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1275.5" font-size="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/operations/DefaultBuildOperationQueue$WorkerRunnable:::access$500 (1 samples, 0.17%)</title><rect x="1186.1" y="3297" width="1.9" height="15.0" fill="rgb(209,34,52)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3307.5" font-size="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.17%)</title><rect x="272.7" y="3393" width="1.9" height="15.0" fill="rgb(216,59,50)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3403.5" font-size="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.17%)</title><rect x="39.4" y="3329" width="2.0" height="15.0" fill="rgb(238,130,48)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DefNewGeneration::copy_to_survivor_space (1 samples, 0.17%)</title><rect x="49.2" y="3377" width="2.0" height="15.0" fill="rgb(253,28,29)" rx="2" ry="2" />
<text text-anchor="" x="52.20" y="3387.5" font-size="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/Gen:::genCond (1 samples, 0.17%)</title><rect x="341.3" y="513" width="1.9" height="15.0" fill="rgb(217,128,21)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.33%)</title><rect x="360.9" y="1553" width="3.9" height="15.0" fill="rgb(219,20,14)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1563.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="3489" width="891.8" height="15.0" fill="rgb(227,86,2)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_helper</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.17%)</title><rect x="57.0" y="3473" width="2.0" height="15.0" fill="rgb(226,219,32)" rx="2" ry="2" />
<text text-anchor="" x="60.04" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (3 samples, 0.50%)</title><rect x="1164.5" y="913" width="5.9" height="15.0" fill="rgb(247,141,12)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseBlockLayout::reorder_traces (1 samples, 0.17%)</title><rect x="70.8" y="3441" width="1.9" height="15.0" fill="rgb(246,103,38)" rx="2" ry="2" />
<text text-anchor="" x="73.76" y="3451.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="343.2" y="913" width="2.0" height="15.0" fill="rgb(242,209,24)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3457" width="2.0" height="15.0" fill="rgb(218,34,4)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3467.5" font-size="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/Gen:::visitBlock (1 samples, 0.17%)</title><rect x="307.9" y="1201" width="2.0" height="15.0" fill="rgb(232,170,4)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3073" width="891.8" height="15.0" fill="rgb(206,85,46)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3083.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.17%)</title><rect x="468.7" y="833" width="1.9" height="15.0" fill="rgb(210,163,35)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="843.5" font-size="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_cache_async_readahead (3 samples, 0.50%)</title><rect x="1164.5" y="929" width="5.9" height="15.0" fill="rgb(212,24,49)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 1.83%)</title><rect x="445.1" y="1633" width="21.6" height="15.0" fill="rgb(224,164,7)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1643.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.17%)</title><rect x="1186.1" y="3489" width="1.9" height="15.0" fill="rgb(220,141,18)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3499.5" font-size="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:::findMethodInScope (1 samples, 0.17%)</title><rect x="311.9" y="865" width="1.9" height="15.0" fill="rgb(211,212,51)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseBlockLayout::PhaseBlockLayout (1 samples, 0.17%)</title><rect x="70.8" y="3457" width="1.9" height="15.0" fill="rgb(250,200,19)" rx="2" ry="2" />
<text text-anchor="" x="73.76" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2225" width="2.0" height="15.0" fill="rgb(235,49,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2235.5" font-size="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$HasSameArgs:::visitMethodType (1 samples, 0.17%)</title><rect x="355.0" y="433" width="1.9" height="15.0" fill="rgb(244,219,24)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (2 samples, 0.33%)</title><rect x="360.9" y="1521" width="3.9" height="15.0" fill="rgb(236,184,14)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3185" width="891.8" height="15.0" fill="rgb(223,66,14)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3195.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:::visitExec (1 samples, 0.17%)</title><rect x="311.9" y="1073" width="1.9" height="15.0" fill="rgb(233,122,5)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1083.5" font-size="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.17%)</title><rect x="300.1" y="545" width="2.0" height="15.0" fill="rgb(250,227,45)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/TreeScanner:::scan (1 samples, 0.17%)</title><rect x="315.8" y="1233" width="1.9" height="15.0" fill="rgb(206,165,44)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCCP::analyze (1 samples, 0.17%)</title><rect x="157.0" y="3457" width="2.0" height="15.0" fill="rgb(239,204,14)" rx="2" ry="2" />
<text text-anchor="" x="160.01" y="3467.5" font-size="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 (5 samples, 0.83%)</title><rect x="1162.6" y="1089" width="9.8" height="15.0" fill="rgb(225,148,35)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1099.5" font-size="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.50%)</title><rect x="255.0" y="3441" width="5.9" height="15.0" fill="rgb(208,40,45)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3451.5" font-size="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 (5 samples, 0.83%)</title><rect x="31.6" y="3537" width="9.8" height="15.0" fill="rgb(252,209,7)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3547.5" font-size="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/Lower:::translate (1 samples, 0.17%)</title><rect x="319.7" y="1009" width="2.0" height="15.0" fill="rgb(207,44,10)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1019.5" font-size="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.17%)</title><rect x="311.9" y="401" width="1.9" height="15.0" fill="rgb(246,223,4)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.17%)</title><rect x="39.4" y="3377" width="2.0" height="15.0" fill="rgb(217,45,19)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2993" width="891.8" height="15.0" fill="rgb(221,95,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3003.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 (365 samples, 60.63%)</title><rect x="468.7" y="1857" width="715.4" height="15.0" fill="rgb(240,31,16)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCIf:::accept (1 samples, 0.17%)</title><rect x="341.3" y="721" width="1.9" height="15.0" fill="rgb(246,23,41)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 1.66%)</title><rect x="1162.6" y="1169" width="19.6" height="15.0" fill="rgb(218,97,32)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2145" width="891.8" height="15.0" fill="rgb(247,164,37)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2155.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>nmethod::cleanup_inline_caches (1 samples, 0.17%)</title><rect x="194.3" y="3457" width="1.9" height="15.0" fill="rgb(205,103,16)" rx="2" ry="2" />
<text text-anchor="" x="197.25" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2577" width="2.0" height="15.0" fill="rgb(208,64,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2587.5" font-size="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 (2 samples, 0.33%)</title><rect x="360.9" y="1425" width="3.9" height="15.0" fill="rgb(247,89,42)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1435.5" font-size="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/FileDescriptor:::closeAll (1 samples, 0.17%)</title><rect x="482.4" y="1041" width="2.0" height="15.0" fill="rgb(246,31,52)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1051.5" font-size="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:::visitNewClass (1 samples, 0.17%)</title><rect x="309.9" y="785" width="2.0" height="15.0" fill="rgb(247,101,48)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="795.5" font-size="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.17%)</title><rect x="294.2" y="1729" width="2.0" height="15.0" fill="rgb(224,137,13)" rx="2" ry="2" />
<text text-anchor="" x="297.22" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2305" width="2.0" height="15.0" fill="rgb(232,56,0)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2315.5" font-size="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$4:::argumentsAcceptable (1 samples, 0.17%)</title><rect x="311.9" y="817" width="1.9" height="15.0" fill="rgb(252,159,34)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1681" width="1.9" height="15.0" fill="rgb(206,127,14)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1691.5" font-size="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 (1 samples, 0.17%)</title><rect x="1148.8" y="769" width="2.0" height="15.0" fill="rgb(238,99,54)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="779.5" font-size="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 (41 samples, 6.81%)</title><rect x="364.8" y="1425" width="80.3" height="15.0" fill="rgb(237,174,17)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genExpr (1 samples, 0.17%)</title><rect x="343.2" y="1105" width="2.0" height="15.0" fill="rgb(246,101,10)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1115.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="311.9" y="417" width="1.9" height="15.0" fill="rgb(213,105,53)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::final_graph_reshaping_walk (3 samples, 0.50%)</title><rect x="149.2" y="3441" width="5.8" height="15.0" fill="rgb(213,220,21)" rx="2" ry="2" />
<text text-anchor="" x="152.17" y="3451.5" font-size="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/Gen:::genStat (3 samples, 0.50%)</title><rect x="339.3" y="1169" width="5.9" height="15.0" fill="rgb(224,112,49)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1179.5" font-size="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 (455 samples, 75.58%)</title><rect x="292.3" y="2689" width="891.8" height="15.0" fill="rgb(220,9,26)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IR::eliminate_null_checks (3 samples, 0.50%)</title><rect x="217.8" y="3425" width="5.9" height="15.0" fill="rgb(237,155,21)" rx="2" ry="2" />
<text text-anchor="" x="220.77" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1361" width="49.0" height="15.0" fill="rgb(209,9,12)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1371.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 (26 samples, 4.32%)</title><rect x="296.2" y="1697" width="50.9" height="15.0" fill="rgb(227,206,1)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JVM_I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2289" width="891.8" height="15.0" fill="rgb(232,65,27)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2299.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/parser/JavacParser:::term2 (1 samples, 0.17%)</title><rect x="300.1" y="881" width="2.0" height="15.0" fill="rgb(223,37,19)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___execve (1 samples, 0.17%)</title><rect x="1188.0" y="1265" width="2.0" height="15.0" fill="rgb(235,112,44)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1275.5" font-size="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_IRQ (2 samples, 0.33%)</title><rect x="1146.9" y="945" width="3.9" height="15.0" fill="rgb(238,133,42)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_option_value&lt;bool&gt; (1 samples, 0.17%)</title><rect x="202.1" y="3201" width="2.0" height="15.0" fill="rgb(215,189,45)" rx="2" ry="2" />
<text text-anchor="" x="205.09" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="27.6" y="3457" width="2.0" height="15.0" fill="rgb(222,34,24)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3467.5" font-size="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:::parseStatement (1 samples, 0.17%)</title><rect x="300.1" y="769" width="2.0" height="15.0" fill="rgb(248,122,5)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>as_ValueType (1 samples, 0.17%)</title><rect x="198.2" y="3233" width="1.9" height="15.0" fill="rgb(247,228,0)" rx="2" ry="2" />
<text text-anchor="" x="201.17" y="3243.5" font-size="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.17%)</title><rect x="472.6" y="897" width="2.0" height="15.0" fill="rgb(229,32,36)" rx="2" ry="2" />
<text text-anchor="" x="475.59" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82526/82535 (26 samples, 4.32%)</title><rect x="196.2" y="3617" width="51.0" height="15.0" fill="rgb(235,178,14)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3627.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>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3377" width="1.9" height="15.0" fill="rgb(235,186,23)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3387.5" font-size="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 (10 samples, 1.66%)</title><rect x="500.0" y="1041" width="19.6" height="15.0" fill="rgb(229,161,47)" rx="2" ry="2" />
<text text-anchor="" x="503.03" y="1051.5" font-size="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 (8 samples, 1.33%)</title><rect x="484.4" y="1041" width="15.6" height="15.0" fill="rgb(232,81,42)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2897" width="891.8" height="15.0" fill="rgb(253,86,47)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2907.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/Resolve:::lookupMethod (1 samples, 0.17%)</title><rect x="309.9" y="689" width="2.0" height="15.0" fill="rgb(215,64,19)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1297" width="1.9" height="15.0" fill="rgb(214,121,7)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1307.5" font-size="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 (4 samples, 0.66%)</title><rect x="470.6" y="1041" width="7.9" height="15.0" fill="rgb(232,202,40)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1051.5" font-size="12" 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.33%)</title><rect x="360.9" y="1681" width="3.9" height="15.0" fill="rgb(215,181,24)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1691.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="311.9" y="465" width="1.9" height="15.0" fill="rgb(205,156,19)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mptscsih_qcmd (2 samples, 0.33%)</title><rect x="276.6" y="3281" width="3.9" height="15.0" fill="rgb(215,94,13)" rx="2" ry="2" />
<text text-anchor="" x="279.58" y="3291.5" font-size="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::init_buffer (1 samples, 0.17%)</title><rect x="61.0" y="3441" width="1.9" height="15.0" fill="rgb(229,126,47)" rx="2" ry="2" />
<text text-anchor="" x="63.96" y="3451.5" font-size="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.17%)</title><rect x="313.8" y="993" width="2.0" height="15.0" fill="rgb(217,222,46)" rx="2" ry="2" />
<text text-anchor="" x="316.82" y="1003.5" font-size="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_openat (1 samples, 0.17%)</title><rect x="1188.0" y="1153" width="2.0" height="15.0" fill="rgb(246,107,37)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1163.5" font-size="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 (4 samples, 0.66%)</title><rect x="274.6" y="3473" width="7.9" height="15.0" fill="rgb(235,155,37)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3483.5" font-size="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.17%)</title><rect x="335.4" y="1169" width="1.9" height="15.0" fill="rgb(246,72,0)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (54 samples, 8.97%)</title><rect x="360.9" y="1729" width="105.8" height="15.0" fill="rgb(216,5,4)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1739.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>prepare_exit_to_usermode (1 samples, 0.17%)</title><rect x="117.8" y="3409" width="2.0" height="15.0" fill="rgb(252,141,23)" rx="2" ry="2" />
<text text-anchor="" x="120.81" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-82405/82422 (2 samples, 0.33%)</title><rect x="27.6" y="3617" width="4.0" height="15.0" fill="rgb(247,172,41)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3627.5" font-size="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 (3 samples, 0.50%)</title><rect x="309.9" y="1217" width="5.9" height="15.0" fill="rgb(242,14,37)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1227.5" font-size="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.17%)</title><rect x="351.1" y="1233" width="1.9" height="15.0" fill="rgb(214,36,34)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1243.5" font-size="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_IRQ (1 samples, 0.17%)</title><rect x="464.8" y="1489" width="1.9" height="15.0" fill="rgb(236,155,51)" rx="2" ry="2" />
<text text-anchor="" x="467.75" y="1499.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3377" width="5.9" height="15.0" fill="rgb(208,30,51)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1585" width="2.0" height="15.0" fill="rgb(232,195,3)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (420 samples, 69.77%)</title><rect x="360.9" y="1969" width="823.2" height="15.0" fill="rgb(243,160,46)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1979.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.17%)</title><rect x="23.7" y="3441" width="2.0" height="15.0" fill="rgb(248,165,30)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3451.5" font-size="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] (3 samples, 0.50%)</title><rect x="17.8" y="3601" width="5.9" height="15.0" fill="rgb(252,172,21)" rx="2" ry="2" />
<text text-anchor="" x="20.84" y="3611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1473" width="49.0" height="15.0" fill="rgb(232,127,0)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1483.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>Lcom/sun/tools/javac/comp/Attr:::visitMethodDef (1 samples, 0.17%)</title><rect x="327.5" y="1249" width="2.0" height="15.0" fill="rgb(251,62,33)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3105" width="891.8" height="15.0" fill="rgb(210,119,46)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3115.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 (55 samples, 9.14%)</title><rect x="360.9" y="1745" width="107.8" height="15.0" fill="rgb(254,128,25)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1755.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/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (41 samples, 6.81%)</title><rect x="364.8" y="1505" width="80.3" height="15.0" fill="rgb(226,171,9)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</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.17%)</title><rect x="315.8" y="1137" width="1.9" height="15.0" fill="rgb(219,50,35)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1147.5" font-size="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.17%)</title><rect x="311.9" y="433" width="1.9" height="15.0" fill="rgb(222,94,20)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.17%)</title><rect x="470.6" y="945" width="2.0" height="15.0" fill="rgb(215,140,31)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1409" width="11.8" height="15.0" fill="rgb(235,219,32)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1419.5" font-size="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/Gen:::visitVarDef (1 samples, 0.17%)</title><rect x="343.2" y="1121" width="2.0" height="15.0" fill="rgb(219,116,20)" rx="2" ry="2" />
<text text-anchor="" x="346.22" y="1131.5" font-size="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_read_iter (1 samples, 0.17%)</title><rect x="484.4" y="897" width="1.9" height="15.0" fill="rgb(225,208,0)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="907.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="356.9" y="977" width="2.0" height="15.0" fill="rgb(239,90,33)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="987.5" font-size="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 (41 samples, 6.81%)</title><rect x="364.8" y="1473" width="80.3" height="15.0" fill="rgb(236,176,33)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1409" width="2.0" height="15.0" fill="rgb(254,7,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1419.5" font-size="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.17%)</title><rect x="356.9" y="833" width="2.0" height="15.0" fill="rgb(248,107,36)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="843.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="329.5" y="1025" width="2.0" height="15.0" fill="rgb(253,152,49)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileQueue::get (1 samples, 0.17%)</title><rect x="194.3" y="3521" width="1.9" height="15.0" fill="rgb(222,6,41)" rx="2" ry="2" />
<text text-anchor="" x="197.25" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::~WatcherThread (1 samples, 0.17%)</title><rect x="10.0" y="3585" width="2.0" height="15.0" fill="rgb(252,132,21)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fill_window (14 samples, 2.33%)</title><rect x="737.2" y="977" width="27.5" height="15.0" fill="rgb(238,38,50)" rx="2" ry="2" />
<text text-anchor="" x="740.21" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::rawInstantiate (1 samples, 0.17%)</title><rect x="331.5" y="961" width="1.9" height="15.0" fill="rgb(239,23,3)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="971.5" font-size="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::process_nmethod (1 samples, 0.17%)</title><rect x="194.3" y="3473" width="1.9" height="15.0" fill="rgb(245,160,5)" rx="2" ry="2" />
<text text-anchor="" x="197.25" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sched_yield (1 samples, 0.17%)</title><rect x="57.0" y="3537" width="2.0" height="15.0" fill="rgb(206,203,25)" rx="2" ry="2" />
<text text-anchor="" x="60.04" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="2017" width="11.8" height="15.0" fill="rgb(245,60,42)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2027.5" font-size="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/regex/Pattern$GroupHead:::match (1 samples, 0.17%)</title><rect x="329.5" y="817" width="2.0" height="15.0" fill="rgb(205,109,14)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1777" width="50.9" height="15.0" fill="rgb(243,156,30)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.17%)</title><rect x="178.6" y="3425" width="1.9" height="15.0" fill="rgb(208,147,53)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OneContigSpaceCardGeneration::younger_refs_iterate (1 samples, 0.17%)</title><rect x="45.3" y="3425" width="1.9" height="15.0" fill="rgb(236,157,4)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3435.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="333.4" y="737" width="2.0" height="15.0" fill="rgb(250,88,50)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CardTableRS::younger_refs_in_space_iterate (1 samples, 0.17%)</title><rect x="45.3" y="3409" width="1.9" height="15.0" fill="rgb(214,12,22)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3419.5" font-size="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/DefaultCopySpec$DefaultCopySpecResolver:::getAllIncludeSpecs (1 samples, 0.17%)</title><rect x="1182.2" y="1297" width="1.9" height="15.0" fill="rgb(234,221,18)" rx="2" ry="2" />
<text text-anchor="" x="1185.16" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2433" width="891.8" height="15.0" fill="rgb(221,6,23)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2443.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 (28 samples, 4.65%)</title><rect x="292.3" y="2097" width="54.8" height="15.0" fill="rgb(213,70,34)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2107.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>mpt_put_msg_frame (2 samples, 0.33%)</title><rect x="286.4" y="3233" width="3.9" height="15.0" fill="rgb(248,110,18)" rx="2" ry="2" />
<text text-anchor="" x="289.38" y="3243.5" font-size="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/JavaTokenizer:::readToken (1 samples, 0.17%)</title><rect x="302.1" y="1041" width="1.9" height="15.0" fill="rgb(248,145,41)" rx="2" ry="2" />
<text text-anchor="" x="305.06" y="1051.5" font-size="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 (4 samples, 0.66%)</title><rect x="470.6" y="1169" width="7.9" height="15.0" fill="rgb(205,107,43)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1179.5" font-size="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 (22 samples, 3.65%)</title><rect x="196.2" y="3473" width="43.1" height="15.0" fill="rgb(229,73,47)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Comp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (1 samples, 0.17%)</title><rect x="1188.0" y="3585" width="2.0" height="15.0" fill="rgb(240,215,15)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3441" width="2.0" height="15.0" fill="rgb(231,197,29)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2273" width="2.0" height="15.0" fill="rgb(209,139,1)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2283.5" font-size="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.17%)</title><rect x="251.1" y="3425" width="2.0" height="15.0" fill="rgb(221,43,33)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3435.5" font-size="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.17%)</title><rect x="484.4" y="737" width="1.9" height="15.0" fill="rgb(230,204,26)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="747.5" font-size="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 (10 samples, 1.66%)</title><rect x="196.2" y="3425" width="19.6" height="15.0" fill="rgb(245,114,43)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="321.7" y="1297" width="1.9" height="15.0" fill="rgb(209,168,47)" rx="2" ry="2" />
<text text-anchor="" x="324.66" y="1307.5" font-size="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 (70 samples, 11.63%)</title><rect x="59.0" y="3537" width="137.2" height="15.0" fill="rgb(254,131,1)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CompileBroker::co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/FileOutputStream:::writeBytes (5 samples, 0.83%)</title><rect x="1172.4" y="1089" width="9.8" height="15.0" fill="rgb(225,81,18)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1099.5" font-size="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:::visitImport (1 samples, 0.17%)</title><rect x="323.6" y="1009" width="2.0" height="15.0" fill="rgb(248,192,3)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jmm_GetPoolCollectionUsage (2 samples, 0.33%)</title><rect x="19.8" y="3553" width="3.9" height="15.0" fill="rgb(217,58,34)" rx="2" ry="2" />
<text text-anchor="" x="22.80" y="3563.5" font-size="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 (3 samples, 0.50%)</title><rect x="321.7" y="1345" width="5.8" height="15.0" fill="rgb(217,207,22)" rx="2" ry="2" />
<text text-anchor="" x="324.66" y="1355.5" font-size="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 (2 samples, 0.33%)</title><rect x="355.0" y="1265" width="3.9" height="15.0" fill="rgb(233,48,37)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.17%)</title><rect x="10.0" y="3457" width="2.0" height="15.0" fill="rgb(228,210,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3467.5" font-size="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_buffer_dirty (1 samples, 0.17%)</title><rect x="504.0" y="785" width="1.9" height="15.0" fill="rgb(254,131,21)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1601" width="11.8" height="15.0" fill="rgb(249,63,5)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 9.14%)</title><rect x="360.9" y="1857" width="107.8" height="15.0" fill="rgb(210,142,18)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1867.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>Reflection::invoke_method (6 samples, 1.00%)</title><rect x="349.1" y="1681" width="11.8" height="15.0" fill="rgb(245,179,13)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1691.5" font-size="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:::arguments (1 samples, 0.17%)</title><rect x="300.1" y="449" width="2.0" height="15.0" fill="rgb(249,213,50)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Lower:::visitVarDef (1 samples, 0.17%)</title><rect x="319.7" y="1089" width="2.0" height="15.0" fill="rgb(247,202,18)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1099.5" font-size="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 (7 samples, 1.16%)</title><rect x="43.3" y="3521" width="13.7" height="15.0" fill="rgb(213,18,49)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="817" width="1.9" height="15.0" fill="rgb(249,210,14)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="827.5" font-size="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.17%)</title><rect x="356.9" y="1009" width="2.0" height="15.0" fill="rgb(222,131,2)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1019.5" font-size="12" 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.33%)</title><rect x="360.9" y="1617" width="3.9" height="15.0" fill="rgb(213,104,5)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1627.5" font-size="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.17%)</title><rect x="355.0" y="625" width="1.9" height="15.0" fill="rgb(211,149,25)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="494.2" y="673" width="1.9" height="15.0" fill="rgb(224,40,54)" rx="2" ry="2" />
<text text-anchor="" x="497.15" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (5 samples, 0.83%)</title><rect x="274.6" y="3569" width="9.8" height="15.0" fill="rgb(216,186,48)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3579.5" font-size="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.17%)</title><rect x="1188.0" y="2449" width="2.0" height="15.0" fill="rgb(222,28,15)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2459.5" font-size="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_read (5 samples, 0.83%)</title><rect x="274.6" y="3537" width="9.8" height="15.0" fill="rgb(210,131,21)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3547.5" font-size="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_buffer_dirty (1 samples, 0.17%)</title><rect x="1176.3" y="833" width="1.9" height="15.0" fill="rgb(232,82,54)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="843.5" font-size="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:::selectBest (1 samples, 0.17%)</title><rect x="331.5" y="977" width="1.9" height="15.0" fill="rgb(219,87,16)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="987.5" font-size="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 (4 samples, 0.66%)</title><rect x="470.6" y="1057" width="7.9" height="15.0" fill="rgb(236,216,39)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1067.5" font-size="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.17%)</title><rect x="331.5" y="849" width="1.9" height="15.0" fill="rgb(215,185,54)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="859.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="913" width="5.9" height="15.0" fill="rgb(208,197,54)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (2 samples, 0.33%)</title><rect x="1146.9" y="913" width="3.9" height="15.0" fill="rgb(231,175,14)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="923.5" font-size="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 (41 samples, 6.81%)</title><rect x="364.8" y="1457" width="80.3" height="15.0" fill="rgb(206,2,14)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/grad..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_call (1 samples, 0.17%)</title><rect x="190.3" y="2817" width="2.0" height="15.0" fill="rgb(240,79,17)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2827.5" font-size="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 (1 samples, 0.17%)</title><rect x="464.8" y="1505" width="1.9" height="15.0" fill="rgb(247,95,11)" rx="2" ry="2" />
<text text-anchor="" x="467.75" y="1515.5" font-size="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 (7 samples, 1.16%)</title><rect x="505.9" y="961" width="13.7" height="15.0" fill="rgb(224,82,15)" rx="2" ry="2" />
<text text-anchor="" x="508.91" y="971.5" font-size="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.17%)</title><rect x="272.7" y="3297" width="1.9" height="15.0" fill="rgb(245,49,5)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3307.5" font-size="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:::visitIf (1 samples, 0.17%)</title><rect x="356.9" y="1169" width="2.0" height="15.0" fill="rgb(245,208,33)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 9.14%)</title><rect x="360.9" y="1793" width="107.8" height="15.0" fill="rgb(230,147,34)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1803.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/tree/TreeScanner:::visitAssign (1 samples, 0.17%)</title><rect x="315.8" y="1153" width="1.9" height="15.0" fill="rgb(221,2,9)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1163.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="311.9" y="881" width="1.9" height="15.0" fill="rgb(214,138,2)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1553" width="80.3" height="15.0" fill="rgb(238,85,6)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1563.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>ClassFileParser::parseClassFile (1 samples, 0.17%)</title><rect x="27.6" y="3249" width="2.0" height="15.0" fill="rgb(213,74,19)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3259.5" font-size="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.17%)</title><rect x="206.0" y="3121" width="2.0" height="15.0" fill="rgb(248,142,0)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3131.5" font-size="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 (22 samples, 3.65%)</title><rect x="196.2" y="3489" width="43.1" height="15.0" fill="rgb(248,122,46)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Comp..</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.17%)</title><rect x="351.1" y="1217" width="1.9" height="15.0" fill="rgb(208,118,0)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1227.5" font-size="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_run_queue (1 samples, 0.17%)</title><rect x="1148.8" y="801" width="2.0" height="15.0" fill="rgb(231,155,33)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="811.5" font-size="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 (3 samples, 0.50%)</title><rect x="217.8" y="3393" width="5.9" height="15.0" fill="rgb(209,108,39)" rx="2" ry="2" />
<text text-anchor="" x="220.77" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (11 samples, 1.83%)</title><rect x="445.1" y="1681" width="21.6" height="15.0" fill="rgb(232,24,19)" rx="2" ry="2" />
<text text-anchor="" x="448.15" y="1691.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>StringTable::intern (1 samples, 0.17%)</title><rect x="351.1" y="945" width="1.9" height="15.0" fill="rgb(206,145,23)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="955.5" font-size="12" 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.33%)</title><rect x="27.6" y="3505" width="4.0" height="15.0" fill="rgb(227,38,19)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3515.5" font-size="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.17%)</title><rect x="333.4" y="849" width="2.0" height="15.0" fill="rgb(208,27,5)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="859.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="311.9" y="241" width="1.9" height="15.0" fill="rgb(244,8,24)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (25 samples, 4.15%)</title><rect x="296.2" y="1521" width="49.0" height="15.0" fill="rgb(226,75,13)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1531.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>Lcom/sun/tools/javac/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.17%)</title><rect x="355.0" y="705" width="1.9" height="15.0" fill="rgb(239,100,19)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="715.5" font-size="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.17%)</title><rect x="10.0" y="3521" width="2.0" height="15.0" fill="rgb(219,207,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="3531.5" font-size="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 (3 samples, 0.50%)</title><rect x="266.8" y="3457" width="5.9" height="15.0" fill="rgb(252,123,3)" rx="2" ry="2" />
<text text-anchor="" x="269.78" y="3467.5" font-size="12" 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.33%)</title><rect x="292.3" y="1825" width="3.9" height="15.0" fill="rgb(244,31,35)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1835.5" font-size="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 (2 samples, 0.33%)</title><rect x="1178.2" y="1009" width="4.0" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="1889" width="54.8" height="15.0" fill="rgb(251,210,30)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1889" width="11.8" height="15.0" fill="rgb(225,128,18)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1121" width="1.9" height="15.0" fill="rgb(253,125,34)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1131.5" font-size="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$AbstractMethodCheck:::argumentsAcceptable (1 samples, 0.17%)</title><rect x="331.5" y="929" width="1.9" height="15.0" fill="rgb(235,26,49)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="939.5" font-size="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$Subst:::subst (1 samples, 0.17%)</title><rect x="335.4" y="865" width="1.9" height="15.0" fill="rgb(251,80,31)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="875.5" font-size="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.17%)</title><rect x="309.9" y="1121" width="2.0" height="15.0" fill="rgb(225,180,12)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1131.5" font-size="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.17%)</title><rect x="1188.0" y="1665" width="2.0" height="15.0" fill="rgb(216,35,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1675.5" font-size="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 (5 samples, 0.83%)</title><rect x="509.8" y="929" width="9.8" height="15.0" fill="rgb(250,13,21)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="939.5" font-size="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/Gen:::appendStrings (1 samples, 0.17%)</title><rect x="339.3" y="961" width="2.0" height="15.0" fill="rgb(222,21,13)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="971.5" font-size="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.17%)</title><rect x="309.9" y="913" width="2.0" height="15.0" fill="rgb(241,228,3)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="923.5" font-size="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/Formatter:::format (1 samples, 0.17%)</title><rect x="329.5" y="913" width="2.0" height="15.0" fill="rgb(221,142,51)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="923.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="593" width="1.9" height="15.0" fill="rgb(243,199,51)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::handle_ic_miss_helper (1 samples, 0.17%)</title><rect x="466.7" y="1681" width="2.0" height="15.0" fill="rgb(206,85,5)" rx="2" ry="2" />
<text text-anchor="" x="469.71" y="1691.5" font-size="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_update_time (1 samples, 0.17%)</title><rect x="280.5" y="3425" width="2.0" height="15.0" fill="rgb(241,134,53)" rx="2" ry="2" />
<text text-anchor="" x="283.50" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clean_bdev_aliases (1 samples, 0.17%)</title><rect x="476.5" y="817" width="2.0" height="15.0" fill="rgb(207,228,16)" rx="2" ry="2" />
<text text-anchor="" x="479.51" y="827.5" font-size="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.17%)</title><rect x="331.5" y="785" width="1.9" height="15.0" fill="rgb(215,32,8)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="795.5" font-size="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::use_prior_register (1 samples, 0.17%)</title><rect x="137.4" y="3409" width="2.0" height="15.0" fill="rgb(254,148,24)" rx="2" ry="2" />
<text text-anchor="" x="140.41" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1761" width="2.0" height="15.0" fill="rgb(254,21,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1771.5" font-size="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.17%)</title><rect x="1188.0" y="2689" width="2.0" height="15.0" fill="rgb(232,114,29)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2699.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="335.4" y="993" width="1.9" height="15.0" fill="rgb(217,165,3)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1003.5" font-size="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/Lower:::translate (2 samples, 0.33%)</title><rect x="317.7" y="1185" width="4.0" height="15.0" fill="rgb(222,217,52)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::Label_Root (1 samples, 0.17%)</title><rect x="66.8" y="3409" width="2.0" height="15.0" fill="rgb(231,207,27)" rx="2" ry="2" />
<text text-anchor="" x="69.84" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ondemand_readahead (3 samples, 0.50%)</title><rect x="284.4" y="3409" width="5.9" height="15.0" fill="rgb(245,25,13)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.17%)</title><rect x="117.8" y="3345" width="2.0" height="15.0" fill="rgb(222,223,19)" rx="2" ry="2" />
<text text-anchor="" x="120.81" y="3355.5" font-size="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$14:::doLookup (1 samples, 0.17%)</title><rect x="309.9" y="657" width="2.0" height="15.0" fill="rgb(240,22,2)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1569" width="50.9" height="15.0" fill="rgb(211,154,27)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 1.66%)</title><rect x="1162.6" y="1153" width="19.6" height="15.0" fill="rgb(212,156,13)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1163.5" font-size="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::split_thru_phi (1 samples, 0.17%)</title><rect x="184.5" y="3409" width="1.9" height="15.0" fill="rgb(252,199,42)" rx="2" ry="2" />
<text text-anchor="" x="187.45" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.17%)</title><rect x="1176.3" y="801" width="1.9" height="15.0" fill="rgb(211,44,4)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="811.5" font-size="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$JCReturn:::accept (1 samples, 0.17%)</title><rect x="331.5" y="1185" width="1.9" height="15.0" fill="rgb(211,131,46)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1195.5" font-size="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.17%)</title><rect x="39.4" y="3233" width="2.0" height="15.0" fill="rgb(230,101,41)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3243.5" font-size="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_fstatat (1 samples, 0.17%)</title><rect x="290.3" y="3489" width="2.0" height="15.0" fill="rgb(216,151,21)" rx="2" ry="2" />
<text text-anchor="" x="293.30" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_or_compute_monitor_info (1 samples, 0.17%)</title><rect x="55.1" y="3473" width="1.9" height="15.0" fill="rgb(220,138,44)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3483.5" font-size="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.17%)</title><rect x="311.9" y="385" width="1.9" height="15.0" fill="rgb(237,18,27)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/MemberEnter:::complete (3 samples, 0.50%)</title><rect x="321.7" y="1329" width="5.8" height="15.0" fill="rgb(208,159,37)" rx="2" ry="2" />
<text text-anchor="" x="324.66" y="1339.5" font-size="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:::term1 (1 samples, 0.17%)</title><rect x="300.1" y="529" width="2.0" height="15.0" fill="rgb(230,7,45)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (26 samples, 4.32%)</title><rect x="296.2" y="1649" width="50.9" height="15.0" fill="rgb(218,151,44)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaC..</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 (348 samples, 57.81%)</title><rect x="480.4" y="1137" width="682.2" height="15.0" fill="rgb(237,219,42)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.17%)</title><rect x="1184.1" y="3441" width="2.0" height="15.0" fill="rgb(232,188,33)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3451.5" font-size="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 (197 samples, 32.72%)</title><rect x="764.7" y="977" width="386.1" height="15.0" fill="rgb(254,134,6)" rx="2" ry="2" />
<text text-anchor="" x="767.65" y="987.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>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.17%)</title><rect x="327.5" y="977" width="2.0" height="15.0" fill="rgb(227,13,23)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="987.5" font-size="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:::visitExec (1 samples, 0.17%)</title><rect x="327.5" y="1153" width="2.0" height="15.0" fill="rgb(242,208,46)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::emit (1 samples, 0.17%)</title><rect x="68.8" y="3457" width="2.0" height="15.0" fill="rgb(239,168,26)" rx="2" ry="2" />
<text text-anchor="" x="71.80" y="3467.5" font-size="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_cache_async_readahead (1 samples, 0.17%)</title><rect x="486.3" y="865" width="2.0" height="15.0" fill="rgb(212,197,50)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="875.5" font-size="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.17%)</title><rect x="484.4" y="1009" width="1.9" height="15.0" fill="rgb(238,64,51)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeBytes (3 samples, 0.50%)</title><rect x="1172.4" y="1057" width="5.8" height="15.0" fill="rgb(206,144,43)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3345" width="1.9" height="15.0" fill="rgb(209,73,6)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3355.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="341.3" y="881" width="1.9" height="15.0" fill="rgb(242,21,54)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="891.5" font-size="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.17%)</title><rect x="484.4" y="945" width="1.9" height="15.0" fill="rgb(243,172,44)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next (1 samples, 0.17%)</title><rect x="94.3" y="3409" width="1.9" height="15.0" fill="rgb(231,156,33)" rx="2" ry="2" />
<text text-anchor="" x="97.29" y="3419.5" font-size="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/ZipFileIndexArchive$ZipFileIndexFileObject:::openInputStream (1 samples, 0.17%)</title><rect x="356.9" y="769" width="2.0" height="15.0" fill="rgb(236,219,11)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3297" width="2.0" height="15.0" fill="rgb(254,172,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1345" width="2.0" height="15.0" fill="rgb(229,3,20)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassLoaderData::oops_do (1 samples, 0.17%)</title><rect x="43.3" y="3393" width="2.0" height="15.0" fill="rgb(237,227,18)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3403.5" font-size="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$2:::complete (1 samples, 0.17%)</title><rect x="311.9" y="753" width="1.9" height="15.0" fill="rgb(230,213,17)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_gp_kthread_wake (1 samples, 0.17%)</title><rect x="153.1" y="3329" width="1.9" height="15.0" fill="rgb(248,97,23)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3313" width="1.9" height="15.0" fill="rgb(236,36,43)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3345" width="1.9" height="15.0" fill="rgb(227,72,27)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3355.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="1729" width="11.8" height="15.0" fill="rgb(216,188,46)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1739.5" font-size="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/Gen:::genExpr (1 samples, 0.17%)</title><rect x="341.3" y="433" width="1.9" height="15.0" fill="rgb(239,47,4)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="1201" width="1.9" height="15.0" fill="rgb(239,145,49)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1211.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="355.0" y="561" width="1.9" height="15.0" fill="rgb(213,189,8)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::findMethodInScope (1 samples, 0.17%)</title><rect x="355.0" y="529" width="1.9" height="15.0" fill="rgb(209,145,51)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (1 samples, 0.17%)</title><rect x="241.3" y="3457" width="2.0" height="15.0" fill="rgb(252,45,47)" rx="2" ry="2" />
<text text-anchor="" x="244.30" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (1 samples, 0.17%)</title><rect x="272.7" y="3249" width="1.9" height="15.0" fill="rgb(242,154,11)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3259.5" font-size="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.17%)</title><rect x="272.7" y="3473" width="1.9" height="15.0" fill="rgb(247,217,29)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfq_insert_request (2 samples, 0.33%)</title><rect x="260.9" y="3361" width="3.9" height="15.0" fill="rgb(215,96,25)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3371.5" font-size="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/Gen:::visitApply (1 samples, 0.17%)</title><rect x="341.3" y="449" width="1.9" height="15.0" fill="rgb(231,160,26)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3201" width="2.0" height="15.0" fill="rgb(252,51,15)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.17%)</title><rect x="1184.1" y="3425" width="2.0" height="15.0" fill="rgb(208,167,47)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3435.5" font-size="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 (348 samples, 57.81%)</title><rect x="480.4" y="1185" width="682.2" height="15.0" fill="rgb(225,71,21)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.33%)</title><rect x="292.3" y="1793" width="3.9" height="15.0" fill="rgb(252,213,38)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1803.5" font-size="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.17%)</title><rect x="311.9" y="721" width="1.9" height="15.0" fill="rgb(254,57,1)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_file_read_iter (1 samples, 0.17%)</title><rect x="272.7" y="3441" width="1.9" height="15.0" fill="rgb(230,114,21)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3451.5" font-size="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.17%)</title><rect x="319.7" y="1057" width="2.0" height="15.0" fill="rgb(228,13,46)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="881" width="1.9" height="15.0" fill="rgb(236,14,8)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="891.5" font-size="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/Code:::emitop (1 samples, 0.17%)</title><rect x="341.3" y="353" width="1.9" height="15.0" fill="rgb(219,161,49)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.17%)</title><rect x="190.3" y="3137" width="2.0" height="15.0" fill="rgb(239,98,31)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3147.5" font-size="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.17%)</title><rect x="341.3" y="465" width="1.9" height="15.0" fill="rgb(232,19,36)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompileBroker::invoke_compiler_on_method (23 samples, 3.82%)</title><rect x="196.2" y="3521" width="45.1" height="15.0" fill="rgb(213,74,29)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Comp..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__elv_add_request (1 samples, 0.17%)</title><rect x="274.6" y="3361" width="2.0" height="15.0" fill="rgb(242,97,42)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="2033" width="11.8" height="15.0" fill="rgb(250,81,11)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="2043.5" font-size="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 (3 samples, 0.50%)</title><rect x="1172.4" y="961" width="5.8" height="15.0" fill="rgb(233,204,38)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="3425" width="891.8" height="15.0" fill="rgb(220,228,43)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3435.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/file/RegularFileObject:::&lt;init&gt; (1 samples, 0.17%)</title><rect x="304.0" y="1281" width="2.0" height="15.0" fill="rgb(247,189,24)" rx="2" ry="2" />
<text text-anchor="" x="307.02" y="1291.5" font-size="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 (2 samples, 0.33%)</title><rect x="260.9" y="3409" width="3.9" height="15.0" fill="rgb(205,145,38)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vframe::java_sender (1 samples, 0.17%)</title><rect x="55.1" y="3457" width="1.9" height="15.0" fill="rgb(225,189,21)" rx="2" ry="2" />
<text text-anchor="" x="58.08" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (6 samples, 1.00%)</title><rect x="349.1" y="1649" width="11.8" height="15.0" fill="rgb(242,170,29)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1659.5" font-size="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.17%)</title><rect x="190.3" y="3393" width="2.0" height="15.0" fill="rgb(205,100,11)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3403.5" font-size="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.17%)</title><rect x="249.1" y="3521" width="2.0" height="15.0" fill="rgb(226,16,1)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciBytecodeStream::get_field (1 samples, 0.17%)</title><rect x="200.1" y="3249" width="2.0" height="15.0" fill="rgb(223,49,5)" rx="2" ry="2" />
<text text-anchor="" x="203.13" y="3259.5" font-size="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.17%)</title><rect x="53.1" y="3409" width="2.0" height="15.0" fill="rgb(227,106,2)" rx="2" ry="2" />
<text text-anchor="" x="56.12" y="3419.5" font-size="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.17%)</title><rect x="272.7" y="3457" width="1.9" height="15.0" fill="rgb(247,25,9)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3467.5" font-size="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 (4 samples, 0.66%)</title><rect x="329.5" y="1297" width="7.8" height="15.0" fill="rgb(235,81,44)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2881" width="891.8" height="15.0" fill="rgb(230,125,26)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2891.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>RangeCheckEliminator::set_process_block_flags (2 samples, 0.33%)</title><rect x="223.7" y="3393" width="3.9" height="15.0" fill="rgb(208,227,11)" rx="2" ry="2" />
<text text-anchor="" x="226.65" y="3403.5" font-size="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/Attributes$Name:::&lt;init&gt; (1 samples, 0.17%)</title><rect x="351.1" y="993" width="1.9" height="15.0" fill="rgb(253,209,4)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2545" width="2.0" height="15.0" fill="rgb(254,219,41)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2555.5" font-size="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:::visitIf (1 samples, 0.17%)</title><rect x="329.5" y="1169" width="2.0" height="15.0" fill="rgb(235,77,8)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1179.5" font-size="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 (2 samples, 0.33%)</title><rect x="1146.9" y="961" width="3.9" height="15.0" fill="rgb(219,210,20)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="971.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="311.9" y="289" width="1.9" height="15.0" fill="rgb(247,130,14)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (2 samples, 0.33%)</title><rect x="1146.9" y="929" width="3.9" height="15.0" fill="rgb(244,17,23)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_process_callbacks (1 samples, 0.17%)</title><rect x="153.1" y="3361" width="1.9" height="15.0" fill="rgb(252,6,32)" rx="2" ry="2" />
<text text-anchor="" x="156.09" y="3371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1921" width="11.8" height="15.0" fill="rgb(224,122,27)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1931.5" font-size="12" 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.83%)</title><rect x="468.7" y="1217" width="9.8" height="15.0" fill="rgb(249,10,39)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1227.5" font-size="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.17%)</title><rect x="329.5" y="1041" width="2.0" height="15.0" fill="rgb(211,221,16)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1051.5" font-size="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 (9 samples, 1.50%)</title><rect x="196.2" y="3377" width="17.7" height="15.0" fill="rgb(223,95,46)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3387.5" font-size="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 (365 samples, 60.63%)</title><rect x="468.7" y="1713" width="715.4" height="15.0" fill="rgb(234,214,40)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ljava/lang/reflect/Method:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (38 samples, 6.31%)</title><rect x="74.7" y="3457" width="74.5" height="15.0" fill="rgb(206,9,22)" rx="2" ry="2" />
<text text-anchor="" x="77.68" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >PhaseCha..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (1 samples, 0.17%)</title><rect x="39.4" y="3345" width="2.0" height="15.0" fill="rgb(228,85,11)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3355.5" font-size="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:::findMethod (1 samples, 0.17%)</title><rect x="331.5" y="1025" width="1.9" height="15.0" fill="rgb(237,170,42)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="1035.5" font-size="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.17%)</title><rect x="327.5" y="1025" width="2.0" height="15.0" fill="rgb(241,142,13)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2033" width="54.8" height="15.0" fill="rgb(236,7,36)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</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.17%)</title><rect x="333.4" y="961" width="2.0" height="15.0" fill="rgb(254,39,39)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.32%)</title><rect x="296.2" y="1585" width="50.9" height="15.0" fill="rgb(246,137,25)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.17%)</title><rect x="190.3" y="3361" width="2.0" height="15.0" fill="rgb(229,71,29)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3371.5" font-size="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_run_queue (1 samples, 0.17%)</title><rect x="264.8" y="3361" width="2.0" height="15.0" fill="rgb(221,207,42)" rx="2" ry="2" />
<text text-anchor="" x="267.82" y="3371.5" font-size="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:::capture (1 samples, 0.17%)</title><rect x="356.9" y="913" width="2.0" height="15.0" fill="rgb(217,215,46)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="923.5" font-size="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.17%)</title><rect x="23.7" y="3473" width="2.0" height="15.0" fill="rgb(209,120,53)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.17%)</title><rect x="1184.1" y="3537" width="2.0" height="15.0" fill="rgb(211,226,47)" rx="2" ry="2" />
<text text-anchor="" x="1187.12" y="3547.5" font-size="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.17%)</title><rect x="356.9" y="993" width="2.0" height="15.0" fill="rgb(221,74,53)" rx="2" ry="2" />
<text text-anchor="" x="359.94" y="1003.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="329.5" y="1185" width="2.0" height="15.0" fill="rgb(232,127,11)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1195.5" font-size="12" 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.66%)</title><rect x="470.6" y="1105" width="7.9" height="15.0" fill="rgb(252,22,33)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1115.5" font-size="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/Lower:::boxArgs (1 samples, 0.17%)</title><rect x="319.7" y="1025" width="2.0" height="15.0" fill="rgb(207,221,53)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="1035.5" font-size="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.17%)</title><rect x="247.2" y="3553" width="1.9" height="15.0" fill="rgb(243,161,44)" rx="2" ry="2" />
<text text-anchor="" x="250.18" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3281" width="1.9" height="15.0" fill="rgb(214,50,39)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3291.5" font-size="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/Infer$InferenceContext:::save (1 samples, 0.17%)</title><rect x="331.5" y="561" width="1.9" height="15.0" fill="rgb(234,195,20)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1793" width="2.0" height="15.0" fill="rgb(240,177,10)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1803.5" font-size="12" 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.33%)</title><rect x="12.0" y="3585" width="3.9" height="15.0" fill="rgb(213,29,41)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2353" width="2.0" height="15.0" fill="rgb(249,133,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2363.5" font-size="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.17%)</title><rect x="486.3" y="977" width="2.0" height="15.0" fill="rgb(232,85,32)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="987.5" font-size="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 (9 samples, 1.50%)</title><rect x="255.0" y="3505" width="17.7" height="15.0" fill="rgb(247,135,48)" rx="2" ry="2" />
<text text-anchor="" x="258.02" y="3515.5" font-size="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$Subst:::visitClassType (1 samples, 0.17%)</title><rect x="335.4" y="833" width="1.9" height="15.0" fill="rgb(240,142,53)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="843.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="897" width="5.9" height="15.0" fill="rgb(221,41,32)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="907.5" font-size="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.50%)</title><rect x="1172.4" y="929" width="5.8" height="15.0" fill="rgb(245,123,4)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="939.5" font-size="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.17%)</title><rect x="190.3" y="3441" width="2.0" height="15.0" fill="rgb(248,200,23)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3451.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="913" width="3.9" height="15.0" fill="rgb(215,146,3)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="923.5" font-size="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.17%)</title><rect x="323.6" y="977" width="2.0" height="15.0" fill="rgb(244,152,36)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="987.5" font-size="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_fstatat (1 samples, 0.17%)</title><rect x="251.1" y="3473" width="2.0" height="15.0" fill="rgb(225,108,11)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3483.5" font-size="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.17%)</title><rect x="509.8" y="801" width="2.0" height="15.0" fill="rgb(214,20,1)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3137" width="2.0" height="15.0" fill="rgb(252,144,35)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1665" width="80.3" height="15.0" fill="rgb(243,151,16)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_page_cache_readahead (3 samples, 0.50%)</title><rect x="1164.5" y="897" width="5.9" height="15.0" fill="rgb(229,203,26)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="907.5" font-size="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.17%)</title><rect x="486.3" y="1009" width="2.0" height="15.0" fill="rgb(210,70,8)" rx="2" ry="2" />
<text text-anchor="" x="489.31" y="1019.5" font-size="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/Gen:::genDef (1 samples, 0.17%)</title><rect x="341.3" y="977" width="1.9" height="15.0" fill="rgb(230,137,54)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="987.5" font-size="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 (348 samples, 57.81%)</title><rect x="480.4" y="1217" width="682.2" height="15.0" fill="rgb(225,16,44)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__softirqentry_text_start (1 samples, 0.17%)</title><rect x="1172.4" y="833" width="1.9" height="15.0" fill="rgb(231,17,46)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClassFileParser::parse_constant_pool_entries (1 samples, 0.17%)</title><rect x="27.6" y="3217" width="2.0" height="15.0" fill="rgb(225,137,4)" rx="2" ry="2" />
<text text-anchor="" x="30.64" y="3227.5" font-size="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$AliveAnalyzer:::visitClassDef (1 samples, 0.17%)</title><rect x="349.1" y="1281" width="2.0" height="15.0" fill="rgb(222,130,16)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1291.5" font-size="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.17%)</title><rect x="39.4" y="3249" width="2.0" height="15.0" fill="rgb(224,76,4)" rx="2" ry="2" />
<text text-anchor="" x="42.40" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="355.0" y="849" width="1.9" height="15.0" fill="rgb(249,204,51)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="859.5" font-size="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:::visitIf (1 samples, 0.17%)</title><rect x="309.9" y="945" width="2.0" height="15.0" fill="rgb(233,59,7)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="955.5" font-size="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 (420 samples, 69.77%)</title><rect x="360.9" y="2113" width="823.2" height="15.0" fill="rgb(228,219,34)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="2123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_io_FileOutputStream_writeBytes (1 samples, 0.17%)</title><rect x="470.6" y="1009" width="2.0" height="15.0" fill="rgb(229,95,21)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InitializeNode::detect_init_independence (1 samples, 0.17%)</title><rect x="188.4" y="3169" width="1.9" height="15.0" fill="rgb(209,27,40)" rx="2" ry="2" />
<text text-anchor="" x="191.37" y="3179.5" font-size="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.17%)</title><rect x="272.7" y="3553" width="1.9" height="15.0" fill="rgb(232,109,7)" rx="2" ry="2" />
<text text-anchor="" x="275.66" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GenCollectorPolicy::satisfy_failed_allocation (6 samples, 1.00%)</title><rect x="43.3" y="3489" width="11.8" height="15.0" fill="rgb(241,186,3)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3499.5" font-size="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 (3 samples, 0.50%)</title><rect x="1172.4" y="1009" width="5.8" height="15.0" fill="rgb(244,15,52)" rx="2" ry="2" />
<text text-anchor="" x="1175.36" y="1019.5" font-size="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:::lookupMethod (1 samples, 0.17%)</title><rect x="311.9" y="945" width="1.9" height="15.0" fill="rgb(232,5,9)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (364 samples, 60.47%)</title><rect x="468.7" y="1265" width="713.5" height="15.0" fill="rgb(205,56,9)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="1275.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>JavaThread::thread_main_inner (455 samples, 75.58%)</title><rect x="292.3" y="3553" width="891.8" height="15.0" fill="rgb(248,145,40)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread_main_inner</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_one_block (1 samples, 0.17%)</title><rect x="190.3" y="2945" width="2.0" height="15.0" fill="rgb(235,76,31)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2955.5" font-size="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:::checkIdInternal (1 samples, 0.17%)</title><rect x="358.9" y="1153" width="2.0" height="15.0" fill="rgb(252,30,25)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="1163.5" font-size="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.17%)</title><rect x="190.3" y="3281" width="2.0" height="15.0" fill="rgb(254,225,36)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3291.5" font-size="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:::rawInstantiate (1 samples, 0.17%)</title><rect x="311.9" y="833" width="1.9" height="15.0" fill="rgb(213,108,1)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="843.5" font-size="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:::attribStats (1 samples, 0.17%)</title><rect x="355.0" y="993" width="1.9" height="15.0" fill="rgb(234,193,12)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::advance_and_next (1 samples, 0.17%)</title><rect x="74.7" y="3441" width="1.9" height="15.0" fill="rgb(230,113,41)" rx="2" ry="2" />
<text text-anchor="" x="77.68" y="3451.5" font-size="12" 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.66%)</title><rect x="470.6" y="1185" width="7.9" height="15.0" fill="rgb(220,64,31)" rx="2" ry="2" />
<text text-anchor="" x="473.63" y="1195.5" font-size="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.17%)</title><rect x="249.1" y="3473" width="2.0" height="15.0" fill="rgb(212,213,11)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="309.9" y="849" width="2.0" height="15.0" fill="rgb(254,118,9)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="859.5" font-size="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/security/provider/DigestBase:::engineUpdate (10 samples, 1.66%)</title><rect x="447.1" y="1537" width="19.6" height="15.0" fill="rgb(251,118,17)" rx="2" ry="2" />
<text text-anchor="" x="450.11" y="1547.5" font-size="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/Lower:::visitApply (1 samples, 0.17%)</title><rect x="319.7" y="977" width="2.0" height="15.0" fill="rgb(250,49,1)" rx="2" ry="2" />
<text text-anchor="" x="322.70" y="987.5" font-size="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 (1 samples, 0.17%)</title><rect x="1188.0" y="1009" width="2.0" height="15.0" fill="rgb(249,197,35)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.17%)</title><rect x="117.8" y="3425" width="2.0" height="15.0" fill="rgb(230,52,32)" rx="2" ry="2" />
<text text-anchor="" x="120.81" y="3435.5" font-size="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 (10 samples, 1.66%)</title><rect x="1162.6" y="1121" width="19.6" height="15.0" fill="rgb(210,47,19)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="769" width="1.9" height="15.0" fill="rgb(234,76,41)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2769" width="2.0" height="15.0" fill="rgb(253,94,5)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2779.5" font-size="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 (69 samples, 11.46%)</title><rect x="59.0" y="3521" width="135.3" height="15.0" fill="rgb(252,123,38)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CompileBroker::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.17%)</title><rect x="311.9" y="1153" width="1.9" height="15.0" fill="rgb(241,173,10)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1163.5" font-size="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 (1 samples, 0.17%)</title><rect x="504.0" y="849" width="1.9" height="15.0" fill="rgb(253,176,33)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="859.5" font-size="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_flush_plug_list (1 samples, 0.17%)</title><rect x="484.4" y="817" width="1.9" height="15.0" fill="rgb(222,74,54)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="827.5" font-size="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:::visitApply (1 samples, 0.17%)</title><rect x="329.5" y="1073" width="2.0" height="15.0" fill="rgb(251,178,28)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1083.5" font-size="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 (69 samples, 11.46%)</title><rect x="59.0" y="3505" width="135.3" height="15.0" fill="rgb(236,2,51)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C2Compiler::compi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.17%)</title><rect x="1162.6" y="913" width="1.9" height="15.0" fill="rgb(214,9,29)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="923.5" font-size="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_block_write_begin (1 samples, 0.17%)</title><rect x="502.0" y="833" width="2.0" height="15.0" fill="rgb(249,197,34)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="843.5" font-size="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.17%)</title><rect x="23.7" y="3537" width="2.0" height="15.0" fill="rgb(220,110,13)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3547.5" font-size="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/regex/Pattern$Branch:::match (1 samples, 0.17%)</title><rect x="329.5" y="769" width="2.0" height="15.0" fill="rgb(241,135,44)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="779.5" font-size="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.17%)</title><rect x="355.0" y="897" width="1.9" height="15.0" fill="rgb(228,174,15)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="907.5" font-size="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$UndetVar$1:::apply (1 samples, 0.17%)</title><rect x="331.5" y="529" width="1.9" height="15.0" fill="rgb(226,157,32)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner (5 samples, 0.83%)</title><rect x="31.6" y="3553" width="9.8" height="15.0" fill="rgb(215,64,50)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>NTarjan::DFS (1 samples, 0.17%)</title><rect x="37.4" y="3425" width="2.0" height="15.0" fill="rgb(253,163,50)" rx="2" ry="2" />
<text text-anchor="" x="40.44" y="3435.5" font-size="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_io_completion (2 samples, 0.33%)</title><rect x="1146.9" y="849" width="3.9" height="15.0" fill="rgb(222,125,41)" rx="2" ry="2" />
<text text-anchor="" x="1149.88" y="859.5" font-size="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.17%)</title><rect x="355.0" y="817" width="1.9" height="15.0" fill="rgb(229,74,34)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="827.5" font-size="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.17%)</title><rect x="309.9" y="1089" width="2.0" height="15.0" fill="rgb(229,140,19)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1099.5" font-size="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::PhaseCFG (1 samples, 0.17%)</title><rect x="72.7" y="3457" width="2.0" height="15.0" fill="rgb(249,79,17)" rx="2" ry="2" />
<text text-anchor="" x="75.72" y="3467.5" font-size="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.17%)</title><rect x="190.3" y="2609" width="2.0" height="15.0" fill="rgb(230,73,21)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (1 samples, 0.17%)</title><rect x="1178.2" y="977" width="2.0" height="15.0" fill="rgb(246,187,6)" rx="2" ry="2" />
<text text-anchor="" x="1181.24" y="987.5" font-size="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:::attribSpeculative (1 samples, 0.17%)</title><rect x="331.5" y="865" width="1.9" height="15.0" fill="rgb(207,78,8)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="875.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="849" width="1.9" height="15.0" fill="rgb(244,69,41)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="859.5" font-size="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::BuildOopMaps (1 samples, 0.17%)</title><rect x="59.0" y="3441" width="2.0" height="15.0" fill="rgb(246,133,47)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3451.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="1873" width="11.8" height="15.0" fill="rgb(244,76,7)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1883.5" font-size="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/TreeTranslator:::translate (2 samples, 0.33%)</title><rect x="317.7" y="1137" width="4.0" height="15.0" fill="rgb(224,181,25)" rx="2" ry="2" />
<text text-anchor="" x="320.74" y="1147.5" font-size="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$9:::doLookup (1 samples, 0.17%)</title><rect x="311.9" y="257" width="1.9" height="15.0" fill="rgb(227,137,37)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.17%)</title><rect x="190.3" y="3457" width="2.0" height="15.0" fill="rgb(221,41,30)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3467.5" font-size="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/Gen:::genDef (3 samples, 0.50%)</title><rect x="339.3" y="1153" width="5.9" height="15.0" fill="rgb(207,105,27)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1985" width="11.8" height="15.0" fill="rgb(250,13,27)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1995.5" font-size="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::update_dead_node_list (1 samples, 0.17%)</title><rect x="192.3" y="3457" width="2.0" height="15.0" fill="rgb(206,130,32)" rx="2" ry="2" />
<text text-anchor="" x="195.29" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseConservativeCoalesce::coalesce (1 samples, 0.17%)</title><rect x="139.4" y="3425" width="1.9" height="15.0" fill="rgb(249,4,28)" rx="2" ry="2" />
<text text-anchor="" x="142.37" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="351.1" y="1185" width="1.9" height="15.0" fill="rgb(219,215,13)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2001" width="2.0" height="15.0" fill="rgb(254,126,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2011.5" font-size="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$AliveAnalyzer:::visitMethodDef (1 samples, 0.17%)</title><rect x="349.1" y="1249" width="2.0" height="15.0" fill="rgb(219,1,33)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1259.5" font-size="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 (348 samples, 57.81%)</title><rect x="480.4" y="1121" width="682.2" height="15.0" fill="rgb(222,201,45)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run (1 samples, 0.17%)</title><rect x="1186.1" y="3569" width="1.9" height="15.0" fill="rgb(254,179,22)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3169" width="2.0" height="15.0" fill="rgb(245,36,16)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (6 samples, 1.00%)</title><rect x="349.1" y="1937" width="11.8" height="15.0" fill="rgb(251,185,28)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1947.5" font-size="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 (7 samples, 1.16%)</title><rect x="505.9" y="977" width="13.7" height="15.0" fill="rgb(243,227,37)" rx="2" ry="2" />
<text text-anchor="" x="508.91" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3441" width="1.9" height="15.0" fill="rgb(220,75,36)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2673" width="891.8" height="15.0" fill="rgb(239,18,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2683.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/util/jar/JarFile:::getManifestFromReference (1 samples, 0.17%)</title><rect x="351.1" y="1041" width="1.9" height="15.0" fill="rgb(240,214,43)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1051.5" font-size="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 (5 samples, 0.83%)</title><rect x="274.6" y="3521" width="9.8" height="15.0" fill="rgb(250,33,53)" rx="2" ry="2" />
<text text-anchor="" x="277.62" y="3531.5" font-size="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] (2 samples, 0.33%)</title><rect x="249.1" y="3569" width="4.0" height="15.0" fill="rgb(249,183,29)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="3579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Symbol::increment_refcount (1 samples, 0.17%)</title><rect x="239.3" y="3441" width="2.0" height="15.0" fill="rgb(239,62,45)" rx="2" ry="2" />
<text text-anchor="" x="242.34" y="3451.5" font-size="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.17%)</title><rect x="358.9" y="945" width="2.0" height="15.0" fill="rgb(254,206,15)" rx="2" ry="2" />
<text text-anchor="" x="361.90" y="955.5" font-size="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_run_queue (3 samples, 0.50%)</title><rect x="1164.5" y="817" width="5.9" height="15.0" fill="rgb(209,36,33)" rx="2" ry="2" />
<text text-anchor="" x="1167.52" y="827.5" font-size="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::alloc_free_reg (1 samples, 0.17%)</title><rect x="233.5" y="3361" width="1.9" height="15.0" fill="rgb(237,190,9)" rx="2" ry="2" />
<text text-anchor="" x="236.46" y="3371.5" font-size="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 (4 samples, 0.66%)</title><rect x="1162.6" y="1009" width="7.8" height="15.0" fill="rgb(209,138,12)" rx="2" ry="2" />
<text text-anchor="" x="1165.56" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>block_write_end (1 samples, 0.17%)</title><rect x="504.0" y="817" width="1.9" height="15.0" fill="rgb(210,189,45)" rx="2" ry="2" />
<text text-anchor="" x="506.95" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2929" width="891.8" height="15.0" fill="rgb(217,69,47)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2939.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/jvm/Gen:::genDef (3 samples, 0.50%)</title><rect x="339.3" y="1233" width="5.9" height="15.0" fill="rgb(214,156,24)" rx="2" ry="2" />
<text text-anchor="" x="342.30" y="1243.5" font-size="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.17%)</title><rect x="349.1" y="1217" width="2.0" height="15.0" fill="rgb(218,65,46)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1227.5" font-size="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/Code:::endScope (1 samples, 0.17%)</title><rect x="307.9" y="1025" width="2.0" height="15.0" fill="rgb(218,2,12)" rx="2" ry="2" />
<text text-anchor="" x="310.94" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (28 samples, 4.65%)</title><rect x="292.3" y="2049" width="54.8" height="15.0" fill="rgb(206,2,31)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Inter..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1489" width="1.9" height="15.0" fill="rgb(219,16,53)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2497" width="891.8" height="15.0" fill="rgb(227,185,44)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2507.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>__generic_file_write_iter (5 samples, 0.83%)</title><rect x="509.8" y="881" width="9.8" height="15.0" fill="rgb(210,147,40)" rx="2" ry="2" />
<text text-anchor="" x="512.83" y="891.5" font-size="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.17%)</title><rect x="335.4" y="849" width="1.9" height="15.0" fill="rgb(219,208,1)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="859.5" font-size="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 (2 samples, 0.33%)</title><rect x="355.0" y="1233" width="3.9" height="15.0" fill="rgb(218,91,53)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="1243.5" font-size="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_release_buffers (1 samples, 0.17%)</title><rect x="12.0" y="3377" width="1.9" height="15.0" fill="rgb(228,60,27)" rx="2" ry="2" />
<text text-anchor="" x="14.96" y="3387.5" font-size="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/Gen:::genStat (1 samples, 0.17%)</title><rect x="341.3" y="833" width="1.9" height="15.0" fill="rgb(213,155,17)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OneContigSpaceCardGeneration::oop_since_save_marks_iterate_nv (1 samples, 0.17%)</title><rect x="53.1" y="3425" width="2.0" height="15.0" fill="rgb(247,221,36)" rx="2" ry="2" />
<text text-anchor="" x="56.12" y="3435.5" font-size="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:::unannotatedType (1 samples, 0.17%)</title><rect x="333.4" y="721" width="2.0" height="15.0" fill="rgb(224,126,30)" rx="2" ry="2" />
<text text-anchor="" x="336.42" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2865" width="2.0" height="15.0" fill="rgb(253,68,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1329" width="1.9" height="15.0" fill="rgb(236,211,42)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1339.5" font-size="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/regex/Pattern$Branch:::match (1 samples, 0.17%)</title><rect x="329.5" y="833" width="2.0" height="15.0" fill="rgb(234,192,22)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="843.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="961" width="3.9" height="15.0" fill="rgb(250,123,40)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="311.9" y="689" width="1.9" height="15.0" fill="rgb(228,98,0)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2145" width="2.0" height="15.0" fill="rgb(235,132,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2155.5" font-size="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 (5 samples, 0.83%)</title><rect x="31.6" y="3505" width="9.8" height="15.0" fill="rgb(208,196,5)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="3515.5" font-size="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.17%)</title><rect x="300.1" y="737" width="2.0" height="15.0" fill="rgb(241,222,50)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2385" width="2.0" height="15.0" fill="rgb(251,227,19)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Instruction::exact_type (1 samples, 0.17%)</title><rect x="209.9" y="3249" width="2.0" height="15.0" fill="rgb(209,180,53)" rx="2" ry="2" />
<text text-anchor="" x="212.93" y="3259.5" font-size="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/Gen:::visitIf (1 samples, 0.17%)</title><rect x="341.3" y="785" width="1.9" height="15.0" fill="rgb(245,131,7)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="795.5" font-size="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.17%)</title><rect x="484.4" y="961" width="1.9" height="15.0" fill="rgb(254,147,42)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="971.5" font-size="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$AttributeReader:::accepts (1 samples, 0.17%)</title><rect x="335.4" y="673" width="1.9" height="15.0" fill="rgb(227,65,14)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (1 samples, 0.17%)</title><rect x="23.7" y="3521" width="2.0" height="15.0" fill="rgb(245,99,39)" rx="2" ry="2" />
<text text-anchor="" x="26.72" y="3531.5" font-size="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 (7 samples, 1.16%)</title><rect x="505.9" y="945" width="13.7" height="15.0" fill="rgb(237,165,21)" rx="2" ry="2" />
<text text-anchor="" x="508.91" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Arena::contains (1 samples, 0.17%)</title><rect x="64.9" y="3425" width="1.9" height="15.0" fill="rgb(207,48,9)" rx="2" ry="2" />
<text text-anchor="" x="67.88" y="3435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__block_commit_write.isra.28 (1 samples, 0.17%)</title><rect x="1176.3" y="849" width="1.9" height="15.0" fill="rgb(248,155,44)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="859.5" font-size="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.17%)</title><rect x="190.3" y="2897" width="2.0" height="15.0" fill="rgb(224,99,3)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2907.5" font-size="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.17%)</title><rect x="311.9" y="1057" width="1.9" height="15.0" fill="rgb(223,208,23)" rx="2" ry="2" />
<text text-anchor="" x="314.86" y="1067.5" font-size="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::has_option (1 samples, 0.17%)</title><rect x="202.1" y="3233" width="2.0" height="15.0" fill="rgb(232,206,9)" rx="2" ry="2" />
<text text-anchor="" x="205.09" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="292.3" y="1713" width="1.9" height="15.0" fill="rgb(224,196,47)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2753" width="2.0" height="15.0" fill="rgb(208,205,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2763.5" font-size="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_get_inode_loc (1 samples, 0.17%)</title><rect x="251.1" y="3313" width="2.0" height="15.0" fill="rgb(218,218,9)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3323.5" font-size="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 (6 samples, 1.00%)</title><rect x="349.1" y="1761" width="11.8" height="15.0" fill="rgb(242,80,53)" rx="2" ry="2" />
<text text-anchor="" x="352.10" y="1771.5" font-size="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.17%)</title><rect x="1148.8" y="753" width="2.0" height="15.0" fill="rgb(236,0,47)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="763.5" font-size="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/Locations:::lazy (1 samples, 0.17%)</title><rect x="351.1" y="1201" width="1.9" height="15.0" fill="rgb(222,209,8)" rx="2" ry="2" />
<text text-anchor="" x="354.06" y="1211.5" font-size="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/regex/Pattern$Branch:::match (1 samples, 0.17%)</title><rect x="329.5" y="737" width="2.0" height="15.0" fill="rgb(216,112,9)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIFG::remove_node (2 samples, 0.33%)</title><rect x="92.3" y="3425" width="3.9" height="15.0" fill="rgb(214,203,20)" rx="2" ry="2" />
<text text-anchor="" x="95.33" y="3435.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="929" width="3.9" height="15.0" fill="rgb(208,120,36)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2961" width="2.0" height="15.0" fill="rgb(228,197,21)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2971.5" font-size="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:::close (1 samples, 0.17%)</title><rect x="482.4" y="1057" width="2.0" height="15.0" fill="rgb(240,153,26)" rx="2" ry="2" />
<text text-anchor="" x="485.39" y="1067.5" font-size="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$JCThrow:::accept (1 samples, 0.17%)</title><rect x="309.9" y="865" width="2.0" height="15.0" fill="rgb(254,137,35)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="875.5" font-size="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.17%)</title><rect x="484.4" y="929" width="1.9" height="15.0" fill="rgb(252,32,30)" rx="2" ry="2" />
<text text-anchor="" x="487.35" y="939.5" font-size="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 (4 samples, 0.66%)</title><rect x="229.5" y="3441" width="7.9" height="15.0" fill="rgb(247,203,15)" rx="2" ry="2" />
<text text-anchor="" x="232.53" y="3451.5" font-size="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:::block (1 samples, 0.17%)</title><rect x="300.1" y="817" width="2.0" height="15.0" fill="rgb(217,61,4)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="827.5" font-size="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 (2 samples, 0.33%)</title><rect x="286.4" y="3249" width="3.9" height="15.0" fill="rgb(222,147,37)" rx="2" ry="2" />
<text text-anchor="" x="289.38" y="3259.5" font-size="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.17%)</title><rect x="327.5" y="1089" width="2.0" height="15.0" fill="rgb(239,204,28)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1099.5" font-size="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.17%)</title><rect x="355.0" y="865" width="1.9" height="15.0" fill="rgb(244,3,47)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="875.5" font-size="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.17%)</title><rect x="251.1" y="3457" width="2.0" height="15.0" fill="rgb(211,209,39)" rx="2" ry="2" />
<text text-anchor="" x="254.10" y="3467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="3233" width="2.0" height="15.0" fill="rgb(243,211,35)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="3243.5" font-size="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::Opcode (1 samples, 0.17%)</title><rect x="151.1" y="3425" width="2.0" height="15.0" fill="rgb(214,115,30)" rx="2" ry="2" />
<text text-anchor="" x="154.13" y="3435.5" font-size="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 (3 samples, 0.50%)</title><rect x="490.2" y="929" width="5.9" height="15.0" fill="rgb(221,54,53)" rx="2" ry="2" />
<text text-anchor="" x="493.23" y="939.5" font-size="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_read (3 samples, 0.50%)</title><rect x="284.4" y="3521" width="5.9" height="15.0" fill="rgb(253,142,14)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1186.1" y="3201" width="1.9" height="15.0" fill="rgb(215,83,3)" rx="2" ry="2" />
<text text-anchor="" x="1189.08" y="3211.5" font-size="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 (2 samples, 0.33%)</title><rect x="260.9" y="3313" width="3.9" height="15.0" fill="rgb(253,77,50)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="323.6" y="1073" width="2.0" height="15.0" fill="rgb(222,99,52)" rx="2" ry="2" />
<text text-anchor="" x="326.62" y="1083.5" font-size="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.17%)</title><rect x="335.4" y="1137" width="1.9" height="15.0" fill="rgb(213,67,0)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="1147.5" font-size="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.17%)</title><rect x="190.3" y="2801" width="2.0" height="15.0" fill="rgb(225,168,34)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2811.5" font-size="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$BasicLookupHelper:::lookup (1 samples, 0.17%)</title><rect x="355.0" y="593" width="1.9" height="15.0" fill="rgb(239,188,20)" rx="2" ry="2" />
<text text-anchor="" x="357.98" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.17%)</title><rect x="53.1" y="3393" width="2.0" height="15.0" fill="rgb(249,150,49)" rx="2" ry="2" />
<text text-anchor="" x="56.12" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LIRGenerator::state_for (1 samples, 0.17%)</title><rect x="231.5" y="3377" width="2.0" height="15.0" fill="rgb(253,28,43)" rx="2" ry="2" />
<text text-anchor="" x="234.50" y="3387.5" font-size="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.17%)</title><rect x="329.5" y="1105" width="2.0" height="15.0" fill="rgb(240,194,38)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="1115.5" font-size="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$9:::doLookup (1 samples, 0.17%)</title><rect x="331.5" y="705" width="1.9" height="15.0" fill="rgb(217,13,32)" rx="2" ry="2" />
<text text-anchor="" x="334.46" y="715.5" font-size="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.17%)</title><rect x="327.5" y="1121" width="2.0" height="15.0" fill="rgb(238,68,15)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (455 samples, 75.58%)</title><rect x="292.3" y="2305" width="891.8" height="15.0" fill="rgb(239,219,50)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="2315.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 (455 samples, 75.58%)</title><rect x="292.3" y="3265" width="891.8" height="15.0" fill="rgb(241,8,33)" rx="2" ry="2" />
<text text-anchor="" x="295.26" y="3275.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/util/zip/Deflater:::deflateBytes (1 samples, 0.17%)</title><rect x="480.4" y="1041" width="2.0" height="15.0" fill="rgb(228,211,52)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1051.5" font-size="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.17%)</title><rect x="206.0" y="3185" width="2.0" height="15.0" fill="rgb(253,91,33)" rx="2" ry="2" />
<text text-anchor="" x="209.01" y="3195.5" font-size="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 (3 samples, 0.50%)</title><rect x="284.4" y="3505" width="5.9" height="15.0" fill="rgb(250,6,8)" rx="2" ry="2" />
<text text-anchor="" x="287.42" y="3515.5" font-size="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.17%)</title><rect x="190.3" y="3201" width="2.0" height="15.0" fill="rgb(215,9,40)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="3211.5" font-size="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.17%)</title><rect x="335.4" y="769" width="1.9" height="15.0" fill="rgb(218,89,42)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="2705" width="2.0" height="15.0" fill="rgb(247,98,26)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2715.5" font-size="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 (2 samples, 0.33%)</title><rect x="502.0" y="945" width="3.9" height="15.0" fill="rgb(206,70,46)" rx="2" ry="2" />
<text text-anchor="" x="504.99" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpt_put_msg_frame (2 samples, 0.33%)</title><rect x="260.9" y="3265" width="3.9" height="15.0" fill="rgb(233,62,10)" rx="2" ry="2" />
<text text-anchor="" x="263.90" y="3275.5" font-size="12" 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 (8 samples, 1.33%)</title><rect x="43.3" y="3585" width="15.7" height="15.0" fill="rgb(214,85,30)" rx="2" ry="2" />
<text text-anchor="" x="46.32" y="3595.5" font-size="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.17%)</title><rect x="480.4" y="1009" width="2.0" height="15.0" fill="rgb(250,104,10)" rx="2" ry="2" />
<text text-anchor="" x="483.43" y="1019.5" font-size="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 (26 samples, 4.32%)</title><rect x="296.2" y="1841" width="50.9" height="15.0" fill="rgb(218,215,16)" rx="2" ry="2" />
<text text-anchor="" x="299.18" y="1851.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.17%)</title><rect x="1188.0" y="2721" width="2.0" height="15.0" fill="rgb(214,221,52)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="2731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="468.7" y="737" width="1.9" height="15.0" fill="rgb(240,57,3)" rx="2" ry="2" />
<text text-anchor="" x="471.67" y="747.5" font-size="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.17%)</title><rect x="1174.3" y="865" width="2.0" height="15.0" fill="rgb(210,51,41)" rx="2" ry="2" />
<text text-anchor="" x="1177.32" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (41 samples, 6.81%)</title><rect x="364.8" y="1617" width="80.3" height="15.0" fill="rgb(244,107,52)" rx="2" ry="2" />
<text text-anchor="" x="367.78" y="1627.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>block_write_end (1 samples, 0.17%)</title><rect x="1176.3" y="865" width="1.9" height="15.0" fill="rgb(220,74,31)" rx="2" ry="2" />
<text text-anchor="" x="1179.28" y="875.5" font-size="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.17%)</title><rect x="309.9" y="993" width="2.0" height="15.0" fill="rgb(215,43,10)" rx="2" ry="2" />
<text text-anchor="" x="312.90" y="1003.5" font-size="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:::visitSelect (1 samples, 0.17%)</title><rect x="315.8" y="1121" width="1.9" height="15.0" fill="rgb(243,173,45)" rx="2" ry="2" />
<text text-anchor="" x="318.78" y="1131.5" font-size="12" 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.33%)</title><rect x="360.9" y="1649" width="3.9" height="15.0" fill="rgb(227,12,53)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1659.5" font-size="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.17%)</title><rect x="190.3" y="2721" width="2.0" height="15.0" fill="rgb(224,180,22)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2731.5" font-size="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$JCIf:::accept (1 samples, 0.17%)</title><rect x="341.3" y="801" width="1.9" height="15.0" fill="rgb(218,164,39)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="811.5" font-size="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 (2 samples, 0.33%)</title><rect x="474.6" y="865" width="3.9" height="15.0" fill="rgb(218,228,24)" rx="2" ry="2" />
<text text-anchor="" x="477.55" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::allocate_instance (1 samples, 0.17%)</title><rect x="19.8" y="3521" width="2.0" height="15.0" fill="rgb(226,121,41)" rx="2" ry="2" />
<text text-anchor="" x="22.80" y="3531.5" font-size="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:::writeClassFile (1 samples, 0.17%)</title><rect x="337.3" y="1313" width="2.0" height="15.0" fill="rgb(240,47,24)" rx="2" ry="2" />
<text text-anchor="" x="340.34" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="341.3" y="529" width="1.9" height="15.0" fill="rgb(209,133,5)" rx="2" ry="2" />
<text text-anchor="" x="344.26" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.17%)</title><rect x="1188.0" y="1809" width="2.0" height="15.0" fill="rgb(225,26,20)" rx="2" ry="2" />
<text text-anchor="" x="1191.04" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ClearNoncleanCardWrapper::do_MemRegion (1 samples, 0.17%)</title><rect x="45.3" y="3377" width="1.9" height="15.0" fill="rgb(216,6,10)" rx="2" ry="2" />
<text text-anchor="" x="48.28" y="3387.5" font-size="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/regex/Matcher:::search (1 samples, 0.17%)</title><rect x="329.5" y="881" width="2.0" height="15.0" fill="rgb(240,213,2)" rx="2" ry="2" />
<text text-anchor="" x="332.50" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciEnv::get_field_by_index_impl (1 samples, 0.17%)</title><rect x="196.2" y="3297" width="2.0" height="15.0" fill="rgb(222,99,47)" rx="2" ry="2" />
<text text-anchor="" x="199.21" y="3307.5" font-size="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 (4 samples, 0.66%)</title><rect x="141.3" y="3441" width="7.9" height="15.0" fill="rgb(243,42,5)" rx="2" ry="2" />
<text text-anchor="" x="144.33" y="3451.5" font-size="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.17%)</title><rect x="190.3" y="2737" width="2.0" height="15.0" fill="rgb(216,134,42)" rx="2" ry="2" />
<text text-anchor="" x="193.33" y="2747.5" font-size="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 (427 samples, 70.93%)</title><rect x="347.1" y="2129" width="837.0" height="15.0" fill="rgb(214,50,13)" rx="2" ry="2" />
<text text-anchor="" x="350.14" y="2139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (1 samples, 0.17%)</title><rect x="1148.8" y="785" width="2.0" height="15.0" fill="rgb(254,132,16)" rx="2" ry="2" />
<text text-anchor="" x="1151.84" y="795.5" font-size="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.17%)</title><rect x="335.4" y="913" width="1.9" height="15.0" fill="rgb(218,152,52)" rx="2" ry="2" />
<text text-anchor="" x="338.38" y="923.5" font-size="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 (69 samples, 11.46%)</title><rect x="59.0" y="3489" width="135.3" height="15.0" fill="rgb(213,162,40)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="3499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Compile::Compile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/parser/JavacParser:::block (2 samples, 0.33%)</title><rect x="300.1" y="1233" width="3.9" height="15.0" fill="rgb(210,154,17)" rx="2" ry="2" />
<text text-anchor="" x="303.10" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment