Created
December 30, 2019 11:20
-
-
Save SergejIsbrecht/5b9b97d570e84736a07c206fbe3fde7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="1014" onload="init(evt)" viewBox="0 0 1200 1014" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> | |
<!-- NOTES: --> | |
<defs > | |
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > | |
<stop stop-color="#eeeeee" offset="5%" /> | |
<stop stop-color="#eeeeb0" offset="95%" /> | |
</linearGradient> | |
</defs> | |
<style type="text/css"> | |
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
</style> | |
<script type="text/ecmascript"> | |
<![CDATA[ | |
var details, searchbtn, matchedtxt, svg; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
searchbtn = document.getElementById("search"); | |
matchedtxt = document.getElementById("matched"); | |
svg = document.getElementsByTagName("svg")[0]; | |
searching = 0; | |
} | |
// mouse-over for info | |
function s(node) { // show | |
info = g_to_text(node); | |
details.nodeValue = "Function: " + info; | |
} | |
function c() { // clear | |
details.nodeValue = ' '; | |
} | |
// ctrl-F for search | |
window.addEventListener("keydown",function (e) { | |
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
e.preventDefault(); | |
search_prompt(); | |
} | |
}) | |
// functions | |
function find_child(parent, name, attr) { | |
var children = parent.childNodes; | |
for (var i=0; i<children.length;i++) { | |
if (children[i].tagName == name) | |
return (attr != undefined) ? children[i].attributes[attr].value : children[i]; | |
} | |
return; | |
} | |
function orig_save(e, attr, val) { | |
if (e.attributes["_orig_"+attr] != undefined) return; | |
if (e.attributes[attr] == undefined) return; | |
if (val == undefined) val = e.attributes[attr].value; | |
e.setAttribute("_orig_"+attr, val); | |
} | |
function orig_load(e, attr) { | |
if (e.attributes["_orig_"+attr] == undefined) return; | |
e.attributes[attr].value = e.attributes["_orig_"+attr].value; | |
e.removeAttribute("_orig_"+attr); | |
} | |
function g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
// if there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes["width"].value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
// Smaller than this size won't fit anything | |
if (w < 2*12*0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
// Fit in full text width | |
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
return; | |
for (var x=txt.length-2; x>0; x--) { | |
if (t.getSubStringLength(0, x+2) <= w) { | |
t.textContent = txt.substring(0,x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_child(c[i], x-10, ratio); | |
} | |
} | |
function zoom_parent(e) { | |
if (e.attributes) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = 10; | |
} | |
if (e.attributes["width"] != undefined) { | |
orig_save(e, "width"); | |
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_parent(c[i]); | |
} | |
} | |
function zoom(node) { | |
var attr = find_child(node, "rect").attributes; | |
var width = parseFloat(attr["width"].value); | |
var xmin = parseFloat(attr["x"].value); | |
var xmax = parseFloat(xmin + width); | |
var ymin = parseFloat(attr["y"].value); | |
var ratio = (svg.width.baseVal.value - 2*10) / width; | |
// XXX: Workaround for JavaScript float issues (fix me) | |
var fudge = 0.0001; | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "1.0"; | |
var el = document.getElementsByTagName("g"); | |
for(var i=0;i<el.length;i++){ | |
var e = el[i]; | |
var a = find_child(e, "rect").attributes; | |
var ex = parseFloat(a["x"].value); | |
var ew = parseFloat(a["width"].value); | |
// Is it an ancestor | |
if (0 == 0) { | |
var upstack = parseFloat(a["y"].value) > ymin; | |
} else { | |
var upstack = parseFloat(a["y"].value) < ymin; | |
} | |
if (upstack) { | |
// Direct ancestor | |
if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
e.style["opacity"] = "0.5"; | |
zoom_parent(e); | |
e.onclick = function(e){unzoom(); zoom(this);}; | |
update_text(e); | |
} | |
// not in current path | |
else | |
e.style["display"] = "none"; | |
} | |
// Children maybe | |
else { | |
// no common path | |
if (ex < xmin || ex + fudge >= xmax) { | |
e.style["display"] = "none"; | |
} | |
else { | |
zoom_child(e, xmin, ratio); | |
e.onclick = function(e){zoom(this);}; | |
update_text(e); | |
} | |
} | |
} | |
} | |
function unzoom() { | |
var unzoombtn = document.getElementById("unzoom"); | |
unzoombtn.style["opacity"] = "0.0"; | |
var el = document.getElementsByTagName("g"); | |
for(i=0;i<el.length;i++) { | |
el[i].style["display"] = "block"; | |
el[i].style["opacity"] = "1"; | |
zoom_reset(el[i]); | |
update_text(el[i]); | |
} | |
} | |
// search | |
function reset_search() { | |
var el = document.getElementsByTagName("rect"); | |
for (var i=0; i < el.length; i++) { | |
orig_load(el[i], "fill") | |
} | |
} | |
function search_prompt() { | |
if (!searching) { | |
var term = prompt("Enter a search term (regexp " + | |
"allowed, eg: ^ext4_)", ""); | |
if (term != null) { | |
search(term) | |
} | |
} else { | |
reset_search(); | |
searching = 0; | |
searchbtn.style["opacity"] = "0.1"; | |
searchbtn.firstChild.nodeValue = "Search" | |
matchedtxt.style["opacity"] = "0.0"; | |
matchedtxt.firstChild.nodeValue = "" | |
} | |
} | |
function search(term) { | |
var re = new RegExp(term); | |
var el = document.getElementsByTagName("g"); | |
var matches = new Object(); | |
var maxwidth = 0; | |
for (var i = 0; i < el.length; i++) { | |
var e = el[i]; | |
if (e.attributes["class"].value != "func_g") | |
continue; | |
var func = g_to_func(e); | |
var rect = find_child(e, "rect"); | |
if (rect == null) { | |
// the rect might be wrapped in an anchor | |
// if nameattr href is being used | |
if (rect = find_child(e, "a")) { | |
rect = find_child(r, "rect"); | |
} | |
} | |
if (func == null || rect == null) | |
continue; | |
// Save max width. Only works as we have a root frame | |
var w = parseFloat(rect.attributes["width"].value); | |
if (w > maxwidth) | |
maxwidth = w; | |
if (func.match(re)) { | |
// highlight | |
var x = parseFloat(rect.attributes["x"].value); | |
orig_save(rect, "fill"); | |
rect.attributes["fill"].value = | |
"rgb(230,0,230)"; | |
// remember matches | |
if (matches[x] == undefined) { | |
matches[x] = w; | |
} else { | |
if (w > matches[x]) { | |
// overwrite with parent | |
matches[x] = w; | |
} | |
} | |
searching = 1; | |
} | |
} | |
if (!searching) | |
return; | |
searchbtn.style["opacity"] = "1.0"; | |
searchbtn.firstChild.nodeValue = "Reset Search" | |
// calculate percent matched, excluding vertical overlap | |
var count = 0; | |
var lastx = -1; | |
var lastw = 0; | |
var keys = Array(); | |
for (k in matches) { | |
if (matches.hasOwnProperty(k)) | |
keys.push(k); | |
} | |
// sort the matched frames by their x location | |
// ascending, then width descending | |
keys.sort(function(a, b){ | |
return a - b; | |
}); | |
// Step through frames saving only the biggest bottom-up frames | |
// thanks to the sort order. This relies on the tree property | |
// where children are always smaller than their parents. | |
var fudge = 0.0001; // JavaScript floating point | |
for (var k in keys) { | |
var x = parseFloat(keys[k]); | |
var w = matches[keys[k]]; | |
if (x >= lastx + lastw - fudge) { | |
count += w; | |
lastx = x; | |
lastw = w; | |
} | |
} | |
// display matched percent | |
matchedtxt.style["opacity"] = "1.0"; | |
pct = 100 * count / maxwidth; | |
if (pct == 100) | |
pct = "100" | |
else | |
pct = pct.toFixed(1) | |
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
} | |
function searchover(e) { | |
searchbtn.style["opacity"] = "1.0"; | |
} | |
function searchout(e) { | |
if (searching) { | |
searchbtn.style["opacity"] = "1.0"; | |
} else { | |
searchbtn.style["opacity"] = "0.1"; | |
} | |
} | |
]]> | |
</script> | |
<rect x="0.0" y="0" width="1200.0" height="1014.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="997" 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="997" 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>HashMap_afterNodeAccess_c438971fb7f7418048a8e4c2bfe8cf5f1994d7f9 (1 samples, 0.03%)</title><rect x="66.0" y="549" width="0.3" height="15.0" fill="rgb(245,158,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="68.96" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (3 samples, 0.08%)</title><rect x="907.3" y="261" width="1.0" height="15.0" fill="rgb(221,96,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharacterDataLatin1_getType_5d1d50e0e575b2760e6802ecf90448adc9ce912c (1 samples, 0.03%)</title><rect x="1041.5" y="533" width="0.4" height="15.0" fill="rgb(233,41,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1044.53" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HashMap_hash_92c0bb595f0f5bb9eeac903191083c8f0c2c0962 (28 samples, 0.77%)</title><rect x="91.8" y="533" width="9.1" height="15.0" fill="rgb(254,17,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="94.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (26 samples, 0.71%)</title><rect x="542.1" y="549" width="8.4" height="15.0" fill="rgb(244,62,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Iterator_forEachRemaining_9b984f1f17b16ec428d1887339f0f26def16068a (3,640 samples, 99.78%)</title><rect x="10.3" y="709" width="1177.4" height="15.0" fill="rgb(235,6,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Iterator_forEachRemaining_9b984f1f17b16ec428d1887339f0f26def16068a</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (2 samples, 0.05%)</title><rect x="317.3" y="533" width="0.6" height="15.0" fill="rgb(212,102,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$3$1_accept_fecdf8590fa049286189dcbfbc97685f566e97ce (2,731 samples, 74.86%)</title><rect x="32.3" y="645" width="883.4" height="15.0" fill="rgb(212,38,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.32" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipeline$3$1_accept_fecdf8590fa049286189dcbfbc97685f566e97ce</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (6 samples, 0.16%)</title><rect x="791.5" y="245" width="1.9" height="15.0" fill="rgb(239,110,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MemoryUtil_copyConjointLongsAtomic_d68d6f0ef06aef11f2f99bc11ed91521c5209304 (2 samples, 0.05%)</title><rect x="22.3" y="469" width="0.6" height="15.0" fill="rgb(209,191,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (1 samples, 0.03%)</title><rect x="1188.4" y="917" width="0.3" height="15.0" fill="rgb(214,229,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable.part.105 (4 samples, 0.11%)</title><rect x="1188.7" y="773" width="1.3" height="15.0" fill="rgb(221,81,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (2 samples, 0.05%)</title><rect x="312.8" y="549" width="0.6" height="15.0" fill="rgb(226,164,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (8 samples, 0.22%)</title><rect x="907.0" y="549" width="2.6" height="15.0" fill="rgb(210,214,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="812.8" y="501" width="0.4" height="15.0" fill="rgb(243,10,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="669.2" y="197" width="0.3" height="15.0" fill="rgb(220,168,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.22" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (1 samples, 0.03%)</title><rect x="293.7" y="533" width="0.3" height="15.0" fill="rgb(212,83,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.68" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF_8$Decoder_decodeArrayLoop_98fcab346304bf123fd7562509865106501847fb (11 samples, 0.30%)</title><rect x="18.1" y="581" width="3.5" height="15.0" fill="rgb(223,169,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.09" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (2 samples, 0.05%)</title><rect x="668.9" y="293" width="0.6" height="15.0" fill="rgb(247,66,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="565.1" y="501" width="0.3" height="15.0" fill="rgb(214,85,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="564.7" y="485" width="0.4" height="15.0" fill="rgb(222,21,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (5 samples, 0.14%)</title><rect x="796.3" y="501" width="1.7" height="15.0" fill="rgb(224,60,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="317.3" y="293" width="0.3" height="15.0" fill="rgb(219,103,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (70 samples, 1.92%)</title><rect x="1162.5" y="581" width="22.6" height="15.0" fill="rgb(235,179,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.51" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="964.9" y="453" width="0.3" height="15.0" fill="rgb(213,0,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (2 samples, 0.05%)</title><rect x="316.3" y="181" width="0.7" height="15.0" fill="rgb(247,218,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.32" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_sequence_2132b5c107ceda8ae0a813c4a032cc58bbe6b306 (7 samples, 0.19%)</title><rect x="923.5" y="581" width="2.2" height="15.0" fill="rgb(242,112,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.46" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>page_fault (1 samples, 0.03%)</title><rect x="10.0" y="901" width="0.3" height="15.0" fill="rgb(247,122,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (7 samples, 0.19%)</title><rect x="315.0" y="501" width="2.3" height="15.0" fill="rgb(245,28,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (1 samples, 0.03%)</title><rect x="790.8" y="245" width="0.4" height="15.0" fill="rgb(242,223,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_program_event (1 samples, 0.03%)</title><rect x="114.8" y="485" width="0.3" height="15.0" fill="rgb(228,115,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b (3,641 samples, 99.81%)</title><rect x="10.3" y="885" width="1177.8" height="15.0" fill="rgb(223,177,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$7$1_accept_657d04233788f9f0b59edbc61b82dcbf73ca1989 (3,583 samples, 98.22%)</title><rect x="28.1" y="693" width="1159.0" height="15.0" fill="rgb(246,64,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.11" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipeline$7$1_accept_657d04233788f9f0b59edbc61b82dcbf73ca1989</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>free_pcppages_bulk (1 samples, 0.03%)</title><rect x="1188.4" y="693" width="0.3" height="15.0" fill="rgb(239,28,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (8 samples, 0.22%)</title><rect x="907.0" y="389" width="2.6" height="15.0" fill="rgb(230,222,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_getNextObject_80c03830ac0417f578ab5abe81f48ace0b9aa5e1 (1 samples, 0.03%)</title><rect x="790.5" y="165" width="0.3" height="15.0" fill="rgb(217,122,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.52" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="114.8" y="501" width="0.3" height="15.0" fill="rgb(226,191,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (15 samples, 0.41%)</title><rect x="791.5" y="485" width="4.8" height="15.0" fill="rgb(250,79,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (1 samples, 0.03%)</title><rect x="22.0" y="549" width="0.3" height="15.0" fill="rgb(234,31,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_start_main (3,641 samples, 99.81%)</title><rect x="10.3" y="917" width="1177.8" height="15.0" fill="rgb(220,214,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (2 samples, 0.05%)</title><rect x="115.4" y="325" width="0.7" height="15.0" fill="rgb(243,212,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (2 samples, 0.05%)</title><rect x="853.3" y="325" width="0.6" height="15.0" fill="rgb(234,57,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.27" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (2 samples, 0.05%)</title><rect x="541.5" y="549" width="0.6" height="15.0" fill="rgb(247,127,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handle_pte_fault (1 samples, 0.03%)</title><rect x="854.2" y="469" width="0.4" height="15.0" fill="rgb(243,184,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (1 samples, 0.03%)</title><rect x="27.8" y="661" width="0.3" height="15.0" fill="rgb(222,141,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.79" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (2 samples, 0.05%)</title><rect x="853.3" y="293" width="0.6" height="15.0" fill="rgb(232,13,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="148.8" y="517" width="0.3" height="15.0" fill="rgb(225,94,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen_lambda$main$1_ed844126e30b4dbba7e83f3e75b9aac2a1207905 (2,354 samples, 64.53%)</title><rect x="153.6" y="613" width="761.5" height="15.0" fill="rgb(236,198,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="156.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >TopTen_lambda$main$1_ed844126e30b4dbba7e83f3e75b9aac2a1207905</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (2 samples, 0.05%)</title><rect x="789.9" y="85" width="0.6" height="15.0" fill="rgb(232,106,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_produceAlignedChunk_151eeb69b2ff04e5a10d422de20e777d95b68672 (1 samples, 0.03%)</title><rect x="791.2" y="421" width="0.3" height="15.0" fill="rgb(254,105,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.17" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (1 samples, 0.03%)</title><rect x="315.4" y="229" width="0.3" height="15.0" fill="rgb(240,133,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.35" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.05%)</title><rect x="22.9" y="517" width="0.7" height="15.0" fill="rgb(240,161,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (19 samples, 0.52%)</title><rect x="246.1" y="469" width="6.2" height="15.0" fill="rgb(218,72,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_append_ba324f34b231d9e6f817a317c73bcba1e7d8b0f7 (2 samples, 0.05%)</title><rect x="169.8" y="565" width="0.6" height="15.0" fill="rgb(248,120,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (2 samples, 0.05%)</title><rect x="115.4" y="437" width="0.7" height="15.0" fill="rgb(218,212,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="148.8" y="357" width="0.3" height="15.0" fill="rgb(240,165,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_keepAlignedChunk_821fe2f5aafc47eb216a52523b785711a8fdde31 (1 samples, 0.03%)</title><rect x="1186.8" y="341" width="0.3" height="15.0" fill="rgb(212,80,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (2 samples, 0.05%)</title><rect x="913.1" y="181" width="0.7" height="15.0" fill="rgb(229,179,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (2 samples, 0.05%)</title><rect x="796.3" y="261" width="0.7" height="15.0" fill="rgb(226,141,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_range_24b9401effbd8352cb0c075da1c33ed1fb16e8b2 (160 samples, 4.39%)</title><rect x="739.7" y="501" width="51.8" height="15.0" fill="rgb(226,10,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="742.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Patte..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (2 samples, 0.05%)</title><rect x="283.3" y="357" width="0.7" height="15.0" fill="rgb(249,205,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (14 samples, 0.38%)</title><rect x="544.4" y="533" width="4.5" height="15.0" fill="rgb(247,51,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.36" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (1 samples, 0.03%)</title><rect x="907.0" y="309" width="0.3" height="15.0" fill="rgb(226,78,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="907.9" y="229" width="0.4" height="15.0" fill="rgb(217,8,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.94" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (1 samples, 0.03%)</title><rect x="283.7" y="293" width="0.3" height="15.0" fill="rgb(248,114,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.65" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObject_cdadaeb2aedde0039aeb872eba0bfa3905293adb (1 samples, 0.03%)</title><rect x="316.6" y="133" width="0.4" height="15.0" fill="rgb(233,185,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.64" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (2 samples, 0.05%)</title><rect x="255.2" y="517" width="0.6" height="15.0" fill="rgb(209,133,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_prepareNewAllocationChunk_7581e655f0ed09af52be5d4b8b7166d80cefd67b (1 samples, 0.03%)</title><rect x="796.0" y="453" width="0.3" height="15.0" fill="rgb(206,130,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="565.1" y="485" width="0.3" height="15.0" fill="rgb(213,129,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (1 samples, 0.03%)</title><rect x="22.0" y="565" width="0.3" height="15.0" fill="rgb(246,86,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.97" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (1 samples, 0.03%)</title><rect x="317.6" y="309" width="0.3" height="15.0" fill="rgb(241,143,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.62" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkUnalignedGreyObjects_5bccbda44d4c10173b5d5644cadf7177225dd2b6 (1 samples, 0.03%)</title><rect x="317.0" y="261" width="0.3" height="15.0" fill="rgb(246,155,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.97" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReduceOps$3ReducingSink_accept_5258d79541381b3f9211dfb1fcddc3eee4cbc10c (230 samples, 6.30%)</title><rect x="42.0" y="597" width="74.4" height="15.0" fill="rgb(243,197,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.02" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReduceOp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (9 samples, 0.25%)</title><rect x="912.1" y="549" width="3.0" height="15.0" fill="rgb(227,150,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (1 samples, 0.03%)</title><rect x="345.1" y="533" width="0.3" height="15.0" fill="rgb(218,147,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.11" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="812.8" y="517" width="0.4" height="15.0" fill="rgb(229,214,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_equals_951b4dc388763a53473bf39dd2f3d308fc60450a (1 samples, 0.03%)</title><rect x="115.1" y="549" width="0.3" height="15.0" fill="rgb(216,63,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="405.6" y="453" width="0.3" height="15.0" fill="rgb(211,69,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="317.3" y="325" width="0.3" height="15.0" fill="rgb(206,160,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (3 samples, 0.08%)</title><rect x="668.6" y="325" width="0.9" height="15.0" fill="rgb(206,29,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.03%)</title><rect x="909.2" y="293" width="0.4" height="15.0" fill="rgb(216,140,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.23" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (2 samples, 0.05%)</title><rect x="343.5" y="517" width="0.6" height="15.0" fill="rgb(250,39,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="346.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="114.8" y="517" width="0.3" height="15.0" fill="rgb(234,174,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (9 samples, 0.25%)</title><rect x="851.0" y="549" width="2.9" height="15.0" fill="rgb(253,210,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (7 samples, 0.19%)</title><rect x="315.0" y="453" width="2.3" height="15.0" fill="rgb(243,14,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>free_unref_page_list (1 samples, 0.03%)</title><rect x="1188.4" y="725" width="0.3" height="15.0" fill="rgb(216,168,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="796.7" y="181" width="0.3" height="15.0" fill="rgb(237,8,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.67" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (1 samples, 0.03%)</title><rect x="853.9" y="549" width="0.3" height="15.0" fill="rgb(219,169,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObject_cdadaeb2aedde0039aeb872eba0bfa3905293adb (2 samples, 0.05%)</title><rect x="794.4" y="69" width="0.6" height="15.0" fill="rgb(224,41,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.40" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (2 samples, 0.05%)</title><rect x="115.4" y="485" width="0.7" height="15.0" fill="rgb(214,22,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (3 samples, 0.08%)</title><rect x="668.6" y="485" width="0.9" height="15.0" fill="rgb(226,96,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (1 samples, 0.03%)</title><rect x="332.5" y="533" width="0.3" height="15.0" fill="rgb(235,205,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="335.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (3 samples, 0.08%)</title><rect x="907.3" y="309" width="1.0" height="15.0" fill="rgb(251,87,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (1 samples, 0.03%)</title><rect x="911.8" y="325" width="0.3" height="15.0" fill="rgb(240,100,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.05%)</title><rect x="22.9" y="501" width="0.7" height="15.0" fill="rgb(238,165,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="564.7" y="341" width="0.4" height="15.0" fill="rgb(246,162,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StreamOpFlag_fromCharacteristics_125fa0bc8e87d745b38d41bc33bf8e8444836ceb (2 samples, 0.05%)</title><rect x="918.3" y="597" width="0.6" height="15.0" fill="rgb(246,212,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_matcher_dfdb03479deb6d73f002e5d68b412422a4873aca (168 samples, 4.61%)</title><rect x="857.8" y="581" width="54.3" height="15.0" fill="rgb(221,95,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="860.80" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Patte..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$1_isSatisfiedBy_d5d5ba8f3bb1674c12fc434a0b37787f7377ddd6 (18 samples, 0.49%)</title><rect x="483.9" y="485" width="5.8" height="15.0" fill="rgb(227,104,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_popUnusedAlignedChunk_076a3ebad49576ee9de8be8f1e0bd9f3f22d6327 (1 samples, 0.03%)</title><rect x="791.2" y="405" width="0.3" height="15.0" fill="rgb(207,108,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (8 samples, 0.22%)</title><rect x="907.0" y="437" width="2.6" height="15.0" fill="rgb(248,124,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="565.1" y="309" width="0.3" height="15.0" fill="rgb(218,158,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="27.5" y="421" width="0.3" height="15.0" fill="rgb(227,69,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>page_fault (1 samples, 0.03%)</title><rect x="854.2" y="549" width="0.4" height="15.0" fill="rgb(240,169,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList$1_checkForComodification_42a630843010efe68e350e5381c28201c7f8b6f0 (1 samples, 0.03%)</title><rect x="936.4" y="597" width="0.3" height="15.0" fill="rgb(216,43,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.40" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (1 samples, 0.03%)</title><rect x="25.2" y="645" width="0.3" height="15.0" fill="rgb(248,49,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.20" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="1186.8" y="533" width="0.3" height="15.0" fill="rgb(235,114,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (1 samples, 0.03%)</title><rect x="964.9" y="533" width="0.3" height="15.0" fill="rgb(236,85,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="669.2" y="165" width="0.3" height="15.0" fill="rgb(251,82,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.22" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_matcher_dfdb03479deb6d73f002e5d68b412422a4873aca (9 samples, 0.25%)</title><rect x="1149.9" y="613" width="2.9" height="15.0" fill="rgb(228,77,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.89" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (2 samples, 0.05%)</title><rect x="912.1" y="341" width="0.7" height="15.0" fill="rgb(206,142,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (1 samples, 0.03%)</title><rect x="269.7" y="549" width="0.4" height="15.0" fill="rgb(216,64,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="272.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (3 samples, 0.08%)</title><rect x="316.0" y="213" width="1.0" height="15.0" fill="rgb(244,131,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.00" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_clazz_321ce94c369bdfda234ec042db227d020f370d71 (2 samples, 0.05%)</title><rect x="685.7" y="533" width="0.7" height="15.0" fill="rgb(238,25,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="688.72" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="565.1" y="277" width="0.3" height="15.0" fill="rgb(250,209,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (2 samples, 0.05%)</title><rect x="813.2" y="549" width="0.6" height="15.0" fill="rgb(207,8,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>copy_user_enhanced_fast_string (2 samples, 0.05%)</title><rect x="22.9" y="341" width="0.7" height="15.0" fill="rgb(254,158,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (2 samples, 0.05%)</title><rect x="912.1" y="309" width="0.7" height="15.0" fill="rgb(238,139,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="315.0" y="309" width="0.4" height="15.0" fill="rgb(228,150,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (7 samples, 0.19%)</title><rect x="789.2" y="485" width="2.3" height="15.0" fill="rgb(226,211,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObject_cdadaeb2aedde0039aeb872eba0bfa3905293adb (1 samples, 0.03%)</title><rect x="789.9" y="53" width="0.3" height="15.0" fill="rgb(251,140,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (3 samples, 0.08%)</title><rect x="238.4" y="501" width="0.9" height="15.0" fill="rgb(221,94,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_setUpRememberedSetForObjectOfAlignedHeapChunk_23bffcf2657e1524ae917169a014acfb3c1f37df (1 samples, 0.03%)</title><rect x="908.9" y="133" width="0.3" height="15.0" fill="rgb(220,136,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (2 samples, 0.05%)</title><rect x="668.9" y="277" width="0.6" height="15.0" fill="rgb(253,81,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="565.1" y="341" width="0.3" height="15.0" fill="rgb(223,183,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (5 samples, 0.14%)</title><rect x="315.7" y="293" width="1.6" height="15.0" fill="rgb(237,58,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen_main_1fefb9e3d699cf3b451f67c34941dfaa67a53cba (3,641 samples, 99.81%)</title><rect x="10.3" y="869" width="1177.8" height="15.0" fill="rgb(205,23,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >TopTen_main_1fefb9e3d699cf3b451f67c34941dfaa67a53cba</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="964.9" y="309" width="0.3" height="15.0" fill="rgb(225,65,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (9 samples, 0.25%)</title><rect x="851.0" y="533" width="2.9" height="15.0" fill="rgb(249,131,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (2 samples, 0.05%)</title><rect x="346.1" y="549" width="0.6" height="15.0" fill="rgb(246,65,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.08" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_hashCode_0a7a1b7da3e20b4eff3f548c6ba3e47a0c3be612 (23 samples, 0.63%)</title><rect x="93.5" y="517" width="7.4" height="15.0" fill="rgb(212,65,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="96.45" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (2 samples, 0.05%)</title><rect x="910.5" y="325" width="0.7" height="15.0" fill="rgb(206,225,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.53" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="964.9" y="421" width="0.3" height="15.0" fill="rgb(239,145,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$Head_forEach_0e5b39bce0133541189adfd7b911cbd76e1155ee (3,640 samples, 99.78%)</title><rect x="10.3" y="741" width="1177.4" height="15.0" fill="rgb(211,23,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipeline$Head_forEach_0e5b39bce0133541189adfd7b911cbd76e1155ee</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (3 samples, 0.08%)</title><rect x="668.6" y="469" width="0.9" height="15.0" fill="rgb(235,66,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (16 samples, 0.44%)</title><rect x="551.8" y="533" width="5.2" height="15.0" fill="rgb(225,31,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (4 samples, 0.11%)</title><rect x="315.7" y="229" width="1.3" height="15.0" fill="rgb(231,204,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (9 samples, 0.25%)</title><rect x="340.6" y="501" width="2.9" height="15.0" fill="rgb(230,111,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointAt_925b1aed2b2179999cb40208dc01ed0fd51cd8ab (3 samples, 0.08%)</title><rect x="425.0" y="517" width="1.0" height="15.0" fill="rgb(216,137,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.01" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="853.9" y="245" width="0.3" height="15.0" fill="rgb(225,91,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_setUpRememberedSetForObjectOfAlignedHeapChunk_23bffcf2657e1524ae917169a014acfb3c1f37df (1 samples, 0.03%)</title><rect x="789.9" y="69" width="0.3" height="15.0" fill="rgb(211,167,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (5 samples, 0.14%)</title><rect x="796.3" y="421" width="1.7" height="15.0" fill="rgb(245,186,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="964.9" y="501" width="0.3" height="15.0" fill="rgb(210,137,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.03%)</title><rect x="909.2" y="277" width="0.4" height="15.0" fill="rgb(205,171,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.23" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (11 samples, 0.30%)</title><rect x="264.6" y="533" width="3.5" height="15.0" fill="rgb(251,159,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors$$Lambda$e2cd1af36e54aee42d3805be70608ebe307e22cb_accept_37cf43bf51ee46fc30917b4377f1bd58bd4b7cb1 (1 samples, 0.03%)</title><rect x="44.3" y="565" width="0.3" height="15.0" fill="rgb(223,61,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="47.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (6 samples, 0.16%)</title><rect x="789.2" y="357" width="2.0" height="15.0" fill="rgb(252,225,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (14 samples, 0.38%)</title><rect x="791.5" y="421" width="4.5" height="15.0" fill="rgb(215,109,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (21 samples, 0.58%)</title><rect x="557.0" y="533" width="6.8" height="15.0" fill="rgb(238,15,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.98" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_appendReplacement_4754459a0ba8668f15ebf8a85596bcd80cba0fc2 (458 samples, 12.55%)</title><rect x="171.1" y="565" width="148.1" height="15.0" fill="rgb(252,66,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matcher_appendRepl..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (2 samples, 0.05%)</title><rect x="911.2" y="293" width="0.6" height="15.0" fill="rgb(205,86,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.03%)</title><rect x="1186.8" y="357" width="0.3" height="15.0" fill="rgb(218,166,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (2 samples, 0.05%)</title><rect x="913.1" y="245" width="0.7" height="15.0" fill="rgb(242,32,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (2 samples, 0.05%)</title><rect x="789.2" y="261" width="0.7" height="15.0" fill="rgb(246,204,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (1 samples, 0.03%)</title><rect x="909.2" y="325" width="0.4" height="15.0" fill="rgb(250,117,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.23" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (3 samples, 0.08%)</title><rect x="668.6" y="341" width="0.9" height="15.0" fill="rgb(253,179,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="27.5" y="389" width="0.3" height="15.0" fill="rgb(229,57,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (4 samples, 0.11%)</title><rect x="211.5" y="517" width="1.3" height="15.0" fill="rgb(212,16,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.52" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (2 samples, 0.05%)</title><rect x="115.4" y="469" width="0.7" height="15.0" fill="rgb(212,204,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="964.9" y="357" width="0.3" height="15.0" fill="rgb(247,142,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (2 samples, 0.05%)</title><rect x="317.3" y="453" width="0.6" height="15.0" fill="rgb(229,164,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (2 samples, 0.05%)</title><rect x="317.3" y="501" width="0.6" height="15.0" fill="rgb(238,38,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (2 samples, 0.05%)</title><rect x="316.3" y="149" width="0.7" height="15.0" fill="rgb(206,69,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.32" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="148.8" y="469" width="0.3" height="15.0" fill="rgb(205,40,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (1 samples, 0.03%)</title><rect x="17.1" y="645" width="0.3" height="15.0" fill="rgb(209,91,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.12" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (2 samples, 0.05%)</title><rect x="789.9" y="117" width="0.6" height="15.0" fill="rgb(207,202,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (6 samples, 0.16%)</title><rect x="793.4" y="245" width="2.0" height="15.0" fill="rgb(218,120,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (6 samples, 0.16%)</title><rect x="910.2" y="549" width="1.9" height="15.0" fill="rgb(214,41,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="565.1" y="453" width="0.3" height="15.0" fill="rgb(214,34,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (2 samples, 0.05%)</title><rect x="789.2" y="245" width="0.7" height="15.0" fill="rgb(243,134,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (6 samples, 0.16%)</title><rect x="793.4" y="197" width="2.0" height="15.0" fill="rgb(205,196,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (3 samples, 0.08%)</title><rect x="789.9" y="229" width="0.9" height="15.0" fill="rgb(209,88,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (2 samples, 0.05%)</title><rect x="908.6" y="277" width="0.6" height="15.0" fill="rgb(215,172,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.59" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (3 samples, 0.08%)</title><rect x="668.6" y="501" width="0.9" height="15.0" fill="rgb(218,134,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="964.9" y="245" width="0.3" height="15.0" fill="rgb(231,6,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (2 samples, 0.05%)</title><rect x="549.9" y="533" width="0.6" height="15.0" fill="rgb(215,49,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_setUpRememberedSetForObjectOfAlignedHeapChunk_23bffcf2657e1524ae917169a014acfb3c1f37df (2 samples, 0.05%)</title><rect x="794.4" y="85" width="0.6" height="15.0" fill="rgb(227,177,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.40" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StreamSupport_stream_bfe13c102396a7ae130c6b4f62ccc1b1373097a5 (2 samples, 0.05%)</title><rect x="918.3" y="613" width="0.6" height="15.0" fill="rgb(219,151,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.29" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (1 samples, 0.03%)</title><rect x="564.7" y="309" width="0.4" height="15.0" fill="rgb(249,143,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (14 samples, 0.38%)</title><rect x="559.2" y="501" width="4.6" height="15.0" fill="rgb(250,32,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="27.5" y="597" width="0.3" height="15.0" fill="rgb(229,63,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="908.6" y="245" width="0.3" height="15.0" fill="rgb(230,203,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.59" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>free_unref_page_commit (1 samples, 0.03%)</title><rect x="1188.4" y="709" width="0.3" height="15.0" fill="rgb(213,42,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (5 samples, 0.14%)</title><rect x="796.3" y="389" width="1.7" height="15.0" fill="rgb(212,41,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="564.7" y="325" width="0.4" height="15.0" fill="rgb(233,181,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReduceOps$ReduceOp_evaluateSequential_df785bff9cebc03748895d0ef17a3c6bb9a8984b (3,640 samples, 99.78%)</title><rect x="10.3" y="821" width="1177.4" height="15.0" fill="rgb(244,118,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReduceOps$ReduceOp_evaluateSequential_df785bff9cebc03748895d0ef17a3c6bb9a8984b</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors$$Lambda$22a50092b13f9a04916fb0af529dc003c21f8f02_apply_cf8e2d66fc44afb99ef5a5a43d691ff9c9625054 (1 samples, 0.03%)</title><rect x="1187.7" y="789" width="0.4" height="15.0" fill="rgb(206,108,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.74" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (1 samples, 0.03%)</title><rect x="797.0" y="261" width="0.3" height="15.0" fill="rgb(212,108,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (6 samples, 0.16%)</title><rect x="910.2" y="373" width="1.9" height="15.0" fill="rgb(208,172,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="148.8" y="261" width="0.3" height="15.0" fill="rgb(238,60,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (3 samples, 0.08%)</title><rect x="913.1" y="293" width="1.0" height="15.0" fill="rgb(249,162,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (2 samples, 0.05%)</title><rect x="795.4" y="277" width="0.6" height="15.0" fill="rgb(219,52,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.37" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (1 samples, 0.03%)</title><rect x="283.7" y="277" width="0.3" height="15.0" fill="rgb(206,165,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.65" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__alloc_pages_nodemask (1 samples, 0.03%)</title><rect x="854.2" y="437" width="0.4" height="15.0" fill="rgb(232,22,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (1 samples, 0.03%)</title><rect x="924.4" y="549" width="0.4" height="15.0" fill="rgb(240,133,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.44" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="1186.8" y="581" width="0.3" height="15.0" fill="rgb(240,49,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (1 samples, 0.03%)</title><rect x="283.3" y="229" width="0.4" height="15.0" fill="rgb(229,88,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HashMap_replaceAll_54e0ae656c8b7358222dc9c1abfcfc4856498f05 (1 samples, 0.03%)</title><rect x="1187.7" y="805" width="0.4" height="15.0" fill="rgb(213,224,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.74" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (3 samples, 0.08%)</title><rect x="914.1" y="325" width="1.0" height="15.0" fill="rgb(249,192,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="917.08" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="908.9" y="197" width="0.3" height="15.0" fill="rgb(228,133,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_RemoveQEQuoting_b661a87408b4c67d21b70297b9aaa9d4d1445a40 (41 samples, 1.12%)</title><rect x="669.5" y="549" width="13.3" height="15.0" fill="rgb(246,86,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_allocateMemory_a3354663a92077d9ee8f859e6d17c4bbfcdb880f (1 samples, 0.03%)</title><rect x="790.2" y="69" width="0.3" height="15.0" fill="rgb(224,155,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.20" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (6 samples, 0.16%)</title><rect x="910.2" y="405" width="1.9" height="15.0" fill="rgb(217,174,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.11%)</title><rect x="1188.7" y="917" width="1.3" height="15.0" fill="rgb(251,114,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__fdget_pos (1 samples, 0.03%)</title><rect x="21.6" y="485" width="0.4" height="15.0" fill="rgb(228,192,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (9 samples, 0.25%)</title><rect x="289.5" y="533" width="2.9" height="15.0" fill="rgb(237,72,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="292.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="565.1" y="293" width="0.3" height="15.0" fill="rgb(212,102,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (9 samples, 0.25%)</title><rect x="912.1" y="421" width="3.0" height="15.0" fill="rgb(221,38,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (6 samples, 0.16%)</title><rect x="791.5" y="213" width="1.9" height="15.0" fill="rgb(236,164,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (2 samples, 0.05%)</title><rect x="668.9" y="261" width="0.6" height="15.0" fill="rgb(228,43,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$CharProperty_study_da65fd1e5bf68787526c15ccaa79fce272bbaf18 (3 samples, 0.08%)</title><rect x="656.0" y="549" width="0.9" height="15.0" fill="rgb(234,208,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.96" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_expr_623b819a431b3e32ea2ae8019ba7a7ae8b0f964e (403 samples, 11.05%)</title><rect x="682.8" y="549" width="130.4" height="15.0" fill="rgb(244,41,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern_expr_623..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (2 samples, 0.05%)</title><rect x="853.3" y="261" width="0.6" height="15.0" fill="rgb(249,89,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.27" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (2 samples, 0.05%)</title><rect x="789.9" y="101" width="0.6" height="15.0" fill="rgb(212,186,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (11 samples, 0.30%)</title><rect x="239.3" y="501" width="3.6" height="15.0" fill="rgb(222,201,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (9 samples, 0.25%)</title><rect x="912.1" y="581" width="3.0" height="15.0" fill="rgb(246,79,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_expr_623b819a431b3e32ea2ae8019ba7a7ae8b0f964e (1 samples, 0.03%)</title><rect x="854.6" y="565" width="0.3" height="15.0" fill="rgb(249,188,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.57" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (3 samples, 0.08%)</title><rect x="668.6" y="437" width="0.9" height="15.0" fill="rgb(240,53,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (2 samples, 0.05%)</title><rect x="910.5" y="277" width="0.7" height="15.0" fill="rgb(218,149,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.53" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="317.3" y="245" width="0.3" height="15.0" fill="rgb(236,124,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (1 samples, 0.03%)</title><rect x="910.8" y="197" width="0.4" height="15.0" fill="rgb(227,52,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (7 samples, 0.19%)</title><rect x="789.2" y="469" width="2.3" height="15.0" fill="rgb(237,136,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (1 samples, 0.03%)</title><rect x="315.4" y="261" width="0.3" height="15.0" fill="rgb(205,71,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.35" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (2 samples, 0.05%)</title><rect x="795.4" y="229" width="0.6" height="15.0" fill="rgb(254,83,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.37" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (8 samples, 0.22%)</title><rect x="907.0" y="453" width="2.6" height="15.0" fill="rgb(205,90,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (1 samples, 0.03%)</title><rect x="283.3" y="245" width="0.4" height="15.0" fill="rgb(231,152,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (3 samples, 0.08%)</title><rect x="789.9" y="261" width="0.9" height="15.0" fill="rgb(219,229,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ksys_read (2 samples, 0.05%)</title><rect x="22.9" y="469" width="0.7" height="15.0" fill="rgb(217,95,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="1186.8" y="469" width="0.3" height="15.0" fill="rgb(208,77,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_next_f017b199c49d51b0e3e34285189eb85cbecbd412 (41 samples, 1.12%)</title><rect x="759.1" y="485" width="13.3" height="15.0" fill="rgb(215,197,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="564.7" y="437" width="0.4" height="15.0" fill="rgb(250,137,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (8 samples, 0.22%)</title><rect x="907.0" y="357" width="2.6" height="15.0" fill="rgb(208,150,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="565.1" y="517" width="0.3" height="15.0" fill="rgb(220,127,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (3 samples, 0.08%)</title><rect x="907.3" y="293" width="1.0" height="15.0" fill="rgb(226,44,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.03%)</title><rect x="909.2" y="261" width="0.4" height="15.0" fill="rgb(224,4,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.23" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (1 samples, 0.03%)</title><rect x="148.8" y="533" width="0.3" height="15.0" fill="rgb(227,22,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (8 samples, 0.22%)</title><rect x="907.0" y="373" width="2.6" height="15.0" fill="rgb(240,198,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (1 samples, 0.03%)</title><rect x="964.9" y="517" width="0.3" height="15.0" fill="rgb(250,16,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (8 samples, 0.22%)</title><rect x="907.0" y="517" width="2.6" height="15.0" fill="rgb(252,7,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringBuffer_append_4d04f80c2a05220d132c7a2b7865af7988dac569 (233 samples, 6.39%)</title><rect x="182.7" y="533" width="75.4" height="15.0" fill="rgb(218,175,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.73" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >StringBu..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_event_exec (4 samples, 0.11%)</title><rect x="1188.7" y="805" width="1.3" height="15.0" fill="rgb(240,96,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (6 samples, 0.16%)</title><rect x="910.2" y="533" width="1.9" height="15.0" fill="rgb(253,162,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__handle_mm_fault (1 samples, 0.03%)</title><rect x="1188.1" y="853" width="0.3" height="15.0" fill="rgb(207,75,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (8 samples, 0.22%)</title><rect x="907.0" y="501" width="2.6" height="15.0" fill="rgb(243,184,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="1186.8" y="517" width="0.3" height="15.0" fill="rgb(243,229,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.03%)</title><rect x="911.8" y="309" width="0.3" height="15.0" fill="rgb(210,111,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.82" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (2 samples, 0.05%)</title><rect x="789.9" y="165" width="0.6" height="15.0" fill="rgb(244,168,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.03%)</title><rect x="911.8" y="277" width="0.3" height="15.0" fill="rgb(249,132,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.82" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (4 samples, 0.11%)</title><rect x="236.4" y="501" width="1.3" height="15.0" fill="rgb(210,146,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="239.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (1 samples, 0.03%)</title><rect x="541.1" y="533" width="0.4" height="15.0" fill="rgb(229,140,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="317.0" y="213" width="0.3" height="15.0" fill="rgb(238,57,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.97" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (20 samples, 0.55%)</title><rect x="1178.4" y="549" width="6.4" height="15.0" fill="rgb(213,54,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.36" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (2 samples, 0.05%)</title><rect x="908.6" y="293" width="0.6" height="15.0" fill="rgb(213,37,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.59" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (2 samples, 0.05%)</title><rect x="911.2" y="309" width="0.6" height="15.0" fill="rgb(206,79,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (2 samples, 0.05%)</title><rect x="796.3" y="245" width="0.7" height="15.0" fill="rgb(222,146,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (7 samples, 0.19%)</title><rect x="315.0" y="421" width="2.3" height="15.0" fill="rgb(213,38,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="405.6" y="501" width="0.3" height="15.0" fill="rgb(235,60,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors_lambda$groupingBy$47_415c83928502f3ae02fb73b8995d6910a2b49434 (1 samples, 0.03%)</title><rect x="1187.7" y="821" width="0.4" height="15.0" fill="rgb(232,34,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.74" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Bound_isWord_a9564a6e598609a23bd7bfc280b5de3c8e9e56d5 (9 samples, 0.25%)</title><rect x="1144.1" y="549" width="2.9" height="15.0" fill="rgb(229,51,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (7 samples, 0.19%)</title><rect x="315.0" y="357" width="2.3" height="15.0" fill="rgb(207,46,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>new_sync_read (2 samples, 0.05%)</title><rect x="22.9" y="421" width="0.7" height="15.0" fill="rgb(224,198,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_append_305e2cc366e30a14d4d5c9b019b8ccce9e98747c (1 samples, 0.03%)</title><rect x="17.1" y="661" width="0.3" height="15.0" fill="rgb(242,94,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.12" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (2 samples, 0.05%)</title><rect x="852.6" y="277" width="0.7" height="15.0" fill="rgb(239,74,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_split_279f12d941191cccafac16d1d6cd8503859236a6 (829 samples, 22.72%)</title><rect x="918.9" y="645" width="268.2" height="15.0" fill="rgb(229,6,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.94" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >String_split_279f12d941191cccafac16..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (5 samples, 0.14%)</title><rect x="796.3" y="325" width="1.7" height="15.0" fill="rgb(232,114,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_popUnusedAlignedChunk_076a3ebad49576ee9de8be8f1e0bd9f3f22d6327 (1 samples, 0.03%)</title><rect x="796.0" y="421" width="0.3" height="15.0" fill="rgb(250,68,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.02" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (6 samples, 0.16%)</title><rect x="793.4" y="213" width="2.0" height="15.0" fill="rgb(227,28,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="283.3" y="213" width="0.4" height="15.0" fill="rgb(242,89,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_next_f017b199c49d51b0e3e34285189eb85cbecbd412 (1 samples, 0.03%)</title><rect x="805.4" y="517" width="0.3" height="15.0" fill="rgb(213,185,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (2 samples, 0.05%)</title><rect x="316.3" y="165" width="0.7" height="15.0" fill="rgb(206,76,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.32" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="148.8" y="277" width="0.3" height="15.0" fill="rgb(233,20,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (3 samples, 0.08%)</title><rect x="668.6" y="389" width="0.9" height="15.0" fill="rgb(231,158,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (6 samples, 0.16%)</title><rect x="793.4" y="181" width="2.0" height="15.0" fill="rgb(247,90,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>search_binary_handler (4 samples, 0.11%)</title><rect x="1188.7" y="853" width="1.3" height="15.0" fill="rgb(208,140,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_charAt_1b771a25b5f8608a29c775fc6ff4199f0d397548 (3 samples, 0.08%)</title><rect x="504.9" y="501" width="1.0" height="15.0" fill="rgb(215,158,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="507.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors_lambda$groupingBy$45_714227ff71e01611c24c75bbace321922d0b2c32 (221 samples, 6.06%)</title><rect x="44.6" y="565" width="71.5" height="15.0" fill="rgb(250,159,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="47.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Collecto..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (12 samples, 0.33%)</title><rect x="201.8" y="453" width="3.9" height="15.0" fill="rgb(245,199,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="27.5" y="549" width="0.3" height="15.0" fill="rgb(237,179,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>IsolateEnterStub_JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b_a61fe6c26e84dd4037e4629852b5488bfcc16e7e (3,641 samples, 99.81%)</title><rect x="10.3" y="901" width="1177.8" height="15.0" fill="rgb(242,227,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IsolateEnterStub_JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b_a61fe6c26e84dd4037e4629852b5488bfcc16e7e</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (2 samples, 0.05%)</title><rect x="283.3" y="421" width="0.7" height="15.0" fill="rgb(224,9,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="853.9" y="325" width="0.3" height="15.0" fill="rgb(243,54,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$LastNode_match_fbd14354d044cf085b88b1f3466e0d6fc1d601dd (5 samples, 0.14%)</title><rect x="1147.0" y="549" width="1.6" height="15.0" fill="rgb(252,115,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.98" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_closure_23fa6889790db85e033cefc58e4f6437cf45914f (1 samples, 0.03%)</title><rect x="923.1" y="581" width="0.4" height="15.0" fill="rgb(235,83,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_nonfairTryAcquire_0a9290a8427787ed8158d141c47a3ec430d345c2 (30 samples, 0.82%)</title><rect x="225.4" y="469" width="9.7" height="15.0" fill="rgb(220,62,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="228.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="565.1" y="469" width="0.3" height="15.0" fill="rgb(220,39,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (1 samples, 0.03%)</title><rect x="565.1" y="549" width="0.3" height="15.0" fill="rgb(242,135,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (45 samples, 1.23%)</title><rect x="220.6" y="501" width="14.5" height="15.0" fill="rgb(233,115,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="223.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.03%)</title><rect x="283.7" y="261" width="0.3" height="15.0" fill="rgb(208,122,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.65" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (17 samples, 0.47%)</title><rect x="558.3" y="517" width="5.5" height="15.0" fill="rgb(249,91,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.27" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (9 samples, 0.25%)</title><rect x="912.1" y="485" width="3.0" height="15.0" fill="rgb(244,16,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (1 samples, 0.03%)</title><rect x="283.3" y="261" width="0.4" height="15.0" fill="rgb(206,68,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (1 samples, 0.03%)</title><rect x="853.9" y="533" width="0.3" height="15.0" fill="rgb(214,88,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharacterDataLatin1_getType_5d1d50e0e575b2760e6802ecf90448adc9ce912c (14 samples, 0.38%)</title><rect x="1081.3" y="517" width="4.5" height="15.0" fill="rgb(210,228,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (2 samples, 0.05%)</title><rect x="115.4" y="501" width="0.7" height="15.0" fill="rgb(244,88,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="27.5" y="437" width="0.3" height="15.0" fill="rgb(240,194,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringBuffer_append_4d04f80c2a05220d132c7a2b7865af7988dac569 (4 samples, 0.11%)</title><rect x="313.7" y="549" width="1.3" height="15.0" fill="rgb(251,84,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.73" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="27.5" y="517" width="0.3" height="15.0" fill="rgb(220,96,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (2 samples, 0.05%)</title><rect x="115.4" y="405" width="0.7" height="15.0" fill="rgb(223,24,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="1186.8" y="549" width="0.3" height="15.0" fill="rgb(212,83,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_constructor_bea7661f4e328798935339561607b4a139be1527 (82 samples, 2.25%)</title><rect x="1158.6" y="597" width="26.5" height="15.0" fill="rgb(245,171,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >S..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (4 samples, 0.11%)</title><rect x="235.1" y="501" width="1.3" height="15.0" fill="rgb(241,58,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="238.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (12 samples, 0.33%)</title><rect x="686.4" y="533" width="3.8" height="15.0" fill="rgb(243,213,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="689.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_reset_b9009704486692f77f03a3d4794e59dbc7639d79 (2 samples, 0.05%)</title><rect x="909.6" y="565" width="0.6" height="15.0" fill="rgb(210,198,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.56" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="964.9" y="293" width="0.3" height="15.0" fill="rgb(229,91,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (2 samples, 0.05%)</title><rect x="911.2" y="261" width="0.6" height="15.0" fill="rgb(212,137,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharacterDataLatin1_toLowerCase_441dae4ae160f6ff92a5c43fe52adfe86ade5d62 (18 samples, 0.49%)</title><rect x="139.1" y="549" width="5.8" height="15.0" fill="rgb(205,150,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="142.06" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="797.0" y="197" width="0.3" height="15.0" fill="rgb(240,62,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (5 samples, 0.14%)</title><rect x="25.8" y="645" width="1.7" height="15.0" fill="rgb(235,124,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.85" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (3 samples, 0.08%)</title><rect x="851.7" y="293" width="0.9" height="15.0" fill="rgb(236,71,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.66" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (3 samples, 0.08%)</title><rect x="914.1" y="341" width="1.0" height="15.0" fill="rgb(211,197,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="917.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharsetDecoder_decode_6f5b14199aa7c719db6a5072940e8a638d4a068a (11 samples, 0.30%)</title><rect x="18.1" y="613" width="3.5" height="15.0" fill="rgb(246,131,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.09" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="668.6" y="245" width="0.3" height="15.0" fill="rgb(239,17,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (3 samples, 0.08%)</title><rect x="668.6" y="517" width="0.9" height="15.0" fill="rgb(254,183,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (3 samples, 0.08%)</title><rect x="794.4" y="133" width="1.0" height="15.0" fill="rgb(212,47,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.40" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors$$Lambda$e2cd1af36e54aee42d3805be70608ebe307e22cb_accept_37cf43bf51ee46fc30917b4377f1bd58bd4b7cb1 (59 samples, 1.62%)</title><rect x="46.9" y="549" width="19.1" height="15.0" fill="rgb(222,11,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.88" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>unmap_single_vma (1 samples, 0.03%)</title><rect x="1188.4" y="805" width="0.3" height="15.0" fill="rgb(217,130,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.11%)</title><rect x="1188.7" y="741" width="1.3" height="15.0" fill="rgb(218,58,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (1 samples, 0.03%)</title><rect x="908.9" y="149" width="0.3" height="15.0" fill="rgb(212,46,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (9 samples, 0.25%)</title><rect x="851.0" y="405" width="2.9" height="15.0" fill="rgb(253,101,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (22 samples, 0.60%)</title><rect x="805.7" y="517" width="7.1" height="15.0" fill="rgb(250,23,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.72" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObjectUnchecked_9a7f92db6eb61a306f8dfb4fef880d45e882df1c (1 samples, 0.03%)</title><rect x="794.7" y="53" width="0.3" height="15.0" fill="rgb(233,44,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.73" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (9 samples, 0.25%)</title><rect x="851.0" y="517" width="2.9" height="15.0" fill="rgb(211,126,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_replaceAll_dc53e05ad8ab64f4b182f5d257c5b18a85f02886 (2,345 samples, 64.28%)</title><rect x="156.5" y="597" width="758.6" height="15.0" fill="rgb(236,74,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.53" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >String_replaceAll_dc53e05ad8ab64f4b182f5d257c5b18a85f02886</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>BufferedReader$1_hasNext_cce028428c17f1ed5b598d647b32ff01db509df0 (54 samples, 1.48%)</title><rect x="10.6" y="693" width="17.5" height="15.0" fill="rgb(238,65,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.65" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Node_study_e9bd11168424e80285fd8c61270c4bf0f1f1b67e (3 samples, 0.08%)</title><rect x="667.6" y="501" width="1.0" height="15.0" fill="rgb(229,45,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF_8_updatePositions_39f4b3731b7d789ab12c0b08629e6304badea736 (1 samples, 0.03%)</title><rect x="21.3" y="549" width="0.3" height="15.0" fill="rgb(223,207,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.32" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="317.3" y="309" width="0.3" height="15.0" fill="rgb(205,112,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clear_page_erms (1 samples, 0.03%)</title><rect x="854.2" y="421" width="0.4" height="15.0" fill="rgb(231,153,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractPipeline_wrapAndCopyInto_86cb07eba68bb8814f0b1f466ec95a5bfec12903 (3,640 samples, 99.78%)</title><rect x="10.3" y="805" width="1177.4" height="15.0" fill="rgb(248,93,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >AbstractPipeline_wrapAndCopyInto_86cb07eba68bb8814f0b1f466ec95a5bfec12903</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (9 samples, 0.25%)</title><rect x="851.0" y="453" width="2.9" height="15.0" fill="rgb(225,42,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (1 samples, 0.03%)</title><rect x="317.6" y="325" width="0.3" height="15.0" fill="rgb(249,191,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (2 samples, 0.05%)</title><rect x="283.3" y="405" width="0.7" height="15.0" fill="rgb(219,73,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (2 samples, 0.05%)</title><rect x="789.2" y="213" width="0.7" height="15.0" fill="rgb(231,38,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (1 samples, 0.03%)</title><rect x="283.3" y="197" width="0.4" height="15.0" fill="rgb(243,109,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (14 samples, 0.38%)</title><rect x="791.5" y="309" width="4.5" height="15.0" fill="rgb(205,57,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Bound_check_6d079f1f4f9f422b7173db268b7d9490aeda2d53 (1 samples, 0.03%)</title><rect x="1006.9" y="565" width="0.3" height="15.0" fill="rgb(224,54,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.92" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF_8$Decoder_xflow_0a831df5dd6bd41bf8e18c3898ac5818d7c05023 (1 samples, 0.03%)</title><rect x="21.3" y="565" width="0.3" height="15.0" fill="rgb(212,12,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (3 samples, 0.08%)</title><rect x="668.6" y="421" width="0.9" height="15.0" fill="rgb(245,75,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="564.7" y="453" width="0.4" height="15.0" fill="rgb(252,200,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (6 samples, 0.16%)</title><rect x="910.2" y="389" width="1.9" height="15.0" fill="rgb(229,34,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="797.0" y="165" width="0.3" height="15.0" fill="rgb(222,161,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList_get_a2422c2de241cd61c68639491cbc7f5cb988db41 (1 samples, 0.03%)</title><rect x="965.2" y="613" width="0.3" height="15.0" fill="rgb(231,175,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.19" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Bound_check_6d079f1f4f9f422b7173db268b7d9490aeda2d53 (367 samples, 10.06%)</title><rect x="1025.4" y="549" width="118.7" height="15.0" fill="rgb(216,133,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1028.36" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern$Bound_..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_guaranteeInProgress_ec915e83e4359f956583f44e5d299c39d09defa4 (1 samples, 0.03%)</title><rect x="913.1" y="149" width="0.3" height="15.0" fill="rgb(225,177,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$Head_forEach_0e5b39bce0133541189adfd7b911cbd76e1155ee (2 samples, 0.05%)</title><rect x="1187.1" y="693" width="0.6" height="15.0" fill="rgb(209,206,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.09" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (7 samples, 0.19%)</title><rect x="315.0" y="485" width="2.3" height="15.0" fill="rgb(214,147,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="668.6" y="293" width="0.3" height="15.0" fill="rgb(249,27,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (5 samples, 0.14%)</title><rect x="315.7" y="325" width="1.6" height="15.0" fill="rgb(241,9,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (54 samples, 1.48%)</title><rect x="237.7" y="517" width="17.5" height="15.0" fill="rgb(214,228,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.72" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (14 samples, 0.38%)</title><rect x="791.5" y="453" width="4.5" height="15.0" fill="rgb(210,4,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (2 samples, 0.05%)</title><rect x="913.1" y="197" width="0.7" height="15.0" fill="rgb(211,47,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (1 samples, 0.03%)</title><rect x="315.4" y="293" width="0.3" height="15.0" fill="rgb(208,214,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.35" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$CharProperty_match_f3acf6ab4c47a0313df6b8c7c655164cd6920023 (5 samples, 0.14%)</title><rect x="404.3" y="533" width="1.6" height="15.0" fill="rgb(210,146,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="407.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_charAt_1b771a25b5f8608a29c775fc6ff4199f0d397548 (30 samples, 0.82%)</title><rect x="1048.0" y="517" width="9.7" height="15.0" fill="rgb(234,26,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1051.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (2 samples, 0.05%)</title><rect x="795.4" y="261" width="0.6" height="15.0" fill="rgb(205,159,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.37" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_length_c8bec93b04b501e5e0144a1d586f117cb490caca (4 samples, 0.11%)</title><rect x="325.7" y="533" width="1.3" height="15.0" fill="rgb(218,50,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="328.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (5 samples, 0.14%)</title><rect x="796.3" y="357" width="1.7" height="15.0" fill="rgb(207,72,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_exit (1 samples, 0.03%)</title><rect x="1188.4" y="869" width="0.3" height="15.0" fill="rgb(235,133,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (9 samples, 0.25%)</title><rect x="912.1" y="389" width="3.0" height="15.0" fill="rgb(211,178,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (3 samples, 0.08%)</title><rect x="913.1" y="325" width="1.0" height="15.0" fill="rgb(222,130,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (2 samples, 0.05%)</title><rect x="170.4" y="565" width="0.7" height="15.0" fill="rgb(241,50,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="173.44" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_getName_25b16843d7f06eefef13ef665970890e7d363ef5 (1 samples, 0.03%)</title><rect x="907.9" y="181" width="0.4" height="15.0" fill="rgb(214,176,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.94" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$1_isSatisfiedBy_d5d5ba8f3bb1674c12fc434a0b37787f7377ddd6 (18 samples, 0.49%)</title><rect x="495.2" y="469" width="5.8" height="15.0" fill="rgb(223,198,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.20" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ChannelInputStream_read_a50896d62b09770ec4c9afc1c3f70dd28468160f (4 samples, 0.11%)</title><rect x="22.3" y="597" width="1.3" height="15.0" fill="rgb(205,72,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_group_exit (1 samples, 0.03%)</title><rect x="1188.4" y="885" width="0.3" height="15.0" fill="rgb(244,108,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (5 samples, 0.14%)</title><rect x="796.3" y="293" width="1.7" height="15.0" fill="rgb(226,158,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_compile_f246b5df1b4fa757db523ed5bb6bbb7939983d72 (18 samples, 0.49%)</title><rect x="920.2" y="613" width="5.9" height="15.0" fill="rgb(215,218,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="923.23" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (2 samples, 0.05%)</title><rect x="912.1" y="325" width="0.7" height="15.0" fill="rgb(213,8,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (2 samples, 0.05%)</title><rect x="283.3" y="325" width="0.7" height="15.0" fill="rgb(223,155,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_shouldPromoteFrom_ec9ee6bd795808ebe9e365ff0f0d53ad206afd72 (1 samples, 0.03%)</title><rect x="907.9" y="197" width="0.4" height="15.0" fill="rgb(232,91,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.94" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="852.9" y="213" width="0.4" height="15.0" fill="rgb(208,31,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (2 samples, 0.05%)</title><rect x="317.3" y="485" width="0.6" height="15.0" fill="rgb(230,151,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (2 samples, 0.05%)</title><rect x="115.4" y="373" width="0.7" height="15.0" fill="rgb(220,154,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (2 samples, 0.05%)</title><rect x="115.4" y="453" width="0.7" height="15.0" fill="rgb(223,85,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="315.4" y="245" width="0.3" height="15.0" fill="rgb(220,13,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.35" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (6 samples, 0.16%)</title><rect x="789.2" y="277" width="2.0" height="15.0" fill="rgb(236,88,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (2 samples, 0.05%)</title><rect x="795.4" y="213" width="0.6" height="15.0" fill="rgb(216,185,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.37" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (1 samples, 0.03%)</title><rect x="1186.8" y="389" width="0.3" height="15.0" fill="rgb(251,5,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (52 samples, 1.43%)</title><rect x="772.4" y="485" width="16.8" height="15.0" fill="rgb(236,21,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="775.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="910.8" y="245" width="0.4" height="15.0" fill="rgb(238,184,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (2 samples, 0.05%)</title><rect x="796.3" y="197" width="0.7" height="15.0" fill="rgb(205,88,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (1 samples, 0.03%)</title><rect x="564.7" y="533" width="0.4" height="15.0" fill="rgb(209,171,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (33 samples, 0.90%)</title><rect x="299.5" y="517" width="10.7" height="15.0" fill="rgb(240,89,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (9 samples, 0.25%)</title><rect x="851.0" y="357" width="2.9" height="15.0" fill="rgb(209,75,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (9 samples, 0.25%)</title><rect x="912.1" y="437" width="3.0" height="15.0" fill="rgb(231,136,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="317.6" y="245" width="0.3" height="15.0" fill="rgb(207,81,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.62" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="964.9" y="373" width="0.3" height="15.0" fill="rgb(236,101,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (5 samples, 0.14%)</title><rect x="796.3" y="341" width="1.7" height="15.0" fill="rgb(224,190,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="148.8" y="453" width="0.3" height="15.0" fill="rgb(253,202,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (3 samples, 0.08%)</title><rect x="910.2" y="341" width="1.0" height="15.0" fill="rgb(247,151,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (11 samples, 0.30%)</title><rect x="335.4" y="533" width="3.6" height="15.0" fill="rgb(205,25,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (2 samples, 0.05%)</title><rect x="796.3" y="229" width="0.7" height="15.0" fill="rgb(221,46,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_find_1aca8c086d661e66944650ab589b8263eb835778 (495 samples, 13.57%)</title><rect x="346.7" y="565" width="160.1" height="15.0" fill="rgb(248,1,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.73" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matcher_find_1aca8c0..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="910.8" y="261" width="0.4" height="15.0" fill="rgb(237,57,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (2 samples, 0.05%)</title><rect x="911.2" y="245" width="0.6" height="15.0" fill="rgb(251,97,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (2 samples, 0.05%)</title><rect x="283.3" y="389" width="0.7" height="15.0" fill="rgb(250,120,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (2 samples, 0.05%)</title><rect x="852.6" y="245" width="0.7" height="15.0" fill="rgb(211,214,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_search_0c10827df5aab4190cdb124abc06b05dd2b22628 (1 samples, 0.03%)</title><rect x="524.6" y="565" width="0.4" height="15.0" fill="rgb(217,39,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.63" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.03%)</title><rect x="283.7" y="245" width="0.3" height="15.0" fill="rgb(226,106,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.65" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (1 samples, 0.03%)</title><rect x="317.6" y="261" width="0.3" height="15.0" fill="rgb(206,125,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.62" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="405.6" y="485" width="0.3" height="15.0" fill="rgb(222,193,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StreamDecoder_inReady_0be61658e597160339efa78ee40dada2c59312f0 (2 samples, 0.05%)</title><rect x="21.6" y="613" width="0.7" height="15.0" fill="rgb(244,14,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_popUnusedAlignedChunkUninterruptibly_2ea1a670ab28c842976a24a97a4870170ed92077 (1 samples, 0.03%)</title><rect x="791.2" y="389" width="0.3" height="15.0" fill="rgb(212,180,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$3$1_accept_fecdf8590fa049286189dcbfbc97685f566e97ce (336 samples, 9.21%)</title><rect x="40.4" y="613" width="108.7" height="15.0" fill="rgb(249,79,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.41" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipe..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (5 samples, 0.14%)</title><rect x="793.8" y="165" width="1.6" height="15.0" fill="rgb(206,116,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.76" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_replaceAll_6f968cebcf5769de46065a88895558752eb6b739 (1,237 samples, 33.91%)</title><rect x="165.3" y="581" width="400.1" height="15.0" fill="rgb(222,29,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.26" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matcher_replaceAll_6f968cebcf5769de46065a88895558752eb..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_constructor_bea7661f4e328798935339561607b4a139be1527 (6 samples, 0.16%)</title><rect x="25.5" y="661" width="2.0" height="15.0" fill="rgb(244,125,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.53" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (1 samples, 0.03%)</title><rect x="908.3" y="309" width="0.3" height="15.0" fill="rgb(220,228,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.26" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_constructor_e67f155bf658db2928ce72c8d5822b0f3b99e7d9 (20 samples, 0.55%)</title><rect x="919.6" y="629" width="6.5" height="15.0" fill="rgb(220,98,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="922.58" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_charAt_1b771a25b5f8608a29c775fc6ff4199f0d397548 (6 samples, 0.16%)</title><rect x="1142.1" y="533" width="2.0" height="15.0" fill="rgb(209,121,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_start_0e3ed0a68daf096aecdcb217743272f467795d1f (1 samples, 0.03%)</title><rect x="918.9" y="629" width="0.4" height="15.0" fill="rgb(207,213,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="921.94" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (3,648 samples, 100%)</title><rect x="10.0" y="965" width="1180.0" height="15.0" fill="rgb(247,82,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="1188.1" y="869" width="0.3" height="15.0" fill="rgb(205,148,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HashMap_computeIfAbsent_d7d0e32dcf1a4642c16f383456069356328aed27 (151 samples, 4.14%)</title><rect x="66.3" y="549" width="48.8" height="15.0" fill="rgb(211,225,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="69.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Hash..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (2 samples, 0.05%)</title><rect x="210.5" y="485" width="0.7" height="15.0" fill="rgb(245,160,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="213.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (14 samples, 0.38%)</title><rect x="791.5" y="389" width="4.5" height="15.0" fill="rgb(212,72,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (2 samples, 0.05%)</title><rect x="115.4" y="517" width="0.7" height="15.0" fill="rgb(235,124,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$LastNode_match_fbd14354d044cf085b88b1f3466e0d6fc1d601dd (2 samples, 0.05%)</title><rect x="1148.6" y="565" width="0.6" height="15.0" fill="rgb(233,217,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1151.60" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (2 samples, 0.05%)</title><rect x="668.9" y="309" width="0.6" height="15.0" fill="rgb(228,33,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="27.5" y="373" width="0.3" height="15.0" fill="rgb(226,169,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$LastNode_match_fbd14354d044cf085b88b1f3466e0d6fc1d601dd (1 samples, 0.03%)</title><rect x="505.9" y="517" width="0.3" height="15.0" fill="rgb(239,101,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (1 samples, 0.03%)</title><rect x="669.2" y="133" width="0.3" height="15.0" fill="rgb(206,167,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.22" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (8 samples, 0.22%)</title><rect x="907.0" y="485" width="2.6" height="15.0" fill="rgb(234,11,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList_checkForComodification_6d3d0e75919a7ebccba3b043a2d32979e76736b6 (1 samples, 0.03%)</title><rect x="948.4" y="565" width="0.3" height="15.0" fill="rgb(216,18,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="951.37" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (5 samples, 0.14%)</title><rect x="851.0" y="325" width="1.6" height="15.0" fill="rgb(218,75,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="793.1" y="181" width="0.3" height="15.0" fill="rgb(248,99,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.11" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="564.7" y="389" width="0.4" height="15.0" fill="rgb(243,227,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (1 samples, 0.03%)</title><rect x="565.1" y="565" width="0.3" height="15.0" fill="rgb(250,129,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_do_update_jiffies64.part.15 (1 samples, 0.03%)</title><rect x="405.6" y="421" width="0.3" height="15.0" fill="rgb(209,193,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="148.8" y="437" width="0.3" height="15.0" fill="rgb(248,29,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (1 samples, 0.03%)</title><rect x="115.8" y="261" width="0.3" height="15.0" fill="rgb(233,116,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_getNextObject_80c03830ac0417f578ab5abe81f48ace0b9aa5e1 (1 samples, 0.03%)</title><rect x="908.6" y="229" width="0.3" height="15.0" fill="rgb(206,75,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.59" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="405.6" y="517" width="0.3" height="15.0" fill="rgb(243,44,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (1 samples, 0.03%)</title><rect x="317.0" y="229" width="0.3" height="15.0" fill="rgb(226,60,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.97" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (2 samples, 0.05%)</title><rect x="317.3" y="389" width="0.6" height="15.0" fill="rgb(232,18,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (5 samples, 0.14%)</title><rect x="130.0" y="565" width="1.6" height="15.0" fill="rgb(221,127,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="133.01" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors$$Lambda$68e67bcf7b635e906825efcb0df82fc8f241caee_apply_9dfe686776dfe248682e28241a5d7a7f282d2326 (1 samples, 0.03%)</title><rect x="1187.7" y="837" width="0.4" height="15.0" fill="rgb(216,42,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.74" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>DirectByteBuffer_get_d4edfcd04ddabed9f1100e4c6988557e0f7602ec (2 samples, 0.05%)</title><rect x="22.3" y="533" width="0.6" height="15.0" fill="rgb(209,31,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (2 samples, 0.05%)</title><rect x="668.9" y="245" width="0.6" height="15.0" fill="rgb(227,199,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_produceAlignedChunk_151eeb69b2ff04e5a10d422de20e777d95b68672 (1 samples, 0.03%)</title><rect x="796.0" y="437" width="0.3" height="15.0" fill="rgb(250,228,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (2 samples, 0.05%)</title><rect x="913.1" y="261" width="0.7" height="15.0" fill="rgb(250,78,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (4 samples, 0.11%)</title><rect x="130.3" y="549" width="1.3" height="15.0" fill="rgb(215,113,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="133.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Start_constructor_6069d78d7de77a36df40c9a8a3386f04ccae5989 (39 samples, 1.07%)</title><rect x="656.9" y="549" width="12.6" height="15.0" fill="rgb(223,204,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.93" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (1 samples, 0.03%)</title><rect x="564.7" y="517" width="0.4" height="15.0" fill="rgb(213,65,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_shouldPromoteFrom_ec9ee6bd795808ebe9e365ff0f0d53ad206afd72 (1 samples, 0.03%)</title><rect x="853.9" y="197" width="0.3" height="15.0" fill="rgb(207,146,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (1 samples, 0.03%)</title><rect x="115.4" y="309" width="0.4" height="15.0" fill="rgb(222,229,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_allocateMemory_a3354663a92077d9ee8f859e6d17c4bbfcdb880f (1 samples, 0.03%)</title><rect x="795.0" y="85" width="0.4" height="15.0" fill="rgb(235,86,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.05" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="27.5" y="613" width="0.3" height="15.0" fill="rgb(210,68,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (1 samples, 0.03%)</title><rect x="797.0" y="245" width="0.3" height="15.0" fill="rgb(242,70,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_page_fault (1 samples, 0.03%)</title><rect x="1188.1" y="901" width="0.3" height="15.0" fill="rgb(214,136,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (1 samples, 0.03%)</title><rect x="1186.8" y="597" width="0.3" height="15.0" fill="rgb(226,216,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (3 samples, 0.08%)</title><rect x="851.7" y="309" width="0.9" height="15.0" fill="rgb(211,22,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (14 samples, 0.38%)</title><rect x="791.5" y="405" width="4.5" height="15.0" fill="rgb(214,53,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="564.7" y="357" width="0.4" height="15.0" fill="rgb(221,120,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_setUpRememberedSetForObjectOfAlignedHeapChunk_23bffcf2657e1524ae917169a014acfb3c1f37df (1 samples, 0.03%)</title><rect x="913.1" y="165" width="0.3" height="15.0" fill="rgb(224,121,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_prepareNewAllocationChunk_7581e655f0ed09af52be5d4b8b7166d80cefd67b (1 samples, 0.03%)</title><rect x="791.2" y="437" width="0.3" height="15.0" fill="rgb(229,116,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.17" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_codePointAt_5373838afb648ee9c3f6219f0a501fd91a2d11ba (9 samples, 0.25%)</title><rect x="854.9" y="565" width="2.9" height="15.0" fill="rgb(212,16,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.89" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="1186.8" y="501" width="0.3" height="15.0" fill="rgb(210,4,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (1 samples, 0.03%)</title><rect x="1184.8" y="565" width="0.3" height="15.0" fill="rgb(238,77,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.82" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (1 samples, 0.03%)</title><rect x="252.3" y="485" width="0.3" height="15.0" fill="rgb(213,81,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (4 samples, 0.11%)</title><rect x="1188.7" y="933" width="1.3" height="15.0" fill="rgb(210,228,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="564.7" y="469" width="0.4" height="15.0" fill="rgb(235,127,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringBuffer_toString_aca0feab951a01f68e2f58862dc5ced28a5ba0d8 (122 samples, 3.34%)</title><rect x="525.6" y="565" width="39.5" height="15.0" fill="rgb(227,73,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.60" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Str..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (9 samples, 0.25%)</title><rect x="912.1" y="405" width="3.0" height="15.0" fill="rgb(213,127,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (1 samples, 0.03%)</title><rect x="115.8" y="277" width="0.3" height="15.0" fill="rgb(252,45,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ctx_resched (4 samples, 0.11%)</title><rect x="1188.7" y="789" width="1.3" height="15.0" fill="rgb(235,130,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_sequence_2132b5c107ceda8ae0a813c4a032cc58bbe6b306 (1 samples, 0.03%)</title><rect x="813.8" y="549" width="0.3" height="15.0" fill="rgb(218,52,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="816.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (1 samples, 0.03%)</title><rect x="115.8" y="309" width="0.3" height="15.0" fill="rgb(246,40,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (6 samples, 0.16%)</title><rect x="789.2" y="421" width="2.0" height="15.0" fill="rgb(222,142,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hello-world (3,644 samples, 99.89%)</title><rect x="10.0" y="949" width="1178.7" height="15.0" fill="rgb(242,3,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hello-world</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (2 samples, 0.05%)</title><rect x="1158.0" y="597" width="0.6" height="15.0" fill="rgb(232,163,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.98" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Spliterators$ArraySpliterator_forEachRemaining_4deba6abc39568c21144523910aa831c3f154c5e (2,740 samples, 75.11%)</title><rect x="30.4" y="661" width="886.3" height="15.0" fill="rgb(253,189,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.38" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Spliterators$ArraySpliterator_forEachRemaining_4deba6abc39568c21144523910aa831c3f154c5e</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors_lambda$reducing$41_e0ba53abb33df9e2b599319a5ff1648bf3a0ad14 (59 samples, 1.62%)</title><rect x="46.9" y="533" width="19.1" height="15.0" fill="rgb(232,101,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (1 samples, 0.03%)</title><rect x="332.8" y="533" width="0.3" height="15.0" fill="rgb(213,135,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="335.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (1 samples, 0.03%)</title><rect x="1186.8" y="629" width="0.3" height="15.0" fill="rgb(219,38,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (2 samples, 0.05%)</title><rect x="789.9" y="149" width="0.6" height="15.0" fill="rgb(217,199,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="1186.8" y="485" width="0.3" height="15.0" fill="rgb(215,69,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$2$1_accept_75da41c6efd18979ee580e6231517a2aaf07b996 (346 samples, 9.48%)</title><rect x="37.8" y="629" width="111.9" height="15.0" fill="rgb(244,158,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="40.82" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipe..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MemoryUtil_copyConjointMemoryAtomic_174b0d7e8b7732fb943128a077ca719669b292d3 (2 samples, 0.05%)</title><rect x="22.3" y="485" width="0.6" height="15.0" fill="rgb(241,64,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractPipeline_close_b22bd455b8be8f2bc1cefe6db6a265bfdb3c781f (1 samples, 0.03%)</title><rect x="28.4" y="677" width="0.4" height="15.0" fill="rgb(209,81,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.44" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (7 samples, 0.19%)</title><rect x="538.9" y="517" width="2.2" height="15.0" fill="rgb(209,75,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (1 samples, 0.03%)</title><rect x="908.6" y="261" width="0.3" height="15.0" fill="rgb(227,68,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.59" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (2 samples, 0.05%)</title><rect x="317.3" y="341" width="0.6" height="15.0" fill="rgb(249,18,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (5 samples, 0.14%)</title><rect x="324.1" y="533" width="1.6" height="15.0" fill="rgb(222,100,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.08" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>filemap_map_pages (1 samples, 0.03%)</title><rect x="1188.1" y="821" width="0.3" height="15.0" fill="rgb(230,189,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_stream_c951c0c618a1a1fb8e8384d4a3e92decc52ec66c (5 samples, 0.14%)</title><rect x="917.3" y="645" width="1.6" height="15.0" fill="rgb(207,64,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.32" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="964.9" y="229" width="0.3" height="15.0" fill="rgb(233,148,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_compile_f246b5df1b4fa757db523ed5bb6bbb7939983d72 (2 samples, 0.05%)</title><rect x="565.4" y="581" width="0.6" height="15.0" fill="rgb(205,11,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.39" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (14 samples, 0.38%)</title><rect x="791.5" y="437" width="4.5" height="15.0" fill="rgb(209,167,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tlb_flush_mmu_free (1 samples, 0.03%)</title><rect x="1188.4" y="773" width="0.3" height="15.0" fill="rgb(253,197,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (1 samples, 0.03%)</title><rect x="26.2" y="613" width="0.3" height="15.0" fill="rgb(245,195,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="853.9" y="501" width="0.3" height="15.0" fill="rgb(206,70,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (33 samples, 0.90%)</title><rect x="273.3" y="533" width="10.7" height="15.0" fill="rgb(233,111,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_allocateMemory_a3354663a92077d9ee8f859e6d17c4bbfcdb880f (1 samples, 0.03%)</title><rect x="913.4" y="165" width="0.4" height="15.0" fill="rgb(242,72,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.44" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (62 samples, 1.70%)</title><rect x="292.7" y="549" width="20.1" height="15.0" fill="rgb(232,84,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_setUpRememberedSetForObjectOfAlignedHeapChunk_23bffcf2657e1524ae917169a014acfb3c1f37df (1 samples, 0.03%)</title><rect x="910.8" y="181" width="0.4" height="15.0" fill="rgb(237,42,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Start_match_67d652d01094c802cd56c38c391e280565a19543 (2 samples, 0.05%)</title><rect x="506.2" y="549" width="0.6" height="15.0" fill="rgb(234,214,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.20" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharacterDataLatin1_getType_5d1d50e0e575b2760e6802ecf90448adc9ce912c (36 samples, 0.99%)</title><rect x="1130.5" y="501" width="11.6" height="15.0" fill="rgb(219,56,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (2 samples, 0.05%)</title><rect x="852.6" y="293" width="0.7" height="15.0" fill="rgb(226,7,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="907.9" y="245" width="0.4" height="15.0" fill="rgb(249,63,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.94" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (4 samples, 0.11%)</title><rect x="23.9" y="645" width="1.3" height="15.0" fill="rgb(251,127,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.91" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList_add_43f6399c3b46d50c69e7ebaee5e44ba3b6a870f3 (51 samples, 1.40%)</title><rect x="948.7" y="613" width="16.5" height="15.0" fill="rgb(240,29,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="951.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="405.6" y="437" width="0.3" height="15.0" fill="rgb(230,111,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (14 samples, 0.38%)</title><rect x="791.5" y="357" width="4.5" height="15.0" fill="rgb(221,118,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="853.9" y="373" width="0.3" height="15.0" fill="rgb(248,167,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__x64_sys_read (2 samples, 0.05%)</title><rect x="22.9" y="485" width="0.7" height="15.0" fill="rgb(225,116,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>load_elf_binary (4 samples, 0.11%)</title><rect x="1188.7" y="837" width="1.3" height="15.0" fill="rgb(232,157,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="797.0" y="133" width="0.3" height="15.0" fill="rgb(226,49,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (19 samples, 0.52%)</title><rect x="327.0" y="549" width="6.1" height="15.0" fill="rgb(216,151,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="148.8" y="293" width="0.3" height="15.0" fill="rgb(236,46,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (7 samples, 0.19%)</title><rect x="315.0" y="549" width="2.3" height="15.0" fill="rgb(232,18,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (1 samples, 0.03%)</title><rect x="909.2" y="309" width="0.4" height="15.0" fill="rgb(241,163,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="912.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (7 samples, 0.19%)</title><rect x="315.0" y="469" width="2.3" height="15.0" fill="rgb(233,191,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_getType_c089fa6e2575b3188b5b3edc8699b7cfe735f7e9 (32 samples, 0.88%)</title><rect x="1075.5" y="533" width="10.3" height="15.0" fill="rgb(211,125,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Start_match_67d652d01094c802cd56c38c391e280565a19543 (310 samples, 8.50%)</title><rect x="405.9" y="533" width="100.3" height="15.0" fill="rgb(244,140,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern$Star..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (28 samples, 0.77%)</title><rect x="532.1" y="533" width="9.0" height="15.0" fill="rgb(206,87,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="535.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (7 samples, 0.19%)</title><rect x="789.2" y="453" width="2.3" height="15.0" fill="rgb(254,36,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen$$Lambda$7ebf4afa0140691e6a9c9455af91193ee4f07322_apply_028113973362a92133cb0bde56077fdfc245fd13 (101 samples, 2.77%)</title><rect x="116.4" y="597" width="32.7" height="15.0" fill="rgb(232,31,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >To..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="27.5" y="565" width="0.3" height="15.0" fill="rgb(213,107,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_sequence_2132b5c107ceda8ae0a813c4a032cc58bbe6b306 (380 samples, 10.42%)</title><rect x="690.2" y="533" width="123.0" height="15.0" fill="rgb(253,117,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.25" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern_sequenc..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (1 samples, 0.03%)</title><rect x="1169.3" y="565" width="0.3" height="15.0" fill="rgb(207,119,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_constructor_c2d286fcfa03267689adb6f3415a961ff2ff40df (7 samples, 0.19%)</title><rect x="1150.5" y="597" width="2.3" height="15.0" fill="rgb(222,103,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.54" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="315.0" y="277" width="0.4" height="15.0" fill="rgb(246,161,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (4 samples, 0.11%)</title><rect x="1188.7" y="757" width="1.3" height="15.0" fill="rgb(236,164,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="793.1" y="165" width="0.3" height="15.0" fill="rgb(235,178,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.11" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Spliterators_spliterator_d2fa3e802202e6029932ba661c3f0c4a3cb1239f (2 samples, 0.05%)</title><rect x="917.6" y="613" width="0.7" height="15.0" fill="rgb(215,161,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.64" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (2 samples, 0.05%)</title><rect x="789.9" y="133" width="0.6" height="15.0" fill="rgb(205,213,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>page_fault (1 samples, 0.03%)</title><rect x="1188.1" y="917" width="0.3" height="15.0" fill="rgb(235,21,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="668.6" y="229" width="0.3" height="15.0" fill="rgb(244,137,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (6 samples, 0.16%)</title><rect x="910.2" y="469" width="1.9" height="15.0" fill="rgb(236,215,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (47 samples, 1.29%)</title><rect x="1169.6" y="565" width="15.2" height="15.0" fill="rgb(207,94,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.62" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="668.6" y="277" width="0.3" height="15.0" fill="rgb(230,68,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_compile_f246b5df1b4fa757db523ed5bb6bbb7939983d72 (1 samples, 0.03%)</title><rect x="919.3" y="629" width="0.3" height="15.0" fill="rgb(230,148,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="922.26" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (1 samples, 0.03%)</title><rect x="115.8" y="293" width="0.3" height="15.0" fill="rgb(212,131,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_toLowerCase_01eb60eac1b4d1f4686f55c1aa88d0aa78fabafb (4 samples, 0.11%)</title><rect x="117.4" y="581" width="1.3" height="15.0" fill="rgb(225,212,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.39" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (9 samples, 0.25%)</title><rect x="187.6" y="501" width="2.9" height="15.0" fill="rgb(209,117,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (6 samples, 0.16%)</title><rect x="791.5" y="261" width="1.9" height="15.0" fill="rgb(211,154,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (6 samples, 0.16%)</title><rect x="910.2" y="453" width="1.9" height="15.0" fill="rgb(245,151,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (2 samples, 0.05%)</title><rect x="789.2" y="229" width="0.7" height="15.0" fill="rgb(241,145,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="853.9" y="309" width="0.3" height="15.0" fill="rgb(252,76,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_acquire_d7c03c3cee25dd5a735b5a4334799f668f70ef36 (34 samples, 0.93%)</title><rect x="224.1" y="485" width="11.0" height="15.0" fill="rgb(222,193,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="227.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen_lambda$main$0_8e1cbbf886e6a300fd9325dbeb860a65806b34c0 (834 samples, 22.86%)</title><rect x="917.3" y="661" width="269.8" height="15.0" fill="rgb(238,175,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.32" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >TopTen_lambda$main$0_8e1cbbf886e6a30..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (2 samples, 0.05%)</title><rect x="853.3" y="309" width="0.6" height="15.0" fill="rgb(230,23,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.27" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (3 samples, 0.08%)</title><rect x="914.1" y="309" width="1.0" height="15.0" fill="rgb(246,199,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="917.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (1 samples, 0.03%)</title><rect x="147.1" y="533" width="0.4" height="15.0" fill="rgb(253,130,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.15" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (2 samples, 0.05%)</title><rect x="283.3" y="485" width="0.7" height="15.0" fill="rgb(249,198,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (9 samples, 0.25%)</title><rect x="851.0" y="469" width="2.9" height="15.0" fill="rgb(253,141,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.03%)</title><rect x="283.7" y="229" width="0.3" height="15.0" fill="rgb(228,166,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.65" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (3 samples, 0.08%)</title><rect x="908.3" y="325" width="0.9" height="15.0" fill="rgb(236,129,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (5 samples, 0.14%)</title><rect x="796.3" y="469" width="1.7" height="15.0" fill="rgb(239,35,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__handle_mm_fault (1 samples, 0.03%)</title><rect x="854.2" y="485" width="0.4" height="15.0" fill="rgb(246,73,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handle_mm_fault (1 samples, 0.03%)</title><rect x="854.2" y="501" width="0.4" height="15.0" fill="rgb(224,223,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="853.9" y="437" width="0.3" height="15.0" fill="rgb(227,212,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_append_ba324f34b231d9e6f817a317c73bcba1e7d8b0f7 (36 samples, 0.99%)</title><rect x="258.1" y="549" width="11.6" height="15.0" fill="rgb(221,46,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (4 samples, 0.11%)</title><rect x="315.7" y="261" width="1.3" height="15.0" fill="rgb(214,134,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="964.9" y="341" width="0.3" height="15.0" fill="rgb(213,213,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList_listIterator_910b2e934440affb37a998691686b4a988481ca5 (1 samples, 0.03%)</title><rect x="948.4" y="581" width="0.3" height="15.0" fill="rgb(245,136,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="951.37" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="148.8" y="501" width="0.3" height="15.0" fill="rgb(209,213,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>release_pages (1 samples, 0.03%)</title><rect x="1188.4" y="741" width="0.3" height="15.0" fill="rgb(248,19,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lapic_next_deadline (1 samples, 0.03%)</title><rect x="114.8" y="453" width="0.3" height="15.0" fill="rgb(205,133,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (2 samples, 0.05%)</title><rect x="317.3" y="517" width="0.6" height="15.0" fill="rgb(218,68,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="317.3" y="261" width="0.3" height="15.0" fill="rgb(208,102,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (6 samples, 0.16%)</title><rect x="789.2" y="293" width="2.0" height="15.0" fill="rgb(233,56,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (6 samples, 0.16%)</title><rect x="789.2" y="405" width="2.0" height="15.0" fill="rgb(215,78,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (4 samples, 0.11%)</title><rect x="26.2" y="629" width="1.3" height="15.0" fill="rgb(225,55,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.17" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_toLowerCase_46014981866999e5cf0d6abe55dd9236e99cdb3f (94 samples, 2.58%)</title><rect x="118.7" y="581" width="30.4" height="15.0" fill="rgb(240,120,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.68" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >St..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (1 samples, 0.03%)</title><rect x="283.3" y="277" width="0.4" height="15.0" fill="rgb(250,223,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="565.1" y="373" width="0.3" height="15.0" fill="rgb(207,60,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (1 samples, 0.03%)</title><rect x="315.4" y="277" width="0.3" height="15.0" fill="rgb(240,164,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.35" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__x64_sys_exit_group (1 samples, 0.03%)</title><rect x="1188.4" y="901" width="0.3" height="15.0" fill="rgb(216,85,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="27.5" y="533" width="0.3" height="15.0" fill="rgb(238,40,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (3 samples, 0.08%)</title><rect x="913.1" y="309" width="1.0" height="15.0" fill="rgb(251,164,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Node_study_e9bd11168424e80285fd8c61270c4bf0f1f1b67e (1 samples, 0.03%)</title><rect x="922.8" y="565" width="0.3" height="15.0" fill="rgb(251,166,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.82" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="797.0" y="149" width="0.3" height="15.0" fill="rgb(214,48,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="565.1" y="389" width="0.3" height="15.0" fill="rgb(220,82,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="114.8" y="533" width="0.3" height="15.0" fill="rgb(243,203,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_clazz_321ce94c369bdfda234ec042db227d020f370d71 (313 samples, 8.58%)</title><rect x="696.7" y="517" width="101.3" height="15.0" fill="rgb(207,113,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="699.72" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern_claz..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="27.5" y="485" width="0.3" height="15.0" fill="rgb(210,57,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ChannelInputStream_available_8aa89c1f82251121970f406122415b6e6967b338 (2 samples, 0.05%)</title><rect x="21.6" y="597" width="0.7" height="15.0" fill="rgb(252,119,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (5 samples, 0.14%)</title><rect x="1176.7" y="549" width="1.7" height="15.0" fill="rgb(244,78,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1179.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (2 samples, 0.05%)</title><rect x="913.1" y="213" width="0.7" height="15.0" fill="rgb(219,30,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (9 samples, 0.25%)</title><rect x="851.0" y="485" width="2.9" height="15.0" fill="rgb(215,77,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (1 samples, 0.03%)</title><rect x="27.5" y="629" width="0.3" height="15.0" fill="rgb(234,27,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_compile_f246b5df1b4fa757db523ed5bb6bbb7939983d72 (856 samples, 23.46%)</title><rect x="577.7" y="565" width="276.9" height="15.0" fill="rgb(249,76,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern_compile_f246b5df1b4fa757db523..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (13 samples, 0.36%)</title><rect x="294.0" y="533" width="4.2" height="15.0" fill="rgb(245,2,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.03%)</title><rect x="1188.4" y="933" width="0.3" height="15.0" fill="rgb(250,220,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="148.8" y="373" width="0.3" height="15.0" fill="rgb(240,74,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clockevents_program_event (1 samples, 0.03%)</title><rect x="114.8" y="469" width="0.3" height="15.0" fill="rgb(236,156,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="117.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (1 samples, 0.03%)</title><rect x="565.1" y="533" width="0.3" height="15.0" fill="rgb(233,25,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (9 samples, 0.25%)</title><rect x="851.0" y="501" width="2.9" height="15.0" fill="rgb(228,11,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (8 samples, 0.22%)</title><rect x="907.0" y="405" width="2.6" height="15.0" fill="rgb(216,142,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_reset_b9009704486692f77f03a3d4794e59dbc7639d79 (5 samples, 0.14%)</title><rect x="1151.2" y="581" width="1.6" height="15.0" fill="rgb(208,183,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="27.5" y="501" width="0.3" height="15.0" fill="rgb(206,118,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (1 samples, 0.03%)</title><rect x="115.8" y="229" width="0.3" height="15.0" fill="rgb(227,45,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.77" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (14 samples, 0.38%)</title><rect x="735.2" y="501" width="4.5" height="15.0" fill="rgb(254,17,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="738.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Bits_copyToArray_a3a209ee589be04bb91000569e413972682c0f19 (2 samples, 0.05%)</title><rect x="22.3" y="517" width="0.6" height="15.0" fill="rgb(211,18,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (2 samples, 0.05%)</title><rect x="283.3" y="437" width="0.7" height="15.0" fill="rgb(213,62,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (3 samples, 0.08%)</title><rect x="794.4" y="101" width="1.0" height="15.0" fill="rgb(249,91,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.40" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList_grow_744296b32076ac5eef0687e21dd9d109e43160b2 (8 samples, 0.22%)</title><rect x="962.6" y="565" width="2.6" height="15.0" fill="rgb(242,102,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.60" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_constructor_e67f155bf658db2928ce72c8d5822b0f3b99e7d9 (902 samples, 24.73%)</title><rect x="566.0" y="581" width="291.8" height="15.0" fill="rgb(214,30,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.04" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern_constructor_e67f155bf658db2928c..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReduceOps$3ReducingSink_accept_5258d79541381b3f9211dfb1fcddc3eee4cbc10c (1 samples, 0.03%)</title><rect x="40.1" y="613" width="0.3" height="15.0" fill="rgb(254,85,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (14 samples, 0.38%)</title><rect x="791.5" y="341" width="4.5" height="15.0" fill="rgb(235,21,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (5 samples, 0.14%)</title><rect x="796.3" y="485" width="1.7" height="15.0" fill="rgb(218,207,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (1 samples, 0.03%)</title><rect x="797.0" y="101" width="0.3" height="15.0" fill="rgb(217,193,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharacterDataLatin1_getType_5d1d50e0e575b2760e6802ecf90448adc9ce912c (4 samples, 0.11%)</title><rect x="1105.6" y="517" width="1.3" height="15.0" fill="rgb(222,125,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1108.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_guaranteeInProgress_ec915e83e4359f956583f44e5d299c39d09defa4 (1 samples, 0.03%)</title><rect x="908.9" y="101" width="0.3" height="15.0" fill="rgb(216,161,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_setTopCarefully_31285e0a2b39cbe50c3a875b6bd94c4615198fc1 (1 samples, 0.03%)</title><rect x="913.4" y="149" width="0.4" height="15.0" fill="rgb(250,36,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.44" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="27.5" y="581" width="0.3" height="15.0" fill="rgb(219,73,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="908.9" y="213" width="0.3" height="15.0" fill="rgb(237,219,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Spliterators$ArraySpliterator_forEachRemaining_4deba6abc39568c21144523910aa831c3f154c5e (3,640 samples, 99.78%)</title><rect x="10.3" y="773" width="1177.4" height="15.0" fill="rgb(231,224,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Spliterators$ArraySpliterator_forEachRemaining_4deba6abc39568c21144523910aa831c3f154c5e</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointBefore_2fcc425638fb7afe3a41e8200abaa1038d44b1b9 (6 samples, 0.16%)</title><rect x="1022.4" y="549" width="2.0" height="15.0" fill="rgb(252,7,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Start_constructor_6069d78d7de77a36df40c9a8a3386f04ccae5989 (1 samples, 0.03%)</title><rect x="10.0" y="917" width="0.3" height="15.0" fill="rgb(237,100,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (7 samples, 0.19%)</title><rect x="315.0" y="341" width="2.3" height="15.0" fill="rgb(253,14,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (2 samples, 0.05%)</title><rect x="797.3" y="277" width="0.7" height="15.0" fill="rgb(231,63,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.31" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (2 samples, 0.05%)</title><rect x="853.3" y="277" width="0.6" height="15.0" fill="rgb(213,58,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.27" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (6 samples, 0.16%)</title><rect x="910.2" y="517" width="1.9" height="15.0" fill="rgb(213,214,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (9 samples, 0.25%)</title><rect x="145.9" y="549" width="2.9" height="15.0" fill="rgb(238,41,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen_lambda$main$1_ed844126e30b4dbba7e83f3e75b9aac2a1207905 (2 samples, 0.05%)</title><rect x="915.1" y="629" width="0.6" height="15.0" fill="rgb(248,51,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="918.05" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringBuilder_length_1f34cf7527bf54c59334af4eb65228f852827949 (1 samples, 0.03%)</title><rect x="211.2" y="501" width="0.3" height="15.0" fill="rgb(225,228,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="214.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkUnalignedGreyObjects_5bccbda44d4c10173b5d5644cadf7177225dd2b6 (1 samples, 0.03%)</title><rect x="908.9" y="261" width="0.3" height="15.0" fill="rgb(228,41,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (2 samples, 0.05%)</title><rect x="911.2" y="277" width="0.6" height="15.0" fill="rgb(232,217,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="565.1" y="437" width="0.3" height="15.0" fill="rgb(212,191,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.03%)</title><rect x="21.6" y="549" width="0.4" height="15.0" fill="rgb(205,63,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (1 samples, 0.03%)</title><rect x="908.9" y="165" width="0.3" height="15.0" fill="rgb(234,137,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (2 samples, 0.05%)</title><rect x="796.3" y="213" width="0.7" height="15.0" fill="rgb(206,204,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_append_4c60e328533052c4765cba697e2f9c73136b71de (240 samples, 6.58%)</title><rect x="180.5" y="549" width="77.6" height="15.0" fill="rgb(230,178,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="183.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Abstract..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="853.9" y="341" width="0.3" height="15.0" fill="rgb(233,20,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointAt_925b1aed2b2179999cb40208dc01ed0fd51cd8ab (3 samples, 0.08%)</title><rect x="1021.5" y="549" width="0.9" height="15.0" fill="rgb(207,175,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1024.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (1 samples, 0.03%)</title><rect x="908.9" y="229" width="0.3" height="15.0" fill="rgb(236,209,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="115.8" y="245" width="0.3" height="15.0" fill="rgb(243,67,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen$$Lambda$7ebf4afa0140691e6a9c9455af91193ee4f07322_apply_028113973362a92133cb0bde56077fdfc245fd13 (2 samples, 0.05%)</title><rect x="149.1" y="613" width="0.6" height="15.0" fill="rgb(243,218,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.09" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (2 samples, 0.05%)</title><rect x="912.1" y="293" width="0.7" height="15.0" fill="rgb(226,13,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="812.8" y="485" width="0.4" height="15.0" fill="rgb(205,106,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Node_study_e9bd11168424e80285fd8c61270c4bf0f1f1b67e (2 samples, 0.05%)</title><rect x="922.5" y="581" width="0.6" height="15.0" fill="rgb(253,18,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.49" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (6 samples, 0.16%)</title><rect x="910.2" y="357" width="1.9" height="15.0" fill="rgb(206,105,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.03%)</title><rect x="1186.8" y="373" width="0.3" height="15.0" fill="rgb(212,46,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="27.5" y="405" width="0.3" height="15.0" fill="rgb(247,25,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FileChannelImpl_read_16c5dab48f566a213a57717dd6ec3aa0419f1190 (4 samples, 0.11%)</title><rect x="22.3" y="581" width="1.3" height="15.0" fill="rgb(211,26,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="853.9" y="213" width="0.3" height="15.0" fill="rgb(245,211,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>BufferedReader_fill_96c7c069bdb07c217fa1e78604eb6f1cc551ba60 (19 samples, 0.52%)</title><rect x="17.4" y="661" width="6.2" height="15.0" fill="rgb(208,80,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.44" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generic_file_read_iter (2 samples, 0.05%)</title><rect x="22.9" y="389" width="0.7" height="15.0" fill="rgb(246,197,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_charAt_1b771a25b5f8608a29c775fc6ff4199f0d397548 (31 samples, 0.85%)</title><rect x="1065.5" y="517" width="10.0" height="15.0" fill="rgb(216,64,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1068.47" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_sched_do_timer (1 samples, 0.03%)</title><rect x="812.8" y="437" width="0.4" height="15.0" fill="rgb(229,25,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_do_update_jiffies64.part.15 (1 samples, 0.03%)</title><rect x="812.8" y="421" width="0.4" height="15.0" fill="rgb(218,151,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_append_ba324f34b231d9e6f817a317c73bcba1e7d8b0f7 (15 samples, 0.41%)</title><rect x="322.1" y="549" width="4.9" height="15.0" fill="rgb(250,100,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (3 samples, 0.08%)</title><rect x="668.6" y="533" width="0.9" height="15.0" fill="rgb(239,189,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_codePointAt_5373838afb648ee9c3f6219f0a501fd91a2d11ba (1 samples, 0.03%)</title><rect x="925.7" y="597" width="0.4" height="15.0" fill="rgb(224,97,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="928.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (3 samples, 0.08%)</title><rect x="531.1" y="533" width="1.0" height="15.0" fill="rgb(231,152,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="534.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="148.8" y="389" width="0.3" height="15.0" fill="rgb(209,173,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (2 samples, 0.05%)</title><rect x="115.4" y="421" width="0.7" height="15.0" fill="rgb(212,168,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="964.9" y="405" width="0.3" height="15.0" fill="rgb(231,223,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_reset_b9009704486692f77f03a3d4794e59dbc7639d79 (95 samples, 2.60%)</title><rect x="876.2" y="549" width="30.8" height="15.0" fill="rgb(229,96,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="879.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ma..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (6 samples, 0.16%)</title><rect x="789.2" y="373" width="2.0" height="15.0" fill="rgb(239,96,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringBuilder_getChars_0325c2abd0f6e19230217f56b44e49a522717b1d (63 samples, 1.73%)</title><rect x="190.8" y="501" width="20.4" height="15.0" fill="rgb(242,19,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.82" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapByteBuffer_put_b221cfc14fb57761210b1cfe839a48de3db61cce (2 samples, 0.05%)</title><rect x="22.3" y="549" width="0.6" height="15.0" fill="rgb(227,216,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (3 samples, 0.08%)</title><rect x="914.1" y="357" width="1.0" height="15.0" fill="rgb(215,61,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="917.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$7$1_accept_657d04233788f9f0b59edbc61b82dcbf73ca1989 (3,640 samples, 99.78%)</title><rect x="10.3" y="757" width="1177.4" height="15.0" fill="rgb(222,149,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipeline$7$1_accept_657d04233788f9f0b59edbc61b82dcbf73ca1989</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (6 samples, 0.16%)</title><rect x="789.2" y="309" width="2.0" height="15.0" fill="rgb(239,32,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_toLowerCase_01eb60eac1b4d1f4686f55c1aa88d0aa78fabafb (34 samples, 0.93%)</title><rect x="133.9" y="565" width="11.0" height="15.0" fill="rgb(209,223,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="136.89" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (5 samples, 0.14%)</title><rect x="537.2" y="517" width="1.7" height="15.0" fill="rgb(229,181,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.25" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="908.9" y="181" width="0.3" height="15.0" fill="rgb(242,71,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (15 samples, 0.41%)</title><rect x="791.5" y="469" width="4.8" height="15.0" fill="rgb(221,67,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="908.9" y="245" width="0.3" height="15.0" fill="rgb(229,132,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList_ensureCapacityInternal_c695d4002c41d6f90826ebb4dffbe2d0c7082d54 (30 samples, 0.82%)</title><rect x="955.5" y="597" width="9.7" height="15.0" fill="rgb(231,122,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.49" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="964.9" y="261" width="0.3" height="15.0" fill="rgb(238,213,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (2 samples, 0.05%)</title><rect x="797.3" y="245" width="0.7" height="15.0" fill="rgb(245,30,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.31" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen$$Lambda$3b10c7a2f7c6d338f440772c95ba6f0817542440_apply_3307b2698f545a0167fcfacb0a41cfa859613e50 (3 samples, 0.08%)</title><rect x="915.7" y="645" width="1.0" height="15.0" fill="rgb(237,204,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="918.70" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_substring_c83e66efbd7d8e3b7e280667e83636fafaa06780 (2 samples, 0.05%)</title><rect x="1186.1" y="629" width="0.7" height="15.0" fill="rgb(254,61,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.12" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generic_file_buffered_read (2 samples, 0.05%)</title><rect x="22.9" y="373" width="0.7" height="15.0" fill="rgb(237,13,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (1 samples, 0.03%)</title><rect x="797.0" y="229" width="0.3" height="15.0" fill="rgb(227,148,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="668.6" y="213" width="0.3" height="15.0" fill="rgb(241,135,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (5 samples, 0.14%)</title><rect x="315.7" y="309" width="1.6" height="15.0" fill="rgb(232,120,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (1 samples, 0.03%)</title><rect x="797.0" y="181" width="0.3" height="15.0" fill="rgb(207,78,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (37 samples, 1.01%)</title><rect x="298.2" y="533" width="12.0" height="15.0" fill="rgb(221,104,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.21" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (1 samples, 0.03%)</title><rect x="315.4" y="309" width="0.3" height="15.0" fill="rgb(207,124,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.35" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (2 samples, 0.05%)</title><rect x="852.6" y="325" width="0.7" height="15.0" fill="rgb(241,128,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (9 samples, 0.25%)</title><rect x="912.1" y="517" width="3.0" height="15.0" fill="rgb(243,200,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (1 samples, 0.03%)</title><rect x="25.2" y="661" width="0.3" height="15.0" fill="rgb(233,81,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.20" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_split_caf4ac52e4e4053eb463ede299826a343de94e13 (801 samples, 21.96%)</title><rect x="926.1" y="629" width="259.0" height="15.0" fill="rgb(210,10,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="929.05" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern_split_caf4ac52e4e4053eb463..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (2 samples, 0.05%)</title><rect x="316.3" y="197" width="0.7" height="15.0" fill="rgb(223,31,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.32" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (5 samples, 0.14%)</title><rect x="793.8" y="149" width="1.6" height="15.0" fill="rgb(219,213,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.76" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (7 samples, 0.19%)</title><rect x="315.0" y="373" width="2.3" height="15.0" fill="rgb(239,157,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (2 samples, 0.05%)</title><rect x="910.5" y="293" width="0.7" height="15.0" fill="rgb(244,102,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (3 samples, 0.08%)</title><rect x="668.6" y="373" width="0.9" height="15.0" fill="rgb(243,43,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (2 samples, 0.05%)</title><rect x="912.1" y="357" width="0.7" height="15.0" fill="rgb(217,157,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_substring_c83e66efbd7d8e3b7e280667e83636fafaa06780 (97 samples, 2.66%)</title><rect x="1153.8" y="613" width="31.3" height="15.0" fill="rgb(230,203,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1156.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >St..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_equals_951b4dc388763a53473bf39dd2f3d308fc60450a (43 samples, 1.18%)</title><rect x="100.9" y="533" width="13.9" height="15.0" fill="rgb(208,47,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (9 samples, 0.25%)</title><rect x="851.0" y="421" width="2.9" height="15.0" fill="rgb(221,162,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors$$Lambda$340637087fa4286e0452b77c431b9ea00388bbed_accept_8fdd977caa6cf19a4d2f4c229f580ea7194ab321 (1 samples, 0.03%)</title><rect x="41.7" y="597" width="0.3" height="15.0" fill="rgb(233,84,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.70" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline_collect_6b7e8766cae12367c5786a86072e263ea80858f5 (3,641 samples, 99.81%)</title><rect x="10.3" y="853" width="1177.8" height="15.0" fill="rgb(211,213,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipeline_collect_6b7e8766cae12367c5786a86072e263ea80858f5</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (1 samples, 0.03%)</title><rect x="563.8" y="533" width="0.3" height="15.0" fill="rgb(254,20,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (16 samples, 0.44%)</title><rect x="339.0" y="533" width="5.1" height="15.0" fill="rgb(241,92,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.96" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ntp_tick_length (1 samples, 0.03%)</title><rect x="812.8" y="405" width="0.4" height="15.0" fill="rgb(216,23,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (2 samples, 0.05%)</title><rect x="797.3" y="261" width="0.7" height="15.0" fill="rgb(212,12,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.31" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (8 samples, 0.22%)</title><rect x="329.9" y="533" width="2.6" height="15.0" fill="rgb(222,197,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (9 samples, 0.25%)</title><rect x="851.0" y="373" width="2.9" height="15.0" fill="rgb(217,74,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="148.8" y="309" width="0.3" height="15.0" fill="rgb(241,184,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$CharProperty_match_f3acf6ab4c47a0313df6b8c7c655164cd6920023 (240 samples, 6.58%)</title><rect x="428.2" y="517" width="77.7" height="15.0" fill="rgb(222,179,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern$..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__do_page_fault (1 samples, 0.03%)</title><rect x="1188.1" y="885" width="0.3" height="15.0" fill="rgb(235,49,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (2 samples, 0.05%)</title><rect x="317.3" y="437" width="0.6" height="15.0" fill="rgb(239,216,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_scanGreyObjects_9380647133d1708371617609efb3b379e1b582c1 (1 samples, 0.03%)</title><rect x="317.6" y="293" width="0.3" height="15.0" fill="rgb(246,147,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>DiscoverableReferenceProcessing_discoverDiscoverableReference_4fece31134f67490b190262ee46049a45b2948bd (1 samples, 0.03%)</title><rect x="792.8" y="197" width="0.3" height="15.0" fill="rgb(215,23,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.79" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.03%)</title><rect x="790.8" y="229" width="0.4" height="15.0" fill="rgb(243,50,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.84" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (6 samples, 0.16%)</title><rect x="542.4" y="533" width="2.0" height="15.0" fill="rgb(241,162,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Start_constructor_6069d78d7de77a36df40c9a8a3386f04ccae5989 (2 samples, 0.05%)</title><rect x="922.5" y="597" width="0.6" height="15.0" fill="rgb(217,93,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="925.49" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (3 samples, 0.08%)</title><rect x="789.9" y="213" width="0.9" height="15.0" fill="rgb(253,174,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_length_c8bec93b04b501e5e0144a1d586f117cb490caca (1 samples, 0.03%)</title><rect x="345.4" y="549" width="0.4" height="15.0" fill="rgb(226,133,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (3 samples, 0.08%)</title><rect x="548.9" y="533" width="1.0" height="15.0" fill="rgb(225,204,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (2 samples, 0.05%)</title><rect x="797.3" y="213" width="0.7" height="15.0" fill="rgb(237,152,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.31" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.11%)</title><rect x="1188.7" y="901" width="1.3" height="15.0" fill="rgb(212,16,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tick_sched_timer (1 samples, 0.03%)</title><rect x="812.8" y="453" width="0.4" height="15.0" fill="rgb(215,149,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (2 samples, 0.05%)</title><rect x="852.6" y="309" width="0.7" height="15.0" fill="rgb(231,91,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Collectors$$Lambda$340637087fa4286e0452b77c431b9ea00388bbed_accept_8fdd977caa6cf19a4d2f4c229f580ea7194ab321 (228 samples, 6.25%)</title><rect x="42.7" y="581" width="73.7" height="15.0" fill="rgb(249,133,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.67" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Collecto..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (1 samples, 0.03%)</title><rect x="853.9" y="453" width="0.3" height="15.0" fill="rgb(231,67,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (5 samples, 0.14%)</title><rect x="252.6" y="501" width="1.6" height="15.0" fill="rgb(252,204,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="853.9" y="389" width="0.3" height="15.0" fill="rgb(248,77,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FileChannelImpl_position_cdbbedb962c6654dda05c7007e9f29526cde3297 (1 samples, 0.03%)</title><rect x="21.6" y="581" width="0.4" height="15.0" fill="rgb(234,17,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_append_38f706b204d3e7e1e95f04f611d8ba3a360ba2fb (86 samples, 2.36%)</title><rect x="183.7" y="517" width="27.8" height="15.0" fill="rgb(238,67,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="186.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (1 samples, 0.03%)</title><rect x="564.1" y="533" width="0.3" height="15.0" fill="rgb(239,193,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (2 samples, 0.05%)</title><rect x="852.6" y="229" width="0.7" height="15.0" fill="rgb(251,110,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (3 samples, 0.08%)</title><rect x="789.9" y="245" width="0.9" height="15.0" fill="rgb(221,91,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (1 samples, 0.03%)</title><rect x="797.0" y="213" width="0.3" height="15.0" fill="rgb(206,93,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="565.1" y="405" width="0.3" height="15.0" fill="rgb(239,112,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$Head_forEach_0e5b39bce0133541189adfd7b911cbd76e1155ee (2,745 samples, 75.25%)</title><rect x="28.8" y="677" width="887.9" height="15.0" fill="rgb(250,229,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.76" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ReferencePipeline$Head_forEach_0e5b39bce0133541189adfd7b911cbd76e1155ee</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (5 samples, 0.14%)</title><rect x="796.3" y="453" width="1.7" height="15.0" fill="rgb(238,1,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_charAt_1b771a25b5f8608a29c775fc6ff4199f0d397548 (26 samples, 0.71%)</title><rect x="449.6" y="485" width="8.4" height="15.0" fill="rgb(234,51,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.59" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointAt_925b1aed2b2179999cb40208dc01ed0fd51cd8ab (49 samples, 1.34%)</title><rect x="1041.9" y="533" width="15.8" height="15.0" fill="rgb(221,119,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1044.85" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>native_write_msr (4 samples, 0.11%)</title><rect x="1188.7" y="709" width="1.3" height="15.0" fill="rgb(233,121,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (2 samples, 0.05%)</title><rect x="315.0" y="325" width="0.7" height="15.0" fill="rgb(219,173,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>CharacterDataLatin1_toLowerCase_441dae4ae160f6ff92a5c43fe52adfe86ade5d62 (7 samples, 0.19%)</title><rect x="131.6" y="565" width="2.3" height="15.0" fill="rgb(217,118,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="134.62" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_end_a4765dab3391a95a3e5daf783d112fb83deeb88a (7 samples, 0.19%)</title><rect x="966.2" y="613" width="2.2" height="15.0" fill="rgb(245,155,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="969.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReferencePipeline$3$1_accept_fecdf8590fa049286189dcbfbc97685f566e97ce (2 samples, 0.05%)</title><rect x="29.7" y="661" width="0.7" height="15.0" fill="rgb(207,226,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.73" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.03%)</title><rect x="790.8" y="197" width="0.4" height="15.0" fill="rgb(243,137,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.84" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="853.9" y="293" width="0.3" height="15.0" fill="rgb(232,87,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>alloc_pages_vma (1 samples, 0.03%)</title><rect x="854.2" y="453" width="0.4" height="15.0" fill="rgb(206,44,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (6 samples, 0.16%)</title><rect x="910.2" y="485" width="1.9" height="15.0" fill="rgb(210,148,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_next_f017b199c49d51b0e3e34285189eb85cbecbd412 (43 samples, 1.18%)</title><rect x="721.3" y="501" width="13.9" height="15.0" fill="rgb(217,12,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (1 samples, 0.03%)</title><rect x="27.5" y="661" width="0.3" height="15.0" fill="rgb(212,179,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (2 samples, 0.05%)</title><rect x="209.9" y="469" width="0.6" height="15.0" fill="rgb(216,50,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="212.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="853.9" y="405" width="0.3" height="15.0" fill="rgb(242,56,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (5 samples, 0.14%)</title><rect x="796.3" y="405" width="1.7" height="15.0" fill="rgb(215,184,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (6 samples, 0.16%)</title><rect x="793.4" y="261" width="2.0" height="15.0" fill="rgb(220,208,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (2 samples, 0.05%)</title><rect x="115.4" y="533" width="0.7" height="15.0" fill="rgb(209,192,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (2 samples, 0.05%)</title><rect x="795.4" y="245" width="0.6" height="15.0" fill="rgb(237,150,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.37" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="853.9" y="469" width="0.3" height="15.0" fill="rgb(225,108,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_lseek64 (1 samples, 0.03%)</title><rect x="21.6" y="565" width="0.4" height="15.0" fill="rgb(228,10,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>unmap_page_range (1 samples, 0.03%)</title><rect x="1188.4" y="789" width="0.3" height="15.0" fill="rgb(231,227,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList$1_checkForComodification_42a630843010efe68e350e5381c28201c7f8b6f0 (9 samples, 0.25%)</title><rect x="944.8" y="581" width="2.9" height="15.0" fill="rgb(253,170,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="947.81" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="853.9" y="485" width="0.3" height="15.0" fill="rgb(248,77,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (3 samples, 0.08%)</title><rect x="668.6" y="405" width="0.9" height="15.0" fill="rgb(228,227,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (7 samples, 0.19%)</title><rect x="315.0" y="389" width="2.3" height="15.0" fill="rgb(238,147,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (6 samples, 0.16%)</title><rect x="793.4" y="277" width="2.0" height="15.0" fill="rgb(213,72,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ext4_file_read_iter (2 samples, 0.05%)</title><rect x="22.9" y="405" width="0.7" height="15.0" fill="rgb(217,128,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList_subList_312fff93abd3ef28f0f9ea889cb69deb101de136 (2 samples, 0.05%)</title><rect x="965.5" y="613" width="0.7" height="15.0" fill="rgb(220,129,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="148.8" y="325" width="0.3" height="15.0" fill="rgb(205,54,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (6 samples, 0.16%)</title><rect x="791.5" y="277" width="1.9" height="15.0" fill="rgb(212,111,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (3 samples, 0.08%)</title><rect x="311.8" y="533" width="1.0" height="15.0" fill="rgb(236,37,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (6 samples, 0.16%)</title><rect x="793.4" y="229" width="2.0" height="15.0" fill="rgb(225,38,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.43" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_search_0c10827df5aab4190cdb124abc06b05dd2b22628 (482 samples, 13.21%)</title><rect x="350.3" y="549" width="155.9" height="15.0" fill="rgb(213,104,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matcher_search_0c108..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (3,641 samples, 99.81%)</title><rect x="10.3" y="933" width="1177.8" height="15.0" fill="rgb(215,87,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (1 samples, 0.03%)</title><rect x="335.1" y="533" width="0.3" height="15.0" fill="rgb(206,174,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.08" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.03%)</title><rect x="911.8" y="293" width="0.3" height="15.0" fill="rgb(217,117,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_getChars_d72cda86095b651fd277bedb8eb1b9d510c3ef2c (1 samples, 0.03%)</title><rect x="190.5" y="501" width="0.3" height="15.0" fill="rgb(206,45,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen$$Lambda$3b10c7a2f7c6d338f440772c95ba6f0817542440_apply_3307b2698f545a0167fcfacb0a41cfa859613e50 (2,366 samples, 64.86%)</title><rect x="149.7" y="629" width="765.4" height="15.0" fill="rgb(206,209,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.74" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >TopTen$$Lambda$3b10c7a2f7c6d338f440772c95ba6f0817542440_apply_3307b2698f545a0167fcfacb0a41cfa859613e50</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_getType_c089fa6e2575b3188b5b3edc8699b7cfe735f7e9 (3 samples, 0.08%)</title><rect x="1024.4" y="549" width="1.0" height="15.0" fill="rgb(209,125,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.39" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (7 samples, 0.19%)</title><rect x="315.0" y="517" width="2.3" height="15.0" fill="rgb(238,141,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (1 samples, 0.03%)</title><rect x="790.8" y="261" width="0.4" height="15.0" fill="rgb(228,138,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.84" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (2 samples, 0.05%)</title><rect x="852.6" y="261" width="0.7" height="15.0" fill="rgb(234,167,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__libc_read (2 samples, 0.05%)</title><rect x="22.9" y="533" width="0.7" height="15.0" fill="rgb(240,96,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (6 samples, 0.16%)</title><rect x="789.2" y="325" width="2.0" height="15.0" fill="rgb(244,142,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>IOUtil_readIntoNativeBuffer_7dfbf9fc97d821931a41c8c29b14794331d3162a (2 samples, 0.05%)</title><rect x="22.9" y="549" width="0.7" height="15.0" fill="rgb(241,107,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_stream_c380a64ee47190039b19035840e8976db22949d9 (4 samples, 0.11%)</title><rect x="917.6" y="629" width="1.3" height="15.0" fill="rgb(218,133,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="920.64" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkAlignedGreyObjects_ae54e70968e9a0cd6f1b9b28c34aaa1c173cb21f (3 samples, 0.08%)</title><rect x="789.9" y="197" width="0.9" height="15.0" fill="rgb(234,102,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList$1_hasNext_f8ce6f7eab9cacce9c225332f83435699adc55e7 (9 samples, 0.25%)</title><rect x="936.7" y="597" width="2.9" height="15.0" fill="rgb(232,108,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (1 samples, 0.03%)</title><rect x="925.4" y="565" width="0.3" height="15.0" fill="rgb(221,44,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="928.41" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (2 samples, 0.05%)</title><rect x="789.2" y="197" width="0.7" height="15.0" fill="rgb(227,123,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (3 samples, 0.08%)</title><rect x="851.7" y="277" width="0.9" height="15.0" fill="rgb(223,60,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.66" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="148.8" y="405" width="0.3" height="15.0" fill="rgb(209,59,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StreamDecoder_read_ba5735676ed042400d863865dd82d947069052dd (19 samples, 0.52%)</title><rect x="17.4" y="645" width="6.2" height="15.0" fill="rgb(247,124,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.44" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (2 samples, 0.05%)</title><rect x="797.3" y="229" width="0.7" height="15.0" fill="rgb(225,111,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.31" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FileChannelImpl_size_e566b509fae1154d5c5a014ae379d21d455919a7 (1 samples, 0.03%)</title><rect x="22.0" y="581" width="0.3" height="15.0" fill="rgb(224,18,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.97" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$LastNode_match_fbd14354d044cf085b88b1f3466e0d6fc1d601dd (7 samples, 0.19%)</title><rect x="502.6" y="501" width="2.3" height="15.0" fill="rgb(235,79,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.64" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.03%)</title><rect x="790.8" y="213" width="0.4" height="15.0" fill="rgb(217,39,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (1 samples, 0.03%)</title><rect x="964.9" y="437" width="0.3" height="15.0" fill="rgb(248,109,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (2 samples, 0.05%)</title><rect x="913.1" y="229" width="0.7" height="15.0" fill="rgb(211,135,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (9 samples, 0.25%)</title><rect x="851.0" y="389" width="2.9" height="15.0" fill="rgb(227,183,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (5 samples, 0.14%)</title><rect x="23.6" y="661" width="1.6" height="15.0" fill="rgb(241,136,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.59" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$1_isSatisfiedBy_d5d5ba8f3bb1674c12fc434a0b37787f7377ddd6 (4 samples, 0.11%)</title><rect x="458.0" y="501" width="1.3" height="15.0" fill="rgb(229,67,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (3 samples, 0.08%)</title><rect x="913.1" y="341" width="1.0" height="15.0" fill="rgb(210,137,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (1 samples, 0.03%)</title><rect x="793.1" y="149" width="0.3" height="15.0" fill="rgb(209,120,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.11" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_atom_f96d3d22a0018a4cbaf75caee139bce80cf61440 (3 samples, 0.08%)</title><rect x="923.8" y="565" width="1.0" height="15.0" fill="rgb(219,119,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (6 samples, 0.16%)</title><rect x="789.2" y="437" width="2.0" height="15.0" fill="rgb(223,81,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (1 samples, 0.03%)</title><rect x="21.6" y="533" width="0.4" height="15.0" fill="rgb(254,92,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (5 samples, 0.14%)</title><rect x="796.3" y="437" width="1.7" height="15.0" fill="rgb(215,77,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyToBlackObjectVisitor_visitObjectInline_08c79226301f9600420d8830c9bd246e6418622c (2 samples, 0.05%)</title><rect x="668.9" y="213" width="0.6" height="15.0" fill="rgb(231,135,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HashMap_computeIfAbsent_d7d0e32dcf1a4642c16f383456069356328aed27 (1 samples, 0.03%)</title><rect x="116.1" y="565" width="0.3" height="15.0" fill="rgb(251,194,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="964.9" y="485" width="0.3" height="15.0" fill="rgb(214,98,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (7 samples, 0.19%)</title><rect x="315.0" y="405" width="2.3" height="15.0" fill="rgb(210,134,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractPipeline_copyInto_91ee8753a81af61776cf12fce00fe4f88a05d25f (3,640 samples, 99.78%)</title><rect x="10.3" y="789" width="1177.4" height="15.0" fill="rgb(231,53,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >AbstractPipeline_copyInto_91ee8753a81af61776cf12fce00fe4f88a05d25f</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__x64_sys_execve (4 samples, 0.11%)</title><rect x="1188.7" y="885" width="1.3" height="15.0" fill="rgb(232,93,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="148.8" y="421" width="0.3" height="15.0" fill="rgb(236,88,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>copy_page_to_iter (2 samples, 0.05%)</title><rect x="22.9" y="357" width="0.7" height="15.0" fill="rgb(232,111,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (6 samples, 0.16%)</title><rect x="789.2" y="389" width="2.0" height="15.0" fill="rgb(217,65,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__hrtimer_run_queues (1 samples, 0.03%)</title><rect x="405.6" y="469" width="0.3" height="15.0" fill="rgb(250,9,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObjectUnchecked_9a7f92db6eb61a306f8dfb4fef880d45e882df1c (1 samples, 0.03%)</title><rect x="910.8" y="149" width="0.4" height="15.0" fill="rgb(227,70,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (3 samples, 0.08%)</title><rect x="270.1" y="549" width="0.9" height="15.0" fill="rgb(210,130,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (1 samples, 0.03%)</title><rect x="27.5" y="645" width="0.3" height="15.0" fill="rgb(242,182,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (6 samples, 0.16%)</title><rect x="910.2" y="421" width="1.9" height="15.0" fill="rgb(250,100,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (2 samples, 0.05%)</title><rect x="283.3" y="309" width="0.7" height="15.0" fill="rgb(225,216,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.03%)</title><rect x="564.7" y="501" width="0.4" height="15.0" fill="rgb(208,83,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (2 samples, 0.05%)</title><rect x="317.3" y="357" width="0.6" height="15.0" fill="rgb(214,177,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>setup_new_exec (4 samples, 0.11%)</title><rect x="1188.7" y="821" width="1.3" height="15.0" fill="rgb(253,184,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (1 samples, 0.03%)</title><rect x="1186.8" y="613" width="0.3" height="15.0" fill="rgb(209,22,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (2 samples, 0.05%)</title><rect x="796.3" y="277" width="0.7" height="15.0" fill="rgb(235,101,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (1 samples, 0.03%)</title><rect x="345.8" y="549" width="0.3" height="15.0" fill="rgb(215,214,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all.constprop.19 (4 samples, 0.11%)</title><rect x="1188.7" y="725" width="1.3" height="15.0" fill="rgb(238,131,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (27 samples, 0.74%)</title><rect x="301.4" y="501" width="8.8" height="15.0" fill="rgb(221,183,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_closure_23fa6889790db85e033cefc58e4f6437cf45914f (2 samples, 0.05%)</title><rect x="924.8" y="565" width="0.6" height="15.0" fill="rgb(241,179,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="927.76" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (17 samples, 0.47%)</title><rect x="215.1" y="501" width="5.5" height="15.0" fill="rgb(215,119,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (3 samples, 0.08%)</title><rect x="913.1" y="277" width="1.0" height="15.0" fill="rgb(211,99,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.11" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (5 samples, 0.14%)</title><rect x="315.7" y="277" width="1.6" height="15.0" fill="rgb(214,95,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList_ensureExplicitCapacity_d603072d961ae21b525ed036175257d690882433 (22 samples, 0.60%)</title><rect x="958.1" y="581" width="7.1" height="15.0" fill="rgb(217,16,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.08" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (2 samples, 0.05%)</title><rect x="283.3" y="469" width="0.7" height="15.0" fill="rgb(254,128,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (38 samples, 1.04%)</title><rect x="333.1" y="549" width="12.3" height="15.0" fill="rgb(231,10,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Bound_isWord_a9564a6e598609a23bd7bfc280b5de3c8e9e56d5 (174 samples, 4.77%)</title><rect x="1085.8" y="533" width="56.3" height="15.0" fill="rgb(211,64,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Patte..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (1 samples, 0.03%)</title><rect x="910.8" y="213" width="0.4" height="15.0" fill="rgb(205,45,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="669.2" y="181" width="0.3" height="15.0" fill="rgb(237,206,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.22" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (7 samples, 0.19%)</title><rect x="315.0" y="437" width="2.3" height="15.0" fill="rgb(218,202,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (1 samples, 0.03%)</title><rect x="797.0" y="117" width="0.3" height="15.0" fill="rgb(233,123,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="564.7" y="373" width="0.4" height="15.0" fill="rgb(229,163,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (5 samples, 0.14%)</title><rect x="796.3" y="309" width="1.7" height="15.0" fill="rgb(243,169,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="853.9" y="277" width="0.3" height="15.0" fill="rgb(251,166,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (1 samples, 0.03%)</title><rect x="1186.8" y="565" width="0.3" height="15.0" fill="rgb(221,39,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (2 samples, 0.05%)</title><rect x="317.3" y="373" width="0.6" height="15.0" fill="rgb(209,33,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (1 samples, 0.03%)</title><rect x="797.0" y="277" width="0.3" height="15.0" fill="rgb(243,122,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (2 samples, 0.05%)</title><rect x="317.3" y="421" width="0.6" height="15.0" fill="rgb(227,151,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_getNextObject_80c03830ac0417f578ab5abe81f48ace0b9aa5e1 (1 samples, 0.03%)</title><rect x="913.8" y="261" width="0.3" height="15.0" fill="rgb(241,104,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="916.76" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="148.8" y="341" width="0.3" height="15.0" fill="rgb(217,177,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (15 samples, 0.41%)</title><rect x="800.5" y="501" width="4.9" height="15.0" fill="rgb(236,151,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (14 samples, 0.38%)</title><rect x="791.5" y="325" width="4.5" height="15.0" fill="rgb(229,71,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (6 samples, 0.16%)</title><rect x="910.2" y="501" width="1.9" height="15.0" fill="rgb(220,18,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_reset_b9009704486692f77f03a3d4794e59dbc7639d79 (55 samples, 1.51%)</title><rect x="506.8" y="565" width="17.8" height="15.0" fill="rgb(213,100,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.84" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="1186.8" y="421" width="0.3" height="15.0" fill="rgb(224,150,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (9 samples, 0.25%)</title><rect x="912.1" y="469" width="3.0" height="15.0" fill="rgb(239,44,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (1 samples, 0.03%)</title><rect x="964.9" y="389" width="0.3" height="15.0" fill="rgb(226,216,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (1 samples, 0.03%)</title><rect x="313.4" y="549" width="0.3" height="15.0" fill="rgb(225,124,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="564.7" y="405" width="0.4" height="15.0" fill="rgb(231,87,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (8 samples, 0.22%)</title><rect x="907.0" y="469" width="2.6" height="15.0" fill="rgb(215,59,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_RemoveQEQuoting_b661a87408b4c67d21b70297b9aaa9d4d1445a40 (2 samples, 0.05%)</title><rect x="577.0" y="565" width="0.7" height="15.0" fill="rgb(231,106,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.03" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_appendTail_09820fd1add7dbcc2e1b4e224de43adad5baecbf (85 samples, 2.33%)</title><rect x="319.2" y="565" width="27.5" height="15.0" fill="rgb(239,203,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="322.23" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >M..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__x64_sys_lseek (1 samples, 0.03%)</title><rect x="21.6" y="517" width="0.4" height="15.0" fill="rgb(215,0,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (4 samples, 0.11%)</title><rect x="912.8" y="357" width="1.3" height="15.0" fill="rgb(225,44,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (1 samples, 0.03%)</title><rect x="292.4" y="533" width="0.3" height="15.0" fill="rgb(245,26,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (6 samples, 0.16%)</title><rect x="910.2" y="437" width="1.9" height="15.0" fill="rgb(246,91,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="668.6" y="309" width="0.3" height="15.0" fill="rgb(228,50,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (6 samples, 0.16%)</title><rect x="791.5" y="229" width="1.9" height="15.0" fill="rgb(232,83,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (3 samples, 0.08%)</title><rect x="851.7" y="261" width="0.9" height="15.0" fill="rgb(226,226,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.66" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StreamDecoder_implRead_7eab66a9a3d4e5a1a3dd2962e25ae1b5559640f4 (19 samples, 0.52%)</title><rect x="17.4" y="629" width="6.2" height="15.0" fill="rgb(250,37,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.44" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf (4 samples, 0.11%)</title><rect x="1188.7" y="949" width="1.3" height="15.0" fill="rgb(216,121,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (4 samples, 0.11%)</title><rect x="907.0" y="325" width="1.3" height="15.0" fill="rgb(247,85,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Start_match_67d652d01094c802cd56c38c391e280565a19543 (475 samples, 13.02%)</title><rect x="995.6" y="581" width="153.6" height="15.0" fill="rgb(221,126,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="998.60" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern$Start_match..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObject_cdadaeb2aedde0039aeb872eba0bfa3905293adb (1 samples, 0.03%)</title><rect x="910.8" y="165" width="0.4" height="15.0" fill="rgb(223,78,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (5 samples, 0.14%)</title><rect x="310.2" y="533" width="1.6" height="15.0" fill="rgb(220,99,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (2 samples, 0.05%)</title><rect x="283.3" y="453" width="0.7" height="15.0" fill="rgb(222,135,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (8 samples, 0.22%)</title><rect x="907.0" y="533" width="2.6" height="15.0" fill="rgb(205,99,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (4 samples, 0.11%)</title><rect x="317.9" y="549" width="1.3" height="15.0" fill="rgb(248,181,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.94" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Node_study_e9bd11168424e80285fd8c61270c4bf0f1f1b67e (11 samples, 0.30%)</title><rect x="665.0" y="517" width="3.6" height="15.0" fill="rgb(249,128,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.02" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (1 samples, 0.03%)</title><rect x="564.7" y="549" width="0.4" height="15.0" fill="rgb(221,91,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (7 samples, 0.19%)</title><rect x="315.0" y="533" width="2.3" height="15.0" fill="rgb(242,18,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_guaranteeInProgress_ec915e83e4359f956583f44e5d299c39d09defa4 (1 samples, 0.03%)</title><rect x="797.0" y="85" width="0.3" height="15.0" fill="rgb(243,137,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.99" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="27.5" y="469" width="0.3" height="15.0" fill="rgb(228,178,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (2 samples, 0.05%)</title><rect x="851.0" y="309" width="0.7" height="15.0" fill="rgb(211,134,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_expr_623b819a431b3e32ea2ae8019ba7a7ae8b0f964e (8 samples, 0.22%)</title><rect x="923.1" y="597" width="2.6" height="15.0" fill="rgb(247,109,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>IOUtil_read_aa5391339857793a688af3cba4a5a3b501991616 (4 samples, 0.11%)</title><rect x="22.3" y="565" width="1.3" height="15.0" fill="rgb(221,115,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$7_isSatisfiedBy_1278c1ff449c5d01c78537d29f9daa342c667adc (129 samples, 3.54%)</title><rect x="459.3" y="501" width="41.7" height="15.0" fill="rgb(223,151,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pat..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (15 samples, 0.41%)</title><rect x="791.5" y="501" width="4.8" height="15.0" fill="rgb(231,70,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_charAt_1b771a25b5f8608a29c775fc6ff4199f0d397548 (3 samples, 0.08%)</title><rect x="1185.1" y="629" width="1.0" height="15.0" fill="rgb(236,75,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.15" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StringBuilder_getChars_0325c2abd0f6e19230217f56b44e49a522717b1d (2 samples, 0.05%)</title><rect x="255.8" y="517" width="0.7" height="15.0" fill="rgb(244,108,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (2 samples, 0.05%)</title><rect x="668.9" y="229" width="0.6" height="15.0" fill="rgb(224,84,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.90" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (1 samples, 0.03%)</title><rect x="669.2" y="149" width="0.3" height="15.0" fill="rgb(250,87,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.22" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="564.7" y="421" width="0.4" height="15.0" fill="rgb(235,118,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_constructor_bea7661f4e328798935339561607b4a139be1527 (3 samples, 0.08%)</title><rect x="1152.8" y="613" width="1.0" height="15.0" fill="rgb(252,188,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.80" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="317.0" y="197" width="0.3" height="15.0" fill="rgb(237,167,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointAtImpl_a4f81db2e7c782f27f6c523473278f8fa06afdca (7 samples, 0.19%)</title><rect x="653.7" y="549" width="2.3" height="15.0" fill="rgb(253,210,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="656.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__do_execve_file.isra.41 (4 samples, 0.11%)</title><rect x="1188.7" y="869" width="1.3" height="15.0" fill="rgb(245,139,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.71" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="317.0" y="181" width="0.3" height="15.0" fill="rgb(237,207,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.97" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (2 samples, 0.05%)</title><rect x="910.5" y="309" width="0.7" height="15.0" fill="rgb(216,10,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.53" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_constructor_bea7661f4e328798935339561607b4a139be1527 (12 samples, 0.33%)</title><rect x="144.9" y="565" width="3.9" height="15.0" fill="rgb(252,103,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.88" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="315.0" y="261" width="0.4" height="15.0" fill="rgb(237,61,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>UTF_8$Decoder_decodeLoop_104d7423699fc2331d1f0f7bc298d287a0474bce (11 samples, 0.30%)</title><rect x="18.1" y="597" width="3.5" height="15.0" fill="rgb(244,204,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.09" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[perf-7712.map] (1 samples, 0.03%)</title><rect x="10.0" y="933" width="0.3" height="15.0" fill="rgb(214,119,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_promoteAlignedObject_ca0b4a3b455f12bfd204b440dc7553de5b2ecb56 (3 samples, 0.08%)</title><rect x="794.4" y="117" width="1.0" height="15.0" fill="rgb(218,171,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="797.40" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_peek_8fae8b3f8b360bff6a4d9a659c4960370361f212 (1 samples, 0.03%)</title><rect x="925.1" y="549" width="0.3" height="15.0" fill="rgb(239,33,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="928.08" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointBefore_2fcc425638fb7afe3a41e8200abaa1038d44b1b9 (55 samples, 1.51%)</title><rect x="1057.7" y="533" width="17.8" height="15.0" fill="rgb(243,156,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$CharProperty$1_isSatisfiedBy_efb59adb8544824d9218bb905ae6baab030e01d4 (5 samples, 0.14%)</title><rect x="501.0" y="501" width="1.6" height="15.0" fill="rgb(226,56,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (44 samples, 1.21%)</title><rect x="195.7" y="469" width="14.2" height="15.0" fill="rgb(226,29,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Unsafe_copyMemory_51822eab434c65a624c4ff22dca0ffa75b399081 (2 samples, 0.05%)</title><rect x="22.3" y="501" width="0.6" height="15.0" fill="rgb(244,74,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$Bound_match_e589e74c9334c37bda0029809e1a41e00ddc5380 (437 samples, 11.98%)</title><rect x="1007.2" y="565" width="141.4" height="15.0" fill="rgb(228,165,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1010.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Pattern$Bound_mat..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_shouldPromoteFrom_ec9ee6bd795808ebe9e365ff0f0d53ad206afd72 (1 samples, 0.03%)</title><rect x="668.6" y="197" width="0.3" height="15.0" fill="rgb(221,193,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$CharProperty_study_da65fd1e5bf68787526c15ccaa79fce272bbaf18 (24 samples, 0.66%)</title><rect x="660.8" y="533" width="7.8" height="15.0" fill="rgb(238,7,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="663.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handle_pte_fault (1 samples, 0.03%)</title><rect x="1188.1" y="837" width="0.3" height="15.0" fill="rgb(243,145,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="852.9" y="197" width="0.4" height="15.0" fill="rgb(240,162,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.95" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_walkDirtyObjects_bd0854fd7cdc69d037ab129b9f9bb2bea3bae5ab (1 samples, 0.03%)</title><rect x="315.0" y="293" width="0.4" height="15.0" fill="rgb(242,32,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.03" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (2 samples, 0.05%)</title><rect x="283.3" y="373" width="0.7" height="15.0" fill="rgb(228,128,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>TopTen$$Lambda$06682aee951e0e3ae2baa6a58ccece9786705f33_apply_a54400ef332977f08da8fcd97ee016099c89cd1d (836 samples, 22.92%)</title><rect x="916.7" y="677" width="270.4" height="15.0" fill="rgb(233,149,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="919.67" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >TopTen$$Lambda$06682aee951e0e3ae2baa..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (1 samples, 0.03%)</title><rect x="910.2" y="325" width="0.3" height="15.0" fill="rgb(225,20,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList$1_next_fbf3ceef5926076832d445f1d3b72d1439aaea75 (25 samples, 0.69%)</title><rect x="939.6" y="597" width="8.1" height="15.0" fill="rgb(218,106,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.64" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (2 samples, 0.05%)</title><rect x="317.3" y="469" width="0.6" height="15.0" fill="rgb(220,0,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (1 samples, 0.03%)</title><rect x="148.8" y="565" width="0.3" height="15.0" fill="rgb(214,189,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (26 samples, 0.71%)</title><rect x="243.9" y="485" width="8.4" height="15.0" fill="rgb(223,112,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractStringBuilder_getChars_d72cda86095b651fd277bedb8eb1b9d510c3ef2c (53 samples, 1.45%)</title><rect x="193.4" y="485" width="17.1" height="15.0" fill="rgb(214,110,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>unmap_vmas (1 samples, 0.03%)</title><rect x="1188.4" y="821" width="0.3" height="15.0" fill="rgb(241,223,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>BufferedReader_readLine_49482cc1adbe362e9d219262c390fbc755737e48 (54 samples, 1.48%)</title><rect x="10.6" y="677" width="17.5" height="15.0" fill="rgb(205,202,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.65" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (2 samples, 0.05%)</title><rect x="256.5" y="517" width="0.6" height="15.0" fill="rgb(210,187,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractCollection_toArray_692dab980791bf27a2d12ab58aeb9bb03699969b (55 samples, 1.51%)</title><rect x="930.9" y="613" width="17.8" height="15.0" fill="rgb(244,135,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.90" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exit_mmap (1 samples, 0.03%)</title><rect x="1188.4" y="837" width="0.3" height="15.0" fill="rgb(241,80,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (9 samples, 0.25%)</title><rect x="912.1" y="565" width="3.0" height="15.0" fill="rgb(217,96,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>free_pages_and_swap_cache (1 samples, 0.03%)</title><rect x="1188.4" y="757" width="0.3" height="15.0" fill="rgb(227,141,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (3 samples, 0.08%)</title><rect x="194.7" y="469" width="1.0" height="15.0" fill="rgb(210,68,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (4 samples, 0.11%)</title><rect x="315.7" y="245" width="1.3" height="15.0" fill="rgb(218,222,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.67" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenDirtyCardRoots_6b97e8a2916ead0eca88433874cbdd65f0952b64 (1 samples, 0.03%)</title><rect x="565.1" y="325" width="0.3" height="15.0" fill="rgb(241,173,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (9 samples, 0.25%)</title><rect x="851.0" y="341" width="2.9" height="15.0" fill="rgb(249,89,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (12 samples, 0.33%)</title><rect x="339.6" y="517" width="3.9" height="15.0" fill="rgb(209,126,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.61" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (1 samples, 0.03%)</title><rect x="911.8" y="341" width="0.3" height="15.0" fill="rgb(247,54,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.82" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$CharProperty$1_isSatisfiedBy_efb59adb8544824d9218bb905ae6baab030e01d4 (35 samples, 0.96%)</title><rect x="489.7" y="485" width="11.3" height="15.0" fill="rgb(245,152,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (1 samples, 0.03%)</title><rect x="1186.8" y="453" width="0.3" height="15.0" fill="rgb(241,205,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="565.1" y="357" width="0.3" height="15.0" fill="rgb(242,67,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (6 samples, 0.16%)</title><rect x="328.0" y="533" width="1.9" height="15.0" fill="rgb(254,173,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_constructor_c2d286fcfa03267689adb6f3415a961ff2ff40df (137 samples, 3.76%)</title><rect x="865.2" y="565" width="44.4" height="15.0" fill="rgb(215,21,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="868.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matc..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (3 samples, 0.08%)</title><rect x="789.9" y="181" width="0.9" height="15.0" fill="rgb(233,111,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Spliterators$IteratorSpliterator_forEachRemaining_25ebaadb0ea0c0407ee7c00f6080d2806129b0f3 (3,640 samples, 99.78%)</title><rect x="10.3" y="725" width="1177.4" height="15.0" fill="rgb(228,48,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Spliterators$IteratorSpliterator_forEachRemaining_25ebaadb0ea0c0407ee7c00f6080d2806129b0f3</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (2 samples, 0.05%)</title><rect x="115.4" y="341" width="0.7" height="15.0" fill="rgb(234,91,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (2 samples, 0.05%)</title><rect x="908.6" y="309" width="0.6" height="15.0" fill="rgb(254,216,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.59" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>FirstObjectTable_setTableForObject_cdadaeb2aedde0039aeb872eba0bfa3905293adb (1 samples, 0.03%)</title><rect x="908.9" y="117" width="0.3" height="15.0" fill="rgb(222,158,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="911.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (8 samples, 0.22%)</title><rect x="907.0" y="341" width="2.6" height="15.0" fill="rgb(220,64,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (13 samples, 0.36%)</title><rect x="205.7" y="453" width="4.2" height="15.0" fill="rgb(235,195,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="208.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>update_wall_time (1 samples, 0.03%)</title><rect x="405.6" y="405" width="0.3" height="15.0" fill="rgb(232,156,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_find_1aca8c086d661e66944650ab589b8263eb835778 (559 samples, 15.32%)</title><rect x="968.4" y="613" width="180.8" height="15.0" fill="rgb(215,121,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="971.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matcher_find_1aca8c086d..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (3 samples, 0.08%)</title><rect x="257.1" y="517" width="1.0" height="15.0" fill="rgb(231,30,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="260.13" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_start_0e3ed0a68daf096aecdcb217743272f467795d1f (2 samples, 0.05%)</title><rect x="1149.2" y="613" width="0.7" height="15.0" fill="rgb(237,39,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.24" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (3 samples, 0.08%)</title><rect x="668.6" y="453" width="0.9" height="15.0" fill="rgb(245,79,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_start (1 samples, 0.03%)</title><rect x="1188.1" y="933" width="0.3" height="15.0" fill="rgb(211,13,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.06" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_appendReplacement_4754459a0ba8668f15ebf8a85596bcd80cba0fc2 (1 samples, 0.03%)</title><rect x="164.9" y="581" width="0.4" height="15.0" fill="rgb(250,173,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__vfs_read (2 samples, 0.05%)</title><rect x="22.9" y="437" width="0.7" height="15.0" fill="rgb(237,165,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (2 samples, 0.05%)</title><rect x="283.3" y="341" width="0.7" height="15.0" fill="rgb(210,28,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="796.7" y="165" width="0.3" height="15.0" fill="rgb(221,3,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.67" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (14 samples, 0.38%)</title><rect x="791.5" y="293" width="4.5" height="15.0" fill="rgb(212,115,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="148.8" y="485" width="0.3" height="15.0" fill="rgb(213,34,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_blackenBootImageRoots_24e89bc1a981a61b82fc17623018104eda2d9ac5 (1 samples, 0.03%)</title><rect x="912.8" y="341" width="0.3" height="15.0" fill="rgb(239,128,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GreyObjectsWalker_walkGreyObjects_6b18a023e22f5abfc8d60cb4df2f9240d1c9dc93 (1 samples, 0.03%)</title><rect x="317.6" y="277" width="0.3" height="15.0" fill="rgb(222,74,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.62" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_pauseRecurringCallback_9a49a6d78c702794d1d73ba0e683e55367e15630 (3 samples, 0.08%)</title><rect x="344.1" y="533" width="1.0" height="15.0" fill="rgb(241,24,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_guaranteeInProgress_ec915e83e4359f956583f44e5d299c39d09defa4 (1 samples, 0.03%)</title><rect x="789.9" y="37" width="0.3" height="15.0" fill="rgb(248,21,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.87" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_getType_c089fa6e2575b3188b5b3edc8699b7cfe735f7e9 (109 samples, 2.99%)</title><rect x="1106.9" y="517" width="35.2" height="15.0" fill="rgb(252,188,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Ch..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (1 samples, 0.03%)</title><rect x="283.3" y="293" width="0.4" height="15.0" fill="rgb(218,56,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (1 samples, 0.03%)</title><rect x="17.1" y="629" width="0.3" height="15.0" fill="rgb(226,38,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.12" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointAt_925b1aed2b2179999cb40208dc01ed0fd51cd8ab (45 samples, 1.23%)</title><rect x="443.4" y="501" width="14.6" height="15.0" fill="rgb(250,29,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (2 samples, 0.05%)</title><rect x="115.4" y="549" width="0.7" height="15.0" fill="rgb(217,70,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__do_page_fault (1 samples, 0.03%)</title><rect x="854.2" y="517" width="0.4" height="15.0" fill="rgb(227,218,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (2 samples, 0.05%)</title><rect x="115.4" y="389" width="0.7" height="15.0" fill="rgb(240,142,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (3 samples, 0.08%)</title><rect x="254.2" y="501" width="1.0" height="15.0" fill="rgb(227,84,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (14 samples, 0.38%)</title><rect x="791.5" y="373" width="4.5" height="15.0" fill="rgb(227,137,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.49" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scanGreyObjects_b6184fda1e0688be00c2a935385a6a19647b993a (2 samples, 0.05%)</title><rect x="911.2" y="325" width="0.6" height="15.0" fill="rgb(213,193,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (3 samples, 0.08%)</title><rect x="907.3" y="277" width="1.0" height="15.0" fill="rgb(239,35,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (9 samples, 0.25%)</title><rect x="912.1" y="453" width="3.0" height="15.0" fill="rgb(236,107,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="910.8" y="229" width="0.4" height="15.0" fill="rgb(211,160,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.85" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArrayList$SubList_iterator_baba26f8d03ab6ae7f0d0f0d87ca8396755d5212 (3 samples, 0.08%)</title><rect x="947.7" y="597" width="1.0" height="15.0" fill="rgb(222,210,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.72" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (2 samples, 0.05%)</title><rect x="525.0" y="565" width="0.6" height="15.0" fill="rgb(237,189,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.96" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_search_0c10827df5aab4190cdb124abc06b05dd2b22628 (545 samples, 14.94%)</title><rect x="973.0" y="597" width="176.2" height="15.0" fill="rgb(214,88,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="975.96" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Matcher_search_0c10827..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (77 samples, 2.11%)</title><rect x="212.8" y="517" width="24.9" height="15.0" fill="rgb(247,224,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="215.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >M..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>DiscoverableReferenceProcessing_discoverDiscoverableReference_4fece31134f67490b190262ee46049a45b2948bd (1 samples, 0.03%)</title><rect x="852.6" y="213" width="0.3" height="15.0" fill="rgb(253,117,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="855.63" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern$7_isSatisfiedBy_1278c1ff449c5d01c78537d29f9daa342c667adc (7 samples, 0.19%)</title><rect x="426.0" y="517" width="2.2" height="15.0" fill="rgb(221,53,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="428.98" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (2 samples, 0.05%)</title><rect x="317.3" y="549" width="0.6" height="15.0" fill="rgb(217,177,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (1 samples, 0.03%)</title><rect x="27.5" y="453" width="0.3" height="15.0" fill="rgb(234,220,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.47" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (38 samples, 1.04%)</title><rect x="529.2" y="549" width="12.3" height="15.0" fill="rgb(232,14,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (67 samples, 1.84%)</title><rect x="271.0" y="549" width="21.7" height="15.0" fill="rgb(228,66,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.04" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >M..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (3 samples, 0.08%)</title><rect x="26.5" y="613" width="1.0" height="15.0" fill="rgb(206,70,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.50" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (8 samples, 0.22%)</title><rect x="907.0" y="421" width="2.6" height="15.0" fill="rgb(215,185,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="909.97" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (3 samples, 0.08%)</title><rect x="147.8" y="517" width="1.0" height="15.0" fill="rgb(236,95,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractPipeline_evaluate_389edd195b2d46ee587e9fcb116b415d779c4b83 (3,640 samples, 99.78%)</title><rect x="10.3" y="837" width="1177.4" height="15.0" fill="rgb(248,17,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.32" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >AbstractPipeline_evaluate_389edd195b2d46ee587e9fcb116b415d779c4b83</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_allocateNewInstance_fccc4eaff3b488423f6a1c57599c084fa3ead850 (1 samples, 0.03%)</title><rect x="853.9" y="517" width="0.3" height="15.0" fill="rgb(215,217,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (1 samples, 0.03%)</title><rect x="148.8" y="549" width="0.3" height="15.0" fill="rgb(206,123,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="151.77" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="316.0" y="197" width="0.3" height="15.0" fill="rgb(249,116,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.00" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteObject_868ae033b0f47dbc4665cbabd28d5a7d0bfd6b6a (1 samples, 0.03%)</title><rect x="853.9" y="229" width="0.3" height="15.0" fill="rgb(244,77,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="317.3" y="277" width="0.3" height="15.0" fill="rgb(234,195,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_allocateMemory_a3354663a92077d9ee8f859e6d17c4bbfcdb880f (1 samples, 0.03%)</title><rect x="669.2" y="117" width="0.3" height="15.0" fill="rgb(229,7,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="672.22" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AlignedHeapChunk_walkDirtyObjectsOfAlignedHeapChunk_a3a0c9968644050c73ac772edd9c4e9656a0f27f (1 samples, 0.03%)</title><rect x="853.9" y="261" width="0.3" height="15.0" fill="rgb(249,199,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstanceWithoutAllocating_2a741bd92d084c8262ef7f396300919cfd945338 (2 samples, 0.05%)</title><rect x="283.3" y="501" width="0.7" height="15.0" fill="rgb(224,156,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (43 samples, 1.18%)</title><rect x="550.5" y="549" width="13.9" height="15.0" fill="rgb(221,221,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_closure_23fa6889790db85e033cefc58e4f6437cf45914f (23 samples, 0.63%)</title><rect x="798.0" y="517" width="7.4" height="15.0" fill="rgb(209,91,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.96" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_replaceAll_dc53e05ad8ab64f4b182f5d257c5b18a85f02886 (4 samples, 0.11%)</title><rect x="152.3" y="613" width="1.3" height="15.0" fill="rgb(235,144,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="155.32" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Pattern_escape_d5be899e127f55373bbb7e1e6a7f130eb9dbbac0 (2 samples, 0.05%)</title><rect x="923.8" y="549" width="0.6" height="15.0" fill="rgb(237,134,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="926.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_page_fault (1 samples, 0.03%)</title><rect x="854.2" y="533" width="0.4" height="15.0" fill="rgb(218,50,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="857.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (9 samples, 0.25%)</title><rect x="912.1" y="533" width="3.0" height="15.0" fill="rgb(242,87,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (1 samples, 0.03%)</title><rect x="564.4" y="549" width="0.3" height="15.0" fill="rgb(243,25,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_codePointAt_5373838afb648ee9c3f6219f0a501fd91a2d11ba (114 samples, 3.12%)</title><rect x="814.1" y="549" width="36.9" height="15.0" fill="rgb(234,166,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="817.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Str..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (30 samples, 0.82%)</title><rect x="242.9" y="501" width="9.7" height="15.0" fill="rgb(243,178,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.89" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_copyAlignedObject_d7891d8a99bfb98b789c1e3e8204582e0467ac4a (1 samples, 0.03%)</title><rect x="793.1" y="133" width="0.3" height="15.0" fill="rgb(220,215,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.11" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="964.9" y="277" width="0.3" height="15.0" fill="rgb(218,223,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (1 samples, 0.03%)</title><rect x="1186.8" y="405" width="0.3" height="15.0" fill="rgb(205,139,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="1186.8" y="437" width="0.3" height="15.0" fill="rgb(214,91,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (9 samples, 0.25%)</title><rect x="912.1" y="373" width="3.0" height="15.0" fill="rgb(209,69,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>OldGeneration_promoteAlignedObject_948e1a63143c7806fd5ca1d5d15de005c353c70a (1 samples, 0.03%)</title><rect x="907.9" y="213" width="0.4" height="15.0" fill="rgb(214,92,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="910.94" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (6 samples, 0.16%)</title><rect x="910.2" y="565" width="1.9" height="15.0" fill="rgb(216,99,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="913.20" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Character_codePointAtImpl_a4f81db2e7c782f27f6c523473278f8fa06afdca (38 samples, 1.04%)</title><rect x="838.7" y="533" width="12.3" height="15.0" fill="rgb(206,131,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="841.72" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (9 samples, 0.25%)</title><rect x="912.1" y="501" width="3.0" height="15.0" fill="rgb(230,104,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="915.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (1 samples, 0.03%)</title><rect x="551.5" y="533" width="0.3" height="15.0" fill="rgb(226,1,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (2 samples, 0.05%)</title><rect x="115.4" y="357" width="0.7" height="15.0" fill="rgb(228,61,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (1 samples, 0.03%)</title><rect x="565.1" y="421" width="0.3" height="15.0" fill="rgb(243,39,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.07" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewInstance_7225fed192cef1941e2b8bbafb4575b44188308a (2 samples, 0.05%)</title><rect x="283.3" y="517" width="0.7" height="15.0" fill="rgb(219,19,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Space_walkDirtyObjects_502fb5109ac1c1148a29f8fe0fd0cf6f73e27960 (1 samples, 0.03%)</title><rect x="668.6" y="261" width="0.3" height="15.0" fill="rgb(212,0,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vfs_read (2 samples, 0.05%)</title><rect x="22.9" y="453" width="0.7" height="15.0" fill="rgb(251,140,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.94" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>StreamDecoder_readBytes_98adb4eb86b2bf3f94f8a75e4518dc82f9160dd9 (4 samples, 0.11%)</title><rect x="22.3" y="613" width="1.3" height="15.0" fill="rgb(232,110,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.29" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (17 samples, 0.47%)</title><rect x="284.0" y="533" width="5.5" height="15.0" fill="rgb(217,27,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (1 samples, 0.03%)</title><rect x="964.9" y="469" width="0.3" height="15.0" fill="rgb(225,142,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (1 samples, 0.03%)</title><rect x="853.9" y="421" width="0.3" height="15.0" fill="rgb(231,172,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (3 samples, 0.08%)</title><rect x="914.1" y="293" width="1.0" height="15.0" fill="rgb(250,45,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="917.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (1 samples, 0.03%)</title><rect x="853.9" y="357" width="0.3" height="15.0" fill="rgb(251,173,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="856.92" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__hrtimer_run_queues (1 samples, 0.03%)</title><rect x="812.8" y="469" width="0.4" height="15.0" fill="rgb(229,59,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapChunk_walkObjectsFrom_231d14fbb443af0b9a7da71f22813112552eea00 (1 samples, 0.03%)</title><rect x="317.0" y="245" width="0.3" height="15.0" fill="rgb(208,72,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.97" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HeapImpl_promoteObject_f5338bf7ff9f4bd0d258d4a518f2b5b285fd59fc (1 samples, 0.03%)</title><rect x="793.1" y="197" width="0.3" height="15.0" fill="rgb(240,47,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.11" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromRoots_02fdc07687b04990522d42191c41890e9ae45333 (2 samples, 0.05%)</title><rect x="911.2" y="341" width="0.6" height="15.0" fill="rgb(233,45,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="914.17" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>String_length_c8bec93b04b501e5e0144a1d586f117cb490caca (5 samples, 0.14%)</title><rect x="268.1" y="533" width="1.6" height="15.0" fill="rgb(215,45,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.12" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ksys_lseek (1 samples, 0.03%)</title><rect x="21.6" y="501" width="0.4" height="15.0" fill="rgb(210,86,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.64" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (3 samples, 0.08%)</title><rect x="668.6" y="357" width="0.9" height="15.0" fill="rgb(225,219,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.57" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (9 samples, 0.25%)</title><rect x="851.0" y="437" width="2.9" height="15.0" fill="rgb(242,156,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="854.01" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (5 samples, 0.14%)</title><rect x="796.3" y="373" width="1.7" height="15.0" fill="rgb(239,95,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.34" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (2 samples, 0.05%)</title><rect x="317.3" y="405" width="0.6" height="15.0" fill="rgb(206,114,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (6 samples, 0.16%)</title><rect x="789.2" y="341" width="2.0" height="15.0" fill="rgb(213,162,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Matcher_replaceAll_6f968cebcf5769de46065a88895558752eb6b739 (1 samples, 0.03%)</title><rect x="156.2" y="597" width="0.3" height="15.0" fill="rgb(227,200,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.21" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (4 samples, 0.11%)</title><rect x="147.5" y="533" width="1.3" height="15.0" fill="rgb(252,26,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.03%)</title><rect x="964.9" y="325" width="0.3" height="15.0" fill="rgb(216,174,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (1 samples, 0.03%)</title><rect x="964.9" y="549" width="0.3" height="15.0" fill="rgb(244,4,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mmput (1 samples, 0.03%)</title><rect x="1188.4" y="853" width="0.3" height="15.0" fill="rgb(242,181,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.38" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment