Skip to content

Instantly share code, notes, and snippets.

@DanielThomas
Created July 6, 2017 21:24
Show Gist options
  • Save DanielThomas/11c4e5fd4090a206fe46563df542d2ab to your computer and use it in GitHub Desktop.
Save DanielThomas/11c4e5fd4090a206fe46563df542d2ab 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="3458" onload="init(evt)" viewBox="0 0 1200 3458" 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="3458.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="3441" 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="3441" 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>CodeBlob::CodeBlob (1 samples, 0.16%)</title><rect x="212.4" y="3201" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="215.39" 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>__xstat64 (1 samples, 0.16%)</title><rect x="290.7" y="3329" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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$JCBlock:::accept (1 samples, 0.16%)</title><rect x="346.1" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1745" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1755.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>CardTableModRefBS::non_clean_card_iterate_possibly_parallel (1 samples, 0.16%)</title><rect x="23.4" y="3169" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="26.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>Lcom/sun/tools/javac/comp/Resolve:::loadClass (1 samples, 0.16%)</title><rect x="1170.9" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="306.0" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>SystemDictionary::check_signature_loaders (1 samples, 0.16%)</title><rect x="38.6" y="2977" width="2.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>java-86820/86829 (25 samples, 4.05%)</title><rect x="216.2" y="3393" width="47.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="219.21" y="3403.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>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (2 samples, 0.32%)</title><rect x="328.9" y="753" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>all (618 samples, 100%)</title><rect x="10.0" y="3409" width="1180.0" height="15.0" fill="rgb(255,130,130)" 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>Interpreter (3 samples, 0.49%)</title><rect x="456.8" y="1217" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2049" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Interpreter (4 samples, 0.65%)</title><rect x="464.4" y="977" width="7.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.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>copy_user_generic_unrolled (1 samples, 0.16%)</title><rect x="285.0" y="3185" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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>scsi_io_completion (1 samples, 0.16%)</title><rect x="1130.8" y="609" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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>__vfs_read (1 samples, 0.16%)</title><rect x="283.0" y="3281" width="2.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="286.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>pagecache_get_page (1 samples, 0.16%)</title><rect x="519.8" y="577" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="522.81" 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.16%)</title><rect x="317.4" y="577" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>LinkResolver::resolve_special_call (1 samples, 0.16%)</title><rect x="231.5" y="3025" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="234.49" 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>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.16%)</title><rect x="1170.9" y="353" width="1.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>entry_SYSCALL_64_fastpath (3 samples, 0.49%)</title><rect x="273.5" y="3345" width="5.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="276.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>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1281" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="145" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Parse::do_all_blocks (2 samples, 0.32%)</title><rect x="193.3" y="2929" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Ljava/lang/Object:::hashCode (1 samples, 0.16%)</title><rect x="1170.9" y="385" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>entry_SYSCALL_64_fastpath (2 samples, 0.32%)</title><rect x="1146.1" y="785" width="3.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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$4:::argumentsAcceptable (1 samples, 0.16%)</title><rect x="309.8" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>JavaCalls::call_helper (1 samples, 0.16%)</title><rect x="1178.5" y="1537" width="2.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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:::selectSym (2 samples, 0.32%)</title><rect x="328.9" y="721" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/project/taskfactory/TaskPropertyInfo:::getValue (2 samples, 0.32%)</title><rect x="1176.6" y="1713" width="3.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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 (367 samples, 59.39%)</title><rect x="464.4" y="1201" width="700.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1211.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>activate_page (1 samples, 0.16%)</title><rect x="500.7" y="609" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="503.71" 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/code/Type$ClassType:::accept (1 samples, 0.16%)</title><rect x="304.0" y="945" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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>java_lang_Throwable::fill_in_stack_trace (1 samples, 0.16%)</title><rect x="466.3" y="273" width="2.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (349 samples, 56.47%)</title><rect x="472.1" y="945" width="666.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" y="955.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>Lcom/sun/tools/javac/tree/JCTree$JCIf:::accept (1 samples, 0.16%)</title><rect x="346.1" y="273" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/tree/JCTree$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="311.7" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>[libpthread-2.24.so] (2 samples, 0.32%)</title><rect x="432.0" y="1185" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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/LambdaToMethod:::translate (2 samples, 0.32%)</title><rect x="317.4" y="1089" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2529" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ret_from_intr (2 samples, 0.32%)</title><rect x="1128.9" y="721" width="3.8" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>Interpreter (1 samples, 0.16%)</title><rect x="1188.1" y="3009" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1191.09" 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/Attr:::visitIdent (1 samples, 0.16%)</title><rect x="323.1" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>page_cache_async_readahead (1 samples, 0.16%)</title><rect x="1138.4" y="641" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>Lorg/gradle/internal/reflect/JavaMethod:::invoke (368 samples, 59.55%)</title><rect x="464.4" y="1505" width="702.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1515.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>ext4_release_file (1 samples, 0.16%)</title><rect x="1165.2" y="1025" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>__check_object_size (1 samples, 0.16%)</title><rect x="432.0" y="1025" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>path_lookupat (1 samples, 0.16%)</title><rect x="296.4" y="3265" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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.16%)</title><rect x="466.3" y="449" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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/tree/TreeTranslator:::translate (1 samples, 0.16%)</title><rect x="319.3" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>__vfs_read (1 samples, 0.16%)</title><rect x="458.7" y="1121" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>SharedRuntime::resolve_helper (1 samples, 0.16%)</title><rect x="309.8" y="257" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>ciBytecodeStream::get_declared_method_holder (1 samples, 0.16%)</title><rect x="204.8" y="3041" width="1.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="207.76" 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/comp/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.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>[unknown] (1 samples, 0.16%)</title><rect x="470.2" y="769" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>Filtering_DCTOC::walk_mem_region (1 samples, 0.16%)</title><rect x="23.4" y="3121" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="26.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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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/Check:::firstIncompatibleTypeArg (1 samples, 0.16%)</title><rect x="315.5" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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>LoadNode::Ideal (1 samples, 0.16%)</title><rect x="195.2" y="2817" width="1.9" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::hash (45 samples, 7.28%)</title><rect x="349.9" y="1249" width="85.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1585" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>__generic_file_write_iter (2 samples, 0.32%)</title><rect x="275.4" y="3249" width="3.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="278.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>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="311.7" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>copy_page_to_iter_iovec (1 samples, 0.16%)</title><rect x="498.8" y="609" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2145" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>jni_GetPrimitiveArrayCritical (1 samples, 0.16%)</title><rect x="1136.5" y="769" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1139.54" 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>user_path_at_empty (1 samples, 0.16%)</title><rect x="296.4" y="3297" width="1.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>Parse::Parse (2 samples, 0.32%)</title><rect x="197.1" y="3025" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1174.7" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>page_fault (1 samples, 0.16%)</title><rect x="10.0" y="3281" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="317.4" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/comp/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="309.8" y="385" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Compilation::compile_java_method (17 samples, 2.75%)</title><rect x="220.0" y="3233" width="32.5" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" y="3243.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>Lcom/sun/tools/javac/comp/Resolve:::findIdentInPackage (1 samples, 0.16%)</title><rect x="327.0" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>thread_entry (461 samples, 74.60%)</title><rect x="300.2" y="3313" width="880.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3323.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>MethodData::allocate (1 samples, 0.16%)</title><rect x="250.6" y="3169" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2849" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/jvm/ClassReader:::classSigToType (1 samples, 0.16%)</title><rect x="327.0" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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:::visitBlock (1 samples, 0.16%)</title><rect x="1174.7" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>queue_unplugged (1 samples, 0.16%)</title><rect x="1165.2" y="801" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>ciBytecodeStream::get_method (1 samples, 0.16%)</title><rect x="227.7" y="3025" width="1.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="230.67" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="263.9" y="3105" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2705" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>JavaThread::run (1 samples, 0.16%)</title><rect x="1180.5" y="3345" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>ParseGenerator::generate (1 samples, 0.16%)</title><rect x="193.3" y="2769" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="433" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>ext4_page_mkwrite (1 samples, 0.16%)</title><rect x="10.0" y="3185" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>page_fault (1 samples, 0.16%)</title><rect x="46.3" y="3153" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="263.9" y="3169" width="2.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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/comp/Resolve$BasicLookupHelper:::lookup (2 samples, 0.32%)</title><rect x="328.9" y="689" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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:::findMethod (1 samples, 0.16%)</title><rect x="332.7" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/Resolve:::checkMethod (1 samples, 0.16%)</title><rect x="330.8" y="305" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>Parse::do_call (2 samples, 0.32%)</title><rect x="202.8" y="3057" width="3.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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/tree/JCTree$JCIf:::accept (2 samples, 0.32%)</title><rect x="328.9" y="945" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>deflate_slow (319 samples, 51.62%)</title><rect x="523.6" y="753" width="609.1" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="526.62" y="763.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>Lcom/sun/tools/javac/comp/Attr:::attribClassBody (6 samples, 0.97%)</title><rect x="328.9" y="1073" width="11.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/ClassWriter:::writePool (1 samples, 0.16%)</title><rect x="340.3" y="1057" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="343.32" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2721" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/jvm/ClassReader:::sigToType (1 samples, 0.16%)</title><rect x="327.0" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="474.0" y="753" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="476.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>Parse::do_all_blocks (9 samples, 1.46%)</title><rect x="189.5" y="3217" width="17.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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/Infer$GraphSolver:::solve (1 samples, 0.16%)</title><rect x="311.7" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/comp/Attr:::checkIdInternal (1 samples, 0.16%)</title><rect x="332.7" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.32%)</title><rect x="300.2" y="1073" width="3.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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$JCIf:::accept (1 samples, 0.16%)</title><rect x="346.1" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>ClearNoncleanCardWrapper::do_MemRegion (1 samples, 0.16%)</title><rect x="23.4" y="3153" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="26.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>Parse::merge_common (1 samples, 0.16%)</title><rect x="193.3" y="2689" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Interpreter (1 samples, 0.16%)</title><rect x="311.7" y="929" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>GraphKit::gen_checkcast (1 samples, 0.16%)</title><rect x="195.2" y="2865" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>Lcom/sun/tools/javac/tree/TreeTranslator:::translate (1 samples, 0.16%)</title><rect x="317.4" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>alloc_pages_current (1 samples, 0.16%)</title><rect x="1148.0" y="593" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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>Method::build__method_data (1 samples, 0.16%)</title><rect x="250.6" y="3185" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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>PhaseIdealLoop::get_late_ctrl (1 samples, 0.16%)</title><rect x="162.8" y="3201" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="165.75" 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>Parse::do_one_bytecode (9 samples, 1.46%)</title><rect x="189.5" y="3185" width="17.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>Parse::do_one_bytecode (2 samples, 0.32%)</title><rect x="193.3" y="2897" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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:::checkMethodId (1 samples, 0.16%)</title><rect x="330.8" y="369" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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/comp/Attr:::visitBlock (1 samples, 0.16%)</title><rect x="311.7" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>filename_lookup (1 samples, 0.16%)</title><rect x="296.4" y="3281" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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/jvm/Gen$2:::gen (1 samples, 0.16%)</title><rect x="346.1" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 8.90%)</title><rect x="349.9" y="1521" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Ljava/lang/ClassLoader:::loadClass (1 samples, 0.16%)</title><rect x="466.3" y="385" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="279.2" y="3297" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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 (5 samples, 0.81%)</title><rect x="1167.1" y="1281" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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 (1 samples, 0.16%)</title><rect x="1180.5" y="3217" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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.16%)</title><rect x="1163.3" y="1089" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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>__block_commit_write.isra.28 (1 samples, 0.16%)</title><rect x="267.8" y="3121" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="338.4" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>Parse::do_one_block (9 samples, 1.46%)</title><rect x="189.5" y="3201" width="17.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2033" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>flush_icache_stub (1 samples, 0.16%)</title><rect x="332.7" y="273" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Lcom/sun/tools/javac/comp/Resolve:::selectBest (1 samples, 0.16%)</title><rect x="309.8" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>JavaCalls::call_helper (1 samples, 0.16%)</title><rect x="1163.3" y="1041" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="311.7" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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$JCImport:::accept (1 samples, 0.16%)</title><rect x="323.1" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="241" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/comp/Attr:::attribClass (6 samples, 0.97%)</title><rect x="328.9" y="1105" width="11.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Ljava/util/zip/Deflater:::deflateBytes (11 samples, 1.78%)</title><rect x="475.9" y="801" width="21.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="478.89" 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.16%)</title><rect x="307.9" y="641" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Lcom/sun/tools/javac/jvm/Gen:::genStat (3 samples, 0.49%)</title><rect x="342.2" y="1009" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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.16%)</title><rect x="306.0" y="833" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="308.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>Parse::Parse (1 samples, 0.16%)</title><rect x="202.8" y="3025" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>Compile::init_buffer (1 samples, 0.16%)</title><rect x="44.4" y="3217" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="47.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>__memmove_sse2_unaligned_erms (1 samples, 0.16%)</title><rect x="399.5" y="1153" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="402.51" 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/Types$Subst:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="338.4" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>deflate (2 samples, 0.32%)</title><rect x="512.2" y="769" width="3.8" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>Reflection::invoke (368 samples, 59.55%)</title><rect x="464.4" y="1393" width="702.7" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1403.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>Interpreter (1 samples, 0.16%)</title><rect x="1170.9" y="929" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>blk_run_queue (1 samples, 0.16%)</title><rect x="1130.8" y="561" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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>Ljava/util/zip/Deflater:::deflateBytes (322 samples, 52.10%)</title><rect x="523.6" y="801" width="614.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="526.62" y="811.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>MethodLiveness::init_basic_blocks (1 samples, 0.16%)</title><rect x="221.9" y="3089" width="2.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="309.8" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/tree/JCTree$JCNewClass:::accept (1 samples, 0.16%)</title><rect x="309.8" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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.16%)</title><rect x="307.9" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Interpreter (3 samples, 0.49%)</title><rect x="456.8" y="1201" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>BacktraceBuilder::push (1 samples, 0.16%)</title><rect x="466.3" y="241" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.24.so] (2 samples, 0.32%)</title><rect x="1140.4" y="817" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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 (368 samples, 59.55%)</title><rect x="464.4" y="1217" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1227.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>SafepointSynchronize::begin (2 samples, 0.32%)</title><rect x="15.7" y="3313" width="3.8" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="18.73" 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>__vfs_read (1 samples, 0.16%)</title><rect x="279.2" y="3249" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>NullCheckEliminator::merge_state_for (1 samples, 0.16%)</title><rect x="237.2" y="3153" width="1.9" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="240.22" 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/jvm/Gen:::visitIf (1 samples, 0.16%)</title><rect x="346.1" y="177" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2977" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2641" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (26 samples, 4.21%)</title><rect x="300.2" y="1505" width="49.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1515.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (378 samples, 61.17%)</title><rect x="454.9" y="1649" width="721.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="457.89" y="1659.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>do_writepages (1 samples, 0.16%)</title><rect x="1165.2" y="961" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>PhaseIdealLoop::build__optimize (17 samples, 2.75%)</title><rect x="151.3" y="3233" width="32.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="154.29" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ph..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="673" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>ciMethod::ensure_method_data (1 samples, 0.16%)</title><rect x="250.6" y="3201" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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/comp/Attr:::visitApply (1 samples, 0.16%)</title><rect x="309.8" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>GraphBuilder::GraphBuilder (6 samples, 0.97%)</title><rect x="221.9" y="3169" width="11.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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>Klass::external_name (1 samples, 0.16%)</title><rect x="218.1" y="3249" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="221.12" 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_write (1 samples, 0.16%)</title><rect x="470.2" y="689" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>Lorg/apache/commons/io/IOUtils:::copyLarge (1 samples, 0.16%)</title><rect x="470.2" y="801" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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:::attribTree (1 samples, 0.16%)</title><rect x="334.6" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.16%)</title><rect x="11.9" y="3169" width="1.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>LinkResolver::linktime_resolve_virtual_method (1 samples, 0.16%)</title><rect x="229.6" y="3025" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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 (1 samples, 0.16%)</title><rect x="346.1" y="449" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>SharedRuntime::resolve_opt_virtual_call_C (1 samples, 0.16%)</title><rect x="332.7" y="353" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/cache/internal/btree/CachingBlockStore:::flush (1 samples, 0.16%)</title><rect x="1180.5" y="2897" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>ext4_lookup (1 samples, 0.16%)</title><rect x="290.7" y="3169" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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/google/common/hash/AbstractByteHasher:::putBytes (23 samples, 3.72%)</title><rect x="355.6" y="1185" width="43.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="358.60" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lcom..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="311.7" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>MethodLiveness::get_liveness_at (1 samples, 0.16%)</title><rect x="199.0" y="2929" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="202.03" 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>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="753" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>ciEnv::register_method (1 samples, 0.16%)</title><rect x="212.4" y="3249" width="1.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="215.39" 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>PhaseGVN::transform_no_reclaim (1 samples, 0.16%)</title><rect x="197.1" y="2833" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (12 samples, 1.94%)</title><rect x="1140.4" y="1009" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="1019.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/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="1174.7" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/comp/Attr:::visitApply (1 samples, 0.16%)</title><rect x="1172.8" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>Type::meet_helper (1 samples, 0.16%)</title><rect x="195.2" y="2769" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>ComputeLinearScanOrder::ComputeLinearScanOrder (1 samples, 0.16%)</title><rect x="233.4" y="3185" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="236.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>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="881" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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/Resolve:::findConstructor (1 samples, 0.16%)</title><rect x="332.7" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/Resolve:::selectBest (1 samples, 0.16%)</title><rect x="330.8" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="346.1" y="65" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="279.2" y="3121" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="1170.9" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>__vfs_read (2 samples, 0.32%)</title><rect x="1140.4" y="753" width="3.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="1188.1" y="3041" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1191.09" 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>MethodData::compute_allocation_size_in_bytes (1 samples, 0.16%)</title><rect x="250.6" y="3153" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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>OopMapCacheEntry::fill (1 samples, 0.16%)</title><rect x="19.5" y="3089" width="2.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="323.1" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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/TransTypes:::addBridges (1 samples, 0.16%)</title><rect x="321.2" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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$JCMethodDecl:::accept (4 samples, 0.65%)</title><rect x="342.2" y="1057" width="7.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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/TreeTranslator:::translate (1 samples, 0.16%)</title><rect x="319.3" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>new_sync_read (1 samples, 0.16%)</title><rect x="283.0" y="3265" width="2.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="286.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>Ljava/lang/String:::startsWith (1 samples, 0.16%)</title><rect x="325.0" y="801" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>Parse::do_all_blocks (2 samples, 0.32%)</title><rect x="197.1" y="3009" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1297" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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/tree/TreeTranslator:::visitIf (1 samples, 0.16%)</title><rect x="317.4" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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:::checkId (1 samples, 0.16%)</title><rect x="332.7" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Lcom/sun/tools/javac/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="328.9" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3217" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ObjArrayKlass::oop_oop_iterate_nv (2 samples, 0.32%)</title><rect x="31.0" y="3169" width="3.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="34.00" 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>NodeHash::hash_find_insert (1 samples, 0.16%)</title><rect x="197.1" y="2817" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>__vfs_write (1 samples, 0.16%)</title><rect x="1186.2" y="2945" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="474.0" y="737" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="476.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>PhaseCFG::schedule_node_into_block (1 samples, 0.16%)</title><rect x="55.8" y="3185" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="58.83" 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>call_stub (26 samples, 4.21%)</title><rect x="300.2" y="1393" width="49.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1403.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (5 samples, 0.81%)</title><rect x="328.9" y="1009" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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.16%)</title><rect x="342.2" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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/comp/Resolve$9:::doLookup (2 samples, 0.32%)</title><rect x="328.9" y="673" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>ParseGenerator::generate (9 samples, 1.46%)</title><rect x="189.5" y="3249" width="17.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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.16%)</title><rect x="466.3" y="865" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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/DeferredAttr$DeferredTypeMap:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="334.6" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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/jvm/Code:::branch (1 samples, 0.16%)</title><rect x="344.1" y="849" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="347.14" 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>ondemand_readahead (1 samples, 0.16%)</title><rect x="279.2" y="3169" width="1.9" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1825" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="433.9" y="865" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="436.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/Symbol$TypeSymbol:::precedes (1 samples, 0.16%)</title><rect x="311.7" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciMethod::get_method_blocks (1 samples, 0.16%)</title><rect x="221.9" y="3073" width="2.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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/file/ZipFileIndexArchive$ZipFileIndexFileObject:::getKind (1 samples, 0.16%)</title><rect x="328.9" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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.16%)</title><rect x="466.3" y="465" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1163.3" y="1073" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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>Reflection::invoke (1 samples, 0.16%)</title><rect x="1178.5" y="1553" width="2.0" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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.16%)</title><rect x="466.3" y="641" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ThreadStateTransition::trans_and_fence (1 samples, 0.16%)</title><rect x="1184.3" y="2977" width="1.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>Interpreter (5 samples, 0.81%)</title><rect x="1167.1" y="1329" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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_helper (368 samples, 59.55%)</title><rect x="464.4" y="1377" width="702.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1387.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/Attr:::attribClassBody (3 samples, 0.49%)</title><rect x="1170.9" y="1073" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>GenCollectedHeap::oop_since_save_marks_iterate (5 samples, 0.81%)</title><rect x="25.3" y="3217" width="9.5" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="28.28" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="288.8" y="3073" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="291.77" 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>[libpthread-2.24.so] (4 samples, 0.65%)</title><rect x="516.0" y="753" width="7.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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/TreeTranslator:::translate (2 samples, 0.32%)</title><rect x="317.4" y="913" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>PhaseIterGVN::optimize (2 samples, 0.32%)</title><rect x="179.9" y="3217" width="3.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="182.94" 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/tree/TreeTranslator:::visitBlock (1 samples, 0.16%)</title><rect x="317.4" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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:::genStat (1 samples, 0.16%)</title><rect x="1169.0" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="309.8" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/Infer$InferenceContext:::notifyChange (1 samples, 0.16%)</title><rect x="332.7" y="385" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/Resolve:::findIdent (1 samples, 0.16%)</title><rect x="323.1" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>PhaseGVN::transform_no_reclaim (1 samples, 0.16%)</title><rect x="195.2" y="2833" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>Parse::do_one_bytecode (6 samples, 0.97%)</title><rect x="191.4" y="3089" width="11.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>ext4_llseek (1 samples, 0.16%)</title><rect x="460.6" y="1137" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="463.61" 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/Items$CondItem:::jumpFalse (1 samples, 0.16%)</title><rect x="344.1" y="865" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="347.14" 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>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (1 samples, 0.16%)</title><rect x="472.1" y="849" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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>__alloc_pages_nodemask (1 samples, 0.16%)</title><rect x="46.3" y="3073" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>blk_queue_bio (1 samples, 0.16%)</title><rect x="1165.2" y="833" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>Node::rematerialize (1 samples, 0.16%)</title><rect x="57.7" y="3217" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="60.73" 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>[unknown] (1 samples, 0.16%)</title><rect x="1182.4" y="3377" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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$JCClassDecl:::accept (1 samples, 0.16%)</title><rect x="321.2" y="1073" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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$JCBlock:::accept (2 samples, 0.32%)</title><rect x="306.0" y="897" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3025" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="309.8" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Parse::do_call (1 samples, 0.16%)</title><rect x="193.3" y="2881" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Lcom/sun/tools/javac/comp/Attr:::visitNewClass (1 samples, 0.16%)</title><rect x="309.8" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>jni_GetObjectField (1 samples, 0.16%)</title><rect x="506.4" y="769" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="509.44" 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>sys_read (4 samples, 0.65%)</title><rect x="498.8" y="721" width="7.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="273.5" y="3121" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::snapshot (9 samples, 1.46%)</title><rect x="437.7" y="1361" width="17.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="440.70" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2529" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Parse::do_one_block (1 samples, 0.16%)</title><rect x="197.1" y="2993" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>GenerateOopMap::do_method (1 samples, 0.16%)</title><rect x="19.5" y="3009" width="2.0" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>__fget (1 samples, 0.16%)</title><rect x="271.6" y="3265" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1489" width="49.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1499.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>Compiler::compile_method (22 samples, 3.56%)</title><rect x="220.0" y="3281" width="42.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" y="3291.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>GraphBuilder::invoke (1 samples, 0.16%)</title><rect x="225.8" y="2881" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>Ljava/net/URL:::openConnection (1 samples, 0.16%)</title><rect x="468.3" y="881" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="471.25" 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>Ljava/io/FileInputStream:::readBytes (5 samples, 0.81%)</title><rect x="498.8" y="801" width="9.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="161" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (349 samples, 56.47%)</title><rect x="472.1" y="961" width="666.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" y="971.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>Interpreter (1 samples, 0.16%)</title><rect x="1169.0" y="1137" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>ext4_reserve_inode_write (1 samples, 0.16%)</title><rect x="514.1" y="529" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::Compile (92 samples, 14.89%)</title><rect x="38.6" y="3265" width="175.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3275.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>Lsun/security/provider/ByteArrayAccess:::b2iLittle64 (2 samples, 0.32%)</title><rect x="395.7" y="1153" width="3.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="398.70" 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>call_stub (1 samples, 0.16%)</title><rect x="1178.5" y="1521" width="2.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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 (1 samples, 0.16%)</title><rect x="466.3" y="833" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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:::visitExec (1 samples, 0.16%)</title><rect x="346.1" y="97" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>__elv_add_request (1 samples, 0.16%)</title><rect x="502.6" y="545" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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:::visitSelect (1 samples, 0.16%)</title><rect x="1170.9" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Matcher::match_tree (1 samples, 0.16%)</title><rect x="50.1" y="3201" width="1.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="53.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>GraphBuilder::iterate_bytecodes_for_block (1 samples, 0.16%)</title><rect x="225.8" y="2897" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>Ljava/io/RandomAccessFile$1:::close (1 samples, 0.16%)</title><rect x="1165.2" y="1169" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="342.2" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>Ljava/util/GregorianCalendar:::getWeekNumber (1 samples, 0.16%)</title><rect x="456.8" y="1057" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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.16%)</title><rect x="197.1" y="2897" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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/Infer:::getParameterizedSupers (1 samples, 0.16%)</title><rect x="311.7" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>java_start (93 samples, 15.05%)</title><rect x="38.6" y="3361" width="177.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3371.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>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="785" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>walk_component (1 samples, 0.16%)</title><rect x="292.6" y="3201" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>Compilation::install_code (5 samples, 0.81%)</title><rect x="252.5" y="3233" width="9.5" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>Java_java_util_zip_Deflater_deflateBytes (322 samples, 52.10%)</title><rect x="523.6" y="785" width="614.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="526.62" y="795.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2257" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/comp/Attr:::visitNewClass (1 samples, 0.16%)</title><rect x="332.7" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="307.9" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>start_thread (93 samples, 15.05%)</title><rect x="38.6" y="3377" width="177.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3387.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>Lcom/sun/tools/javac/jvm/ClassReader:::loadClass (1 samples, 0.16%)</title><rect x="327.0" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="283.0" y="3345" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="286.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>Compile::init_scratch_buffer_blob (1 samples, 0.16%)</title><rect x="44.4" y="3201" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="47.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>Interpreter (4 samples, 0.65%)</title><rect x="1169.0" y="1233" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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.16%)</title><rect x="470.2" y="897" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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_all_blocks (1 samples, 0.16%)</title><rect x="202.8" y="3009" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>page_cache_sync_readahead (1 samples, 0.16%)</title><rect x="279.2" y="3185" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>Lsun/security/provider/MD5:::implCompress (1 samples, 0.16%)</title><rect x="453.0" y="1329" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="455.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>Ljava/lang/ClassLoader:::getResource (1 samples, 0.16%)</title><rect x="462.5" y="1281" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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 (6 samples, 0.97%)</title><rect x="306.0" y="1057" width="11.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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:::checkId (1 samples, 0.16%)</title><rect x="338.4" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>GraphBuilder::try_inline_full (2 samples, 0.32%)</title><rect x="225.8" y="3089" width="3.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>[libpthread-2.24.so] (2 samples, 0.32%)</title><rect x="265.9" y="3313" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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/Resolve$AbstractMethodCheck:::argumentsAcceptable (1 samples, 0.16%)</title><rect x="332.7" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/parser/JavacParser:::term2 (1 samples, 0.16%)</title><rect x="302.1" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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/ConventionAwareHelper:::getConventionValue (1 samples, 0.16%)</title><rect x="1176.6" y="1585" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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/comp/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="332.7" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>deflate_slow (11 samples, 1.78%)</title><rect x="475.9" y="753" width="21.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="478.89" 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>scsi_run_queue (1 samples, 0.16%)</title><rect x="1130.8" y="577" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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>wake_up_q (1 samples, 0.16%)</title><rect x="34.8" y="3233" width="1.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="37.82" 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>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="472.1" y="833" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="292.6" y="2961" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>Lcom/sun/tools/javac/jvm/Code$State:::dup (1 samples, 0.16%)</title><rect x="344.1" y="833" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="347.14" 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 (1 samples, 0.16%)</title><rect x="273.5" y="3265" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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.16%)</title><rect x="470.2" y="849" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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:::lookupMethod (1 samples, 0.16%)</title><rect x="309.8" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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 (45 samples, 7.28%)</title><rect x="349.9" y="1313" width="85.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lcom/sun/tools/javac/comp/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="307.9" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1170.9" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>block_write_end (1 samples, 0.16%)</title><rect x="267.8" y="3137" width="1.9" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>__elv_add_request (1 samples, 0.16%)</title><rect x="288.8" y="3121" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="291.77" 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>Parse::do_one_block (1 samples, 0.16%)</title><rect x="193.3" y="2817" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Lorg/codehaus/groovy/control/ResolveVisitor:::resolve (1 samples, 0.16%)</title><rect x="466.3" y="561" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="1165.2" y="1121" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>ParseGenerator::generate (1 samples, 0.16%)</title><rect x="197.1" y="2945" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>vfs_read (1 samples, 0.16%)</title><rect x="1138.4" y="721" width="2.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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/comp/Attr:::visitBinary (1 samples, 0.16%)</title><rect x="306.0" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>SYSC_newstat (1 samples, 0.16%)</title><rect x="269.7" y="3281" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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/TreeTranslator:::visitApply (1 samples, 0.16%)</title><rect x="317.4" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>link_path_walk (1 samples, 0.16%)</title><rect x="296.4" y="3249" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (335 samples, 54.21%)</title><rect x="498.8" y="849" width="639.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="501.80" y="859.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.16%)</title><rect x="11.9" y="3377" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>Lsun/net/www/protocol/file/Handler:::openConnection (1 samples, 0.16%)</title><rect x="468.3" y="865" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="471.25" 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>Lorg/gradle/api/internal/project/taskfactory/TaskPropertyInfo$4:::create (2 samples, 0.32%)</title><rect x="1176.6" y="1681" width="3.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>resolve_virtual_call (1 samples, 0.16%)</title><rect x="309.8" y="289" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Lcom/sun/tools/javac/tree/JCTree$JCTry:::accept (1 samples, 0.16%)</title><rect x="311.7" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>GraphBuilder::try_inline_full (1 samples, 0.16%)</title><rect x="225.8" y="2849" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>Lcom/sun/tools/javac/file/ZipFileIndex:::readBytes (1 samples, 0.16%)</title><rect x="311.7" y="273" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Lsun/misc/URLClassPath:::findResource (1 samples, 0.16%)</title><rect x="462.5" y="1153" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>PhaseGVN::transform_no_reclaim (1 samples, 0.16%)</title><rect x="202.8" y="2881" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>Lcom/sun/tools/javac/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="328.9" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>deflate (11 samples, 1.78%)</title><rect x="475.9" y="769" width="21.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="478.89" 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/tree/JCTree$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="346.1" y="113" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Interpreter (1 samples, 0.16%)</title><rect x="1138.4" y="929" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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$JCImport:::accept (2 samples, 0.32%)</title><rect x="325.0" y="993" width="3.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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_reserve_inode_write (1 samples, 0.16%)</title><rect x="294.5" y="3249" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="1130.8" y="545" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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 (4 samples, 0.65%)</title><rect x="1169.0" y="1201" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>Parse::do_all_blocks (6 samples, 0.97%)</title><rect x="191.4" y="3121" width="11.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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 (1 samples, 0.16%)</title><rect x="466.3" y="513" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lcom/sun/tools/javac/comp/Infer$GraphSolver$InferenceGraph$Node:::graphChanged (1 samples, 0.16%)</title><rect x="309.8" y="321" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/comp/Resolve:::findGlobalType (1 samples, 0.16%)</title><rect x="323.1" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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.16%)</title><rect x="496.9" y="769" width="1.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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>JavaCalls::call_helper (1 samples, 0.16%)</title><rect x="462.5" y="1217" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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.16%)</title><rect x="1138.4" y="913" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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.16%)</title><rect x="1138.4" y="945" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>Dict::doubhash (1 samples, 0.16%)</title><rect x="208.6" y="3217" width="1.9" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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/jvm/Gen:::visitAssign (1 samples, 0.16%)</title><rect x="1169.0" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>entry_SYSCALL_64_fastpath (4 samples, 0.65%)</title><rect x="498.8" y="737" width="7.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>_raw_spin_lock_irq (1 samples, 0.16%)</title><rect x="1130.8" y="529" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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.16%)</title><rect x="466.3" y="497" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>vfs_read (1 samples, 0.16%)</title><rect x="281.1" y="3281" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2289" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>sys_newstat (1 samples, 0.16%)</title><rect x="292.6" y="3313" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>sys_write (4 samples, 0.65%)</title><rect x="516.0" y="721" width="7.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1425" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Interpreter (368 samples, 59.55%)</title><rect x="464.4" y="1297" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>SignatureIterator::parse_type (1 samples, 0.16%)</title><rect x="19.5" y="2977" width="2.0" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="332.7" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Type::hash (1 samples, 0.16%)</title><rect x="191.4" y="2977" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2657" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="296.4" y="2961" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>deflate (1 samples, 0.16%)</title><rect x="472.1" y="769" width="1.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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>path_lookupat (1 samples, 0.16%)</title><rect x="290.7" y="3217" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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$JCNewClass:::accept (1 samples, 0.16%)</title><rect x="306.0" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/comp/Resolve:::lookupMethod (1 samples, 0.16%)</title><rect x="307.9" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Interpreter (12 samples, 1.94%)</title><rect x="1140.4" y="929" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="939.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>entry_SYSCALL_64_fastpath (4 samples, 0.65%)</title><rect x="516.0" y="737" width="7.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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>radix_tree_lookup_slot (1 samples, 0.16%)</title><rect x="512.2" y="561" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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 (366 samples, 59.22%)</title><rect x="464.4" y="1089" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1099.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>PredictedCallGenerator::generate (2 samples, 0.32%)</title><rect x="202.8" y="3153" width="3.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>Lorg/codehaus/groovy/control/ResolveVisitor:::resolve (1 samples, 0.16%)</title><rect x="466.3" y="529" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (1 samples, 0.16%)</title><rect x="1184.3" y="3025" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (12 samples, 1.94%)</title><rect x="474.0" y="913" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="923.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>sys_read (1 samples, 0.16%)</title><rect x="271.6" y="3313" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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>ciTypeFlow::StateVector::apply_one_bytecode (1 samples, 0.16%)</title><rect x="38.6" y="3137" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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:::visitMethodDef (5 samples, 0.81%)</title><rect x="306.0" y="1025" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="502.6" y="561" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="505.62" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="334.6" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>PhaseConservativeCoalesce::coalesce (1 samples, 0.16%)</title><rect x="120.7" y="3201" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="123.74" 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.16%)</title><rect x="1180.5" y="3105" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Lcom/sun/tools/javac/jvm/Gen:::visitMethodDef (1 samples, 0.16%)</title><rect x="1169.0" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>ciEnv::get_method_by_index_impl (1 samples, 0.16%)</title><rect x="38.6" y="3073" width="2.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>Interpreter (12 samples, 1.94%)</title><rect x="1140.4" y="913" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="923.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_virtual (461 samples, 74.60%)</title><rect x="300.2" y="3281" width="880.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3291.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>try_to_wake_up (1 samples, 0.16%)</title><rect x="34.8" y="3217" width="1.9" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="37.82" 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>ondemand_readahead (1 samples, 0.16%)</title><rect x="1138.4" y="625" width="2.0" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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 (1 samples, 0.16%)</title><rect x="1163.3" y="1009" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>blk_finish_plug (1 samples, 0.16%)</title><rect x="502.6" y="577" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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>StatSamplerTask::task (1 samples, 0.16%)</title><rect x="10.0" y="3313" width="1.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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.16%)</title><rect x="1180.5" y="3137" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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 (373 samples, 60.36%)</title><rect x="454.9" y="1537" width="712.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>vfs_read (1 samples, 0.16%)</title><rect x="263.9" y="3313" width="2.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>task_work_run (1 samples, 0.16%)</title><rect x="1165.2" y="1073" width="1.9" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>TypeKlassPtr::xmeet (1 samples, 0.16%)</title><rect x="195.2" y="2753" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>LinearScan::compute_local_live_sets (1 samples, 0.16%)</title><rect x="248.7" y="3185" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="251.67" 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>longest_match (172 samples, 27.83%)</title><rect x="804.3" y="737" width="328.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="807.30" y="747.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>CompileBroker::compile_method (1 samples, 0.16%)</title><rect x="279.2" y="3329" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>radix_tree_lookup_slot (1 samples, 0.16%)</title><rect x="519.8" y="545" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="522.81" 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:::visitNewClass (1 samples, 0.16%)</title><rect x="306.0" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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.16%)</title><rect x="1178.5" y="1105" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>scsi_request_fn (1 samples, 0.16%)</title><rect x="296.4" y="3025" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>java_start (11 samples, 1.78%)</title><rect x="15.7" y="3361" width="21.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="18.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>PhaseIdealLoop::build__late (2 samples, 0.32%)</title><rect x="160.8" y="3217" width="3.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="163.84" 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>start_thread (3 samples, 0.49%)</title><rect x="1184.3" y="3377" width="5.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>JVM_InvokeMethod (26 samples, 4.21%)</title><rect x="300.2" y="1457" width="49.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1467.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 (4 samples, 0.65%)</title><rect x="1169.0" y="1185" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="273.5" y="3073" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>Interpreter (1 samples, 0.16%)</title><rect x="319.3" y="449" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="322.32" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="281.1" y="3313" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>TypeAryPtr::add_offset (1 samples, 0.16%)</title><rect x="191.4" y="3025" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Interpreter (4 samples, 0.65%)</title><rect x="456.8" y="1393" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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$JCBlock:::accept (1 samples, 0.16%)</title><rect x="346.1" y="353" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/parser/JavacParser:::classDeclaration (1 samples, 0.16%)</title><rect x="302.1" y="1057" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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>OptoRuntime::handle_exception_C (1 samples, 0.16%)</title><rect x="307.9" y="481" width="1.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="310.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>vfs_write (2 samples, 0.32%)</title><rect x="512.2" y="705" width="3.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>__schedule (1 samples, 0.16%)</title><rect x="11.9" y="3185" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2737" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/comp/MemberEnter:::visitImport (2 samples, 0.32%)</title><rect x="325.0" y="977" width="3.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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:::attribClassBody (7 samples, 1.13%)</title><rect x="304.0" y="1073" width="13.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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$JCBlock:::accept (3 samples, 0.49%)</title><rect x="1170.9" y="993" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.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>CodeHeap::allocate (1 samples, 0.16%)</title><rect x="44.4" y="3153" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="47.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>Interpreter (1 samples, 0.16%)</title><rect x="472.1" y="913" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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 (5 samples, 0.81%)</title><rect x="1167.1" y="1361" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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/tree/TreeTranslator:::translate (1 samples, 0.16%)</title><rect x="317.4" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>InitializeNode::can_capture_store (1 samples, 0.16%)</title><rect x="187.6" y="3185" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="190.57" 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 (1 samples, 0.16%)</title><rect x="462.5" y="1265" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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/jvm/Gen:::genMethod (1 samples, 0.16%)</title><rect x="1169.0" y="1025" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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/apache/tools/zip/ZipOutputStream:::closeEntry (1 samples, 0.16%)</title><rect x="496.9" y="849" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="252.5" y="2977" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1170.9" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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/pattern/HasPrefixPatternStep:::matches (1 samples, 0.16%)</title><rect x="435.8" y="1265" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.79" 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/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (45 samples, 7.28%)</title><rect x="349.9" y="1281" width="85.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradl..</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.16%)</title><rect x="338.4" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>[unknown] (1 samples, 0.16%)</title><rect x="36.7" y="3377" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="39.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>sys_write (2 samples, 0.32%)</title><rect x="1146.1" y="769" width="3.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="435.8" y="1345" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.79" 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>ext4_inode_csum_set (1 samples, 0.16%)</title><rect x="10.0" y="3057" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/jvm/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="325.0" y="833" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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.16%)</title><rect x="346.1" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lorg/codehaus/groovy/ast/stmt/ExpressionStatement:::visit (1 samples, 0.16%)</title><rect x="466.3" y="769" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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.16%)</title><rect x="342.2" y="609" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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/code/Types:::membersClosure (1 samples, 0.16%)</title><rect x="304.0" y="961" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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>AddPNode::Ideal (1 samples, 0.16%)</title><rect x="181.8" y="3185" width="2.0" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="184.84" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2545" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>flush_icache_stub (1 samples, 0.16%)</title><rect x="212.4" y="3169" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="215.39" 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>PhaseIterGVN::transform_old (2 samples, 0.32%)</title><rect x="179.9" y="3201" width="3.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="182.94" 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>AddPNode::Value (1 samples, 0.16%)</title><rect x="191.4" y="3041" width="1.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>ext4_da_write_end (1 samples, 0.16%)</title><rect x="514.1" y="609" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::genStat (3 samples, 0.49%)</title><rect x="342.2" y="945" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>ext4_mark_inode_dirty (1 samples, 0.16%)</title><rect x="514.1" y="545" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2177" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (5 samples, 0.81%)</title><rect x="1167.1" y="1473" width="9.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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 (5 samples, 0.81%)</title><rect x="1167.1" y="1265" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>vfs_read (1 samples, 0.16%)</title><rect x="273.5" y="3313" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>[unknown] (5 samples, 0.81%)</title><rect x="1153.7" y="833" width="9.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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$JCThrow:::accept (1 samples, 0.16%)</title><rect x="306.0" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (2 samples, 0.32%)</title><rect x="328.9" y="817" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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.16%)</title><rect x="336.5" y="625" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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/jvm/Gen:::visitVarDef (1 samples, 0.16%)</title><rect x="342.2" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3137" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>mark_page_accessed (1 samples, 0.16%)</title><rect x="500.7" y="625" width="1.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="503.71" 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>CardTableRS::younger_refs_in_space_iterate (1 samples, 0.16%)</title><rect x="23.4" y="3185" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="26.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>CompileBroker::compiler_thread_loop (25 samples, 4.05%)</title><rect x="216.2" y="3313" width="47.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="219.21" y="3323.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/comp/Resolve$BasicLookupHelper:::lookup (1 samples, 0.16%)</title><rect x="307.9" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="279.2" y="3025" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>generic_file_read_iter (3 samples, 0.49%)</title><rect x="498.8" y="641" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>[unknown] (1 samples, 0.16%)</title><rect x="1182.4" y="3361" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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>sys_read (1 samples, 0.16%)</title><rect x="458.7" y="1153" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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/main/JavaCompiler:::attribute (3 samples, 0.49%)</title><rect x="1170.9" y="1137" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>Reflection::invoke_method (5 samples, 0.81%)</title><rect x="1167.1" y="1441" width="9.5" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>ExceptionBlob (1 samples, 0.16%)</title><rect x="1174.7" y="561" width="1.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="307.9" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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.16%)</title><rect x="334.6" y="929" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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.16%)</title><rect x="466.3" y="817" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2513" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="281.1" y="3169" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>CompileBroker::invoke_compiler_on_method (93 samples, 15.05%)</title><rect x="38.6" y="3297" width="177.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CompileBroker::invoke_c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>____fput (1 samples, 0.16%)</title><rect x="1165.2" y="1057" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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:::checkMethod (1 samples, 0.16%)</title><rect x="332.7" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="323.1" y="1025" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>Parse::Parse (2 samples, 0.32%)</title><rect x="193.3" y="3041" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>TypeArrayKlass::allocate_common (1 samples, 0.16%)</title><rect x="300.2" y="1009" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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:::attribClass (6 samples, 0.97%)</title><rect x="328.9" y="1089" width="11.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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:::attribTree (1 samples, 0.16%)</title><rect x="311.7" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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.16%)</title><rect x="1180.5" y="3073" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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/Check$Validator:::validateTree (1 samples, 0.16%)</title><rect x="315.5" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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>prepare_exit_to_usermode (1 samples, 0.16%)</title><rect x="208.6" y="3185" width="1.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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>start_thread (1 samples, 0.16%)</title><rect x="13.8" y="3377" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="16.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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1793" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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/code/Symbol$MethodSymbol:::binaryImplementation (1 samples, 0.16%)</title><rect x="321.2" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/comp/Resolve:::loadClass (1 samples, 0.16%)</title><rect x="327.0" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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:::attribClass (3 samples, 0.49%)</title><rect x="1170.9" y="1105" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2625" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Ljava/util/jar/JarFile:::getEntry (1 samples, 0.16%)</title><rect x="462.5" y="1121" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>JavaThread::run (3 samples, 0.49%)</title><rect x="1184.3" y="3345" width="5.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1505" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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.16%)</title><rect x="342.2" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Parse::do_one_bytecode (1 samples, 0.16%)</title><rect x="193.3" y="2801" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Interpreter (1 samples, 0.16%)</title><rect x="1176.6" y="1537" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>Lorg/gradle/api/internal/changedetection/state/CachingFileHasher:::snapshot (45 samples, 7.28%)</title><rect x="349.9" y="1233" width="85.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2593" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/comp/Infer:::checkWithinBounds (1 samples, 0.16%)</title><rect x="330.8" y="241" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (3 samples, 0.49%)</title><rect x="1184.3" y="3153" width="5.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>GraphBuilder::access_field (1 samples, 0.16%)</title><rect x="223.9" y="3121" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2673" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (26 samples, 4.21%)</title><rect x="300.2" y="1633" width="49.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1643.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>alloc_buffer_head (1 samples, 0.16%)</title><rect x="1186.2" y="2801" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (435 samples, 70.39%)</title><rect x="349.9" y="1873" width="830.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1883.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>JavaThread::thread_main_inner (461 samples, 74.60%)</title><rect x="300.2" y="3329" width="880.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3339.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>MacroAssembler::mov_metadata (1 samples, 0.16%)</title><rect x="46.3" y="3185" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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/apache/tools/zip/ZipEntry:::setName (1 samples, 0.16%)</title><rect x="271.6" y="3361" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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>NullCheckEliminator::iterate_one (2 samples, 0.32%)</title><rect x="235.3" y="3169" width="3.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="238.31" 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>ondemand_readahead (1 samples, 0.16%)</title><rect x="281.1" y="3185" width="1.9" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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/Resolve:::lookupMethod (1 samples, 0.16%)</title><rect x="306.0" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (461 samples, 74.60%)</title><rect x="300.2" y="2225" width="880.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2235.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>Lcom/sun/tools/javac/comp/Attr:::checkMethodIdInternal (1 samples, 0.16%)</title><rect x="338.4" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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:::visitIdent (1 samples, 0.16%)</title><rect x="336.5" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>__sched_yield (1 samples, 0.16%)</title><rect x="17.6" y="3297" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="20.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>Interpreter (1 samples, 0.16%)</title><rect x="470.2" y="833" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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 (13 samples, 2.10%)</title><rect x="472.1" y="929" width="24.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="475.07" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >I..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/cache/internal/DefaultFileLockManager$DefaultFileLock:::writeFile (1 samples, 0.16%)</title><rect x="1180.5" y="2977" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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/jvm/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="336.5" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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 (461 samples, 74.60%)</title><rect x="300.2" y="3041" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Interpreter (435 samples, 70.39%)</title><rect x="349.9" y="1729" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="1138.4" y="961" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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 (2 samples, 0.32%)</title><rect x="328.9" y="913" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>submit_bio (1 samples, 0.16%)</title><rect x="1165.2" y="865" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>filemap_flush (1 samples, 0.16%)</title><rect x="1165.2" y="993" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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.16%)</title><rect x="317.4" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>copy_page_to_iter (1 samples, 0.16%)</title><rect x="458.7" y="1057" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>InterpreterRuntime::newarray (1 samples, 0.16%)</title><rect x="300.2" y="1025" width="1.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2401" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/comp/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>iov_iter_copy_from_user_atomic (1 samples, 0.16%)</title><rect x="1161.4" y="673" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1164.36" 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>Parse::do_call (1 samples, 0.16%)</title><rect x="202.8" y="2961" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>IndexSetIterator::IndexSetIterator (1 samples, 0.16%)</title><rect x="63.5" y="3185" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="66.46" 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/TreeTranslator:::visitVarDef (1 samples, 0.16%)</title><rect x="317.4" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="1165.2" y="785" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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 (1 samples, 0.16%)</title><rect x="304.0" y="1041" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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.16%)</title><rect x="325.0" y="913" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>Lsun/security/provider/MD5:::implCompress (23 samples, 3.72%)</title><rect x="355.6" y="1169" width="43.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="358.60" y="1179.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>Lorg/gradle/api/internal/file/RelativePathSpec:::isSatisfiedBy (1 samples, 0.16%)</title><rect x="435.8" y="1297" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.79" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2833" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>[libpthread-2.24.so] (3 samples, 0.49%)</title><rect x="285.0" y="3329" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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/MemberEnter:::attribImportType (1 samples, 0.16%)</title><rect x="327.0" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>OneContigSpaceCardGeneration::allocate (1 samples, 0.16%)</title><rect x="32.9" y="3137" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="35.91" 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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="458.7" y="1089" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>ciEnv::get_field_by_index (1 samples, 0.16%)</title><rect x="223.9" y="3089" width="1.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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>ext4_file_write_iter (1 samples, 0.16%)</title><rect x="1186.2" y="2913" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2273" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>cfq_insert_request (1 samples, 0.16%)</title><rect x="433.9" y="961" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="436.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>LinkResolver::resolve_static_call (1 samples, 0.16%)</title><rect x="38.6" y="3025" width="2.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>Threads::possibly_parallel_oops_do (2 samples, 0.32%)</title><rect x="19.5" y="3185" width="3.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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.16%)</title><rect x="330.8" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>blk_done_softirq (1 samples, 0.16%)</title><rect x="1159.4" y="513" width="2.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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>filename_lookup (1 samples, 0.16%)</title><rect x="292.6" y="3249" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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/parser/JavacParser:::formalParameter (1 samples, 0.16%)</title><rect x="302.1" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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>ciTypeFlow::StateVector::do_invoke (1 samples, 0.16%)</title><rect x="38.6" y="3121" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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/google/common/hash/AbstractByteHasher:::putBytes (2 samples, 0.32%)</title><rect x="349.9" y="1185" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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/parser/JavacParser:::term3 (1 samples, 0.16%)</title><rect x="302.1" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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.16%)</title><rect x="319.3" y="417" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>PhaseChaitin::Register_Allocate (47 samples, 7.61%)</title><rect x="57.7" y="3233" width="89.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="60.73" y="3243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >PhaseChait..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (12 samples, 1.94%)</title><rect x="1140.4" y="993" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="1003.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$JCBlock:::accept (1 samples, 0.16%)</title><rect x="334.6" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>Lsun/reflect/NativeMethodAccessorImpl:::invoke (1 samples, 0.16%)</title><rect x="1178.5" y="1617" width="2.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="306.0" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.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>PhiNode::make_blank (1 samples, 0.16%)</title><rect x="178.0" y="3169" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="181.03" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="502.6" y="593" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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/comp/Attr:::checkMethodId (1 samples, 0.16%)</title><rect x="334.6" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="336.5" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Interpreter (354 samples, 57.28%)</title><rect x="464.4" y="1009" width="676.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1019.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/TreeTranslator:::visitNewClass (1 samples, 0.16%)</title><rect x="319.3" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.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>Lcom/sun/tools/javac/comp/Resolve$9:::doLookup (1 samples, 0.16%)</title><rect x="309.8" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>OptoRuntime::handle_exception_C_helper (1 samples, 0.16%)</title><rect x="1174.7" y="529" width="1.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>NMethodSweeper::sweep_code_cache (1 samples, 0.16%)</title><rect x="262.0" y="3265" width="1.9" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="265.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>ondemand_readahead (1 samples, 0.16%)</title><rect x="273.5" y="3217" width="1.9" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>Method::mask_for (1 samples, 0.16%)</title><rect x="19.5" y="3137" width="2.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>sys_read (1 samples, 0.16%)</title><rect x="1138.4" y="737" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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/jvm/ClassReader:::complete (1 samples, 0.16%)</title><rect x="336.5" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>LIR_OpVisitState::visit (1 samples, 0.16%)</title><rect x="244.9" y="3153" width="1.9" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="247.85" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="385" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Interpreter (1 samples, 0.16%)</title><rect x="319.3" y="433" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="332.7" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="338.4" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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_mpage_readpages (1 samples, 0.16%)</title><rect x="1138.4" y="577" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>scsi_end_request (1 samples, 0.16%)</title><rect x="1130.8" y="593" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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>GenerateOopMap::do_interpretation (1 samples, 0.16%)</title><rect x="19.5" y="3041" width="2.0" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>ConnectionGraph::compute_escape (1 samples, 0.16%)</title><rect x="149.4" y="3217" width="1.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="152.39" 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:::visitSelect (1 samples, 0.16%)</title><rect x="334.6" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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/tree/TreeTranslator:::visitClassDef (2 samples, 0.32%)</title><rect x="317.4" y="1041" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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:::attribArgs (1 samples, 0.16%)</title><rect x="334.6" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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 (435 samples, 70.39%)</title><rect x="349.9" y="1793" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Interpreter (55 samples, 8.90%)</title><rect x="349.9" y="1489" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>blk_finish_plug (1 samples, 0.16%)</title><rect x="433.9" y="1009" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="436.88" 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 (3 samples, 0.49%)</title><rect x="456.8" y="1249" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2657" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>[libpthread-2.24.so] (2 samples, 0.32%)</title><rect x="265.9" y="3329" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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/MemberEnter:::visitImport (1 samples, 0.16%)</title><rect x="323.1" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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.16%)</title><rect x="1178.5" y="1425" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2689" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2699.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$JCIf:::accept (1 samples, 0.16%)</title><rect x="307.9" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>vfs_write (4 samples, 0.65%)</title><rect x="516.0" y="705" width="7.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="336.5" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Lcom/sun/tools/javac/tree/JCTree$JCNewClass:::accept (1 samples, 0.16%)</title><rect x="334.6" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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.16%)</title><rect x="332.7" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Lsun/misc/URLClassPath:::findResource (1 samples, 0.16%)</title><rect x="1163.3" y="977" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>blk_done_softirq (1 samples, 0.16%)</title><rect x="252.5" y="3121" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1249" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1259.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 (1 samples, 0.16%)</title><rect x="285.0" y="3201" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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/Items:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="348.0" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="350.96" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1361" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1371.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/Check:::checkOverride (1 samples, 0.16%)</title><rect x="313.6" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="316.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>Lcom/sun/tools/javac/jvm/ClassReader:::readAttrs (1 samples, 0.16%)</title><rect x="336.5" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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>smp_apic_timer_interrupt (1 samples, 0.16%)</title><rect x="517.9" y="529" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="520.90" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/code/Types:::rank (1 samples, 0.16%)</title><rect x="311.7" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1180.5" y="3185" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>PhaseIdealLoop::Dominators (3 samples, 0.49%)</title><rect x="153.2" y="3217" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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/security/provider/MD5:::implCompress (16 samples, 2.59%)</title><rect x="401.4" y="1185" width="30.6" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="404.42" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ls..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::oops_interpreted_do (1 samples, 0.16%)</title><rect x="19.5" y="3153" width="2.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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.16%)</title><rect x="332.7" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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 (1 samples, 0.16%)</title><rect x="1169.0" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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.16%)</title><rect x="306.0" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>WeakPreserveExceptionMark::WeakPreserveExceptionMark (1 samples, 0.16%)</title><rect x="506.4" y="753" width="1.9" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="509.44" 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>memset_orig (1 samples, 0.16%)</title><rect x="521.7" y="593" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="524.72" 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>__ext4_get_inode_loc (1 samples, 0.16%)</title><rect x="292.6" y="3121" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2769" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>ext4_es_insert_extent (1 samples, 0.16%)</title><rect x="1159.4" y="625" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (2 samples, 0.32%)</title><rect x="300.2" y="1089" width="3.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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$AbstractMethodCheck:::argumentsAcceptable (1 samples, 0.16%)</title><rect x="309.8" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Ljava/util/zip/ZipFile:::getEntry (1 samples, 0.16%)</title><rect x="462.5" y="1105" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>new_sync_read (1 samples, 0.16%)</title><rect x="279.2" y="3233" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>readBytes (1 samples, 0.16%)</title><rect x="399.5" y="1169" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="402.51" 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_write_iter (1 samples, 0.16%)</title><rect x="267.8" y="3217" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>ciEnv::get_method_by_index_impl (2 samples, 0.32%)</title><rect x="229.6" y="3073" width="3.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="433.9" y="1025" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="436.88" 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/lang/reflect/Method:::invoke (26 samples, 4.21%)</title><rect x="300.2" y="1521" width="49.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1531.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>jni_SetIntField (4 samples, 0.65%)</title><rect x="498.8" y="769" width="7.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>new_sync_write (4 samples, 0.65%)</title><rect x="516.0" y="673" width="7.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2369" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>pagecache_get_page (1 samples, 0.16%)</title><rect x="1182.4" y="3201" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/comp/Attr:::checkMethodIdInternal (1 samples, 0.16%)</title><rect x="311.7" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Parse::do_all_blocks (2 samples, 0.32%)</title><rect x="202.8" y="3105" width="3.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>ConNode::make (1 samples, 0.16%)</title><rect x="181.8" y="3137" width="2.0" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="184.84" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="1138.4" y="609" width="2.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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/jvm/Gen:::visitApply (1 samples, 0.16%)</title><rect x="346.1" y="49" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Interpreter (4 samples, 0.65%)</title><rect x="1169.0" y="1217" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>[libpthread-2.24.so] (2 samples, 0.32%)</title><rect x="1146.1" y="801" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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:::attribStat (1 samples, 0.16%)</title><rect x="334.6" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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/tree/JCTree$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="317.4" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>SharedRuntime::handle_wrong_method_ic_miss (1 samples, 0.16%)</title><rect x="315.5" y="913" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="318.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/util/UnsharedNameTable:::fromUtf (1 samples, 0.16%)</title><rect x="340.3" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="343.32" 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>ExceptionBlob (1 samples, 0.16%)</title><rect x="307.9" y="497" width="1.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="310.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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="252.5" y="2929" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>ciTypeFlow::df_flow_types (1 samples, 0.16%)</title><rect x="189.5" y="3073" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2337" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Java_java_util_zip_Deflater_deflateBytes (1 samples, 0.16%)</title><rect x="474.0" y="785" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="476.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>Matcher::match (2 samples, 0.32%)</title><rect x="48.2" y="3233" width="3.8" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="51.19" 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>alloc_pages_current (1 samples, 0.16%)</title><rect x="281.1" y="3153" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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/tree/TreeTranslator:::visitReturn (1 samples, 0.16%)</title><rect x="319.3" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.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>IndexSetIterator::advance_and_next (1 samples, 0.16%)</title><rect x="61.6" y="3201" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="64.55" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1649" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Ljava/util/zip/Deflater:::deflateBytes (1 samples, 0.16%)</title><rect x="496.9" y="801" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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/LambdaToMethod:::translate (2 samples, 0.32%)</title><rect x="317.4" y="897" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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-86820/86897 (1 samples, 0.16%)</title><rect x="1180.5" y="3393" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="296.4" y="3009" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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/TransTypes:::addBridgeIfNeeded (1 samples, 0.16%)</title><rect x="321.2" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2865" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/jvm/Gen:::genExpr (1 samples, 0.16%)</title><rect x="1169.0" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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:::lookupMethod (2 samples, 0.32%)</title><rect x="328.9" y="705" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/apache/commons/io/FileUtils:::openInputStream (1 samples, 0.16%)</title><rect x="281.1" y="3345" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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/TransTypes:::translate (1 samples, 0.16%)</title><rect x="321.2" y="1089" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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/DeferredAttr$DeferredType:::check (1 samples, 0.16%)</title><rect x="330.8" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="1182.4" y="3313" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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>start_thread (25 samples, 4.05%)</title><rect x="216.2" y="3377" width="47.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="219.21" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >star..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jni_SetIntField (1 samples, 0.16%)</title><rect x="474.0" y="769" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="476.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>ext4_da_write_begin (1 samples, 0.16%)</title><rect x="1148.0" y="657" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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:::visitSelect (1 samples, 0.16%)</title><rect x="309.8" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.32%)</title><rect x="432.0" y="1169" width="3.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>generic_file_read_iter (3 samples, 0.49%)</title><rect x="285.0" y="3217" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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:::visitApply (1 samples, 0.16%)</title><rect x="311.7" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>InstanceKlass::add_dependent_nmethod (1 samples, 0.16%)</title><rect x="260.1" y="3185" width="1.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="263.13" 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 (12 samples, 1.94%)</title><rect x="474.0" y="865" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="875.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>SharedRuntime::handle_ic_miss_helper (1 samples, 0.16%)</title><rect x="315.5" y="897" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="318.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>Lcom/sun/tools/javac/comp/TransTypes:::translateClass (1 samples, 0.16%)</title><rect x="321.2" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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:::genDef (1 samples, 0.16%)</title><rect x="1169.0" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>do_page_fault (1 samples, 0.16%)</title><rect x="10.0" y="3265" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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$BasicLookupHelper:::lookup (1 samples, 0.16%)</title><rect x="332.7" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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.16%)</title><rect x="1138.4" y="897" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>LinkResolver::resolve_static_call_or_null (1 samples, 0.16%)</title><rect x="38.6" y="3041" width="2.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>copy_user_generic_unrolled (1 samples, 0.16%)</title><rect x="283.0" y="3201" width="2.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="286.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>PhaseChaitin::elide_copy (2 samples, 0.32%)</title><rect x="116.9" y="3201" width="3.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="119.93" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2753" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lorg/gradle/api/internal/hash/DefaultFileHasher:::hash (45 samples, 7.28%)</title><rect x="349.9" y="1217" width="85.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradl..</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.16%)</title><rect x="338.4" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="328.9" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Lcom/sun/tools/javac/tree/TreeTranslator:::translate (1 samples, 0.16%)</title><rect x="319.3" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>JavaThread::run (93 samples, 15.05%)</title><rect x="38.6" y="3345" width="177.6" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3355.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>__lock_text_start (1 samples, 0.16%)</title><rect x="1142.3" y="545" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" 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>blk_finish_plug (1 samples, 0.16%)</title><rect x="279.2" y="3137" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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/jvm/Gen:::visitBlock (3 samples, 0.49%)</title><rect x="342.2" y="961" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>ciTypeFlow::df_flow_types (1 samples, 0.16%)</title><rect x="38.6" y="3169" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>current_kernel_time64 (1 samples, 0.16%)</title><rect x="516.0" y="593" width="1.9" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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>OopMapForCacheEntry::compute_map (1 samples, 0.16%)</title><rect x="19.5" y="3073" width="2.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>PhaseIterGVN::transform_old (3 samples, 0.49%)</title><rect x="183.8" y="3217" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="186.75" 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>TypeAryPtr::hash (1 samples, 0.16%)</title><rect x="210.5" y="3217" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="213.49" 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>ext4_mpage_readpages (1 samples, 0.16%)</title><rect x="1142.3" y="625" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" 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>lookup_slow (1 samples, 0.16%)</title><rect x="290.7" y="3185" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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/code/Types:::closure (1 samples, 0.16%)</title><rect x="311.7" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>__softirqentry_text_start (2 samples, 0.32%)</title><rect x="1128.9" y="673" width="3.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>VM_GenCollectForAllocation::doit (8 samples, 1.29%)</title><rect x="19.5" y="3281" width="15.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>Node_Array::remove (1 samples, 0.16%)</title><rect x="118.8" y="3137" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="121.83" 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$JCReturn:::accept (1 samples, 0.16%)</title><rect x="332.7" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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.16%)</title><rect x="325.0" y="945" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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 (4 samples, 0.65%)</title><rect x="456.8" y="1361" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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/code/Symbol$ClassSymbol:::complete (3 samples, 0.49%)</title><rect x="323.1" y="1105" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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 (461 samples, 74.60%)</title><rect x="300.2" y="1969" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/jvm/Gen:::visitBlock (1 samples, 0.16%)</title><rect x="346.1" y="337" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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/Attr:::visitBlock (1 samples, 0.16%)</title><rect x="306.0" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (3 samples, 0.49%)</title><rect x="1170.9" y="961" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.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>Lcom/sun/tools/javac/comp/Check$Validator:::visitTypeApply (1 samples, 0.16%)</title><rect x="315.5" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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>Lcom/sun/tools/javac/tree/JCTree$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="338.4" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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/parser/JavacParser:::formalParameters (1 samples, 0.16%)</title><rect x="302.1" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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:::initCode (1 samples, 0.16%)</title><rect x="348.0" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="350.96" 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::build_ (10 samples, 1.62%)</title><rect x="220.0" y="3217" width="19.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/DeferredAttr$2:::complete (1 samples, 0.16%)</title><rect x="330.8" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (1 samples, 0.16%)</title><rect x="502.6" y="497" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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>Parse::do_one_bytecode (2 samples, 0.32%)</title><rect x="202.8" y="3073" width="3.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>__vfs_read (1 samples, 0.16%)</title><rect x="1182.4" y="3265" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/Attr:::checkMethodId (1 samples, 0.16%)</title><rect x="311.7" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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:::visitIf (1 samples, 0.16%)</title><rect x="307.9" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>longest_match (2 samples, 0.32%)</title><rect x="1132.7" y="753" width="3.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1135.72" 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>java_start (3 samples, 0.49%)</title><rect x="1184.3" y="3361" width="5.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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:::rawInstantiate (1 samples, 0.16%)</title><rect x="332.7" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Lcom/sun/tools/javac/code/Type:::accept (1 samples, 0.16%)</title><rect x="269.7" y="3361" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>__do_page_cache_readahead (2 samples, 0.32%)</title><rect x="286.9" y="3169" width="3.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="294.5" y="3345" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="297.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>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1137" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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.16%)</title><rect x="1178.5" y="1217" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>__blk_run_queue (1 samples, 0.16%)</title><rect x="263.9" y="3121" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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/Attr:::visitApply (1 samples, 0.16%)</title><rect x="332.7" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>GraphBuilder::iterate_bytecodes_for_block (1 samples, 0.16%)</title><rect x="225.8" y="2977" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>crypto_shash_update (1 samples, 0.16%)</title><rect x="10.0" y="3025" width="1.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3201" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>[libpthread-2.24.so] (4 samples, 0.65%)</title><rect x="498.8" y="753" width="7.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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::iterate_all_blocks (1 samples, 0.16%)</title><rect x="225.8" y="2993" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>SignatureIterator::iterate_parameters (1 samples, 0.16%)</title><rect x="19.5" y="2993" width="2.0" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>Interpreter (4 samples, 0.65%)</title><rect x="456.8" y="1377" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>link_path_walk (1 samples, 0.16%)</title><rect x="292.6" y="3217" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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/code/Types:::firstUnimplementedAbstractImpl (1 samples, 0.16%)</title><rect x="304.0" y="1009" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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>new_sync_write (2 samples, 0.32%)</title><rect x="512.2" y="673" width="3.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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/Resolve:::findConstructor (1 samples, 0.16%)</title><rect x="309.8" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/Resolve:::findType (1 samples, 0.16%)</title><rect x="336.5" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>__do_page_fault (1 samples, 0.16%)</title><rect x="29.1" y="3089" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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>sys_read (1 samples, 0.16%)</title><rect x="281.1" y="3297" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="252.5" y="2961" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>TemplateInterpreter::notice_safepoints (1 samples, 0.16%)</title><rect x="15.7" y="3297" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="18.73" 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>ext4_da_get_block_prep (3 samples, 0.49%)</title><rect x="1155.6" y="641" width="5.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1158.63" 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>vfs_fstatat (1 samples, 0.16%)</title><rect x="292.6" y="3281" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>page_cache_async_readahead (2 samples, 0.32%)</title><rect x="286.9" y="3201" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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>generic_make_request (1 samples, 0.16%)</title><rect x="1165.2" y="849" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/ByteArrayAccess:::b2iLittle64 (3 samples, 0.49%)</title><rect x="426.2" y="1169" width="5.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="429.25" 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/Resolve$BasicLookupHelper:::lookup (1 samples, 0.16%)</title><rect x="309.8" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Parse::Parse (1 samples, 0.16%)</title><rect x="193.3" y="2753" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Lcom/sun/tools/javac/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="328.9" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Ljava/lang/StringCoding:::encode (1 samples, 0.16%)</title><rect x="11.9" y="3361" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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_block (2 samples, 0.32%)</title><rect x="193.3" y="2913" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>schedule (1 samples, 0.16%)</title><rect x="11.9" y="3201" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>__breadahead (1 samples, 0.16%)</title><rect x="294.5" y="3217" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="1165.2" y="817" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>PhaseValues::uncached_makecon (1 samples, 0.16%)</title><rect x="181.8" y="3153" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="184.84" 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/Attr:::visitBlock (1 samples, 0.16%)</title><rect x="306.0" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/Infer:::instantiateMethod (1 samples, 0.16%)</title><rect x="332.7" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (5 samples, 0.81%)</title><rect x="306.0" y="1041" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>java-86820/86824 (11 samples, 1.78%)</title><rect x="15.7" y="3393" width="21.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="18.73" 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/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="311.7" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>WeakPreserveExceptionMark::WeakPreserveExceptionMark (1 samples, 0.16%)</title><rect x="1144.2" y="801" width="1.9" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="1147.17" 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/TreeTranslator:::visitMethodDef (2 samples, 0.32%)</title><rect x="317.4" y="977" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/util/Calendar:::createCalendar (1 samples, 0.16%)</title><rect x="456.8" y="1137" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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 (12 samples, 1.94%)</title><rect x="1140.4" y="945" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="955.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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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/comp/MemberEnter:::visitVarDef (1 samples, 0.16%)</title><rect x="336.5" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Lcom/sun/tools/javac/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="342.2" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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/comp/Attr:::attribStat (1 samples, 0.16%)</title><rect x="1170.9" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>fill_window (17 samples, 2.75%)</title><rect x="771.8" y="737" width="32.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="774.84" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-71584/71598 (1 samples, 0.16%)</title><rect x="11.9" y="3393" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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:::genDef (4 samples, 0.65%)</title><rect x="342.2" y="1073" width="7.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile (336 samples, 54.37%)</title><rect x="496.9" y="929" width="641.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/copy/CopyFileVisitorImpl:::processFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.32%)</title><rect x="265.9" y="3297" width="3.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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>free (1 samples, 0.16%)</title><rect x="13.8" y="3297" width="1.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="16.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>ext4_readpages (1 samples, 0.16%)</title><rect x="1138.4" y="593" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>ext4_iget (1 samples, 0.16%)</title><rect x="292.6" y="3137" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>generic_update_time (1 samples, 0.16%)</title><rect x="10.0" y="3153" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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.16%)</title><rect x="323.1" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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/comp/Resolve$BasicLookupHelper:::lookup (1 samples, 0.16%)</title><rect x="306.0" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>pagevec_lru_move_fn (1 samples, 0.16%)</title><rect x="500.7" y="593" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="503.71" 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::resolve_virtual_call_C (1 samples, 0.16%)</title><rect x="309.8" y="273" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>JavaCalls::call_helper (1 samples, 0.16%)</title><rect x="1180.5" y="3265" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2993" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Ljava/io/FileOutputStream:::writeBytes (1 samples, 0.16%)</title><rect x="470.2" y="785" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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$JCReturn:::accept (1 samples, 0.16%)</title><rect x="309.8" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Lsun/security/provider/MD5:::implCompress (8 samples, 1.29%)</title><rect x="437.7" y="1313" width="15.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="440.70" 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 (435 samples, 70.39%)</title><rect x="349.9" y="1825" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>java-71584/86672 (1 samples, 0.16%)</title><rect x="13.8" y="3393" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="16.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>Interpreter (367 samples, 59.39%)</title><rect x="464.4" y="1137" width="700.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1147.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>pagevec_lru_move_fn (1 samples, 0.16%)</title><rect x="1142.3" y="561" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.16%)</title><rect x="1182.4" y="3345" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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$JCBlock:::accept (1 samples, 0.16%)</title><rect x="319.3" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="34.8" y="3297" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="37.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/tree/JCTree$JCBlock:::accept (4 samples, 0.65%)</title><rect x="306.0" y="993" width="7.6" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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.16%)</title><rect x="319.3" y="769" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>ondemand_readahead (1 samples, 0.16%)</title><rect x="433.9" y="1041" width="1.9" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="436.88" 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.21%)</title><rect x="300.2" y="1857" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ext4_da_write_begin (3 samples, 0.49%)</title><rect x="517.9" y="609" width="5.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="520.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>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (336 samples, 54.37%)</title><rect x="496.9" y="913" width="641.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" y="923.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>Ljava/lang/ClassLoader:::getResource (1 samples, 0.16%)</title><rect x="462.5" y="1297" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>exit_to_usermode_loop (1 samples, 0.16%)</title><rect x="1165.2" y="1089" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/Types:::lub (1 samples, 0.16%)</title><rect x="311.7" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>handle_mm_fault (1 samples, 0.16%)</title><rect x="13.8" y="3233" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="16.82" 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/comp/Resolve:::findMethod (2 samples, 0.32%)</title><rect x="328.9" y="641" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>release_pages (1 samples, 0.16%)</title><rect x="500.7" y="577" width="1.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="503.71" 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/ClassReader:::readClassFile (1 samples, 0.16%)</title><rect x="327.0" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="470.2" y="737" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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/jvm/Gen:::visitBlock (1 samples, 0.16%)</title><rect x="342.2" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="294.5" y="3105" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1713" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1723.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>JavaCalls::call_virtual (461 samples, 74.60%)</title><rect x="300.2" y="3297" width="880.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3307.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>start_thread (461 samples, 74.60%)</title><rect x="300.2" y="3377" width="880.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3387.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>__percpu_counter_add (1 samples, 0.16%)</title><rect x="1157.5" y="609" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1160.54" 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>ext4_alloc_da_blocks (1 samples, 0.16%)</title><rect x="1165.2" y="1009" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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:::attribArgs (1 samples, 0.16%)</title><rect x="306.0" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/DeferredAttr:::attribSpeculative (1 samples, 0.16%)</title><rect x="330.8" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3089" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>copy_page_to_iter (1 samples, 0.16%)</title><rect x="432.0" y="1057" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="294.5" y="3089" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>Interpreter (1 samples, 0.16%)</title><rect x="472.1" y="897" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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>PredictedCallGenerator::generate (2 samples, 0.32%)</title><rect x="197.1" y="3057" width="3.8" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>pqdownheap (3 samples, 0.49%)</title><rect x="708.8" y="705" width="5.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="711.83" 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>generic_write_end (1 samples, 0.16%)</title><rect x="267.8" y="3153" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>__breadahead (1 samples, 0.16%)</title><rect x="292.6" y="3105" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>GlobalValueNumbering::GlobalValueNumbering (1 samples, 0.16%)</title><rect x="220.0" y="3201" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>CodeCache::allocate (3 samples, 0.49%)</title><rect x="254.4" y="3185" width="5.7" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="257.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (461 samples, 74.60%)</title><rect x="300.2" y="2465" width="880.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2475.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>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (336 samples, 54.37%)</title><rect x="496.9" y="897" width="641.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" y="907.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>link_path_walk (1 samples, 0.16%)</title><rect x="269.7" y="3201" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>__do_page_fault (1 samples, 0.16%)</title><rect x="46.3" y="3121" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>ciEnv::get_method_by_index_impl (1 samples, 0.16%)</title><rect x="227.7" y="2993" width="1.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="230.67" 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>Interpreter (1 samples, 0.16%)</title><rect x="470.2" y="881" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>__filemap_fdatawrite_range (1 samples, 0.16%)</title><rect x="1165.2" y="977" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>Compile::remove_speculative_types (1 samples, 0.16%)</title><rect x="147.5" y="3233" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="150.48" 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>Ljava/util/Formatter:::parse (1 samples, 0.16%)</title><rect x="334.6" y="529" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2545" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/ClassReader:::loadClass (1 samples, 0.16%)</title><rect x="1170.9" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::checkMethodIdInternal (1 samples, 0.16%)</title><rect x="330.8" y="353" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="458.7" y="1169" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>PhaseIdealLoop::build__tree_impl (1 samples, 0.16%)</title><rect x="168.5" y="3201" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="171.48" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2433" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>__page_cache_alloc (1 samples, 0.16%)</title><rect x="1148.0" y="609" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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/comp/Resolve:::findIdentInPackage (1 samples, 0.16%)</title><rect x="1170.9" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="321.2" y="1057" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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>__do_page_fault (1 samples, 0.16%)</title><rect x="10.0" y="3249" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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.16%)</title><rect x="202.8" y="3041" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>PhaseIdealLoop::split_if_with_blocks (5 samples, 0.81%)</title><rect x="170.4" y="3217" width="9.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="173.39" 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>entry_SYSCALL_64_fastpath (2 samples, 0.32%)</title><rect x="512.2" y="737" width="3.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>BufferBlob::create (1 samples, 0.16%)</title><rect x="44.4" y="3185" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="47.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>Parse::do_all_blocks (1 samples, 0.16%)</title><rect x="193.3" y="2833" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="252.5" y="2993" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="545" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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/code/Scope:::lookup (1 samples, 0.16%)</title><rect x="321.2" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.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>Interpreter (1 samples, 0.16%)</title><rect x="317.4" y="561" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>Java_java_util_zip_Deflater_deflateBytes (4 samples, 0.65%)</title><rect x="498.8" y="785" width="7.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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, 8.90%)</title><rect x="349.9" y="1409" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>__wake_up_bit (1 samples, 0.16%)</title><rect x="290.7" y="3089" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="1169.0" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="294.5" y="3041" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1633" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (461 samples, 74.60%)</title><rect x="300.2" y="2241" width="880.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2251.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>Interpreter (5 samples, 0.81%)</title><rect x="454.9" y="1489" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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/tree/TreeTranslator:::visitBlock (2 samples, 0.32%)</title><rect x="317.4" y="929" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="327.0" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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:::checkIdInternal (1 samples, 0.16%)</title><rect x="334.6" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>GraphKit::load_array_length (1 samples, 0.16%)</title><rect x="191.4" y="3073" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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/jvm/ClassReader:::loadClass (1 samples, 0.16%)</title><rect x="336.5" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2065" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lsun/security/provider/MD5:::implCompress (2 samples, 0.32%)</title><rect x="349.9" y="1169" width="3.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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 (5 samples, 0.81%)</title><rect x="1167.1" y="1377" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>page_cache_async_readahead (1 samples, 0.16%)</title><rect x="433.9" y="1057" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="436.88" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2625" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/tree/JCTree$JCExpressionStatement:::accept (2 samples, 0.32%)</title><rect x="328.9" y="849" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>generic_file_read_iter (2 samples, 0.32%)</title><rect x="1140.4" y="705" width="3.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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 (461 samples, 74.60%)</title><rect x="300.2" y="1921" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>do_IRQ (1 samples, 0.16%)</title><rect x="158.9" y="3185" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="161.93" 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/TreeTranslator:::visitClassDef (1 samples, 0.16%)</title><rect x="319.3" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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/comp/Attr:::visitVarDef (1 samples, 0.16%)</title><rect x="1170.9" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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:::genDef (1 samples, 0.16%)</title><rect x="1169.0" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="1174.7" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/tree/JCTree$JCEnhancedForLoop:::accept (1 samples, 0.16%)</title><rect x="306.0" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.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>Lcom/sun/tools/javac/jvm/Gen:::genStat (3 samples, 0.49%)</title><rect x="342.2" y="929" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Interpreter (3 samples, 0.49%)</title><rect x="456.8" y="1233" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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.16%)</title><rect x="306.0" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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.16%)</title><rect x="1178.5" y="1473" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2209" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="288.8" y="3137" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="291.77" 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 (353 samples, 57.12%)</title><rect x="464.4" y="993" width="674.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (1 samples, 0.16%)</title><rect x="1178.5" y="1345" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>Lcom/sun/tools/javac/comp/Resolve:::loadClass (1 samples, 0.16%)</title><rect x="323.1" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>ContiguousSpace::oop_since_save_marks_iterate_nv (4 samples, 0.65%)</title><rect x="27.2" y="3185" width="7.6" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="30.18" 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/internal/progress/DefaultBuildOperationExecutor:::execute (378 samples, 61.17%)</title><rect x="454.9" y="1633" width="721.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="457.89" y="1643.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>MemNode::Ideal_common (1 samples, 0.16%)</title><rect x="195.2" y="2801" width="1.9" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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/jvm/ClassReader:::complete (1 samples, 0.16%)</title><rect x="327.0" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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$JCBinary:::accept (1 samples, 0.16%)</title><rect x="306.0" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>Block::find_remove (1 samples, 0.16%)</title><rect x="118.8" y="3153" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="121.83" 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>generic_perform_write (1 samples, 0.16%)</title><rect x="1186.2" y="2881" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>Ljava/util/Calendar$Builder:::build (1 samples, 0.16%)</title><rect x="456.8" y="1105" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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.21%)</title><rect x="300.2" y="1345" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1355.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$JCIdent:::accept (1 samples, 0.16%)</title><rect x="323.1" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>Reflection::invoke (5 samples, 0.81%)</title><rect x="1167.1" y="1425" width="9.5" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>Lcom/sun/tools/javac/util/Bits:::incl (1 samples, 0.16%)</title><rect x="342.2" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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 (3 samples, 0.49%)</title><rect x="464.4" y="945" width="5.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="433.9" y="897" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="436.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>page_cache_async_readahead (2 samples, 0.32%)</title><rect x="1140.4" y="689" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>Compile::fill_buffer (1 samples, 0.16%)</title><rect x="46.3" y="3233" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>Lorg/apache/tools/zip/ZipFile:::readCentralDirectoryEntry (1 samples, 0.16%)</title><rect x="456.8" y="1169" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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_get_inode_loc (1 samples, 0.16%)</title><rect x="296.4" y="3153" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="1165.2" y="705" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/MemberEnter:::memberEnter (2 samples, 0.32%)</title><rect x="325.0" y="1009" width="3.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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 (433 samples, 70.06%)</title><rect x="349.9" y="1713" width="826.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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/tree/JCTree$JCClassDecl:::accept (1 samples, 0.16%)</title><rect x="319.3" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="342.2" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>cfq_insert_request (1 samples, 0.16%)</title><rect x="502.6" y="529" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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>Ljava/lang/ClassLoader:::loadClass (1 samples, 0.16%)</title><rect x="466.3" y="417" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_swap_page (1 samples, 0.16%)</title><rect x="13.8" y="3217" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="16.82" 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>file_update_time (1 samples, 0.16%)</title><rect x="10.0" y="3169" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/comp/Resolve:::lookupMethod (1 samples, 0.16%)</title><rect x="1174.7" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1585" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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/comp/LambdaToMethod:::translate (2 samples, 0.32%)</title><rect x="317.4" y="961" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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 (2 samples, 0.32%)</title><rect x="1140.4" y="769" width="3.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>nmethod::nmethod (1 samples, 0.16%)</title><rect x="212.4" y="3217" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="215.39" 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_sync_readahead (1 samples, 0.16%)</title><rect x="281.1" y="3201" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>vfs_read (3 samples, 0.49%)</title><rect x="285.0" y="3281" width="5.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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>Parse::create_entry_map (1 samples, 0.16%)</title><rect x="202.8" y="2913" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>__radix_tree_lookup (1 samples, 0.16%)</title><rect x="1182.4" y="3153" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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>ciMethod::liveness_at_bci (1 samples, 0.16%)</title><rect x="199.0" y="2945" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="202.03" 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>Ljava/io/RandomAccessFile:::close (1 samples, 0.16%)</title><rect x="1165.2" y="1201" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>__page_cache_alloc (1 samples, 0.16%)</title><rect x="286.9" y="3153" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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>vfs_read (4 samples, 0.65%)</title><rect x="498.8" y="705" width="7.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>blk_run_queue (1 samples, 0.16%)</title><rect x="252.5" y="3025" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>__elv_add_request (1 samples, 0.16%)</title><rect x="433.9" y="977" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="436.88" 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>CompileBroker::invoke_compiler_on_method (23 samples, 3.72%)</title><rect x="218.1" y="3297" width="43.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="221.12" y="3307.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>IR::eliminate_null_checks (2 samples, 0.32%)</title><rect x="235.3" y="3201" width="3.8" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="238.31" 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>JavaThread::thread_main_inner (3 samples, 0.49%)</title><rect x="1184.3" y="3329" width="5.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>__generic_file_write_iter (2 samples, 0.32%)</title><rect x="1146.1" y="689" width="3.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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/code/Types$18:::visitClassType (1 samples, 0.16%)</title><rect x="311.7" y="385" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/jvm/Gen:::visitBlock (1 samples, 0.16%)</title><rect x="342.2" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>vfs_read (1 samples, 0.16%)</title><rect x="1182.4" y="3281" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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>PhaseLive::add_liveout (3 samples, 0.49%)</title><rect x="139.8" y="3201" width="5.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="142.84" 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>generic_file_read_iter (2 samples, 0.32%)</title><rect x="432.0" y="1073" width="3.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>Ljava/io/RandomAccessFile:::writeBytes (1 samples, 0.16%)</title><rect x="474.0" y="801" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="476.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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2561" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>RegMask::Size (1 samples, 0.16%)</title><rect x="120.7" y="3169" width="2.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="123.74" 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/comp/Attr:::checkIdInternal (1 samples, 0.16%)</title><rect x="330.8" y="337" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="279.2" y="3009" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>do_wp_page (1 samples, 0.16%)</title><rect x="10.0" y="3217" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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:::visitApply (1 samples, 0.16%)</title><rect x="1174.7" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/jvm/Gen:::visitIf (1 samples, 0.16%)</title><rect x="344.1" y="881" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="347.14" 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$JCAssign:::accept (1 samples, 0.16%)</title><rect x="1169.0" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>wake_up_bit (1 samples, 0.16%)</title><rect x="290.7" y="3105" width="1.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>PhaseIdealLoop::split_thru_phi (1 samples, 0.16%)</title><rect x="178.0" y="3185" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="181.03" 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 (1 samples, 0.16%)</title><rect x="283.0" y="3297" width="2.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="286.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>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (3 samples, 0.49%)</title><rect x="1170.9" y="1041" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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:::visitTry (1 samples, 0.16%)</title><rect x="346.1" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>GenCollectedHeap::gen_process_roots (3 samples, 0.49%)</title><rect x="19.5" y="3217" width="5.8" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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/DeferredAttr$DeferredType:::check (1 samples, 0.16%)</title><rect x="332.7" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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:::attribTree (1 samples, 0.16%)</title><rect x="309.8" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/jvm/Gen:::visitBlock (1 samples, 0.16%)</title><rect x="346.1" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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:::attribTree (1 samples, 0.16%)</title><rect x="338.4" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="225" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (12 samples, 1.94%)</title><rect x="1140.4" y="881" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="891.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>Ljava/io/RandomAccessFile:::readFully (1 samples, 0.16%)</title><rect x="311.7" y="257" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Ljava/lang/ClassLoader:::loadClass (1 samples, 0.16%)</title><rect x="466.3" y="369" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lsun/misc/URLClassPath$JarLoader:::findResource (1 samples, 0.16%)</title><rect x="462.5" y="1137" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>jlong_disjoint_arraycopy (1 samples, 0.16%)</title><rect x="11.9" y="3345" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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 (1 samples, 0.16%)</title><rect x="1176.6" y="1553" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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/Resolve$AbstractMethodCheck:::argumentsAcceptable (1 samples, 0.16%)</title><rect x="330.8" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (1 samples, 0.16%)</title><rect x="283.0" y="3217" width="2.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="286.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>Lorg/gradle/util/SingleMessageLogger:::whileDisabled (2 samples, 0.32%)</title><rect x="1176.6" y="1697" width="3.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>Lcom/sun/tools/javac/comp/MemberEnter:::attribImportType (1 samples, 0.16%)</title><rect x="323.1" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>scsi_io_completion (1 samples, 0.16%)</title><rect x="1159.4" y="465" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1138.4" y="881" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (12 samples, 1.94%)</title><rect x="474.0" y="833" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="843.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>IRScope::IRScope (6 samples, 0.97%)</title><rect x="221.9" y="3185" width="11.5" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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>do_IRQ (1 samples, 0.16%)</title><rect x="252.5" y="3169" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>nmethod::find_pc_desc_internal (1 samples, 0.16%)</title><rect x="315.5" y="865" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="318.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>Interpreter (378 samples, 61.17%)</title><rect x="454.9" y="1569" width="721.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>__lock_text_start (1 samples, 0.16%)</title><rect x="1159.4" y="433" width="2.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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>Lcom/sun/tools/javac/comp/Attr:::attribStats (1 samples, 0.16%)</title><rect x="1170.9" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>Parse::do_one_block (2 samples, 0.32%)</title><rect x="193.3" y="3009" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (435 samples, 70.39%)</title><rect x="349.9" y="1889" width="830.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1899.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>entry_SYSCALL_64_fastpath (5 samples, 0.81%)</title><rect x="1153.7" y="801" width="9.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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_wake_op (1 samples, 0.16%)</title><rect x="34.8" y="3249" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="37.82" 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>VM_Operation::evaluate (8 samples, 1.29%)</title><rect x="19.5" y="3297" width="15.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>deflate_slow (1 samples, 0.16%)</title><rect x="472.1" y="753" width="1.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="292.6" y="2945" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="309.8" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Ljava/io/FileInputStream:::readBytes (1 samples, 0.16%)</title><rect x="1138.4" y="801" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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/Scope:::lookup (1 samples, 0.16%)</title><rect x="313.6" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="316.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>Lcom/sun/tools/javac/comp/Infer:::checkWithinBounds (1 samples, 0.16%)</title><rect x="311.7" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3169" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>Ljava/net/URLClassLoader:::findClass (1 samples, 0.16%)</title><rect x="466.3" y="353" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="292.6" y="2977" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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$IncorporationStep$1:::apply (1 samples, 0.16%)</title><rect x="330.8" y="225" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>path_lookupat (1 samples, 0.16%)</title><rect x="292.6" y="3233" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>JVM_DoPrivileged (1 samples, 0.16%)</title><rect x="462.5" y="1233" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>__generic_file_write_iter (4 samples, 0.65%)</title><rect x="516.0" y="641" width="7.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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/MemberEnter:::memberEnter (2 samples, 0.32%)</title><rect x="325.0" y="1025" width="3.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>current_kernel_time64 (1 samples, 0.16%)</title><rect x="275.4" y="3217" width="1.9" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="278.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>add_to_page_cache_lru (1 samples, 0.16%)</title><rect x="1138.4" y="561" width="2.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1569" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ll_rw_block (1 samples, 0.16%)</title><rect x="292.6" y="3089" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3073" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>down_read (1 samples, 0.16%)</title><rect x="1155.6" y="625" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1158.63" 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/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="323.1" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>PhaseCFG::global_code_motion (3 samples, 0.49%)</title><rect x="52.0" y="3217" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="55.01" 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>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="1180.5" y="3153" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2801" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>grab_cache_page_write_begin (1 samples, 0.16%)</title><rect x="512.2" y="593" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>ext4_iget_normal (1 samples, 0.16%)</title><rect x="296.4" y="3185" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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:::genExpr (1 samples, 0.16%)</title><rect x="1169.0" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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.16%)</title><rect x="317.4" y="625" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/DeferredAttr$DeferredType:::check (1 samples, 0.16%)</title><rect x="330.8" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Infer:::instantiateMethod (1 samples, 0.16%)</title><rect x="330.8" y="273" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="292.6" y="3329" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>new_sync_read (2 samples, 0.32%)</title><rect x="432.0" y="1105" width="3.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.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>Java_java_util_zip_Deflater_deflateBytes (1 samples, 0.16%)</title><rect x="472.1" y="785" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2321" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>GraphBuilder::invoke (4 samples, 0.65%)</title><rect x="225.8" y="3121" width="7.6" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="292.6" y="2993" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>ciBytecodeStream::get_method (1 samples, 0.16%)</title><rect x="38.6" y="3105" width="2.0" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>Lcom/sun/tools/javac/comp/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="330.8" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="306.0" y="385" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="263.9" y="3249" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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/ClassReader:::complete (1 samples, 0.16%)</title><rect x="311.7" y="321" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/comp/DeferredAttr$DeferredType:::check (1 samples, 0.16%)</title><rect x="332.7" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Lsun/net/www/ParseUtil:::decode (1 samples, 0.16%)</title><rect x="468.3" y="833" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="471.25" 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>get_page_from_freelist (1 samples, 0.16%)</title><rect x="1148.0" y="561" width="1.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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>blk_queue_bio (1 samples, 0.16%)</title><rect x="292.6" y="3025" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="1174.7" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1089" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>Parse::do_all_blocks (2 samples, 0.32%)</title><rect x="193.3" y="3025" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>do_page_fault (1 samples, 0.16%)</title><rect x="13.8" y="3265" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="16.82" 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/MemberEnter:::memberEnter (2 samples, 0.32%)</title><rect x="325.0" y="1073" width="3.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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/Code:::setDefined (1 samples, 0.16%)</title><rect x="342.2" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_lseek (1 samples, 0.16%)</title><rect x="460.6" y="1153" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="463.61" 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.16%)</title><rect x="342.2" y="785" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1377" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1387.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>ext4_es_can_be_merged (1 samples, 0.16%)</title><rect x="1159.4" y="593" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="508.3" y="753" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="511.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>grab_cache_page_write_begin (1 samples, 0.16%)</title><rect x="519.8" y="593" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="522.81" 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/comp/Resolve$11:::doLookup (1 samples, 0.16%)</title><rect x="332.7" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.16%)</title><rect x="342.2" y="385" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>alloc_pages_current (1 samples, 0.16%)</title><rect x="286.9" y="3137" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="273.5" y="3201" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3073" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>C2Compiler::compile_method (92 samples, 14.89%)</title><rect x="38.6" y="3281" width="175.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C2Compiler::compile_me..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bio (1 samples, 0.16%)</title><rect x="292.6" y="3057" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>State::DFA (1 samples, 0.16%)</title><rect x="50.1" y="3169" width="1.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="53.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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1665" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1675.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 (55 samples, 8.90%)</title><rect x="349.9" y="1441" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Dict::Insert (2 samples, 0.32%)</title><rect x="208.6" y="3233" width="3.8" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2961" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>__es_insert_extent (1 samples, 0.16%)</title><rect x="1159.4" y="609" width="2.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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>AdvancedThresholdPolicy::submit_compile (1 samples, 0.16%)</title><rect x="279.2" y="3345" width="1.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>current_time (1 samples, 0.16%)</title><rect x="516.0" y="609" width="1.9" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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$JCReturn:::accept (1 samples, 0.16%)</title><rect x="319.3" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.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:::visitBlock (1 samples, 0.16%)</title><rect x="334.6" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>call_stub (1 samples, 0.16%)</title><rect x="1163.3" y="1025" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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>GraphKit::gen_subtype_check (1 samples, 0.16%)</title><rect x="195.2" y="2849" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>Lcom/sun/tools/javac/comp/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="306.0" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>submit_bh_wbc (1 samples, 0.16%)</title><rect x="296.4" y="3105" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>sys_read (3 samples, 0.49%)</title><rect x="285.0" y="3297" width="5.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2817" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/comp/Attr:::visitVarDef (1 samples, 0.16%)</title><rect x="336.5" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Java_java_util_zip_ZipFile_getEntry (1 samples, 0.16%)</title><rect x="462.5" y="1089" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1169" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1179.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 (55 samples, 8.90%)</title><rect x="349.9" y="1617" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>IndexSetIterator::advance_and_next (2 samples, 0.32%)</title><rect x="67.3" y="3201" width="3.8" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="70.28" 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/comp/Attr:::visitVarDef (1 samples, 0.16%)</title><rect x="1170.9" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="1182.4" y="3233" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="279.2" y="3217" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>Node::dominates (1 samples, 0.16%)</title><rect x="187.6" y="3137" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="190.57" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (26 samples, 4.21%)</title><rect x="300.2" y="1889" width="49.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1899.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>nmethod::handler_for_exception_and_pc (1 samples, 0.16%)</title><rect x="1174.7" y="513" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>unlock_new_inode (1 samples, 0.16%)</title><rect x="290.7" y="3121" width="1.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>ext4_iget_normal (1 samples, 0.16%)</title><rect x="292.6" y="3153" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="332.7" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>SYSC_newstat (1 samples, 0.16%)</title><rect x="292.6" y="3297" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>CallStaticJavaDirectNode::emit (1 samples, 0.16%)</title><rect x="46.3" y="3217" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>generic_perform_write (2 samples, 0.32%)</title><rect x="512.2" y="625" width="3.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2929" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>handle_mm_fault (1 samples, 0.16%)</title><rect x="29.1" y="3073" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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>mpage_map_and_submit_buffers (1 samples, 0.16%)</title><rect x="1165.2" y="929" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="271.6" y="3345" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2737" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Parse::do_one_bytecode (1 samples, 0.16%)</title><rect x="193.3" y="2705" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>scsi_softirq_done (1 samples, 0.16%)</title><rect x="252.5" y="3105" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2609" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1313" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1323.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>thread_entry (3 samples, 0.49%)</title><rect x="1184.3" y="3313" width="5.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>scsi_softirq_done (1 samples, 0.16%)</title><rect x="1159.4" y="497" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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:::findIdent (1 samples, 0.16%)</title><rect x="336.5" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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 (1 samples, 0.16%)</title><rect x="466.3" y="481" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>ext4_iget_normal (1 samples, 0.16%)</title><rect x="290.7" y="3153" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>ciEnv::get_method_by_index (1 samples, 0.16%)</title><rect x="38.6" y="3089" width="2.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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/jvm/ClassWriter:::writeClassFile (1 samples, 0.16%)</title><rect x="340.3" y="1073" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="343.32" 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_file_read_iter (1 samples, 0.16%)</title><rect x="458.7" y="1073" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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:::attribTree (1 samples, 0.16%)</title><rect x="309.8" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>__vfs_read (3 samples, 0.49%)</title><rect x="498.8" y="689" width="5.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>irq_exit (1 samples, 0.16%)</title><rect x="252.5" y="3153" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>blk_finish_plug (1 samples, 0.16%)</title><rect x="273.5" y="3185" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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 (1 samples, 0.16%)</title><rect x="300.2" y="1041" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>CallGenerator::for_inline (1 samples, 0.16%)</title><rect x="38.6" y="3249" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="306.0" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2785" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>vfs_write (1 samples, 0.16%)</title><rect x="470.2" y="705" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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.16%)</title><rect x="466.3" y="689" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>compress_block (30 samples, 4.85%)</title><rect x="714.6" y="721" width="57.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="717.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compre..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="1174.7" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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_write (1 samples, 0.16%)</title><rect x="1186.2" y="2961" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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 (378 samples, 61.17%)</title><rect x="454.9" y="1601" width="721.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>Interpreter (433 samples, 70.06%)</title><rect x="349.9" y="1681" width="826.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1691.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.16%)</title><rect x="279.2" y="3281" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1553" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Interpreter (366 samples, 59.22%)</title><rect x="464.4" y="1073" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1083.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/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="1138.4" y="833" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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.16%)</title><rect x="1178.5" y="1169" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>MethodLiveness::compute_liveness (1 samples, 0.16%)</title><rect x="221.9" y="3105" width="2.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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>ret_from_intr (1 samples, 0.16%)</title><rect x="158.9" y="3201" width="1.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="161.93" 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/comp/Infer$GraphSolver$InferenceGraph$Node:::removeDependency (1 samples, 0.16%)</title><rect x="309.8" y="305" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile (336 samples, 54.37%)</title><rect x="496.9" y="865" width="641.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::visitFile</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (2 samples, 0.32%)</title><rect x="193.3" y="3057" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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:::visitMethodDef (5 samples, 0.81%)</title><rect x="328.9" y="1025" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>user_path_at_empty (1 samples, 0.16%)</title><rect x="290.7" y="3249" width="1.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>call_stub (1 samples, 0.16%)</title><rect x="462.5" y="1201" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>vfs_fstatat (1 samples, 0.16%)</title><rect x="269.7" y="3265" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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:::visitTry (1 samples, 0.16%)</title><rect x="346.1" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>ret_from_intr (1 samples, 0.16%)</title><rect x="1159.4" y="577" width="2.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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>__vfs_read (1 samples, 0.16%)</title><rect x="273.5" y="3297" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>sys_read (1 samples, 0.16%)</title><rect x="263.9" y="3329" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>__fdget_pos (1 samples, 0.16%)</title><rect x="271.6" y="3297" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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_finish_command (1 samples, 0.16%)</title><rect x="1130.8" y="625" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2753" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>sys_newstat (1 samples, 0.16%)</title><rect x="290.7" y="3297" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="288.8" y="3089" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="291.77" 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>Ljava/io/RandomAccessFile:::readBytes (1 samples, 0.16%)</title><rect x="311.7" y="241" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="305" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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/code/Scope$CompoundScope:::addSubScope (1 samples, 0.16%)</title><rect x="304.0" y="897" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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.16%)</title><rect x="307.9" y="625" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="310.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>vfs_unlink (1 samples, 0.16%)</title><rect x="294.5" y="3297" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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 (4 samples, 0.65%)</title><rect x="1169.0" y="1153" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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 (2 samples, 0.32%)</title><rect x="432.0" y="1089" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1553" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1563.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>Lorg/gradle/api/specs/OrSpec:::isSatisfiedBy (1 samples, 0.16%)</title><rect x="435.8" y="1281" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.79" 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>GraphBuilder::invoke (1 samples, 0.16%)</title><rect x="225.8" y="2961" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>__breadahead (1 samples, 0.16%)</title><rect x="296.4" y="3137" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>finish_task_switch (1 samples, 0.16%)</title><rect x="208.6" y="3121" width="1.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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>Matcher::xform (1 samples, 0.16%)</title><rect x="50.1" y="3217" width="1.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="53.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>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (12 samples, 1.94%)</title><rect x="1140.4" y="961" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="971.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/jvm/ClassReader:::enterClass (1 samples, 0.16%)</title><rect x="336.5" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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>Lorg/apache/commons/io/IOUtils:::copyLarge (1 samples, 0.16%)</title><rect x="1138.4" y="817" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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/TreeTranslator:::visitBlock (1 samples, 0.16%)</title><rect x="319.3" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>Compile::Code_Gen (56 samples, 9.06%)</title><rect x="40.6" y="3249" width="106.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="43.55" y="3259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Compile::Code..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciTypeFlow::flow_types (1 samples, 0.16%)</title><rect x="189.5" y="3089" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>start_thread (1 samples, 0.16%)</title><rect x="10.0" y="3377" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1121" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1131.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>__vfs_write (4 samples, 0.65%)</title><rect x="516.0" y="689" width="7.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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>MacroAssembler::movflt (1 samples, 0.16%)</title><rect x="241.0" y="3169" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="244.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>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (1 samples, 0.16%)</title><rect x="319.3" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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.16%)</title><rect x="468.3" y="849" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="471.25" 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:::visitSelect (1 samples, 0.16%)</title><rect x="332.7" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>vfs_read (2 samples, 0.32%)</title><rect x="432.0" y="1137" width="3.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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/cache/internal/DefaultCacheAccess:::useCache (1 samples, 0.16%)</title><rect x="1180.5" y="3089" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>__fget_light (1 samples, 0.16%)</title><rect x="271.6" y="3281" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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>GraphBuilder::invoke (2 samples, 0.32%)</title><rect x="225.8" y="3041" width="3.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1761" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1771.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>DirtyCardToOopClosure::do_MemRegion (1 samples, 0.16%)</title><rect x="23.4" y="3137" width="1.9" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="26.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>lookup_fast (1 samples, 0.16%)</title><rect x="269.7" y="3169" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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.16%)</title><rect x="323.1" y="1057" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>Type::cmp (1 samples, 0.16%)</title><rect x="107.4" y="3169" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="110.38" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3025" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1393" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>new_sync_read (1 samples, 0.16%)</title><rect x="273.5" y="3281" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="309.8" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.16%)</title><rect x="25.3" y="3169" width="1.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="28.28" 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/TreeTranslator:::translate (2 samples, 0.32%)</title><rect x="317.4" y="1025" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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.16%)</title><rect x="1180.5" y="3233" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>PhaseChaitin::yank_if_dead_recurse (1 samples, 0.16%)</title><rect x="118.8" y="3185" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="121.83" 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>get_page_from_freelist (1 samples, 0.16%)</title><rect x="29.1" y="3025" width="1.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (12 samples, 1.94%)</title><rect x="474.0" y="897" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="907.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:::attribAnyTypes (1 samples, 0.16%)</title><rect x="1172.8" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>__blk_run_queue (1 samples, 0.16%)</title><rect x="294.5" y="3121" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>Ljava/lang/reflect/Method:::invoke (2 samples, 0.32%)</title><rect x="1176.6" y="1649" width="3.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>Interpreter (55 samples, 8.90%)</title><rect x="349.9" y="1601" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="3121" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>LIR_Assembler::emit_call (1 samples, 0.16%)</title><rect x="239.1" y="3185" width="1.9" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="242.13" 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$JCIf:::accept (2 samples, 0.32%)</title><rect x="306.0" y="945" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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_bio_write_page (1 samples, 0.16%)</title><rect x="1165.2" y="897" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/api/internal/file/copy/CopyFileVisitorImpl:::processFile (1 samples, 0.16%)</title><rect x="470.2" y="945" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>page_fault (1 samples, 0.16%)</title><rect x="11.9" y="3329" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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/code/Symbol$ClassSymbol:::members (1 samples, 0.16%)</title><rect x="328.9" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>JavaCalls::call_helper (461 samples, 74.60%)</title><rect x="300.2" y="3265" width="880.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3275.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>CodeCache::allocate (1 samples, 0.16%)</title><rect x="44.4" y="3169" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="47.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>ext4_mark_inode_dirty (1 samples, 0.16%)</title><rect x="10.0" y="3105" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>Lcom/sun/tools/javac/comp/Resolve:::selectBest (1 samples, 0.16%)</title><rect x="1174.7" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>ext4_block_write_begin (1 samples, 0.16%)</title><rect x="1186.2" y="2849" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>Lcom/sun/tools/javac/comp/DeferredAttr$2:::complete (1 samples, 0.16%)</title><rect x="332.7" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>vfs_read (1 samples, 0.16%)</title><rect x="458.7" y="1137" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>walk_component (1 samples, 0.16%)</title><rect x="290.7" y="3201" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>find_get_entry (1 samples, 0.16%)</title><rect x="1182.4" y="3185" width="1.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/ClassReader:::readClassFile (1 samples, 0.16%)</title><rect x="1170.9" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1281" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1291.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.16%)</title><rect x="1178.5" y="1121" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>Lcom/sun/tools/javac/comp/Resolve:::resolveConstructor (1 samples, 0.16%)</title><rect x="332.7" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/Infer$GraphSolver$InferenceGraph:::notifyUpdate (1 samples, 0.16%)</title><rect x="309.8" y="337" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Lorg/codehaus/groovy/control/ResolveVisitor:::transform (1 samples, 0.16%)</title><rect x="466.3" y="705" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>add_to_page_cache_lru (1 samples, 0.16%)</title><rect x="1142.3" y="609" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" 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>CompiledIC::internal_set_ic_destination (1 samples, 0.16%)</title><rect x="332.7" y="289" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>__sched_text_start (1 samples, 0.16%)</title><rect x="11.9" y="3233" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>writeBytes (2 samples, 0.32%)</title><rect x="508.3" y="769" width="3.9" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="511.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>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (1 samples, 0.16%)</title><rect x="1180.5" y="3041" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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/ClassReader:::readClass (1 samples, 0.16%)</title><rect x="1170.9" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="307.9" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="296.4" y="3361" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1697" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1707.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:::visitIf (1 samples, 0.16%)</title><rect x="307.9" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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 (2 samples, 0.32%)</title><rect x="317.4" y="1057" width="3.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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.16%)</title><rect x="1169.0" y="1121" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>llseek (1 samples, 0.16%)</title><rect x="460.6" y="1185" width="1.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="463.61" 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/tree/JCTree$JCWhileLoop:::accept (1 samples, 0.16%)</title><rect x="1174.7" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>cfq_insert_request (1 samples, 0.16%)</title><rect x="288.8" y="3105" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="291.77" 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>do_page_fault (1 samples, 0.16%)</title><rect x="29.1" y="3105" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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>mark_buffer_dirty (1 samples, 0.16%)</title><rect x="267.8" y="3105" width="1.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>Lcom/sun/tools/javac/tree/JCTree$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="323.1" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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.16%)</title><rect x="1174.7" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1777" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>PhaseIFG::SquareUp (1 samples, 0.16%)</title><rect x="130.3" y="3217" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="133.29" 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:::invoke (368 samples, 59.55%)</title><rect x="464.4" y="1457" width="702.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1467.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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3153" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>JavaThread::oops_do (2 samples, 0.32%)</title><rect x="19.5" y="3169" width="3.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>Compilation::emit_code_body (2 samples, 0.32%)</title><rect x="239.1" y="3217" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="242.13" 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/DeferredAttr:::attribSpeculative (1 samples, 0.16%)</title><rect x="309.8" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>ondemand_readahead (1 samples, 0.16%)</title><rect x="502.6" y="609" width="1.9" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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>InitializeNode::detect_init_independence (1 samples, 0.16%)</title><rect x="187.6" y="3169" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="190.57" 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>Lorg/gradle/cache/internal/btree/FileBackedBlockStore$BlockImpl:::write (1 samples, 0.16%)</title><rect x="1180.5" y="2865" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (2 samples, 0.32%)</title><rect x="328.9" y="897" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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:::attribStat (1 samples, 0.16%)</title><rect x="311.7" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>sys_read (2 samples, 0.32%)</title><rect x="432.0" y="1153" width="3.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>LinearScan::add_temp (1 samples, 0.16%)</title><rect x="246.8" y="3169" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="249.76" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (1 samples, 0.16%)</title><rect x="1178.5" y="1329" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>SharedRuntime::resolve_helper (1 samples, 0.16%)</title><rect x="332.7" y="337" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>[libpthread-2.24.so] (3 samples, 0.49%)</title><rect x="273.5" y="3361" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="276.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>Dict::Insert (1 samples, 0.16%)</title><rect x="195.2" y="2737" width="1.9" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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/reflect/JavaMethod:::invoke (2 samples, 0.32%)</title><rect x="1176.6" y="1665" width="3.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>alloc_pages_vma (1 samples, 0.16%)</title><rect x="29.1" y="3057" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1201" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1211.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>do_unlinkat (1 samples, 0.16%)</title><rect x="294.5" y="3313" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>sys_futex (1 samples, 0.16%)</title><rect x="34.8" y="3281" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="37.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>__check_object_size (1 samples, 0.16%)</title><rect x="498.8" y="593" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>ciMethod::ensure_method_data (1 samples, 0.16%)</title><rect x="250.6" y="3217" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="294.5" y="3057" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>deflate_slow (1 samples, 0.16%)</title><rect x="496.9" y="753" width="1.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="328.9" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>handle_mm_fault (1 samples, 0.16%)</title><rect x="11.9" y="3281" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1265" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>new_sync_read (1 samples, 0.16%)</title><rect x="1138.4" y="689" width="2.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>Compile::BuildOopMaps (1 samples, 0.16%)</title><rect x="42.5" y="3217" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="45.46" 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/jvm/Code:::emitInvokespecial (1 samples, 0.16%)</title><rect x="1169.0" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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$JCBlock:::accept (1 samples, 0.16%)</title><rect x="342.2" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="281.1" y="3329" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>LinkResolver::linktime_resolve_static_method (1 samples, 0.16%)</title><rect x="38.6" y="3009" width="2.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>Parse::do_checkcast (1 samples, 0.16%)</title><rect x="195.2" y="2881" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="323.1" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="317.4" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>vfs_write (1 samples, 0.16%)</title><rect x="267.8" y="3265" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2881" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.32%)</title><rect x="1176.6" y="1633" width="3.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>[libpthread-2.24.so] (2 samples, 0.32%)</title><rect x="512.2" y="753" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>java-71584/71595 (1 samples, 0.16%)</title><rect x="10.0" y="3393" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="1138.4" y="673" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="433.9" y="993" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="436.88" 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>ondemand_readahead (1 samples, 0.16%)</title><rect x="263.9" y="3217" width="2.0" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>ConNode::ConNode (1 samples, 0.16%)</title><rect x="181.8" y="3121" width="2.0" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="184.84" 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>Parse::do_one_bytecode (1 samples, 0.16%)</title><rect x="197.1" y="2977" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>Interpreter (435 samples, 70.39%)</title><rect x="349.9" y="1841" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lcom/sun/tools/javac/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="325.0" y="881" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>blk_flush_plug_list (1 samples, 0.16%)</title><rect x="273.5" y="3169" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>build_ (4 samples, 0.65%)</title><rect x="706.9" y="721" width="7.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="709.93" 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>__page_cache_alloc (1 samples, 0.16%)</title><rect x="1140.4" y="641" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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:::visitNewClass (1 samples, 0.16%)</title><rect x="334.6" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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/apache/tools/zip/ZipUtil:::dosToJavaTime (1 samples, 0.16%)</title><rect x="456.8" y="1153" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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-86820/86838 (479 samples, 77.51%)</title><rect x="265.9" y="3393" width="914.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="268.86" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-86820/86838</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1185" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>__vfs_write (2 samples, 0.32%)</title><rect x="1146.1" y="737" width="3.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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>Ljava/lang/ReflectiveOperationException:::&lt;init&gt; (1 samples, 0.16%)</title><rect x="466.3" y="337" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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/Attr:::checkId (1 samples, 0.16%)</title><rect x="330.8" y="385" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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 (2 samples, 0.32%)</title><rect x="202.8" y="3121" width="3.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>Lorg/gradle/cache/internal/btree/FileBackedBlockStore:::write (1 samples, 0.16%)</title><rect x="1180.5" y="2881" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="321" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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 (366 samples, 59.22%)</title><rect x="464.4" y="1057" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1067.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:::visitIf (2 samples, 0.32%)</title><rect x="328.9" y="929" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.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>NTarjan::DFS (1 samples, 0.16%)</title><rect x="157.0" y="3201" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="160.02" 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 (366 samples, 59.22%)</title><rect x="464.4" y="1025" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1035.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>ParseGenerator::generate (2 samples, 0.32%)</title><rect x="202.8" y="3137" width="3.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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/util/Formatter:::format (1 samples, 0.16%)</title><rect x="334.6" y="545" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="1170.9" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>ext4_file_read_iter (2 samples, 0.32%)</title><rect x="1140.4" y="721" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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/comp/TransTypes:::addBridges (1 samples, 0.16%)</title><rect x="321.2" y="1025" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.23" 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>Chunk::next_chop (1 samples, 0.16%)</title><rect x="214.3" y="3281" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="217.30" 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>JVM_IHashCode (1 samples, 0.16%)</title><rect x="1170.9" y="369" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>Interpreter (1 samples, 0.16%)</title><rect x="456.8" y="1185" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="435.8" y="1329" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.79" 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>generic_perform_write (1 samples, 0.16%)</title><rect x="267.8" y="3185" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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 (4 samples, 0.65%)</title><rect x="306.0" y="961" width="7.6" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (2 samples, 0.32%)</title><rect x="1146.1" y="753" width="3.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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>ic_miss_stub (1 samples, 0.16%)</title><rect x="315.5" y="929" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="318.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>ciBytecodeStream::get_method (2 samples, 0.32%)</title><rect x="229.6" y="3105" width="3.8" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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.16%)</title><rect x="466.3" y="625" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.65%)</title><rect x="456.8" y="1409" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2849" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2977" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="263.9" y="3201" width="2.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2129" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2139.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.16%)</title><rect x="193.3" y="2849" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2801" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="317.4" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="330.8" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>Lcom/sun/tools/javac/code/Symbol$ClassSymbol:::flags (1 samples, 0.16%)</title><rect x="323.1" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>PhaseChaitin::gather_lrg_masks (2 samples, 0.32%)</title><rect x="105.5" y="3217" width="3.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="108.47" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1681" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1691.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>VMThread::evaluate_operation (8 samples, 1.29%)</title><rect x="19.5" y="3313" width="15.3" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>thread_entry (1 samples, 0.16%)</title><rect x="1180.5" y="3313" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Java_java_util_zip_ZipFile_getEntry (1 samples, 0.16%)</title><rect x="1163.3" y="913" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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:::selectSym (1 samples, 0.16%)</title><rect x="1174.7" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/MemberEnter:::visitVarDef (1 samples, 0.16%)</title><rect x="1170.9" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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/JavacParser:::term3Rest (1 samples, 0.16%)</title><rect x="302.1" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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:::visitTry (1 samples, 0.16%)</title><rect x="342.2" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>pagecache_get_page (1 samples, 0.16%)</title><rect x="512.2" y="577" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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/api/internal/changedetection/state/DefaultFileSystemSnapshotter$FileVisitorImpl:::visitFile (45 samples, 7.28%)</title><rect x="349.9" y="1265" width="85.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.49%)</title><rect x="1184.3" y="3057" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="1138.4" y="753" width="2.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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.16%)</title><rect x="1169.0" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="336.5" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>JavaCalls::call_helper (26 samples, 4.21%)</title><rect x="300.2" y="1409" width="49.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1419.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>Interpreter (1 samples, 0.16%)</title><rect x="466.3" y="593" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>CodeHeap::allocate (3 samples, 0.49%)</title><rect x="254.4" y="3169" width="5.7" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="257.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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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/codehaus/groovy/control/ResolveVisitor:::transform (1 samples, 0.16%)</title><rect x="466.3" y="657" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (5 samples, 0.81%)</title><rect x="328.9" y="1041" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="325.0" y="929" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>__xstat64 (1 samples, 0.16%)</title><rect x="292.6" y="3345" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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 (366 samples, 59.22%)</title><rect x="464.4" y="1041" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1051.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.16%)</title><rect x="1170.9" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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 (4 samples, 0.65%)</title><rect x="456.8" y="1425" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>Lcom/sun/tools/javac/comp/Check:::checkOverride (1 samples, 0.16%)</title><rect x="313.6" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="316.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>Lorg/gradle/api/internal/ConventionAwareHelper$MappedPropertyImpl:::getValue (1 samples, 0.16%)</title><rect x="1176.6" y="1569" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>Lcom/sun/tools/javac/comp/Attr:::visitIf (1 samples, 0.16%)</title><rect x="306.0" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>LinkResolver::resolve_special_call_or_null (1 samples, 0.16%)</title><rect x="231.5" y="3041" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="234.49" 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>longest_match (9 samples, 1.46%)</title><rect x="479.7" y="737" width="17.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="482.71" 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>java-86820/86828 (94 samples, 15.21%)</title><rect x="36.7" y="3393" width="179.5" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="39.73" y="3403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-86820/86828</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/gradle/api/internal/file/copy/NormalizingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="470.2" y="913" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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 (373 samples, 60.36%)</title><rect x="454.9" y="1521" width="712.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>call_stub (3 samples, 0.49%)</title><rect x="1184.3" y="3249" width="5.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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/file/JavacFileManager:::inferBinaryName (1 samples, 0.16%)</title><rect x="325.0" y="817" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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:::checkMethodId (1 samples, 0.16%)</title><rect x="332.7" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>blk_queue_bio (1 samples, 0.16%)</title><rect x="294.5" y="3137" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>Compilation::compile_method (22 samples, 3.56%)</title><rect x="220.0" y="3249" width="42.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" y="3259.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>GraphBuilder::try_inline (2 samples, 0.32%)</title><rect x="225.8" y="3105" width="3.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3185" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>generic_perform_write (1 samples, 0.16%)</title><rect x="277.3" y="3233" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="280.31" 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/comp/Attr:::attribClass (7 samples, 1.13%)</title><rect x="304.0" y="1089" width="13.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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/jvm/Code$State:::pop (1 samples, 0.16%)</title><rect x="1169.0" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>readBytes (1 samples, 0.16%)</title><rect x="1138.4" y="785" width="2.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1329" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1339.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.16%)</title><rect x="323.1" y="1073" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>LoadNode::Value (1 samples, 0.16%)</title><rect x="185.7" y="3201" width="1.9" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="188.66" 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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::run (1 samples, 0.16%)</title><rect x="1178.5" y="1361" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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$14:::doLookup (1 samples, 0.16%)</title><rect x="306.0" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>LinkResolver::linktime_resolve_virtual_method_or_null (1 samples, 0.16%)</title><rect x="229.6" y="3041" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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/comp/MemberEnter:::visitVarDef (1 samples, 0.16%)</title><rect x="323.1" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>copy_page_to_iter_iovec (1 samples, 0.16%)</title><rect x="458.7" y="1041" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>__generic_file_write_iter (1 samples, 0.16%)</title><rect x="267.8" y="3201" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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 (368 samples, 59.55%)</title><rect x="464.4" y="1233" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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:::visitExec (1 samples, 0.16%)</title><rect x="1172.8" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>[unknown] (2 samples, 0.32%)</title><rect x="265.9" y="3345" width="3.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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:::checkMethod (1 samples, 0.16%)</title><rect x="311.7" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>resource_reallocate_bytes (1 samples, 0.16%)</title><rect x="239.1" y="3137" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="242.13" 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>walk_component (1 samples, 0.16%)</title><rect x="296.4" y="3233" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>GenerateOopMap::interp_bb (1 samples, 0.16%)</title><rect x="19.5" y="3025" width="2.0" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>Parse::do_call (1 samples, 0.16%)</title><rect x="197.1" y="2961" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>Reflection::invoke_method (368 samples, 59.55%)</title><rect x="464.4" y="1409" width="702.7" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1419.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>Lcom/sun/tools/javac/tree/JCTree$JCIf:::accept (1 samples, 0.16%)</title><rect x="344.1" y="897" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="347.14" 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>Ljava/io/FileDescriptor:::closeAll (1 samples, 0.16%)</title><rect x="1165.2" y="1185" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="433.9" y="913" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="436.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>IndexSetIterator::advance_and_next (1 samples, 0.16%)</title><rect x="65.4" y="3185" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="68.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>Lcom/sun/tools/javac/comp/Infer:::instantiateMethod (1 samples, 0.16%)</title><rect x="309.8" y="369" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/comp/Resolve$4:::argumentsAcceptable (1 samples, 0.16%)</title><rect x="330.8" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="332.7" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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:::visitBlock (1 samples, 0.16%)</title><rect x="307.9" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Lcom/sun/tools/javac/comp/DeferredAttr$DeferredType:::check (1 samples, 0.16%)</title><rect x="309.8" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.16%)</title><rect x="23.4" y="3089" width="1.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="26.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>Lsun/misc/URLClassPath$JarLoader:::findResource (1 samples, 0.16%)</title><rect x="1163.3" y="961" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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/Gen:::genArgs (1 samples, 0.16%)</title><rect x="346.1" y="33" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lorg/gradle/cache/internal/btree/FreeListBlockStore:::flush (1 samples, 0.16%)</title><rect x="1180.5" y="2913" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Parse::do_get_xxx (1 samples, 0.16%)</title><rect x="197.1" y="2849" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>Lcom/sun/tools/javac/main/JavaCompiler:::genCode (1 samples, 0.16%)</title><rect x="1169.0" y="1105" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>IntervalWalker::walk_to (1 samples, 0.16%)</title><rect x="242.9" y="3169" width="2.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="245.94" 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>ciMethod::get_flow_analysis (1 samples, 0.16%)</title><rect x="189.5" y="3121" width="1.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>PhaseCoalesce::coalesce_driver (1 samples, 0.16%)</title><rect x="120.7" y="3217" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="123.74" 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>OneContigSpaceCardGeneration::oop_since_save_marks_iterate_nv (4 samples, 0.65%)</title><rect x="27.2" y="3201" width="7.6" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="30.18" 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/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="334.6" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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_make_request (1 samples, 0.16%)</title><rect x="292.6" y="3041" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>[libpthread-2.24.so] (5 samples, 0.81%)</title><rect x="1153.7" y="817" width="9.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1457" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Parse::Parse (1 samples, 0.16%)</title><rect x="197.1" y="2929" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>Assembler::mov_literal64 (1 samples, 0.16%)</title><rect x="46.3" y="3169" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>__ext4_journal_start_sb (1 samples, 0.16%)</title><rect x="517.9" y="593" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="520.90" 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>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (368 samples, 59.55%)</title><rect x="464.4" y="1441" width="702.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1451.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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="283.0" y="3249" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="286.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>PhaseChaitin::post_allocate_copy_removal (6 samples, 0.97%)</title><rect x="109.3" y="3217" width="11.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="112.29" 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>java_start (461 samples, 74.60%)</title><rect x="300.2" y="3361" width="880.3" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3371.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>Ljava/lang/Throwable:::fillInStackTrace (1 samples, 0.16%)</title><rect x="466.3" y="321" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>__lru_cache_add (1 samples, 0.16%)</title><rect x="1142.3" y="577" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="433.9" y="881" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="436.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>PhaseGVN::transform_no_reclaim (1 samples, 0.16%)</title><rect x="191.4" y="3057" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>GraphBuilder::iterate_all_blocks (2 samples, 0.32%)</title><rect x="225.8" y="3073" width="3.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>nmethod::new_nmethod (1 samples, 0.16%)</title><rect x="212.4" y="3233" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="215.39" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3009" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>call_stub (461 samples, 74.60%)</title><rect x="300.2" y="3249" width="880.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3259.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>ext4_mark_inode_dirty (1 samples, 0.16%)</title><rect x="294.5" y="3265" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>__do_page_cache_readahead (1 samples, 0.16%)</title><rect x="279.2" y="3153" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>ContiguousSpace::oop_since_save_marks_iterate_nv (1 samples, 0.16%)</title><rect x="25.3" y="3185" width="1.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="28.28" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="1170.9" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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:::visitBlock (5 samples, 0.81%)</title><rect x="328.9" y="977" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>Bytecode_invoke::static_target (1 samples, 0.16%)</title><rect x="309.8" y="209" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Parse::do_all_blocks (1 samples, 0.16%)</title><rect x="193.3" y="2737" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>sys_read (1 samples, 0.16%)</title><rect x="283.0" y="3313" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="286.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>OptoRuntime::handle_exception_C (1 samples, 0.16%)</title><rect x="1174.7" y="545" width="1.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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 (3 samples, 0.49%)</title><rect x="464.4" y="913" width="5.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (26 samples, 4.21%)</title><rect x="300.2" y="1617" width="49.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1627.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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2673" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/parser/JavacParser:::classOrInterfaceBodyDeclaration (1 samples, 0.16%)</title><rect x="302.1" y="1025" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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_fault (1 samples, 0.16%)</title><rect x="13.8" y="3249" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="16.82" 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>Type::Initialize (2 samples, 0.32%)</title><rect x="208.6" y="3249" width="3.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="327.0" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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.16%)</title><rect x="466.3" y="801" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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:::methodDeclaratorRest (1 samples, 0.16%)</title><rect x="302.1" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Lcom/sun/tools/javac/comp/Attr:::visitApply (1 samples, 0.16%)</title><rect x="330.8" y="449" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2481" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/comp/Resolve:::loadClass (1 samples, 0.16%)</title><rect x="336.5" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="1170.9" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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/MemberEnter:::complete (1 samples, 0.16%)</title><rect x="323.1" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>VMThread::loop (11 samples, 1.78%)</title><rect x="15.7" y="3329" width="21.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="18.73" 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>JVM_InvokeMethod (368 samples, 59.55%)</title><rect x="464.4" y="1425" width="702.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1435.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>IntervalWalker::walk_to (1 samples, 0.16%)</title><rect x="242.9" y="3153" width="2.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="245.94" 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.16%)</title><rect x="466.3" y="849" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lorg/gradle/cache/internal/btree/BTreePersistentIndexedCache:::put (1 samples, 0.16%)</title><rect x="1180.5" y="2929" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>LinearScan::do_linear_scan (4 samples, 0.65%)</title><rect x="242.9" y="3201" width="7.7" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="245.94" 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/comp/Attr:::selectSym (1 samples, 0.16%)</title><rect x="309.8" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>MethodData::compute_data_size (1 samples, 0.16%)</title><rect x="250.6" y="3137" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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>ext4_io_submit (1 samples, 0.16%)</title><rect x="1165.2" y="881" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/DeferredAttr:::attribSpeculative (1 samples, 0.16%)</title><rect x="332.7" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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 (3 samples, 0.49%)</title><rect x="342.2" y="977" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>Reflection::invoke (26 samples, 4.21%)</title><rect x="300.2" y="1425" width="49.7" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1435.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>Lcom/sun/tools/javac/comp/MemberEnter:::complete (3 samples, 0.49%)</title><rect x="323.1" y="1089" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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 (368 samples, 59.55%)</title><rect x="464.4" y="1329" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2417" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Parse::Block::local_type_at (1 samples, 0.16%)</title><rect x="199.0" y="2961" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="202.03" 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>sys_read (1 samples, 0.16%)</title><rect x="1182.4" y="3297" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="279.2" y="3057" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>TypeAryPtr::empty (1 samples, 0.16%)</title><rect x="185.7" y="3185" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="188.66" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1233" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2817" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="369" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Ljava/io/FileInputStream:::readBytes (1 samples, 0.16%)</title><rect x="399.5" y="1185" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="402.51" 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>readBytes (2 samples, 0.32%)</title><rect x="1140.4" y="833" width="3.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1143.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>cfq_insert_request (1 samples, 0.16%)</title><rect x="263.9" y="3137" width="2.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1841" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1851.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 (1 samples, 0.16%)</title><rect x="1172.8" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="273.5" y="3249" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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.16%)</title><rect x="346.1" y="257" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="306.0" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>JavaCalls::call_virtual (1 samples, 0.16%)</title><rect x="1180.5" y="3297" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>page_cache_async_readahead (1 samples, 0.16%)</title><rect x="502.6" y="625" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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>Ljava/util/zip/Deflater:::deflateBytes (1 samples, 0.16%)</title><rect x="472.1" y="801" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="317.4" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/tree/TreeTranslator:::visitMethodDef (1 samples, 0.16%)</title><rect x="319.3" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>ext4_lookup (1 samples, 0.16%)</title><rect x="292.6" y="3169" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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.16%)</title><rect x="317.4" y="545" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/jvm/Gen:::visitIf (1 samples, 0.16%)</title><rect x="346.1" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>do_page_fault (1 samples, 0.16%)</title><rect x="11.9" y="3313" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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/ClassReader:::complete (1 samples, 0.16%)</title><rect x="1170.9" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (1 samples, 0.16%)</title><rect x="292.6" y="3265" width="1.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>JavaCalls::call_helper (5 samples, 0.81%)</title><rect x="1167.1" y="1409" width="9.5" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>IndexSetIterator::IndexSetIterator (1 samples, 0.16%)</title><rect x="143.7" y="3185" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="146.66" 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:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>ParseGenerator::generate (6 samples, 0.97%)</title><rect x="191.4" y="3153" width="11.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>Lorg/gradle/cache/internal/DefaultCacheAccess$UnitOfWorkFileAccess:::writeFile (1 samples, 0.16%)</title><rect x="1180.5" y="2993" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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/Attr:::visitBlock (3 samples, 0.49%)</title><rect x="1170.9" y="977" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.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>Lcom/sun/tools/javac/comp/Resolve$MostSpecificCheck:::methodCheckResult (1 samples, 0.16%)</title><rect x="306.0" y="305" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/code/Type$ClassType:::accept (1 samples, 0.16%)</title><rect x="311.7" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Lcom/sun/tools/javac/comp/Attr:::visitBlock (2 samples, 0.32%)</title><rect x="328.9" y="881" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/ClassReader:::sigToType (1 samples, 0.16%)</title><rect x="327.0" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>PhaseChaitin::Split (5 samples, 0.81%)</title><rect x="76.8" y="3217" width="9.6" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="79.83" 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>__vfs_write (1 samples, 0.16%)</title><rect x="267.8" y="3249" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>Parse::Parse (9 samples, 1.46%)</title><rect x="189.5" y="3233" width="17.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="292.6" y="2929" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>jni_SetIntField (4 samples, 0.65%)</title><rect x="516.0" y="769" width="7.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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 (4 samples, 0.65%)</title><rect x="456.8" y="1345" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>PhaseIdealLoop::build__early (1 samples, 0.16%)</title><rect x="158.9" y="3217" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="161.93" 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>java_start (25 samples, 4.05%)</title><rect x="216.2" y="3361" width="47.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="219.21" y="3371.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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="273.5" y="3105" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>__GI___libc_write (1 samples, 0.16%)</title><rect x="510.3" y="753" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="513.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>Interpreter (3 samples, 0.49%)</title><rect x="456.8" y="1265" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>new_sync_read (1 samples, 0.16%)</title><rect x="458.7" y="1105" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>ciMethod::get_flow_analysis (1 samples, 0.16%)</title><rect x="38.6" y="3217" width="2.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="41.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>Reflection::invoke_method (26 samples, 4.21%)</title><rect x="300.2" y="1441" width="49.7" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1451.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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="271.6" y="3329" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="274.59" 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:::visitVarDef (1 samples, 0.16%)</title><rect x="338.4" y="1025" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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:::findMethod (2 samples, 0.32%)</title><rect x="328.9" y="657" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>__xstat64 (1 samples, 0.16%)</title><rect x="296.4" y="3377" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="269.7" y="3313" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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:::visitBlock (1 samples, 0.16%)</title><rect x="346.1" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2305" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/tree/TreeTranslator:::visitExec (1 samples, 0.16%)</title><rect x="319.3" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="252.5" y="3009" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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/code/Types$18:::visitClassType (1 samples, 0.16%)</title><rect x="311.7" y="369" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/tree/JCTree$JCBlock:::accept (2 samples, 0.32%)</title><rect x="317.4" y="945" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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.16%)</title><rect x="342.2" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Lcom/sun/tools/javac/comp/Infer$IncorporationStep$7:::apply (1 samples, 0.16%)</title><rect x="311.7" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Ljava/util/zip/Deflater:::deflate (1 samples, 0.16%)</title><rect x="496.9" y="817" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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.16%)</title><rect x="323.1" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>BoolNode::Ideal (1 samples, 0.16%)</title><rect x="202.8" y="2865" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>Lcom/sun/tools/javac/comp/Attr:::visitExec (1 samples, 0.16%)</title><rect x="1174.7" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>ext4_da_write_end (1 samples, 0.16%)</title><rect x="267.8" y="3169" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>ciTypeFlow::do_flow (1 samples, 0.16%)</title><rect x="189.5" y="3105" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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.16%)</title><rect x="1180.5" y="3201" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Lorg/gradle/internal/reflect/JavaMethod:::invoke (5 samples, 0.81%)</title><rect x="1167.1" y="1537" width="9.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="289" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>JavaCalls::call_helper (3 samples, 0.49%)</title><rect x="1184.3" y="3265" width="5.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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.16%)</title><rect x="346.1" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="296.4" y="2993" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>LIR_Assembler::emit_op1 (1 samples, 0.16%)</title><rect x="241.0" y="3185" width="1.9" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="244.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/code/Types:::rank (1 samples, 0.16%)</title><rect x="311.7" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>vfs_write (2 samples, 0.32%)</title><rect x="275.4" y="3313" width="3.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="278.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/tree/JCTree$JCTry:::accept (1 samples, 0.16%)</title><rect x="334.6" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>nmethod::new_nmethod (4 samples, 0.65%)</title><rect x="254.4" y="3201" width="7.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="257.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>__memmove_sse2_unaligned_erms (2 samples, 0.32%)</title><rect x="1149.9" y="801" width="3.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1152.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/comp/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="1174.7" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/tree/JCTree$JCTypeApply:::accept (1 samples, 0.16%)</title><rect x="315.5" y="993" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2497" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/comp/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="330.8" y="289" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="342.2" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>CompileTask::print_compilation_impl (1 samples, 0.16%)</title><rect x="218.1" y="3281" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="221.12" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="317.4" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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:::findGlobalType (1 samples, 0.16%)</title><rect x="336.5" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Lcom/sun/tools/javac/jvm/Items$MemberItem:::invoke (1 samples, 0.16%)</title><rect x="1169.0" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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 (2 samples, 0.32%)</title><rect x="325.0" y="1041" width="3.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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.21%)</title><rect x="300.2" y="1185" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1195.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>CompileQueue::get (1 samples, 0.16%)</title><rect x="262.0" y="3297" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="265.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>__vdso_clock_gettime (1 samples, 0.16%)</title><rect x="36.7" y="3345" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="39.73" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1174.7" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="325.0" y="849" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1569" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>PhaseIFG::remove_node (3 samples, 0.49%)</title><rect x="71.1" y="3201" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="74.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 (26 samples, 4.21%)</title><rect x="300.2" y="1233" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1243.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.16%)</title><rect x="472.1" y="865" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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>generic_perform_write (5 samples, 0.81%)</title><rect x="1153.7" y="689" width="9.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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>JVM_FillInStackTrace (1 samples, 0.16%)</title><rect x="466.3" y="289" width="2.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lcom/sun/tools/javac/tree/JCTree$JCTry:::accept (1 samples, 0.16%)</title><rect x="342.2" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Interpreter (366 samples, 59.22%)</title><rect x="464.4" y="1105" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.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>blk_finish_plug (1 samples, 0.16%)</title><rect x="263.9" y="3185" width="2.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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:::visitVarDef (1 samples, 0.16%)</title><rect x="311.7" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Compilation::Compilation (22 samples, 3.56%)</title><rect x="220.0" y="3265" width="42.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" y="3275.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>scsi_softirq_done (1 samples, 0.16%)</title><rect x="1130.8" y="641" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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/code/Scope:::getIndex (1 samples, 0.16%)</title><rect x="1170.9" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_file_read_iter (3 samples, 0.49%)</title><rect x="285.0" y="3233" width="5.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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>InlineTree::check_can_parse (1 samples, 0.16%)</title><rect x="38.6" y="3233" width="2.0" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="41.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>ParmNode::is_CFG (1 samples, 0.16%)</title><rect x="151.3" y="3217" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="154.29" 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>SharedRuntime::resolve_sub_helper (1 samples, 0.16%)</title><rect x="332.7" y="321" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>generic_perform_write (2 samples, 0.32%)</title><rect x="1146.1" y="673" width="3.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1313" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>Ljava/io/FileInputStream:::readBytes (2 samples, 0.32%)</title><rect x="1140.4" y="849" width="3.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1143.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>DefNewGeneration::oop_since_save_marks_iterate_nv (1 samples, 0.16%)</title><rect x="25.3" y="3201" width="1.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="28.28" 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.16%)</title><rect x="1138.4" y="849" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>IndexSetIterator::advance_and_next (1 samples, 0.16%)</title><rect x="103.6" y="3185" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="106.56" 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>jbd2__journal_start (1 samples, 0.16%)</title><rect x="517.9" y="577" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="520.90" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCFG::schedule_late (2 samples, 0.32%)</title><rect x="53.9" y="3201" width="3.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="56.92" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3169" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>__vfs_write (5 samples, 0.81%)</title><rect x="1153.7" y="753" width="9.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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>generic_make_request (1 samples, 0.16%)</title><rect x="294.5" y="3153" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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.16%)</title><rect x="309.8" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="336.5" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>java_start (1 samples, 0.16%)</title><rect x="13.8" y="3361" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="16.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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="342.2" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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.16%)</title><rect x="462.5" y="1169" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3121" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>ciEnv::get_method_by_index (1 samples, 0.16%)</title><rect x="227.7" y="3009" width="1.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="230.67" 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/Attr:::visitVarDef (1 samples, 0.16%)</title><rect x="334.6" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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/MemberEnter:::memberEnter (1 samples, 0.16%)</title><rect x="323.1" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>Parse::do_call (2 samples, 0.32%)</title><rect x="193.3" y="2977" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Parse::do_one_block (1 samples, 0.16%)</title><rect x="202.8" y="2993" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>LinearScan::assign_reg_num (1 samples, 0.16%)</title><rect x="244.9" y="3185" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="247.85" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2993" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3185" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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.16%)</title><rect x="1169.0" y="1073" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>ciTypeFlow::flow_block (1 samples, 0.16%)</title><rect x="189.5" y="3057" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>IR::IR (6 samples, 0.97%)</title><rect x="221.9" y="3201" width="11.5" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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>copy_page_to_iter (1 samples, 0.16%)</title><rect x="498.8" y="625" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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:::visitReturn (1 samples, 0.16%)</title><rect x="309.8" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>ciMethod::bci_block_start (1 samples, 0.16%)</title><rect x="221.9" y="3121" width="2.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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>LinkResolver::resolve_method (1 samples, 0.16%)</title><rect x="231.5" y="2993" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="234.49" 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/tree/TreeTranslator:::visitApply (1 samples, 0.16%)</title><rect x="319.3" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>Lcom/sun/tools/javac/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="209" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Lcom/sun/tools/javac/comp/Infer:::checkWithinBounds (1 samples, 0.16%)</title><rect x="338.4" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>State::_sub_Op_StoreI (1 samples, 0.16%)</title><rect x="50.1" y="3153" width="1.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="53.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 (368 samples, 59.55%)</title><rect x="464.4" y="1265" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>NodeHash::grow (1 samples, 0.16%)</title><rect x="197.1" y="2801" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>blk_finish_plug (1 samples, 0.16%)</title><rect x="288.8" y="3153" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="291.77" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="334.6" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>GraphBuilder::try_inline_full (1 samples, 0.16%)</title><rect x="225.8" y="3009" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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/Infer$GraphSolver:::solve (1 samples, 0.16%)</title><rect x="338.4" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>irq_exit (1 samples, 0.16%)</title><rect x="158.9" y="3169" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="161.93" 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>LinearScan::allocate_registers (1 samples, 0.16%)</title><rect x="242.9" y="3185" width="2.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="245.94" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="279.2" y="3073" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>GenCollectorPolicy::satisfy_failed_allocation (8 samples, 1.29%)</title><rect x="19.5" y="3265" width="15.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>filename_lookup (1 samples, 0.16%)</title><rect x="290.7" y="3233" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2449" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="1170.9" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (55 samples, 8.90%)</title><rect x="349.9" y="1473" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>new_sync_write (2 samples, 0.32%)</title><rect x="275.4" y="3281" width="3.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="278.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 (435 samples, 70.39%)</title><rect x="349.9" y="1761" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>ext4_unlink (1 samples, 0.16%)</title><rect x="294.5" y="3281" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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:::visitExec (1 samples, 0.16%)</title><rect x="307.9" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Lcom/sun/tools/javac/tree/JCTree$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="1169.0" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>Ljava/io/BufferedOutputStream:::flush (1 samples, 0.16%)</title><rect x="1180.5" y="2849" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>ondemand_readahead (2 samples, 0.32%)</title><rect x="286.9" y="3185" width="3.8" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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/ClassReader:::readClassFile (1 samples, 0.16%)</title><rect x="336.5" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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>page_cache_sync_readahead (1 samples, 0.16%)</title><rect x="273.5" y="3233" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2113" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2123.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>Unsafe_Park (1 samples, 0.16%)</title><rect x="1184.3" y="2993" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>Interpreter (1 samples, 0.16%)</title><rect x="1138.4" y="865" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>MethodLiveness::BasicBlock::get_liveness_at (1 samples, 0.16%)</title><rect x="199.0" y="2913" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="202.03" 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>sys_read (1 samples, 0.16%)</title><rect x="273.5" y="3329" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>Lorg/gradle/internal/concurrent/ExecutorPolicy$CatchAndRecordFailures:::onExecute (461 samples, 74.60%)</title><rect x="300.2" y="3153" width="880.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3163.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>irq_exit (1 samples, 0.16%)</title><rect x="1159.4" y="545" width="2.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="1170.9" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1137" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1147.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/Formatter:::checkText (1 samples, 0.16%)</title><rect x="334.6" y="513" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>Ljava/lang/reflect/Method:::invoke (368 samples, 59.55%)</title><rect x="464.4" y="1489" width="702.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1499.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>Interpreter (1 samples, 0.16%)</title><rect x="1180.5" y="3169" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Lorg/gradle/api/internal/file/copy/DefaultFileCopyDetails:::copyTo (12 samples, 1.94%)</title><rect x="474.0" y="849" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="859.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/DeferredAttr$2:::complete (1 samples, 0.16%)</title><rect x="309.8" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>MemNode::all_controls_dominate (1 samples, 0.16%)</title><rect x="187.6" y="3153" width="1.9" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="190.57" 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>sys_write (2 samples, 0.32%)</title><rect x="512.2" y="721" width="3.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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/comp/Resolve:::resolveOperator (1 samples, 0.16%)</title><rect x="306.0" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>ext4_claim_free_clusters (1 samples, 0.16%)</title><rect x="1157.5" y="625" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1160.54" 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$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="319.3" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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 (433 samples, 70.06%)</title><rect x="349.9" y="1697" width="826.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>ContiguousSpaceDCTOC::walk_mem_region_with_cl (1 samples, 0.16%)</title><rect x="23.4" y="3105" width="1.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="26.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>copy_user_generic_unrolled (1 samples, 0.16%)</title><rect x="277.3" y="3217" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="280.31" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2097" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2107.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:::findMethod (1 samples, 0.16%)</title><rect x="307.9" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="3057" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>__softirqentry_text_start (1 samples, 0.16%)</title><rect x="517.9" y="497" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="520.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (12 samples, 1.94%)</title><rect x="1140.4" y="897" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="907.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$JCLambda:::accept (1 samples, 0.16%)</title><rect x="317.4" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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 (3 samples, 0.49%)</title><rect x="464.4" y="929" width="5.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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_end_request (1 samples, 0.16%)</title><rect x="1159.4" y="449" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1537" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="1138.4" y="657" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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>LinkResolver::lookup_method_in_klasses (1 samples, 0.16%)</title><rect x="229.6" y="2993" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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>Parse::do_one_block (1 samples, 0.16%)</title><rect x="193.3" y="2721" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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 (368 samples, 59.55%)</title><rect x="464.4" y="1345" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2081" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>deflate (321 samples, 51.94%)</title><rect x="523.6" y="769" width="612.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="526.62" y="779.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>new_sync_write (1 samples, 0.16%)</title><rect x="267.8" y="3233" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="263.9" y="3265" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>__vfs_read (2 samples, 0.32%)</title><rect x="432.0" y="1121" width="3.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>Compile::remove_useless_nodes (1 samples, 0.16%)</title><rect x="206.7" y="3233" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="209.67" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2353" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>page_fault (1 samples, 0.16%)</title><rect x="29.1" y="3121" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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>vframeStream::vframeStream (1 samples, 0.16%)</title><rect x="315.5" y="881" width="1.9" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="318.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>_tr_flush_block (1 samples, 0.16%)</title><rect x="496.9" y="737" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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>do_swap_page (1 samples, 0.16%)</title><rect x="11.9" y="3265" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (378 samples, 61.17%)</title><rect x="454.9" y="1617" width="721.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="457.89" y="1627.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="1953" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/comp/Resolve:::selectBest (1 samples, 0.16%)</title><rect x="332.7" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>mpage_submit_page (1 samples, 0.16%)</title><rect x="1165.2" y="913" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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.16%)</title><rect x="466.3" y="721" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1265" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1275.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>ll_rw_block (1 samples, 0.16%)</title><rect x="294.5" y="3201" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>ext4_do_update_inode (1 samples, 0.16%)</title><rect x="10.0" y="3073" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="1170.9" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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:::visitVarDef (1 samples, 0.16%)</title><rect x="315.5" y="1025" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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>Lcom/sun/tools/javac/comp/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="309.8" y="769" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1809" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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/Resolve:::resolveOperator (1 samples, 0.16%)</title><rect x="307.9" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>sys_newstat (1 samples, 0.16%)</title><rect x="296.4" y="3345" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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:::signatureMoreSpecific (1 samples, 0.16%)</title><rect x="306.0" y="337" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>sys_read (2 samples, 0.32%)</title><rect x="1140.4" y="785" width="3.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>scsi_finish_command (1 samples, 0.16%)</title><rect x="1159.4" y="481" width="2.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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.16%)</title><rect x="1178.5" y="1489" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>ZIP_GetEntry2 (1 samples, 0.16%)</title><rect x="462.5" y="1073" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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>new_sync_read (1 samples, 0.16%)</title><rect x="281.1" y="3249" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="284.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>__memmove_sse2_unaligned_erms (1 samples, 0.16%)</title><rect x="705.0" y="737" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="708.02" 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>ext4_file_write_iter (2 samples, 0.32%)</title><rect x="275.4" y="3265" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="278.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>Java_java_util_zip_Deflater_deflateBytes (11 samples, 1.78%)</title><rect x="475.9" y="785" width="21.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="478.89" 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 (4 samples, 0.65%)</title><rect x="456.8" y="1329" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>PhaseChaitin::Simplify (5 samples, 0.81%)</title><rect x="67.3" y="3217" width="9.5" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="70.28" 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>Parse::do_field_access (1 samples, 0.16%)</title><rect x="200.9" y="3073" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="203.94" 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:::selectSym (1 samples, 0.16%)</title><rect x="1170.9" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeBuffer::copy_code_to (1 samples, 0.16%)</title><rect x="212.4" y="3185" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="215.39" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="1165.2" y="769" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/code/Types:::erasedSupertypes (1 samples, 0.16%)</title><rect x="311.7" y="497" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1297" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1307.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>[[vdso]] (1 samples, 0.16%)</title><rect x="36.7" y="3329" width="1.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="39.73" 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>GenerateOopMap::compute_map (1 samples, 0.16%)</title><rect x="19.5" y="3057" width="2.0" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>Lorg/gradle/api/internal/hash/DefaultFileHasher:::doHash (43 samples, 6.96%)</title><rect x="353.7" y="1201" width="82.1" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="356.69" y="1211.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>Optimizer::eliminate_null_checks (2 samples, 0.32%)</title><rect x="235.3" y="3185" width="3.8" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="238.31" 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>get_page_from_freelist (1 samples, 0.16%)</title><rect x="1140.4" y="593" width="1.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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$JCLambda:::accept (1 samples, 0.16%)</title><rect x="1170.9" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>copy_page_to_iter_iovec (1 samples, 0.16%)</title><rect x="432.0" y="1041" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="434.97" 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>ciInstanceKlass::is_instance_klass (1 samples, 0.16%)</title><rect x="227.7" y="2977" width="1.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="230.67" 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>PhaseIterGVN::add_users_to_worklist (1 samples, 0.16%)</title><rect x="183.8" y="3185" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="186.75" 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>user_path_at_empty (1 samples, 0.16%)</title><rect x="269.7" y="3249" width="1.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>PhaseIdealLoop::build__late_post (1 samples, 0.16%)</title><rect x="160.8" y="3201" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="163.84" 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/code/Type$ClassType:::isErroneous (1 samples, 0.16%)</title><rect x="330.8" y="193" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>Lsun/misc/Unsafe:::park (1 samples, 0.16%)</title><rect x="1184.3" y="3009" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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/Attr:::attribClass (3 samples, 0.49%)</title><rect x="1170.9" y="1089" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>__vfs_read (1 samples, 0.16%)</title><rect x="281.1" y="3265" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>LIR_Assembler::emit_code (2 samples, 0.32%)</title><rect x="239.1" y="3201" width="3.8" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="242.13" 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/code/Types:::capture (1 samples, 0.16%)</title><rect x="315.5" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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 (461 samples, 74.60%)</title><rect x="300.2" y="2497" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/jvm/Gen:::visitBlock (1 samples, 0.16%)</title><rect x="346.1" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="311.7" y="353" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>ParseGenerator::generate (1 samples, 0.16%)</title><rect x="193.3" y="2865" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>ret_from_intr (1 samples, 0.16%)</title><rect x="252.5" y="3185" width="1.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>java_start (1 samples, 0.16%)</title><rect x="10.0" y="3361" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>schedule_timeout (1 samples, 0.16%)</title><rect x="11.9" y="3217" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>SymbolTable::lookup (1 samples, 0.16%)</title><rect x="38.6" y="2945" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>DefNewGeneration::copy_to_survivor_space (1 samples, 0.16%)</title><rect x="29.1" y="3153" width="1.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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/Attr:::attribTree (3 samples, 0.49%)</title><rect x="1170.9" y="1009" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.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/Resolve$BasicLookupHelper:::lookup (1 samples, 0.16%)</title><rect x="1174.7" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>GraphBuilder::try_inline (1 samples, 0.16%)</title><rect x="225.8" y="2945" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>submit_bio (1 samples, 0.16%)</title><rect x="296.4" y="3089" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>ext4_lookup (1 samples, 0.16%)</title><rect x="296.4" y="3201" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>ext4_da_write_begin (3 samples, 0.49%)</title><rect x="1155.6" y="673" width="5.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1158.63" 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.16%)</title><rect x="263.9" y="3345" width="2.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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:::mostSpecific (1 samples, 0.16%)</title><rect x="306.0" y="353" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/cache/internal/DefaultMultiProcessSafePersistentIndexedCache$2:::run (1 samples, 0.16%)</title><rect x="1180.5" y="2945" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>JavaThread::thread_main_inner (93 samples, 15.05%)</title><rect x="38.6" y="3329" width="177.6" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread_main..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="3073" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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 (435 samples, 70.39%)</title><rect x="349.9" y="1745" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>GenCollectedHeap::do_collection (8 samples, 1.29%)</title><rect x="19.5" y="3249" width="15.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>__set_page_dirty (1 samples, 0.16%)</title><rect x="267.8" y="3089" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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/tree/JCTree$JCBlock:::accept (5 samples, 0.81%)</title><rect x="328.9" y="993" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>sys_newstat (1 samples, 0.16%)</title><rect x="269.7" y="3297" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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_write (2 samples, 0.32%)</title><rect x="275.4" y="3297" width="3.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="278.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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="458.7" y="1185" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="461.71" 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>Ljava/io/RandomAccessFile:::close0 (1 samples, 0.16%)</title><rect x="1165.2" y="1153" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2561" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>LinkResolver::resolve_method (1 samples, 0.16%)</title><rect x="38.6" y="2993" width="2.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>Lorg/apache/commons/io/IOUtils:::copyLarge (12 samples, 1.94%)</title><rect x="1140.4" y="865" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="875.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.16%)</title><rect x="338.4" y="1009" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>ext4_inode_csum.isra.57 (1 samples, 0.16%)</title><rect x="10.0" y="3041" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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 (4 samples, 0.65%)</title><rect x="456.8" y="1441" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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 (45 samples, 7.28%)</title><rect x="349.9" y="1329" width="85.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>sys_write (2 samples, 0.32%)</title><rect x="265.9" y="3281" width="3.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1601" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2017" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ext4_file_read_iter (1 samples, 0.16%)</title><rect x="281.1" y="3233" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="284.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>Lcom/sun/tools/javac/tree/JCTree$JCCompilationUnit:::accept (1 samples, 0.16%)</title><rect x="323.1" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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.16%)</title><rect x="336.5" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>JavaThread::thread_main_inner (1 samples, 0.16%)</title><rect x="1180.5" y="3329" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>pagecache_get_page (1 samples, 0.16%)</title><rect x="1148.0" y="625" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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>__fput (1 samples, 0.16%)</title><rect x="1165.2" y="1041" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>__generic_file_write_iter (2 samples, 0.32%)</title><rect x="512.2" y="641" width="3.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>writeBytes (5 samples, 0.81%)</title><rect x="1144.2" y="817" width="9.5" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="1147.17" 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:::attribStat (1 samples, 0.16%)</title><rect x="306.0" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.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>page_cache_sync_readahead (1 samples, 0.16%)</title><rect x="263.9" y="3233" width="2.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>copy_user_generic_unrolled (1 samples, 0.16%)</title><rect x="1153.7" y="673" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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 (3 samples, 0.49%)</title><rect x="1170.9" y="1057" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>get_page_from_freelist (1 samples, 0.16%)</title><rect x="286.9" y="3105" width="1.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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>BacktraceBuilder::expand (1 samples, 0.16%)</title><rect x="466.3" y="225" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Parse::do_call (4 samples, 0.65%)</title><rect x="193.3" y="3073" width="7.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Interpreter (3 samples, 0.49%)</title><rect x="1184.3" y="3201" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>ZIP_GetEntry2 (1 samples, 0.16%)</title><rect x="1163.3" y="897" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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>JavaThread::thread_main_inner (25 samples, 4.05%)</title><rect x="216.2" y="3329" width="47.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="219.21" y="3339.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (6 samples, 0.97%)</title><rect x="328.9" y="1057" width="11.4" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>sys_write (5 samples, 0.81%)</title><rect x="1153.7" y="785" width="9.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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 (3 samples, 0.49%)</title><rect x="285.0" y="3313" width="5.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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$JCNewClass:::accept (1 samples, 0.16%)</title><rect x="332.7" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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/api/internal/file/copy/CopyFileVisitorImpl:::visitFile (1 samples, 0.16%)</title><rect x="470.2" y="961" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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/Gen:::genStat (1 samples, 0.16%)</title><rect x="346.1" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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:::visitSelect (1 samples, 0.16%)</title><rect x="1174.7" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/parser/JavacParser:::classOrInterfaceBody (1 samples, 0.16%)</title><rect x="302.1" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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>Java_java_util_zip_Deflater_deflateBytes (1 samples, 0.16%)</title><rect x="496.9" y="785" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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>ParseGenerator::generate (1 samples, 0.16%)</title><rect x="202.8" y="2945" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>JavaThread::run (1 samples, 0.16%)</title><rect x="13.8" y="3345" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="16.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>Lcom/sun/tools/javac/code/Symbol:::complete (1 samples, 0.16%)</title><rect x="328.9" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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 (368 samples, 59.55%)</title><rect x="464.4" y="1281" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="3105" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>BitMap::set_intersection_with_result (1 samples, 0.16%)</title><rect x="237.2" y="3137" width="1.9" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="240.22" 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>IR::compute_code (1 samples, 0.16%)</title><rect x="233.4" y="3201" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="236.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>Lcom/sun/tools/javac/comp/Attr:::visitSelect (1 samples, 0.16%)</title><rect x="330.8" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="1182.4" y="3217" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="1186.2" y="2993" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>ext4_file_write_iter (2 samples, 0.32%)</title><rect x="512.2" y="657" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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 (1 samples, 0.16%)</title><rect x="1170.9" y="769" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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/file/archive/ZipCopyAction$StreamAction:::processFile (1 samples, 0.16%)</title><rect x="472.1" y="881" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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$JCNewClass:::accept (1 samples, 0.16%)</title><rect x="319.3" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="279.2" y="3201" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="279.2" y="3313" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>__generic_file_write_iter (5 samples, 0.81%)</title><rect x="1153.7" y="705" width="9.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1174.7" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2945" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>lookup_slow (1 samples, 0.16%)</title><rect x="292.6" y="3185" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>PhaseChaitin::interfere_with_live (5 samples, 0.81%)</title><rect x="95.9" y="3201" width="9.6" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="98.92" 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/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="334.6" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>Lorg/gradle/api/internal/hash/DefaultFileHasher:::hash (9 samples, 1.46%)</title><rect x="437.7" y="1345" width="17.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="440.70" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="433.9" y="945" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="436.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>Interpreter (12 samples, 1.94%)</title><rect x="300.2" y="1105" width="22.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1115.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 (55 samples, 8.90%)</title><rect x="349.9" y="1377" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1905" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/comp/Attr:::attribTree (2 samples, 0.32%)</title><rect x="328.9" y="769" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Type::higher_equal (1 samples, 0.16%)</title><rect x="195.2" y="2785" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="198.21" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2833" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Interpreter (5 samples, 0.81%)</title><rect x="340.3" y="1089" width="9.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="343.32" 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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="283.0" y="3233" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="286.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>JavaThread::thread_main_inner (1 samples, 0.16%)</title><rect x="13.8" y="3329" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="16.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>Lcom/sun/tools/javac/jvm/Gen:::visitExec (1 samples, 0.16%)</title><rect x="1169.0" y="881" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="279.2" y="3041" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>JVM_InvokeMethod (1 samples, 0.16%)</title><rect x="1178.5" y="1585" width="2.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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/comp/Resolve:::resolveConstructor (1 samples, 0.16%)</title><rect x="309.8" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>PhaseChaitin::build__physical (10 samples, 1.62%)</title><rect x="86.4" y="3217" width="19.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="89.38" 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>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (349 samples, 56.47%)</title><rect x="472.1" y="977" width="666.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" y="987.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/code/Scope:::lookup (1 samples, 0.16%)</title><rect x="313.6" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="316.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>__vfs_read (1 samples, 0.16%)</title><rect x="1138.4" y="705" width="2.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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/Attr:::visitExec (2 samples, 0.32%)</title><rect x="328.9" y="833" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>new_sync_write (1 samples, 0.16%)</title><rect x="1186.2" y="2929" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3057" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>kmem_cache_alloc (1 samples, 0.16%)</title><rect x="1186.2" y="2785" width="1.9" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="470.2" y="753" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>create_empty_buffers (1 samples, 0.16%)</title><rect x="1186.2" y="2833" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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/tree/JCTree$JCLambda:::accept (1 samples, 0.16%)</title><rect x="319.3" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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$JCMethodInvocation:::accept (2 samples, 0.32%)</title><rect x="328.9" y="801" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>scsi_request_fn (1 samples, 0.16%)</title><rect x="433.9" y="929" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="436.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>__do_page_fault (1 samples, 0.16%)</title><rect x="11.9" y="3297" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>BlockListBuilder::BlockListBuilder (1 samples, 0.16%)</title><rect x="221.9" y="3153" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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/Types$MembersClosureCache:::visitClassType (1 samples, 0.16%)</title><rect x="304.0" y="913" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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/Resolve:::isAccessible (1 samples, 0.16%)</title><rect x="323.1" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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 (433 samples, 70.06%)</title><rect x="349.9" y="1665" width="826.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>[unknown] (4 samples, 0.65%)</title><rect x="285.0" y="3345" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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>ext4_iget (1 samples, 0.16%)</title><rect x="296.4" y="3169" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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/comp/Resolve$9:::doLookup (1 samples, 0.16%)</title><rect x="1174.7" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="306.0" y="689" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>sys_write (1 samples, 0.16%)</title><rect x="1186.2" y="2977" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="263.9" y="3361" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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.16%)</title><rect x="346.1" y="865" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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$JCForLoop:::accept (1 samples, 0.16%)</title><rect x="342.2" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>Ljava/io/RandomAccessFile:::writeBytes (8 samples, 1.29%)</title><rect x="508.3" y="801" width="15.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="511.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>InstanceKlass::oop_oop_iterate_nv (2 samples, 0.32%)</title><rect x="27.2" y="3169" width="3.8" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="30.18" 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>__do_page_cache_readahead (2 samples, 0.32%)</title><rect x="1140.4" y="657" width="3.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>__xstat64 (1 samples, 0.16%)</title><rect x="269.7" y="3329" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="319.3" y="545" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-86820/86900 (4 samples, 0.65%)</title><rect x="1182.4" y="3393" width="7.6" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="1138.4" y="993" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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:::enterMember (1 samples, 0.16%)</title><rect x="1170.9" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (4 samples, 0.65%)</title><rect x="1169.0" y="1169" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>PhaseIFG::re_insert (2 samples, 0.32%)</title><rect x="63.5" y="3201" width="3.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="66.46" 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/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1170.9" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>__d_lookup_rcu (1 samples, 0.16%)</title><rect x="269.7" y="3153" width="1.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1217" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1227.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 (1 samples, 0.16%)</title><rect x="306.0" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.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/hash/DefaultFileHasher:::doHash (8 samples, 1.29%)</title><rect x="437.7" y="1329" width="15.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="440.70" 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>ext4_iget (1 samples, 0.16%)</title><rect x="290.7" y="3137" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>do_futex (1 samples, 0.16%)</title><rect x="34.8" y="3265" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="37.82" 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/util/locale/provider/CalendarProviderImpl:::getInstance (1 samples, 0.16%)</title><rect x="456.8" y="1121" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2001" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2689" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>sys_write (1 samples, 0.16%)</title><rect x="470.2" y="721" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>__softirqentry_text_start (1 samples, 0.16%)</title><rect x="252.5" y="3137" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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/jvm/Gen:::genMethod (4 samples, 0.65%)</title><rect x="342.2" y="1025" width="7.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2913" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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/code/Types$26:::visitType (1 samples, 0.16%)</title><rect x="269.7" y="3345" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>ext4_file_write_iter (2 samples, 0.32%)</title><rect x="1146.1" y="705" width="3.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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>GraphBuilder::iterate_bytecodes_for_block (2 samples, 0.32%)</title><rect x="225.8" y="3057" width="3.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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.16%)</title><rect x="307.9" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Lcom/sun/tools/javac/comp/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="332.7" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>new_sync_write (5 samples, 0.81%)</title><rect x="1153.7" y="737" width="9.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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>RegMask::Size (1 samples, 0.16%)</title><rect x="105.5" y="3201" width="1.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="108.47" 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>Ljava/util/concurrent/ArrayBlockingQueue:::poll (2 samples, 0.32%)</title><rect x="1184.3" y="3041" width="3.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>CompiledStaticCall::emit_to_interp_stub (1 samples, 0.16%)</title><rect x="46.3" y="3201" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>_tr_flush_block (34 samples, 5.50%)</title><rect x="706.9" y="737" width="64.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="709.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_tr_flu..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (3 samples, 0.49%)</title><rect x="1184.3" y="3233" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>entry_SYSCALL_64_fastpath (2 samples, 0.32%)</title><rect x="1140.4" y="801" width="3.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>do_IRQ (1 samples, 0.16%)</title><rect x="1159.4" y="561" width="2.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="1172.8" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="1985" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>MethodData::profile_arguments_for_invoke (1 samples, 0.16%)</title><rect x="250.6" y="3121" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="253.58" 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/Attr:::attribTree (2 samples, 0.32%)</title><rect x="306.0" y="913" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (367 samples, 59.39%)</title><rect x="464.4" y="1169" width="700.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.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>Lcom/sun/tools/javac/comp/Attr:::visitIf (2 samples, 0.32%)</title><rect x="306.0" y="929" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>InstanceKlass::mask_for (1 samples, 0.16%)</title><rect x="19.5" y="3121" width="2.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2705" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>PhaseCFG::schedule_early (1 samples, 0.16%)</title><rect x="52.0" y="3201" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="55.01" 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/file/ZipFileIndexArchive$ZipFileIndexFileObject:::openInputStream (1 samples, 0.16%)</title><rect x="311.7" y="289" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>__softirqentry_text_start (1 samples, 0.16%)</title><rect x="1159.4" y="529" width="2.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1162.45" 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>kmem_cache_alloc (1 samples, 0.16%)</title><rect x="517.9" y="561" width="1.9" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="520.90" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="1174.7" y="625" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>PhaseChaitin::Select (3 samples, 0.49%)</title><rect x="61.6" y="3217" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="64.55" 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>__GI___libc_close (1 samples, 0.16%)</title><rect x="1165.2" y="1137" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>ciBytecodeStream::get_field (1 samples, 0.16%)</title><rect x="223.9" y="3105" width="1.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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 (5 samples, 0.81%)</title><rect x="454.9" y="1473" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="346.1" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>PhaseLive::compute (7 samples, 1.13%)</title><rect x="132.2" y="3217" width="13.4" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="135.20" 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/jvm/Gen:::genFinalizer (1 samples, 0.16%)</title><rect x="346.1" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Lcom/sun/tools/javac/code/Scope:::enter (1 samples, 0.16%)</title><rect x="1170.9" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_dirty_inode (1 samples, 0.16%)</title><rect x="10.0" y="3121" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/jvm/Items$LocalItem:::store (1 samples, 0.16%)</title><rect x="342.2" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>page_fault (1 samples, 0.16%)</title><rect x="13.8" y="3281" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="16.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/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="1169.0" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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.16%)</title><rect x="309.8" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="327.0" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>scsi_run_queue (1 samples, 0.16%)</title><rect x="252.5" y="3041" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>PhaseIFG::Compute_Effective_Degree (4 samples, 0.65%)</title><rect x="122.7" y="3217" width="7.6" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="125.65" 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 (55 samples, 8.90%)</title><rect x="349.9" y="1505" width="105.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile (12 samples, 1.94%)</title><rect x="474.0" y="881" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="891.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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="342.2" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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 (1 samples, 0.16%)</title><rect x="317.4" y="609" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/comp/Attr:::visitBlock (1 samples, 0.16%)</title><rect x="1170.9" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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.16%)</title><rect x="470.2" y="865" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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$JCIf:::accept (1 samples, 0.16%)</title><rect x="307.9" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>alloc_page_buffers (1 samples, 0.16%)</title><rect x="1186.2" y="2817" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>Lcom/sun/tools/javac/jvm/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="311.7" y="305" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>ciEnv::lookup_method (1 samples, 0.16%)</title><rect x="38.6" y="3057" width="2.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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 (2 samples, 0.32%)</title><rect x="349.9" y="1201" width="3.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (12 samples, 1.94%)</title><rect x="1140.4" y="977" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" y="987.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>call_stub (1 samples, 0.16%)</title><rect x="1180.5" y="3249" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>vfs_read (1 samples, 0.16%)</title><rect x="279.2" y="3265" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2897" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2913" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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 (368 samples, 59.55%)</title><rect x="464.4" y="1313" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2945" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ext4_file_write_iter (4 samples, 0.65%)</title><rect x="516.0" y="657" width="7.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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>new_sync_read (3 samples, 0.49%)</title><rect x="498.8" y="673" width="5.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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>SYSC_newstat (1 samples, 0.16%)</title><rect x="290.7" y="3281" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>LinearScan::build_ (1 samples, 0.16%)</title><rect x="246.8" y="3185" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="249.76" 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/code/Symbol$ClassSymbol:::complete (1 samples, 0.16%)</title><rect x="323.1" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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>Java_java_util_zip_Deflater_deflateBytes (6 samples, 0.97%)</title><rect x="512.2" y="785" width="11.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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$11:::doLookup (1 samples, 0.16%)</title><rect x="309.8" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Node_Backward_Iterator::next (1 samples, 0.16%)</title><rect x="53.9" y="3185" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="56.92" 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>file_update_time (1 samples, 0.16%)</title><rect x="275.4" y="3233" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="278.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>Lcom/sun/tools/javac/comp/Attr:::visitSelect (1 samples, 0.16%)</title><rect x="327.0" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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.16%)</title><rect x="304.0" y="1057" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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/Resolve:::findMethodInScope (1 samples, 0.16%)</title><rect x="309.8" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1249" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>__blk_run_queue (1 samples, 0.16%)</title><rect x="502.6" y="513" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="505.62" 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>new_sync_read (1 samples, 0.16%)</title><rect x="263.9" y="3281" width="2.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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/main/JavaCompiler:::genCode (5 samples, 0.81%)</title><rect x="340.3" y="1105" width="9.6" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="343.32" 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>__softirqentry_text_start (1 samples, 0.16%)</title><rect x="158.9" y="3153" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="161.93" 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/Attr:::checkIdInternal (1 samples, 0.16%)</title><rect x="311.7" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.16%)</title><rect x="208.6" y="3137" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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>Lorg/gradle/api/internal/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (1 samples, 0.16%)</title><rect x="1138.4" y="977" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="307.9" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2577" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lcom/sun/tools/javac/tree/JCTree$JCBlock:::accept (1 samples, 0.16%)</title><rect x="342.2" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>CodeBlob::allocation_size (1 samples, 0.16%)</title><rect x="252.5" y="3201" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>ciTypeFlow::do_flow (1 samples, 0.16%)</title><rect x="38.6" y="3201" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.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>Lcom/sun/tools/javac/jvm/Gen:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="513" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>StoreNode::Ideal (1 samples, 0.16%)</title><rect x="187.6" y="3201" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="190.57" 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>sys_unlink (1 samples, 0.16%)</title><rect x="294.5" y="3329" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2577" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lcom/sun/tools/javac/comp/Resolve:::checkMethod (1 samples, 0.16%)</title><rect x="338.4" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="1165.2" y="737" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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:::rawInstantiate (1 samples, 0.16%)</title><rect x="332.7" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2449" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2459.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 (1 samples, 0.16%)</title><rect x="1186.2" y="2897" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (368 samples, 59.55%)</title><rect x="464.4" y="1473" width="702.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lsun/reflect/DelegatingMethodAccessorImpl:::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lock_text_start (1 samples, 0.16%)</title><rect x="34.8" y="3201" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="37.82" 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>Ljava/util/jar/JarFile:::getEntry (1 samples, 0.16%)</title><rect x="1163.3" y="945" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3009" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1153" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>Parse::ensure_phi (1 samples, 0.16%)</title><rect x="199.0" y="2977" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="202.03" 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>Node_Array::insert (1 samples, 0.16%)</title><rect x="55.8" y="3169" width="1.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="58.83" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3217" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>Ljava/io/FileOutputStream:::writeBytes (10 samples, 1.62%)</title><rect x="1144.2" y="849" width="19.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1147.17" 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 (3 samples, 0.49%)</title><rect x="342.2" y="993" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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>__mark_inode_dirty (1 samples, 0.16%)</title><rect x="10.0" y="3137" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/jvm/Gen:::genExpr (1 samples, 0.16%)</title><rect x="346.1" y="81" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>__alloc_pages_nodemask (1 samples, 0.16%)</title><rect x="1140.4" y="609" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>compress_block (1 samples, 0.16%)</title><rect x="496.9" y="721" width="1.9" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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>JVM_DoPrivileged (1 samples, 0.16%)</title><rect x="1163.3" y="1057" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3089" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Interpreter (378 samples, 61.17%)</title><rect x="454.9" y="1553" width="721.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2961" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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:::rawInstantiate (1 samples, 0.16%)</title><rect x="306.0" y="321" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="1172.8" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1175.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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="290.7" y="3313" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>copy_user_generic_unrolled (1 samples, 0.16%)</title><rect x="1146.1" y="657" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (1 samples, 0.16%)</title><rect x="1180.5" y="3361" width="1.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>GraphBuilder::try_inline (1 samples, 0.16%)</title><rect x="225.8" y="3025" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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/parser/JavacParser:::term (1 samples, 0.16%)</title><rect x="302.1" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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:::checkMethodIdInternal (1 samples, 0.16%)</title><rect x="334.6" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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 (3 samples, 0.49%)</title><rect x="1170.9" y="1121" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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:::genStat (1 samples, 0.16%)</title><rect x="342.2" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="311.7" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/comp/DeferredAttr$DeferredType:::check (1 samples, 0.16%)</title><rect x="309.8" y="673" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>LinearScan::assign_reg_num (1 samples, 0.16%)</title><rect x="244.9" y="3169" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="247.85" 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/jvm/ClassReader$1:::complete (1 samples, 0.16%)</title><rect x="311.7" y="337" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>do_page_fault (1 samples, 0.16%)</title><rect x="46.3" y="3137" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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/code/Symbol$ClassSymbol:::flags (1 samples, 0.16%)</title><rect x="323.1" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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 (5 samples, 0.81%)</title><rect x="328.9" y="961" width="9.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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.16%)</title><rect x="306.0" y="625" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="338.4" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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.16%)</title><rect x="309.8" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>ciEnv::get_method_by_index (2 samples, 0.32%)</title><rect x="229.6" y="3089" width="3.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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>SharedRuntime::find_callee_info_helper (1 samples, 0.16%)</title><rect x="309.8" y="225" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/comp/Attr:::checkIdInternal (1 samples, 0.16%)</title><rect x="338.4" y="865" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="279.2" y="3089" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>PhaseTransform::longcon (1 samples, 0.16%)</title><rect x="181.8" y="3169" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="184.84" 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/comp/Attr:::checkId (1 samples, 0.16%)</title><rect x="334.6" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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.16%)</title><rect x="327.0" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>JavaThread::~JavaThread (2 samples, 0.32%)</title><rect x="265.9" y="3361" width="3.8" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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>Lorg/gradle/api/internal/file/copy/DuplicateHandlingCopyActionDecorator$1$1:::processFile (1 samples, 0.16%)</title><rect x="470.2" y="929" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>generic_perform_write (3 samples, 0.49%)</title><rect x="517.9" y="625" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="520.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>__fget_light (1 samples, 0.16%)</title><rect x="265.9" y="3265" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="268.86" 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.16%)</title><rect x="306.0" y="369" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>PhaseIdealLoop::build__tree (3 samples, 0.49%)</title><rect x="164.7" y="3217" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="167.66" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="1169.0" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2769" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lorg/gradle/api/internal/file/archive/ZipCopyAction$StreamAction:::processFile (336 samples, 54.37%)</title><rect x="496.9" y="881" width="641.5" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" y="891.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>ciTypeFlow::StateVector::apply_one_bytecode (1 samples, 0.16%)</title><rect x="189.5" y="3041" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>mpt_put_msg_frame (1 samples, 0.16%)</title><rect x="273.5" y="3057" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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:::visitMethodDef (3 samples, 0.49%)</title><rect x="1170.9" y="1025" width="5.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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/code/Types$ImplementationCache:::get (1 samples, 0.16%)</title><rect x="304.0" y="977" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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_end_request (1 samples, 0.16%)</title><rect x="252.5" y="3057" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>JavaThread::run (461 samples, 74.60%)</title><rect x="300.2" y="3345" width="880.3" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="3355.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>ext4_da_write_begin (1 samples, 0.16%)</title><rect x="1186.2" y="2865" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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::iterate_bytecodes_for_block (5 samples, 0.81%)</title><rect x="223.9" y="3137" width="9.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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>radix_tree_lookup_slot (1 samples, 0.16%)</title><rect x="1182.4" y="3169" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/Types:::insert (1 samples, 0.16%)</title><rect x="311.7" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>Lorg/apache/commons/io/IOUtils:::copyLarge (12 samples, 1.94%)</title><rect x="474.0" y="817" width="22.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="476.98" y="827.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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2785" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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 (1 samples, 0.16%)</title><rect x="307.9" y="657" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1377" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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/Attr:::visitApply (2 samples, 0.32%)</title><rect x="328.9" y="785" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2465" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="17.6" y="3281" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="20.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>[unknown] (8 samples, 1.29%)</title><rect x="279.2" y="3361" width="15.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>readBytes (1 samples, 0.16%)</title><rect x="506.4" y="785" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="509.44" 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>jni_GetArrayLength (1 samples, 0.16%)</title><rect x="311.7" y="225" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="311.7" y="801" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>ciMethodBlocks::ciMethodBlocks (1 samples, 0.16%)</title><rect x="221.9" y="3057" width="2.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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.16%)</title><rect x="462.5" y="1185" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2193" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2609" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>new_sync_read (2 samples, 0.32%)</title><rect x="1140.4" y="737" width="3.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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/Attr:::visitSelect (1 samples, 0.16%)</title><rect x="311.7" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>call_stub (5 samples, 0.81%)</title><rect x="1167.1" y="1393" width="9.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>GraphBuilder::try_inline_full (1 samples, 0.16%)</title><rect x="225.8" y="2929" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>ciTypeFlow::flow_types (1 samples, 0.16%)</title><rect x="38.6" y="3185" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>start_thread (1 samples, 0.16%)</title><rect x="1180.5" y="3377" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="3233" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>schedule (1 samples, 0.16%)</title><rect x="208.6" y="3153" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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/Attr:::attribTree (1 samples, 0.16%)</title><rect x="332.7" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>ciEnv::lookup_method (2 samples, 0.32%)</title><rect x="229.6" y="3057" width="3.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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 (4 samples, 0.65%)</title><rect x="306.0" y="1009" width="7.6" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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.16%)</title><rect x="346.1" y="193" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2161" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ParseGenerator::generate (2 samples, 0.32%)</title><rect x="193.3" y="2961" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>OopMapCache::lookup (1 samples, 0.16%)</title><rect x="19.5" y="3105" width="2.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>PhaseChaitin::yank_if_dead_recurse (1 samples, 0.16%)</title><rect x="118.8" y="3169" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="121.83" 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$JCTry:::accept (1 samples, 0.16%)</title><rect x="346.1" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>do_page_mkwrite (1 samples, 0.16%)</title><rect x="10.0" y="3201" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>Parse::Parse (1 samples, 0.16%)</title><rect x="202.8" y="2929" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>__radix_tree_lookup (1 samples, 0.16%)</title><rect x="519.8" y="529" width="1.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="522.81" 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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1170.9" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>Lorg/gradle/cache/internal/AsyncCacheAccessDecoratedCache$2:::run (1 samples, 0.16%)</title><rect x="1180.5" y="3025" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>vfs_write (5 samples, 0.81%)</title><rect x="1153.7" y="769" width="9.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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_call (9 samples, 1.46%)</title><rect x="189.5" y="3169" width="17.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>__alloc_pages_nodemask (1 samples, 0.16%)</title><rect x="29.1" y="3041" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="292.6" y="3009" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="296.4" y="2977" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>alloc_pages_current (1 samples, 0.16%)</title><rect x="1140.4" y="625" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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.16%)</title><rect x="317.4" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>mptspi_qcmd (1 samples, 0.16%)</title><rect x="273.5" y="3089" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1649" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1659.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>Lorg/codehaus/groovy/control/ResolveVisitor:::transform (1 samples, 0.16%)</title><rect x="466.3" y="737" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>walk_component (1 samples, 0.16%)</title><rect x="269.7" y="3185" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>LinkResolver::linktime_resolve_special_method (1 samples, 0.16%)</title><rect x="231.5" y="3009" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="234.49" 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>GraphKit::null_check_common (1 samples, 0.16%)</title><rect x="200.9" y="3057" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="203.94" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2641" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Parse::do_one_block (2 samples, 0.32%)</title><rect x="202.8" y="3089" width="3.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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/code/Scope:::remove (1 samples, 0.16%)</title><rect x="336.5" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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>GraphBuilder::iterate_all_blocks (5 samples, 0.81%)</title><rect x="223.9" y="3153" width="9.5" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3137" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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:::checkMethodId (1 samples, 0.16%)</title><rect x="338.4" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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.16%)</title><rect x="1180.5" y="3281" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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::process_nmethod (1 samples, 0.16%)</title><rect x="262.0" y="3249" width="1.9" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="265.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>Ljava/lang/ClassLoader:::getResource (1 samples, 0.16%)</title><rect x="1163.3" y="1121" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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 (46 samples, 7.44%)</title><rect x="349.9" y="1361" width="87.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>Lcom/sun/tools/javac/code/Scope:::lookup (1 samples, 0.16%)</title><rect x="321.2" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="324.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>ext4_file_write_iter (5 samples, 0.81%)</title><rect x="1153.7" y="721" width="9.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" 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>DefNewGeneration::collect (8 samples, 1.29%)</title><rect x="19.5" y="3233" width="15.3" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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>Ljava/util/Calendar:::setTimeInMillis (1 samples, 0.16%)</title><rect x="456.8" y="1089" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3105" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>PhaseAggressiveCoalesce::insert_copies (1 samples, 0.16%)</title><rect x="59.6" y="3217" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="62.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>Lorg/gradle/api/specs/NotSpec:::isSatisfiedBy (1 samples, 0.16%)</title><rect x="435.8" y="1313" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="438.79" 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>PhaseIterGVN::optimize (3 samples, 0.49%)</title><rect x="183.8" y="3233" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="186.75" 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/comp/Attr:::attribStat (1 samples, 0.16%)</title><rect x="1174.7" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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.16%)</title><rect x="342.2" y="625" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1393" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="1937" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (1 samples, 0.16%)</title><rect x="1178.5" y="1601" width="2.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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 (435 samples, 70.39%)</title><rect x="349.9" y="1857" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>ext4_dirty_inode (1 samples, 0.16%)</title><rect x="514.1" y="561" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/commons/io/IOUtils:::copyLarge (1 samples, 0.16%)</title><rect x="472.1" y="817" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="475.07" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="336.5" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Lcom/sun/tools/javac/comp/Attr:::checkMethod (1 samples, 0.16%)</title><rect x="330.8" y="321" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="283.0" y="3329" width="2.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="286.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>Lcom/sun/tools/javac/comp/Attr:::checkId (1 samples, 0.16%)</title><rect x="311.7" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>blk_queue_bio (1 samples, 0.16%)</title><rect x="296.4" y="3057" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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 (366 samples, 59.22%)</title><rect x="464.4" y="1121" width="698.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1131.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/DefaultMultiProcessSafePersistentIndexedCache:::put (1 samples, 0.16%)</title><rect x="1180.5" y="3009" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.16%)</title><rect x="466.3" y="305" width="2.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>ext4_file_read_iter (3 samples, 0.49%)</title><rect x="498.8" y="657" width="5.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="501.80" 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 (5 samples, 0.81%)</title><rect x="1167.1" y="1313" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>generic_file_read_iter (1 samples, 0.16%)</title><rect x="281.1" y="3217" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="284.13" 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>GenCollectedHeap::process_roots (2 samples, 0.32%)</title><rect x="19.5" y="3201" width="3.9" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="22.55" 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/comp/Attr:::checkMethod (1 samples, 0.16%)</title><rect x="334.6" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>Compile::Output (3 samples, 0.49%)</title><rect x="40.6" y="3233" width="5.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="43.55" 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>ext4_block_write_begin (3 samples, 0.49%)</title><rect x="1155.6" y="657" width="5.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1158.63" 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/tree/JCTree$JCCompilationUnit:::accept (2 samples, 0.32%)</title><rect x="325.0" y="1057" width="3.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>Matcher::init_first_stack_mask (1 samples, 0.16%)</title><rect x="48.2" y="3201" width="1.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="51.19" 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/comp/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="309.8" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>CompileBroker::compiler_thread_loop (93 samples, 15.05%)</title><rect x="38.6" y="3313" width="177.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="41.64" y="3323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >CompileBroker::compiler..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/Gen:::visitMethodDef (4 samples, 0.65%)</title><rect x="342.2" y="1041" width="7.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.23" 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:::readClass (1 samples, 0.16%)</title><rect x="327.0" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>VMThread::run (11 samples, 1.78%)</title><rect x="15.7" y="3345" width="21.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="18.73" 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/LambdaToMethod:::bsmStaticArgToType (1 samples, 0.16%)</title><rect x="319.3" y="401" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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>SharedRuntime::resolve_sub_helper (1 samples, 0.16%)</title><rect x="309.8" y="241" width="1.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Lcom/sun/tools/javac/tree/JCTree$JCExpressionStatement:::accept (1 samples, 0.16%)</title><rect x="1174.7" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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/codehaus/groovy/control/ResolveVisitor:::resolve (1 samples, 0.16%)</title><rect x="466.3" y="577" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>__ext4_get_inode_loc (1 samples, 0.16%)</title><rect x="294.5" y="3233" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>WatcherThread::run (1 samples, 0.16%)</title><rect x="10.0" y="3345" width="1.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>Parse::do_field_access (1 samples, 0.16%)</title><rect x="197.1" y="2865" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>__alloc_pages_nodemask (1 samples, 0.16%)</title><rect x="286.9" y="3121" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="289.86" 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>Ljava/security/AccessController:::doPrivileged (1 samples, 0.16%)</title><rect x="462.5" y="1249" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="465.52" 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 (367 samples, 59.39%)</title><rect x="464.4" y="1185" width="700.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1195.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.16%)</title><rect x="294.5" y="3073" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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 (2 samples, 0.32%)</title><rect x="1128.9" y="689" width="3.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="1131.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 (45 samples, 7.28%)</title><rect x="349.9" y="1345" width="85.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>path_lookupat (1 samples, 0.16%)</title><rect x="269.7" y="3217" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>__vfs_read (3 samples, 0.49%)</title><rect x="285.0" y="3265" width="5.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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 (5 samples, 0.81%)</title><rect x="454.9" y="1505" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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$MembersClosureCache:::visitClassType (1 samples, 0.16%)</title><rect x="304.0" y="929" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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:::firstUnimplementedAbstractImpl (1 samples, 0.16%)</title><rect x="304.0" y="1025" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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>PhaseConservativeCoalesce::copy_copy (1 samples, 0.16%)</title><rect x="120.7" y="3185" width="2.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="123.74" 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>TypeArrayKlass::allocate_common (1 samples, 0.16%)</title><rect x="466.3" y="209" width="2.0" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lcom/sun/tools/javac/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="1174.7" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>OneContigSpaceCardGeneration::younger_refs_iterate (1 samples, 0.16%)</title><rect x="23.4" y="3201" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="26.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor$RunnableBuildOperationWorker:::execute (26 samples, 4.21%)</title><rect x="300.2" y="1873" width="49.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1178.5" y="1409" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>GraphKit::null_check_common (1 samples, 0.16%)</title><rect x="202.8" y="2897" width="2.0" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>Interpreter (26 samples, 4.21%)</title><rect x="300.2" y="1153" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1163.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>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.16%)</title><rect x="34.8" y="3313" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="37.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 (3 samples, 0.49%)</title><rect x="464.4" y="961" width="5.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.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/tree/JCTree$JCFieldAccess:::accept (1 samples, 0.16%)</title><rect x="327.0" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>Method::print_short_name (1 samples, 0.16%)</title><rect x="218.1" y="3265" width="1.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="221.12" 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>Ljava/lang/reflect/Method:::invoke (5 samples, 0.81%)</title><rect x="1167.1" y="1521" width="9.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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/jvm/ClassReader:::fillIn (1 samples, 0.16%)</title><rect x="1170.9" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::split_if_with_blocks_pre (1 samples, 0.16%)</title><rect x="178.0" y="3201" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="181.03" 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>__alloc_pages_nodemask (1 samples, 0.16%)</title><rect x="1148.0" y="577" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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>IndexSetIterator::advance_and_next (2 samples, 0.32%)</title><rect x="73.0" y="3185" width="3.8" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="76.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_write (2 samples, 0.32%)</title><rect x="512.2" y="689" width="3.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>ext4_mark_iloc_dirty (1 samples, 0.16%)</title><rect x="10.0" y="3089" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/jvm/ClassReader:::readClass (1 samples, 0.16%)</title><rect x="336.5" y="657" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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>Parse::Parse (6 samples, 0.97%)</title><rect x="191.4" y="3137" width="11.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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 (1 samples, 0.16%)</title><rect x="1174.7" y="929" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1177.72" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3041" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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 (2 samples, 0.32%)</title><rect x="466.3" y="897" width="3.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="315.5" y="1041" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="318.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>ext4_readpages (1 samples, 0.16%)</title><rect x="1142.3" y="641" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" 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>Matcher::Fixup_Save_On_Entry (1 samples, 0.16%)</title><rect x="48.2" y="3217" width="1.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="51.19" 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>RegMask::is_bound1 (1 samples, 0.16%)</title><rect x="145.6" y="3217" width="1.9" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="148.57" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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.16%)</title><rect x="1180.5" y="3121" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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 (367 samples, 59.39%)</title><rect x="464.4" y="1153" width="700.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1163.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/codehaus/groovy/control/ResolveVisitor:::transform (1 samples, 0.16%)</title><rect x="466.3" y="609" width="2.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="469.34" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::fix_oop_relocations (1 samples, 0.16%)</title><rect x="21.5" y="3153" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="24.46" 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>java-86820/86834 (1 samples, 0.16%)</title><rect x="263.9" y="3393" width="2.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>[unknown] (16 samples, 2.59%)</title><rect x="265.9" y="3377" width="30.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="268.86" y="3387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::visitSelect (2 samples, 0.32%)</title><rect x="328.9" y="737" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/Attr:::visitSelect (1 samples, 0.16%)</title><rect x="338.4" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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>BlockListBuilder::set_leaders (1 samples, 0.16%)</title><rect x="221.9" y="3137" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="224.94" 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>ParseGenerator::generate (2 samples, 0.32%)</title><rect x="197.1" y="3041" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2513" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>entry_SYSCALL_64_fastpath (1 samples, 0.16%)</title><rect x="460.6" y="1169" width="1.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="463.61" 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>__lock_text_start (1 samples, 0.16%)</title><rect x="267.8" y="3073" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="270.77" 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/LambdaToMethod:::translate (1 samples, 0.16%)</title><rect x="319.3" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="322.32" 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_make_request (1 samples, 0.16%)</title><rect x="296.4" y="3073" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>blk_done_softirq (1 samples, 0.16%)</title><rect x="1130.8" y="657" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2929" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>ll_rw_block (1 samples, 0.16%)</title><rect x="296.4" y="3121" width="1.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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/jvm/ClassReader:::complete (1 samples, 0.16%)</title><rect x="328.9" y="577" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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/cache/internal/DefaultFileLockManager$DefaultFileLock:::doWriteAction (1 samples, 0.16%)</title><rect x="1180.5" y="2961" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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>InlineTree::ok_to_inline (1 samples, 0.16%)</title><rect x="189.5" y="3137" width="1.9" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>do_IRQ (2 samples, 0.32%)</title><rect x="1128.9" y="705" width="3.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>Lcom/sun/tools/javac/code/Symbol$PackageSymbol:::flags (1 samples, 0.16%)</title><rect x="325.0" y="897" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="330.8" y="465" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCEnhancedForLoop:::accept (1 samples, 0.16%)</title><rect x="1170.9" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.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>vfs_fstatat (1 samples, 0.16%)</title><rect x="296.4" y="3313" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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.16%)</title><rect x="330.8" y="481" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="323.1" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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:::selectSym (1 samples, 0.16%)</title><rect x="327.0" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>Symbol::as_klass_external_name (1 samples, 0.16%)</title><rect x="218.1" y="3233" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="221.12" 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>ciEnv::get_field_by_index_impl (1 samples, 0.16%)</title><rect x="223.9" y="3073" width="1.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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>scsi_dispatch_cmd (1 samples, 0.16%)</title><rect x="1165.2" y="753" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>SignatureStream::as_symbol (1 samples, 0.16%)</title><rect x="38.6" y="2961" width="2.0" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>Compile::call_generator (1 samples, 0.16%)</title><rect x="189.5" y="3153" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="192.48" 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>Ljava/lang/ClassLoader:::loadClass (1 samples, 0.16%)</title><rect x="466.3" y="401" width="2.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lcom/sun/tools/javac/tree/JCTree$JCTry:::accept (1 samples, 0.16%)</title><rect x="346.1" y="897" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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_call (1 samples, 0.16%)</title><rect x="193.3" y="2785" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="1170.9" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1173.91" 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>lookup_slow (1 samples, 0.16%)</title><rect x="296.4" y="3217" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (1 samples, 0.16%)</title><rect x="470.2" y="817" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.16" 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>__mark_inode_dirty (1 samples, 0.16%)</title><rect x="514.1" y="577" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_unplugged (1 samples, 0.16%)</title><rect x="273.5" y="3153" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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>submit_bh_wbc (1 samples, 0.16%)</title><rect x="294.5" y="3185" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>__add_to_page_cache_locked (1 samples, 0.16%)</title><rect x="1138.4" y="545" width="2.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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$JCVariableDecl:::accept (1 samples, 0.16%)</title><rect x="334.6" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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:::genDef (3 samples, 0.49%)</title><rect x="342.2" y="913" width="5.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="345.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>grab_cache_page_write_begin (1 samples, 0.16%)</title><rect x="1148.0" y="641" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1150.99" 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_get_inode_loc (1 samples, 0.16%)</title><rect x="514.1" y="513" width="1.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/jvm/ClassReader:::complete (1 samples, 0.16%)</title><rect x="325.0" y="865" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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 (461 samples, 74.60%)</title><rect x="300.2" y="2385" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Interpreter (378 samples, 61.17%)</title><rect x="454.9" y="1585" width="721.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="457.89" 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>Interpreter (435 samples, 70.39%)</title><rect x="349.9" y="1777" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="1186.2" y="3009" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="334.6" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>new_sync_read (3 samples, 0.49%)</title><rect x="285.0" y="3249" width="5.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="287.95" 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 (5 samples, 0.81%)</title><rect x="1167.1" y="1297" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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 (1 samples, 0.16%)</title><rect x="1176.6" y="1617" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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/apache/tools/zip/ZipOutputStream:::flushDeflater (1 samples, 0.16%)</title><rect x="496.9" y="833" width="1.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="499.89" 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/Infer:::instantiateMethod (1 samples, 0.16%)</title><rect x="311.7" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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 (1 samples, 0.16%)</title><rect x="1178.5" y="1441" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>Java_java_io_RandomAccessFile_writeBytes (2 samples, 0.32%)</title><rect x="508.3" y="785" width="3.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="511.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>Interpreter (1 samples, 0.16%)</title><rect x="317.4" y="593" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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 (4 samples, 0.65%)</title><rect x="456.8" y="1457" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>JavaCalls::call_virtual (3 samples, 0.49%)</title><rect x="1184.3" y="3297" width="5.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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/Resolve$4:::argumentsAcceptable (1 samples, 0.16%)</title><rect x="332.7" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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_one_block (6 samples, 0.97%)</title><rect x="191.4" y="3105" width="11.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>IndexSet::initialize (1 samples, 0.16%)</title><rect x="137.9" y="3201" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="140.93" 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>vfs_fstatat (1 samples, 0.16%)</title><rect x="290.7" y="3265" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="293.68" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2881" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>scsi_io_completion (1 samples, 0.16%)</title><rect x="252.5" y="3073" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>SYSC_newstat (1 samples, 0.16%)</title><rect x="296.4" y="3329" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>__irqentry_text_start (1 samples, 0.16%)</title><rect x="517.9" y="545" width="1.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="520.90" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/apache/commons/io/IOUtils:::copyLarge (335 samples, 54.21%)</title><rect x="498.8" y="817" width="639.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="501.80" y="827.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>submit_bh_wbc (1 samples, 0.16%)</title><rect x="292.6" y="3073" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="295.59" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="1182.4" y="3329" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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:::findType (1 samples, 0.16%)</title><rect x="323.1" y="913" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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/Resolve$14:::doLookup (1 samples, 0.16%)</title><rect x="307.9" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>__elv_add_request (1 samples, 0.16%)</title><rect x="263.9" y="3153" width="2.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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>Parse::do_one_bytecode (2 samples, 0.32%)</title><rect x="193.3" y="2993" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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>IfNode::Ideal (1 samples, 0.16%)</title><rect x="183.8" y="3201" width="1.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="186.75" 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>__GI___unlink (1 samples, 0.16%)</title><rect x="294.5" y="3361" width="1.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="297.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>Lsun/reflect/NativeMethodAccessorImpl:::invoke (5 samples, 0.81%)</title><rect x="1167.1" y="1489" width="9.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="129" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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>submit_bio (1 samples, 0.16%)</title><rect x="294.5" y="3169" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="297.50" 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>PerfLongVariant::sample (1 samples, 0.16%)</title><rect x="10.0" y="3297" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2721" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>java_lang_Throwable::fill_in_stack_trace (1 samples, 0.16%)</title><rect x="466.3" y="257" width="2.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="469.34" 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>Lcom/sun/tools/javac/comp/Resolve$BasicLookupHelper:::lookup (1 samples, 0.16%)</title><rect x="309.8" y="833" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Parse::do_one_bytecode (1 samples, 0.16%)</title><rect x="197.1" y="2881" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3121" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3137" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>ciEnv::register_method (5 samples, 0.81%)</title><rect x="252.5" y="3217" width="9.5" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>SubstitutionResolver::block_do (1 samples, 0.16%)</title><rect x="220.0" y="2433" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Lorg/gradle/internal/reflect/JavaMethod:::invoke (26 samples, 4.21%)</title><rect x="300.2" y="1537" width="49.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1547.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/jvm/Gen:::genDef (1 samples, 0.16%)</title><rect x="346.1" y="817" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="349.05" 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 (461 samples, 74.60%)</title><rect x="300.2" y="3169" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>call_stub (368 samples, 59.55%)</title><rect x="464.4" y="1361" width="702.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="467.43" y="1371.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>[unknown] (1 samples, 0.16%)</title><rect x="263.9" y="3377" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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/Infer$GraphSolver:::solve (1 samples, 0.16%)</title><rect x="330.8" y="257" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>Lcom/sun/tools/javac/tree/JCTree$JCClassDecl:::accept (2 samples, 0.32%)</title><rect x="317.4" y="1073" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>scsi_finish_command (1 samples, 0.16%)</title><rect x="252.5" y="3089" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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 (2 samples, 0.32%)</title><rect x="306.0" y="881" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (26 samples, 4.21%)</title><rect x="300.2" y="1729" width="49.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1739.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>resolve_opt_virtual_call (1 samples, 0.16%)</title><rect x="332.7" y="369" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>Reflection::invoke_method (1 samples, 0.16%)</title><rect x="1178.5" y="1569" width="2.0" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>Lcom/sun/tools/javac/comp/Attr:::visitApply (1 samples, 0.16%)</title><rect x="338.4" y="977" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="341.41" 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 (2 samples, 0.32%)</title><rect x="306.0" y="865" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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.16%)</title><rect x="1178.5" y="1457" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.54" 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>Type::hashcons (1 samples, 0.16%)</title><rect x="191.4" y="3009" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>Interpreter (4 samples, 0.65%)</title><rect x="456.8" y="1313" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>PhaseRemoveUseless::PhaseRemoveUseless (1 samples, 0.16%)</title><rect x="206.7" y="3249" width="1.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="209.67" 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:::visitApply (1 samples, 0.16%)</title><rect x="334.6" y="705" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>IndexSetIterator::advance_and_next (1 samples, 0.16%)</title><rect x="128.4" y="3201" width="1.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="131.38" 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/comp/Resolve:::checkMethod (1 samples, 0.16%)</title><rect x="332.7" y="433" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (5 samples, 0.81%)</title><rect x="1167.1" y="1345" width="9.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>ConnectionGraph::add_node_to_connection_graph (1 samples, 0.16%)</title><rect x="149.4" y="3201" width="1.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="152.39" 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.16%)</title><rect x="300.2" y="1057" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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_da_write_begin (1 samples, 0.16%)</title><rect x="512.2" y="609" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="515.17" 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>irq_exit (1 samples, 0.16%)</title><rect x="517.9" y="513" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="520.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="334.6" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="337.60" 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>Ljava/util/GregorianCalendar:::computeFields (1 samples, 0.16%)</title><rect x="456.8" y="1073" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>Dict::Insert (1 samples, 0.16%)</title><rect x="191.4" y="2993" width="1.9" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="194.39" 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>queue_unplugged (1 samples, 0.16%)</title><rect x="279.2" y="3105" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="282.22" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="1165.2" y="721" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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/tree/JCTree$JCIf:::accept (1 samples, 0.16%)</title><rect x="306.0" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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 (1 samples, 0.16%)</title><rect x="1169.0" y="1057" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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.16%)</title><rect x="319.3" y="465" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="322.32" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.16%)</title><rect x="1169.0" y="1089" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>filename_lookup (1 samples, 0.16%)</title><rect x="269.7" y="3233" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="272.68" 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>malloc (1 samples, 0.16%)</title><rect x="298.3" y="3377" width="1.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text text-anchor="" x="301.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>__lock_page_or_retry (1 samples, 0.16%)</title><rect x="11.9" y="3249" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="14.91" 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>fsnotify (1 samples, 0.16%)</title><rect x="504.5" y="689" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="507.53" 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>ext4_writepages (1 samples, 0.16%)</title><rect x="1165.2" y="945" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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 (1 samples, 0.16%)</title><rect x="273.5" y="3137" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="276.50" 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 (1 samples, 0.16%)</title><rect x="1176.6" y="1601" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1179.63" 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>Parse::Parse (2 samples, 0.32%)</title><rect x="193.3" y="2945" width="3.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="196.30" 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:::visitReturn (1 samples, 0.16%)</title><rect x="332.7" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>ciTypeFlow::flow_block (1 samples, 0.16%)</title><rect x="38.6" y="3153" width="2.0" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="41.64" 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>__blk_run_queue (1 samples, 0.16%)</title><rect x="296.4" y="3041" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="299.41" 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>PeriodicTask::real_time_tick (1 samples, 0.16%)</title><rect x="10.0" y="3329" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>LinkResolver::resolve_method (1 samples, 0.16%)</title><rect x="229.6" y="3009" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="232.58" 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>Matcher::Label_Root (1 samples, 0.16%)</title><rect x="50.1" y="3185" width="1.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="53.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 (3 samples, 0.49%)</title><rect x="456.8" y="1281" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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/LambdaToMethod:::visitVarDef (1 samples, 0.16%)</title><rect x="317.4" y="753" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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/comp/Attr:::attribExpr (1 samples, 0.16%)</title><rect x="306.0" y="609" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>Parse::do_all_blocks (1 samples, 0.16%)</title><rect x="197.1" y="2913" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="200.12" 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 (3 samples, 0.49%)</title><rect x="1184.3" y="3185" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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/file/collections/jdk7/Jdk7DirectoryWalker$1:::visitFile (45 samples, 7.28%)</title><rect x="349.9" y="1297" width="85.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gradl..</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.16%)</title><rect x="311.7" y="641" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="3105" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>Ljava/util/zip/ZipFile:::getEntry (1 samples, 0.16%)</title><rect x="1163.3" y="929" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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:::visitBlock (4 samples, 0.65%)</title><rect x="306.0" y="977" width="7.6" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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$JCIdent:::accept (1 samples, 0.16%)</title><rect x="336.5" y="849" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2593" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.16%)</title><rect x="1186.2" y="3025" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1189.18" 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>JVM_InvokeMethod (5 samples, 0.81%)</title><rect x="1167.1" y="1457" width="9.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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>find_get_entry (1 samples, 0.16%)</title><rect x="519.8" y="561" width="1.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="522.81" 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>get_page_from_freelist (1 samples, 0.16%)</title><rect x="46.3" y="3057" width="1.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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/jvm/Gen:::visitBlock (1 samples, 0.16%)</title><rect x="1169.0" y="961" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>Lsun/security/provider/ByteArrayAccess:::b2iLittle64 (1 samples, 0.16%)</title><rect x="451.1" y="1297" width="1.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="454.07" 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/comp/Resolve:::findMethod (1 samples, 0.16%)</title><rect x="309.8" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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/Infer$GraphSolver:::solve (1 samples, 0.16%)</title><rect x="309.8" y="353" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>JavaThread::~JavaThread (1 samples, 0.16%)</title><rect x="13.8" y="3313" width="1.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="16.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>Compilation::emit_lir (4 samples, 0.65%)</title><rect x="242.9" y="3217" width="7.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="245.94" 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>Type::hashcons (1 samples, 0.16%)</title><rect x="107.4" y="3185" width="1.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="110.38" 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>Parse::do_one_bytecode (1 samples, 0.16%)</title><rect x="202.8" y="2977" width="2.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="205.85" 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>LIR_Assembler::emit_static_call_stub (1 samples, 0.16%)</title><rect x="239.1" y="3169" width="1.9" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="242.13" 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>BlockBegin::iterate_preorder (1 samples, 0.16%)</title><rect x="220.0" y="2897" width="1.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="223.03" 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>NMethodSweeper::possibly_sweep (1 samples, 0.16%)</title><rect x="262.0" y="3281" width="1.9" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="265.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>exit_to_usermode_loop (1 samples, 0.16%)</title><rect x="208.6" y="3169" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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>__vfs_read (1 samples, 0.16%)</title><rect x="263.9" y="3297" width="2.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="266.95" 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:::term (1 samples, 0.16%)</title><rect x="302.1" y="945" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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>generic_write_end (1 samples, 0.16%)</title><rect x="514.1" y="593" width="1.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="517.08" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ClassLoader:::getResource (1 samples, 0.16%)</title><rect x="1163.3" y="1105" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1166.27" 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>Compile::Optimize (22 samples, 3.56%)</title><rect x="147.5" y="3249" width="42.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="150.48" y="3259.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>Lorg/gradle/internal/progress/DefaultBuildOperationExecutor:::execute (461 samples, 74.60%)</title><rect x="300.2" y="2481" width="880.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2491.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>Interpreter (1 samples, 0.16%)</title><rect x="1188.1" y="3025" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1191.09" 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>new_sync_write (2 samples, 0.32%)</title><rect x="1146.1" y="721" width="3.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1149.08" 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>handle_mm_fault (1 samples, 0.16%)</title><rect x="10.0" y="3233" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/code/Symbol$MethodSymbol:::implementation (1 samples, 0.16%)</title><rect x="304.0" y="993" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="307.05" 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.16%)</title><rect x="1178.5" y="1201" width="2.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1181.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>handle_mm_fault (1 samples, 0.16%)</title><rect x="46.3" y="3105" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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>Lsun/reflect/NativeMethodAccessorImpl:::invoke0 (26 samples, 4.21%)</title><rect x="300.2" y="1473" width="49.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="1483.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>Lcom/sun/tools/javac/comp/Attr:::attribTree (2 samples, 0.32%)</title><rect x="328.9" y="865" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Lorg/gradle/cache/internal/DefaultCacheAccess:::useCache (3 samples, 0.49%)</title><rect x="1184.3" y="3089" width="5.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>Java_java_io_FileOutputStream_writeBytes (5 samples, 0.81%)</title><rect x="1144.2" y="833" width="9.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="1147.17" 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 (3 samples, 0.49%)</title><rect x="456.8" y="1297" width="5.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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>start_thread (11 samples, 1.78%)</title><rect x="15.7" y="3377" width="21.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="18.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>DefNewGeneration::copy_to_survivor_space (1 samples, 0.16%)</title><rect x="32.9" y="3153" width="1.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="35.91" 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/jvm/ClassReader:::complete (1 samples, 0.16%)</title><rect x="328.9" y="529" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.16%)</title><rect x="328.9" y="465" width="1.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="331.87" 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>Lorg/gradle/api/internal/file/AbstractFileTreeElement:::copyTo (335 samples, 54.21%)</title><rect x="498.8" y="833" width="639.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="501.80" y="843.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>Lcom/sun/tools/javac/code/Scope:::remove (1 samples, 0.16%)</title><rect x="336.5" y="561" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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_write (2 samples, 0.32%)</title><rect x="275.4" y="3329" width="3.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="278.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>GraphBuilder::try_inline (1 samples, 0.16%)</title><rect x="225.8" y="2865" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>LinkResolver::resolve_interface_method (1 samples, 0.16%)</title><rect x="309.8" y="193" width="1.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="312.77" 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>Lcom/sun/tools/javac/tree/JCTree$JCMethodInvocation:::accept (1 samples, 0.16%)</title><rect x="311.7" y="785" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="314.68" 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/internal/progress/DefaultBuildOperationExecutor:::run (435 samples, 70.39%)</title><rect x="349.9" y="1905" width="830.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="352.87" y="1915.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 (1 samples, 0.16%)</title><rect x="1163.3" y="993" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>JavaThread::run (25 samples, 4.05%)</title><rect x="216.2" y="3345" width="47.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="219.21" y="3355.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>Interpreter (368 samples, 59.55%)</title><rect x="464.4" y="1249" width="702.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="467.43" 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>__memmove_sse2_unaligned_erms (1 samples, 0.16%)</title><rect x="29.1" y="3137" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="32.09" 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/Resolve:::rawInstantiate (1 samples, 0.16%)</title><rect x="330.8" y="593" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/sun/tools/javac/tree/JCTree$JCMethodDecl:::accept (2 samples, 0.32%)</title><rect x="317.4" y="993" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>syscall_return_slowpath (1 samples, 0.16%)</title><rect x="1165.2" y="1105" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" 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>ondemand_readahead (2 samples, 0.32%)</title><rect x="1140.4" y="673" width="3.8" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1143.36" 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>__clock_gettime (1 samples, 0.16%)</title><rect x="36.7" y="3361" width="1.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="39.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>Interpreter (1 samples, 0.16%)</title><rect x="323.1" y="769" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="326.14" 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:::attribImportQualifier (1 samples, 0.16%)</title><rect x="325.0" y="961" width="2.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="328.05" 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>retint_user (1 samples, 0.16%)</title><rect x="208.6" y="3201" width="1.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="211.58" 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:::readMethod (1 samples, 0.16%)</title><rect x="327.0" y="737" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="329.96" 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>loadConINode::bottom_type (1 samples, 0.16%)</title><rect x="107.4" y="3201" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="110.38" 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 (435 samples, 70.39%)</title><rect x="349.9" y="1809" width="830.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="352.87" 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>ConnectionGraph::do_analysis (1 samples, 0.16%)</title><rect x="149.4" y="3233" width="1.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="152.39" 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>CodeSection::relocate (1 samples, 0.16%)</title><rect x="239.1" y="3153" width="1.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="242.13" 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>alloc_pages_vma (1 samples, 0.16%)</title><rect x="46.3" y="3089" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="49.28" 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/parser/JavacParser:::term1 (1 samples, 0.16%)</title><rect x="302.1" y="929" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="305.14" 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>file_update_time (1 samples, 0.16%)</title><rect x="516.0" y="625" width="1.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="518.99" 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>Lsun/reflect/DelegatingMethodAccessorImpl:::invoke (5 samples, 0.81%)</title><rect x="1167.1" y="1505" width="9.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1170.09" 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/comp/LambdaToMethod:::translate (2 samples, 0.32%)</title><rect x="317.4" y="1009" width="3.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="320.41" 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>PhaseCFG::do_global_code_motion (3 samples, 0.49%)</title><rect x="52.0" y="3233" width="5.7" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="55.01" 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.16%)</title><rect x="1180.5" y="3057" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1183.45" 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.16%)</title><rect x="336.5" y="609" width="1.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="339.50" 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/comp/Attr:::attribTree (1 samples, 0.16%)</title><rect x="307.9" y="721" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="310.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>lru_cache_add (1 samples, 0.16%)</title><rect x="1142.3" y="593" width="1.9" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="1145.27" 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>[libpthread-2.24.so] (1 samples, 0.16%)</title><rect x="1138.4" y="769" width="2.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1141.45" 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::merge_common (1 samples, 0.16%)</title><rect x="199.0" y="2993" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="202.03" 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:::findMethod (1 samples, 0.16%)</title><rect x="306.0" y="417" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="308.95" 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>ciField::ciField (1 samples, 0.16%)</title><rect x="223.9" y="3057" width="1.9" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="226.85" 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>JavaCalls::call_virtual (3 samples, 0.49%)</title><rect x="1184.3" y="3281" width="5.7" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" 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>GraphBuilder::iterate_all_blocks (1 samples, 0.16%)</title><rect x="225.8" y="2913" width="1.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="228.76" 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>CompiledIC::set_to_monomorphic (1 samples, 0.16%)</title><rect x="332.7" y="305" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="335.69" 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>nmethod::cleanup_inline_caches (1 samples, 0.16%)</title><rect x="262.0" y="3233" width="1.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="265.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>Interpreter (4 samples, 0.65%)</title><rect x="1169.0" y="1249" width="7.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1172.00" 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>new_sync_read (1 samples, 0.16%)</title><rect x="1182.4" y="3249" width="1.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1185.36" 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/Infer:::checkCompatibleUpperBounds (1 samples, 0.16%)</title><rect x="330.8" y="209" width="1.9" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="333.78" 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>mptscsih_qcmd (1 samples, 0.16%)</title><rect x="252.5" y="2945" width="1.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="255.49" 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>Interpreter (461 samples, 74.60%)</title><rect x="300.2" y="2865" width="880.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="303.23" y="2875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment