|
<?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="802" onload="init(evt)" viewBox="0 0 1200 802" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> |
|
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> |
|
<defs > |
|
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > |
|
<stop stop-color="#eeeeee" offset="5%" /> |
|
<stop stop-color="#eeeeb0" offset="95%" /> |
|
</linearGradient> |
|
</defs> |
|
<style type="text/css"> |
|
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } |
|
</style> |
|
<script type="text/ecmascript"> |
|
<![CDATA[ |
|
var details, searchbtn, matchedtxt, svg; |
|
function init(evt) { |
|
details = document.getElementById("details").firstChild; |
|
searchbtn = document.getElementById("search"); |
|
matchedtxt = document.getElementById("matched"); |
|
svg = document.getElementsByTagName("svg")[0]; |
|
searching = 0; |
|
} |
|
|
|
// mouse-over for info |
|
function s(node) { // show |
|
info = g_to_text(node); |
|
details.nodeValue = "Function: " + info; |
|
} |
|
function c() { // clear |
|
details.nodeValue = ' '; |
|
} |
|
|
|
// ctrl-F for search |
|
window.addEventListener("keydown",function (e) { |
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { |
|
e.preventDefault(); |
|
search_prompt(); |
|
} |
|
}) |
|
|
|
// functions |
|
function find_child(parent, name, attr) { |
|
var children = parent.childNodes; |
|
for (var i=0; i<children.length;i++) { |
|
if (children[i].tagName == name) |
|
return (attr != undefined) ? children[i].attributes[attr].value : children[i]; |
|
} |
|
return; |
|
} |
|
function orig_save(e, attr, val) { |
|
if (e.attributes["_orig_"+attr] != undefined) return; |
|
if (e.attributes[attr] == undefined) return; |
|
if (val == undefined) val = e.attributes[attr].value; |
|
e.setAttribute("_orig_"+attr, val); |
|
} |
|
function orig_load(e, attr) { |
|
if (e.attributes["_orig_"+attr] == undefined) return; |
|
e.attributes[attr].value = e.attributes["_orig_"+attr].value; |
|
e.removeAttribute("_orig_"+attr); |
|
} |
|
function g_to_text(e) { |
|
var text = find_child(e, "title").firstChild.nodeValue; |
|
return (text) |
|
} |
|
function g_to_func(e) { |
|
var func = g_to_text(e); |
|
if (func != null) |
|
func = func.replace(/ .*/, ""); |
|
return (func); |
|
} |
|
function update_text(e) { |
|
var r = find_child(e, "rect"); |
|
var t = find_child(e, "text"); |
|
var w = parseFloat(r.attributes["width"].value) -3; |
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); |
|
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; |
|
|
|
// Smaller than this size won't fit anything |
|
if (w < 2*12*0.59) { |
|
t.textContent = ""; |
|
return; |
|
} |
|
|
|
t.textContent = txt; |
|
// Fit in full text width |
|
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) |
|
return; |
|
|
|
for (var x=txt.length-2; x>0; x--) { |
|
if (t.getSubStringLength(0, x+2) <= w) { |
|
t.textContent = txt.substring(0,x) + ".."; |
|
return; |
|
} |
|
} |
|
t.textContent = ""; |
|
} |
|
|
|
// zoom |
|
function zoom_reset(e) { |
|
if (e.attributes != undefined) { |
|
orig_load(e, "x"); |
|
orig_load(e, "width"); |
|
} |
|
if (e.childNodes == undefined) return; |
|
for(var i=0, c=e.childNodes; i<c.length; i++) { |
|
zoom_reset(c[i]); |
|
} |
|
} |
|
function zoom_child(e, x, ratio) { |
|
if (e.attributes != undefined) { |
|
if (e.attributes["x"] != undefined) { |
|
orig_save(e, "x"); |
|
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; |
|
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; |
|
} |
|
if (e.attributes["width"] != undefined) { |
|
orig_save(e, "width"); |
|
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; |
|
} |
|
} |
|
|
|
if (e.childNodes == undefined) return; |
|
for(var i=0, c=e.childNodes; i<c.length; i++) { |
|
zoom_child(c[i], x-10, ratio); |
|
} |
|
} |
|
function zoom_parent(e) { |
|
if (e.attributes) { |
|
if (e.attributes["x"] != undefined) { |
|
orig_save(e, "x"); |
|
e.attributes["x"].value = 10; |
|
} |
|
if (e.attributes["width"] != undefined) { |
|
orig_save(e, "width"); |
|
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); |
|
} |
|
} |
|
if (e.childNodes == undefined) return; |
|
for(var i=0, c=e.childNodes; i<c.length; i++) { |
|
zoom_parent(c[i]); |
|
} |
|
} |
|
function zoom(node) { |
|
var attr = find_child(node, "rect").attributes; |
|
var width = parseFloat(attr["width"].value); |
|
var xmin = parseFloat(attr["x"].value); |
|
var xmax = parseFloat(xmin + width); |
|
var ymin = parseFloat(attr["y"].value); |
|
var ratio = (svg.width.baseVal.value - 2*10) / width; |
|
|
|
// XXX: Workaround for JavaScript float issues (fix me) |
|
var fudge = 0.0001; |
|
|
|
var unzoombtn = document.getElementById("unzoom"); |
|
unzoombtn.style["opacity"] = "1.0"; |
|
|
|
var el = document.getElementsByTagName("g"); |
|
for(var i=0;i<el.length;i++){ |
|
var e = el[i]; |
|
var a = find_child(e, "rect").attributes; |
|
var ex = parseFloat(a["x"].value); |
|
var ew = parseFloat(a["width"].value); |
|
// Is it an ancestor |
|
if (0 == 0) { |
|
var upstack = parseFloat(a["y"].value) > ymin; |
|
} else { |
|
var upstack = parseFloat(a["y"].value) < ymin; |
|
} |
|
if (upstack) { |
|
// Direct ancestor |
|
if (ex <= xmin && (ex+ew+fudge) >= xmax) { |
|
e.style["opacity"] = "0.5"; |
|
zoom_parent(e); |
|
e.onclick = function(e){unzoom(); zoom(this);}; |
|
update_text(e); |
|
} |
|
// not in current path |
|
else |
|
e.style["display"] = "none"; |
|
} |
|
// Children maybe |
|
else { |
|
// no common path |
|
if (ex < xmin || ex + fudge >= xmax) { |
|
e.style["display"] = "none"; |
|
} |
|
else { |
|
zoom_child(e, xmin, ratio); |
|
e.onclick = function(e){zoom(this);}; |
|
update_text(e); |
|
} |
|
} |
|
} |
|
} |
|
function unzoom() { |
|
var unzoombtn = document.getElementById("unzoom"); |
|
unzoombtn.style["opacity"] = "0.0"; |
|
|
|
var el = document.getElementsByTagName("g"); |
|
for(i=0;i<el.length;i++) { |
|
el[i].style["display"] = "block"; |
|
el[i].style["opacity"] = "1"; |
|
zoom_reset(el[i]); |
|
update_text(el[i]); |
|
} |
|
} |
|
|
|
// search |
|
function reset_search() { |
|
var el = document.getElementsByTagName("rect"); |
|
for (var i=0; i < el.length; i++) { |
|
orig_load(el[i], "fill") |
|
} |
|
} |
|
function search_prompt() { |
|
if (!searching) { |
|
var term = prompt("Enter a search term (regexp " + |
|
"allowed, eg: ^ext4_)", ""); |
|
if (term != null) { |
|
search(term) |
|
} |
|
} else { |
|
reset_search(); |
|
searching = 0; |
|
searchbtn.style["opacity"] = "0.1"; |
|
searchbtn.firstChild.nodeValue = "Search" |
|
matchedtxt.style["opacity"] = "0.0"; |
|
matchedtxt.firstChild.nodeValue = "" |
|
} |
|
} |
|
function search(term) { |
|
var re = new RegExp(term); |
|
var el = document.getElementsByTagName("g"); |
|
var matches = new Object(); |
|
var maxwidth = 0; |
|
for (var i = 0; i < el.length; i++) { |
|
var e = el[i]; |
|
if (e.attributes["class"].value != "func_g") |
|
continue; |
|
var func = g_to_func(e); |
|
var rect = find_child(e, "rect"); |
|
if (rect == null) { |
|
// the rect might be wrapped in an anchor |
|
// if nameattr href is being used |
|
if (rect = find_child(e, "a")) { |
|
rect = find_child(r, "rect"); |
|
} |
|
} |
|
if (func == null || rect == null) |
|
continue; |
|
|
|
// Save max width. Only works as we have a root frame |
|
var w = parseFloat(rect.attributes["width"].value); |
|
if (w > maxwidth) |
|
maxwidth = w; |
|
|
|
if (func.match(re)) { |
|
// highlight |
|
var x = parseFloat(rect.attributes["x"].value); |
|
orig_save(rect, "fill"); |
|
rect.attributes["fill"].value = |
|
"rgb(230,0,230)"; |
|
|
|
// remember matches |
|
if (matches[x] == undefined) { |
|
matches[x] = w; |
|
} else { |
|
if (w > matches[x]) { |
|
// overwrite with parent |
|
matches[x] = w; |
|
} |
|
} |
|
searching = 1; |
|
} |
|
} |
|
if (!searching) |
|
return; |
|
|
|
searchbtn.style["opacity"] = "1.0"; |
|
searchbtn.firstChild.nodeValue = "Reset Search" |
|
|
|
// calculate percent matched, excluding vertical overlap |
|
var count = 0; |
|
var lastx = -1; |
|
var lastw = 0; |
|
var keys = Array(); |
|
for (k in matches) { |
|
if (matches.hasOwnProperty(k)) |
|
keys.push(k); |
|
} |
|
// sort the matched frames by their x location |
|
// ascending, then width descending |
|
keys.sort(function(a, b){ |
|
return a - b; |
|
if (a < b || a > b) |
|
return a - b; |
|
return matches[b] - matches[a]; |
|
}); |
|
// Step through frames saving only the biggest bottom-up frames |
|
// thanks to the sort order. This relies on the tree property |
|
// where children are always smaller than their parents. |
|
for (var k in keys) { |
|
var x = parseFloat(keys[k]); |
|
var w = matches[keys[k]]; |
|
if (x >= lastx + lastw) { |
|
count += w; |
|
lastx = x; |
|
lastw = w; |
|
} |
|
} |
|
// display matched percent |
|
matchedtxt.style["opacity"] = "1.0"; |
|
pct = 100 * count / maxwidth; |
|
if (pct == 100) |
|
pct = "100" |
|
else |
|
pct = pct.toFixed(1) |
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; |
|
} |
|
function searchover(e) { |
|
searchbtn.style["opacity"] = "1.0"; |
|
} |
|
function searchout(e) { |
|
if (searching) { |
|
searchbtn.style["opacity"] = "1.0"; |
|
} else { |
|
searchbtn.style["opacity"] = "0.1"; |
|
} |
|
} |
|
]]> |
|
</script> |
|
<rect x="0.0" y="0" width="1200.0" height="802.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="785" 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="785" 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>scala/collection/immutable/List:::foreach (2,325 samples, 70.37%)</title><rect x="329.3" y="273" width="830.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="332.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >scala/collection/immutable/List:::foreach</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_irq_event (1 samples, 0.03%)</title><rect x="1024.3" y="177" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (16 samples, 0.48%)</title><rect x="1169.6" y="513" width="5.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.64" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (5 samples, 0.15%)</title><rect x="97.1" y="673" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="513" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>preempt_schedule (4 samples, 0.12%)</title><rect x="13.2" y="545" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="13.2" y="513" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="823.9" y="209" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>rcu_nmi_exit (1 samples, 0.03%)</title><rect x="1188.2" y="449" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (13 samples, 0.39%)</title><rect x="92.5" y="705" width="4.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="83.9" y="465" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>wake_up_q (4 samples, 0.12%)</title><rect x="13.2" y="609" width="1.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (245 samples, 7.42%)</title><rect x="11.4" y="721" width="87.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="731.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>finish_task_switch (16 samples, 0.48%)</title><rect x="1169.6" y="529" width="5.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.64" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__handle_irq_event_percpu (1 samples, 0.03%)</title><rect x="743.9" y="129" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1161.1" y="145" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="577" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="616.1" y="225" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="10.0" y="593" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="10.0" y="577" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="10.0" y="689" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (5 samples, 0.15%)</title><rect x="97.1" y="593" width="1.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="98.6" y="561" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="11.4" y="689" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_nmi (8 samples, 0.24%)</title><rect x="17.1" y="481" width="2.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="20.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="91.1" y="513" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="617.1" y="81" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1158.2" y="145" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pick_next_task_fair (1 samples, 0.03%)</title><rect x="96.8" y="577" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> |
|
<text text-anchor="" x="99.79" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (20 samples, 0.61%)</title><rect x="83.9" y="705" width="7.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (16 samples, 0.48%)</title><rect x="85.4" y="641" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (191 samples, 5.78%)</title><rect x="15.7" y="673" width="68.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_S..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="16.4" y="513" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.43" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1188.6" y="577" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,902 samples, 87.83%)</title><rect x="127.5" y="369" width="1036.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1161.1" y="113" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="125.7" y="561" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1188.6" y="657" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_irq_event_percpu (1 samples, 0.03%)</title><rect x="743.9" y="145" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/String:::getChars (27 samples, 0.82%)</title><rect x="250.7" y="273" width="9.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="253.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="91.1" y="497" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (3 samples, 0.09%)</title><rect x="14.6" y="657" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="17.64" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="97.1" y="497" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1167.1" y="513" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>org/http4s/bench/generated/HeaderStringsBench_szb_jmhTest:::szb_avgt_jmhStub (2,889 samples, 87.44%)</title><rect x="127.9" y="289" width="1031.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org/http4s/bench/generated/HeaderStringsBench_szb_jmhTest:::szb_avgt_jmhStub</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="11.4" y="497" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (5 samples, 0.15%)</title><rect x="97.1" y="609" width="1.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1167.1" y="641" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sched_clock (1 samples, 0.03%)</title><rect x="618.2" y="81" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="621.21" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="417" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>wake_up_process (1 samples, 0.03%)</title><rect x="823.9" y="129" width="0.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="83.9" y="673" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="11.4" y="449" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="83.9" y="561" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="11.4" y="529" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (17 samples, 0.51%)</title><rect x="1169.3" y="561" width="6.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1167.1" y="561" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (140 samples, 4.24%)</title><rect x="30.4" y="481" width="50.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >nativ..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="617.1" y="113" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>local_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="823.9" y="193" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="11.4" y="465" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1188.6" y="465" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_arraycopy (13 samples, 0.39%)</title><rect x="308.9" y="273" width="4.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="311.93" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="83.9" y="609" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1161.1" y="289" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="1158.2" y="209" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>enqueue_task_fair (1 samples, 0.03%)</title><rect x="15.4" y="561" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.36" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="717.9" y="161" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="720.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (5 samples, 0.15%)</title><rect x="97.1" y="705" width="1.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>call_function_single_interrupt (4 samples, 0.12%)</title><rect x="617.1" y="257" width="1.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (191 samples, 5.78%)</title><rect x="15.7" y="593" width="68.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (2 samples, 0.06%)</title><rect x="85.7" y="481" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (13 samples, 0.39%)</title><rect x="92.5" y="641" width="4.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (18 samples, 0.54%)</title><rect x="1169.3" y="609" width="6.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="15.4" y="609" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.36" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (4 samples, 0.12%)</title><rect x="1169.6" y="449" width="1.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.64" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>call_stub (2,902 samples, 87.83%)</title><rect x="127.5" y="321" width="1036.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (191 samples, 5.78%)</title><rect x="15.7" y="625" width="68.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1158.2" y="113" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>retint_user (4 samples, 0.12%)</title><rect x="1158.2" y="257" width="1.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/Object:::<init> (126 samples, 3.81%)</title><rect x="205.7" y="273" width="45.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="208.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1165.4" y="641" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="1188.6" y="545" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="433" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (8 samples, 0.24%)</title><rect x="326.4" y="209" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="1188.6" y="609" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>preempt_schedule_common (4 samples, 0.12%)</title><rect x="13.2" y="529" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/util/Arrays:::copyOfRange (210 samples, 6.36%)</title><rect x="949.6" y="257" width="75.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="952.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/uti..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (16 samples, 0.48%)</title><rect x="85.4" y="625" width="5.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (16 samples, 0.48%)</title><rect x="1169.6" y="497" width="5.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.64" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1188.9" y="449" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.93" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>dequeue_task_fair (1 samples, 0.03%)</title><rect x="1169.3" y="513" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (12 samples, 0.36%)</title><rect x="86.4" y="481" width="4.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="89.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="91.1" y="577" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>_IO_vsnprintf (4 samples, 0.12%)</title><rect x="91.1" y="705" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="125.7" y="449" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ahci_scr_read (1 samples, 0.03%)</title><rect x="743.9" y="33" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1167.1" y="577" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_disjoint_arraycopy (66 samples, 2.00%)</title><rect x="1000.7" y="241" width="23.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="11.4" y="609" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="10.0" y="657" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="717.9" y="193" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="720.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ahci_handle_port_interrupt (1 samples, 0.03%)</title><rect x="743.9" y="81" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wake (1 samples, 0.03%)</title><rect x="127.1" y="497" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.24%)</title><rect x="326.4" y="273" width="2.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (1 samples, 0.03%)</title><rect x="127.1" y="529" width="0.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>activate_task (1 samples, 0.03%)</title><rect x="15.4" y="577" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.36" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_irq_event_percpu (1 samples, 0.03%)</title><rect x="1024.3" y="161" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1165.7" y="545" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_sched_yield (4 samples, 0.12%)</title><rect x="1167.1" y="625" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (188 samples, 5.69%)</title><rect x="16.8" y="529" width="67.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.79" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pm..</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="98.6" y="545" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="617.1" y="129" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__handle_irq_event_percpu (1 samples, 0.03%)</title><rect x="1024.3" y="145" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1165.7" y="497" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="91.4" y="481" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (18 samples, 0.54%)</title><rect x="1169.3" y="625" width="6.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ahci_handle_port_intr (1 samples, 0.03%)</title><rect x="743.9" y="97" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>activate_task (1 samples, 0.03%)</title><rect x="1168.9" y="545" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (16 samples, 0.48%)</title><rect x="85.4" y="577" width="5.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="10.0" y="513" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (4 samples, 0.12%)</title><rect x="11.4" y="673" width="1.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wake (4 samples, 0.12%)</title><rect x="13.2" y="625" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1165.7" y="513" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (352 samples, 10.65%)</title><rect x="618.6" y="257" width="125.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="621.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/lang/Abstr..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="125.7" y="353" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1165.7" y="561" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1163.9" y="497" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__rcu_read_unlock (1 samples, 0.03%)</title><rect x="1168.6" y="561" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="10.0" y="625" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>enqueue_entity (1 samples, 0.03%)</title><rect x="15.4" y="545" width="0.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.36" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="1158.2" y="193" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>_new_array_nozero_Java (2 samples, 0.06%)</title><rect x="616.1" y="257" width="0.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/util/Arrays:::copyOf (339 samples, 10.26%)</title><rect x="828.6" y="257" width="121.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="831.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/util/Array..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>___preempt_schedule (4 samples, 0.12%)</title><rect x="13.2" y="561" width="1.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="465" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1188.6" y="513" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,926 samples, 88.56%)</title><rect x="120.4" y="641" width="1045.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="123.36" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="91.1" y="609" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,902 samples, 87.83%)</title><rect x="127.5" y="337" width="1036.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="497" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (6 samples, 0.18%)</title><rect x="327.1" y="65" width="2.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="330.14" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_disjoint_arraycopy (243 samples, 7.35%)</title><rect x="1066.8" y="257" width="86.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1069.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jshort_dis..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="616.1" y="209" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="83.9" y="577" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__rcu_read_unlock (1 samples, 0.03%)</title><rect x="1188.6" y="449" width="0.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="1163.9" y="577" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (191 samples, 5.78%)</title><rect x="15.7" y="641" width="68.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (13 samples, 0.39%)</title><rect x="92.5" y="593" width="4.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>hrtimer_interrupt (1 samples, 0.03%)</title><rect x="823.9" y="177" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (36 samples, 1.09%)</title><rect x="1175.7" y="657" width="12.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="823.9" y="225" width="0.4" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1188.6" y="529" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (3,055 samples, 92.46%)</title><rect x="98.9" y="689" width="1091.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.93" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="717.9" y="225" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="720.86" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_disjoint_arraycopy (85 samples, 2.57%)</title><rect x="793.9" y="241" width="30.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="796.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >js..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="125.7" y="385" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>irq_exit (1 samples, 0.03%)</title><rect x="1165.4" y="609" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>dequeue_entity (1 samples, 0.03%)</title><rect x="1169.3" y="497" width="0.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1161.1" y="81" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="616.1" y="145" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (13 samples, 0.39%)</title><rect x="92.5" y="673" width="4.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="1167.1" y="609" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="91.1" y="641" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (13 samples, 0.39%)</title><rect x="92.5" y="689" width="4.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (2 samples, 0.06%)</title><rect x="1168.6" y="625" width="0.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="98.6" y="465" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1158.6" y="97" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.57" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="449" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="1165.4" y="545" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1166.1" y="481" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1169.07" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/AbstractStringBuilder:::ensureCapacityInternal (24 samples, 0.73%)</title><rect x="192.5" y="273" width="8.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="195.50" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (36 samples, 1.09%)</title><rect x="1175.7" y="545" width="12.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="125.0" y="545" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>call_stub (2,906 samples, 87.95%)</title><rect x="127.5" y="593" width="1037.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ret_from_intr (1 samples, 0.03%)</title><rect x="1024.3" y="241" width="0.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (3 samples, 0.09%)</title><rect x="14.6" y="641" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="17.64" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="10.0" y="497" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_arraycopy (32 samples, 0.97%)</title><rect x="1055.4" y="257" width="11.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.36" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (21 samples, 0.64%)</title><rect x="22.9" y="481" width="7.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="25.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (8 samples, 0.24%)</title><rect x="326.4" y="113" width="2.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="92.9" y="497" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="13.2" y="433" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (8 samples, 0.24%)</title><rect x="326.4" y="161" width="2.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_arraycopy (12 samples, 0.36%)</title><rect x="789.6" y="241" width="4.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="792.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="11.4" y="417" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>rcu_nmi_exit (3 samples, 0.09%)</title><rect x="82.9" y="481" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="85.86" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="83.9" y="513" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1188.6" y="497" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1161.1" y="161" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="11.4" y="593" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sata_async_notification (1 samples, 0.03%)</title><rect x="743.9" y="65" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>i8042_interrupt (1 samples, 0.03%)</title><rect x="1024.3" y="129" width="0.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="1188.6" y="625" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>enqueue_entity (1 samples, 0.03%)</title><rect x="1168.9" y="513" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.93" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (16 samples, 0.48%)</title><rect x="85.4" y="497" width="5.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1163.9" y="369" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>JVM_InvokeMethod (2,902 samples, 87.83%)</title><rect x="127.5" y="385" width="1036.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JVM_InvokeMethod</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (5 samples, 0.15%)</title><rect x="12.9" y="673" width="1.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="15.86" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (1 samples, 0.03%)</title><rect x="127.1" y="513" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="10.0" y="529" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (6 samples, 0.18%)</title><rect x="1176.4" y="449" width="2.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1179.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="1163.9" y="513" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__hrtimer_run_queues (1 samples, 0.03%)</title><rect x="823.9" y="161" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>generic_smp_call_function_single_interrupt (4 samples, 0.12%)</title><rect x="617.1" y="225" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1158.2" y="161" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (16 samples, 0.48%)</title><rect x="85.4" y="673" width="5.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="1188.6" y="561" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="617.1" y="97" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="10.0" y="673" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>irq_exit (1 samples, 0.03%)</title><rect x="98.6" y="529" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="616.8" y="241" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="91.1" y="593" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="1188.6" y="593" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1163.9" y="385" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__do_softirq (1 samples, 0.03%)</title><rect x="1165.4" y="593" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="616.1" y="177" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="91.1" y="625" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="83.9" y="481" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>event_function (4 samples, 0.12%)</title><rect x="617.1" y="177" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_out (1 samples, 0.03%)</title><rect x="16.1" y="561" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="11.4" y="513" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="125.7" y="545" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="91.1" y="673" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (188 samples, 5.69%)</title><rect x="16.8" y="513" width="67.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.79" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_pmu..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (16 samples, 0.48%)</title><rect x="85.4" y="513" width="5.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="1176.1" y="449" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1179.07" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (8 samples, 0.24%)</title><rect x="326.4" y="177" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>org/openjdk/jmh/infra/Blackhole:::consume (2 samples, 0.06%)</title><rect x="325.7" y="273" width="0.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="328.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (16 samples, 0.48%)</title><rect x="85.4" y="545" width="5.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (191 samples, 5.78%)</title><rect x="15.7" y="689" width="68.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>irq_exit (1 samples, 0.03%)</title><rect x="616.8" y="225" width="0.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="717.9" y="177" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="720.86" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (188 samples, 5.69%)</title><rect x="16.8" y="497" width="67.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_p..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>nmi_restore (1 samples, 0.03%)</title><rect x="12.5" y="417" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="15.50" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_irq (1 samples, 0.03%)</title><rect x="743.9" y="193" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>enqueue_task_rt (1 samples, 0.03%)</title><rect x="823.9" y="65" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="1161.1" y="193" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (188 samples, 5.69%)</title><rect x="16.8" y="545" width="67.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.79" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (3 samples, 0.09%)</title><rect x="14.6" y="673" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="17.64" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ttwu_do_activate (1 samples, 0.03%)</title><rect x="15.4" y="593" width="0.3" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_disjoint_arraycopy (73 samples, 2.21%)</title><rect x="718.2" y="241" width="26.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="721.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1163.9" y="401" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="97.1" y="513" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_edge_irq (1 samples, 0.03%)</title><rect x="743.9" y="177" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>_new_array_nozero_Java (1 samples, 0.03%)</title><rect x="717.9" y="241" width="0.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" /> |
|
<text text-anchor="" x="720.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/AbstractStringBuilder:::newCapacity (29 samples, 0.88%)</title><rect x="744.3" y="257" width="10.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="747.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>enqueue_task_fair (1 samples, 0.03%)</title><rect x="1168.9" y="529" width="0.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.93" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="125.7" y="417" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (5 samples, 0.15%)</title><rect x="97.1" y="625" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__lll_unlock_wake (1 samples, 0.03%)</title><rect x="127.1" y="561" width="0.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="125.7" y="481" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>prepare_exit_to_usermode (4 samples, 0.12%)</title><rect x="1158.2" y="241" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (191 samples, 5.78%)</title><rect x="15.7" y="657" width="68.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ttwu_do_activate (1 samples, 0.03%)</title><rect x="823.9" y="97" width="0.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>exit_to_usermode_loop (4 samples, 0.12%)</title><rect x="1158.2" y="225" width="1.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="11.4" y="545" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>activate_task (1 samples, 0.03%)</title><rect x="823.9" y="81" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sched_clock_cpu (1 samples, 0.03%)</title><rect x="16.4" y="529" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.43" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (27 samples, 0.82%)</title><rect x="1178.6" y="449" width="9.6" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1181.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>wake_up_q (2 samples, 0.06%)</title><rect x="15.0" y="625" width="0.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="10.0" y="705" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (2 samples, 0.06%)</title><rect x="1168.6" y="641" width="0.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/String:::getChars (171 samples, 5.18%)</title><rect x="763.2" y="257" width="61.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="766.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java/l..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="91.1" y="545" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (8 samples, 0.24%)</title><rect x="326.4" y="193" width="2.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>remote_function (4 samples, 0.12%)</title><rect x="617.1" y="193" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>org/openjdk/jmh/infra/Blackhole:::consume (4 samples, 0.12%)</title><rect x="1159.6" y="289" width="1.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1162.64" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="1161.1" y="209" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="91.1" y="529" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="13.2" y="481" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="326.8" y="65" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.79" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="97.1" y="545" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>try_to_wake_up (2 samples, 0.06%)</title><rect x="1168.6" y="577" width="0.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__do_softirq (1 samples, 0.03%)</title><rect x="616.8" y="209" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sata_scr_read (1 samples, 0.03%)</title><rect x="743.9" y="49" width="0.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ktime_add_safe (1 samples, 0.03%)</title><rect x="1175.4" y="577" width="0.3" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.36" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (36 samples, 1.09%)</title><rect x="1175.7" y="465" width="12.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="1163.9" y="481" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (12 samples, 0.36%)</title><rect x="1171.1" y="449" width="4.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1174.07" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="10.0" y="721" width="1.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/Object:::<init> (24 samples, 0.73%)</title><rect x="754.6" y="257" width="8.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="757.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_irq_return_iret (6 samples, 0.18%)</title><rect x="20.0" y="481" width="2.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="23.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__do_softirq (1 samples, 0.03%)</title><rect x="98.6" y="513" width="0.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (191 samples, 5.78%)</title><rect x="15.7" y="609" width="68.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="616.1" y="193" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="10.0" y="561" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="481" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (17 samples, 0.51%)</title><rect x="1169.3" y="577" width="6.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1165.7" y="481" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (13 samples, 0.39%)</title><rect x="92.5" y="625" width="4.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="13.2" y="449" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>smp_call_function_single_interrupt (4 samples, 0.12%)</title><rect x="617.1" y="241" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1163.9" y="561" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="97.1" y="529" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_IRQ (1 samples, 0.03%)</title><rect x="743.9" y="209" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ahci_single_level_irq_intr (1 samples, 0.03%)</title><rect x="743.9" y="113" width="0.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,920 samples, 88.38%)</title><rect x="122.5" y="625" width="1042.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="125.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (2 samples, 0.06%)</title><rect x="1168.6" y="609" width="0.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (36 samples, 1.09%)</title><rect x="1175.7" y="641" width="12.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="127.1" y="577" width="0.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>all (3,304 samples, 100%)</title><rect x="10.0" y="753" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__lll_unlock_wake (5 samples, 0.15%)</title><rect x="12.9" y="689" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="15.86" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (5 samples, 0.15%)</title><rect x="12.9" y="657" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="15.86" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ret_from_intr (1 samples, 0.03%)</title><rect x="743.9" y="225" width="0.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="125.7" y="529" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>wake_up_q (2 samples, 0.06%)</title><rect x="1168.6" y="593" width="0.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (36 samples, 1.09%)</title><rect x="1175.7" y="577" width="12.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (18 samples, 0.54%)</title><rect x="1169.3" y="641" width="6.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="11.4" y="481" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="1163.9" y="465" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="11.4" y="641" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java (3,304 samples, 100.00%)</title><rect x="10.0" y="737" width="1180.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="83.9" y="545" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>run_rebalance_domains (1 samples, 0.03%)</title><rect x="98.6" y="497" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="545" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (13 samples, 0.39%)</title><rect x="92.5" y="657" width="4.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="561" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_disjoint_arraycopy (34 samples, 1.03%)</title><rect x="313.6" y="273" width="12.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.57" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (16 samples, 0.48%)</title><rect x="85.4" y="593" width="5.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1158.2" y="129" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (17 samples, 0.51%)</title><rect x="1169.3" y="545" width="6.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,918 samples, 88.32%)</title><rect x="123.2" y="609" width="1042.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="126.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</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="616.4" y="129" width="0.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.43" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1167.1" y="545" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (1 samples, 0.03%)</title><rect x="15.0" y="609" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="13.6" y="417" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.57" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (16 samples, 0.48%)</title><rect x="85.4" y="657" width="5.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (203 samples, 6.14%)</title><rect x="11.4" y="705" width="72.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_signal@@GLIBC_2.3.2 (3 samples, 0.09%)</title><rect x="14.6" y="689" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="17.64" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="125.7" y="465" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="1161.1" y="257" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="616.1" y="161" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ctx_resched (4 samples, 0.12%)</title><rect x="617.1" y="145" width="1.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,902 samples, 87.83%)</title><rect x="127.5" y="353" width="1036.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_IRQ (1 samples, 0.03%)</title><rect x="1024.3" y="225" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (36 samples, 1.09%)</title><rect x="1175.7" y="609" width="12.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (36 samples, 1.09%)</title><rect x="1175.7" y="497" width="12.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1167.1" y="529" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (1 samples, 0.03%)</title><rect x="192.1" y="273" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="195.14" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (16 samples, 0.48%)</title><rect x="85.4" y="689" width="5.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="84.3" y="465" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="87.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2 samples, 0.06%)</title><rect x="616.1" y="241" width="0.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jlong_disjoint_arraycopy (86 samples, 2.60%)</title><rect x="1024.6" y="257" width="30.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jl..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (5 samples, 0.15%)</title><rect x="97.1" y="689" width="1.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>run_rebalance_domains (1 samples, 0.03%)</title><rect x="1165.4" y="577" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1167.1" y="497" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1161.1" y="273" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.06%)</title><rect x="1168.6" y="657" width="0.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.57" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="1161.1" y="97" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="1163.9" y="433" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="10.0" y="545" width="1.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="83.9" y="529" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1167.5" y="497" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="1188.6" y="641" width="1.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_irq (1 samples, 0.03%)</title><rect x="1024.3" y="209" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jlong_disjoint_arraycopy (38 samples, 1.15%)</title><rect x="295.4" y="273" width="13.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="298.36" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (1 samples, 0.03%)</title><rect x="717.9" y="209" width="0.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="720.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>_raw_spin_unlock_irqrestore (4 samples, 0.12%)</title><rect x="13.2" y="577" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="83.9" y="689" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>rebalance_domains (1 samples, 0.03%)</title><rect x="1165.4" y="561" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>prepare_exit_to_usermode (4 samples, 0.12%)</title><rect x="1165.7" y="625" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="10.0" y="641" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (18 samples, 0.54%)</title><rect x="1169.3" y="657" width="6.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1158.2" y="177" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (16 samples, 0.48%)</title><rect x="85.4" y="609" width="5.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/String:::length (81 samples, 2.45%)</title><rect x="260.4" y="273" width="28.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.36" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (5 samples, 0.15%)</title><rect x="12.9" y="641" width="1.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="15.86" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>start_thread (3,055 samples, 92.46%)</title><rect x="98.9" y="721" width="1091.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.93" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (12 samples, 0.36%)</title><rect x="92.5" y="545" width="4.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>scala/collection/immutable/List:::foreach (4 samples, 0.12%)</title><rect x="1162.5" y="289" width="1.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1165.50" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="125.7" y="513" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (3,049 samples, 92.28%)</title><rect x="99.6" y="673" width="1089.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="102.64" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="11.4" y="577" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>rebalance_domains (1 samples, 0.03%)</title><rect x="98.6" y="481" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.57" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (5 samples, 0.15%)</title><rect x="97.1" y="577" width="1.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_page_fault (1 samples, 0.03%)</title><rect x="616.4" y="145" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>flush_smp_call_function_queue (4 samples, 0.12%)</title><rect x="617.1" y="209" width="1.5" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>deactivate_task (1 samples, 0.03%)</title><rect x="1169.3" y="529" width="0.3" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1161.1" y="129" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (1 samples, 0.03%)</title><rect x="92.5" y="497" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="1163.9" y="449" width="1.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (2 samples, 0.06%)</title><rect x="22.1" y="481" width="0.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="25.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (8 samples, 0.24%)</title><rect x="93.9" y="497" width="2.9" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="96.93" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="125.7" y="369" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1163.9" y="417" width="1.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (36 samples, 1.09%)</title><rect x="1175.7" y="513" width="12.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (36 samples, 1.09%)</title><rect x="1175.7" y="529" width="12.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>exit_to_usermode_loop (4 samples, 0.12%)</title><rect x="1165.7" y="609" width="1.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="83.9" y="593" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="1158.2" y="97" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1161.21" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/AbstractStringBuilder:::newCapacity (13 samples, 0.39%)</title><rect x="201.1" y="273" width="4.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="204.07" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="83.9" y="497" width="1.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (5 samples, 0.15%)</title><rect x="97.1" y="657" width="1.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jlong_disjoint_arraycopy (1 samples, 0.03%)</title><rect x="127.5" y="289" width="0.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_nmi (1 samples, 0.03%)</title><rect x="85.4" y="481" width="0.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (3,055 samples, 92.46%)</title><rect x="98.9" y="705" width="1091.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="101.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (12 samples, 0.36%)</title><rect x="92.5" y="561" width="4.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (18 samples, 0.54%)</title><rect x="1169.3" y="593" width="6.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_disjoint_arraycopy (77 samples, 2.33%)</title><rect x="922.1" y="241" width="27.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="925.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="1161.1" y="225" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="13.2" y="497" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="1164.3" y="369" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1167.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (4 samples, 0.12%)</title><rect x="83.9" y="657" width="1.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>deactivate_task (1 samples, 0.03%)</title><rect x="16.4" y="561" width="0.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.43" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>jshort_arraycopy (13 samples, 0.39%)</title><rect x="996.1" y="241" width="4.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="999.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (1 samples, 0.03%)</title><rect x="127.1" y="545" width="0.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (8 samples, 0.24%)</title><rect x="326.4" y="145" width="2.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="125.7" y="433" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>apic_timer_interrupt (1 samples, 0.03%)</title><rect x="616.8" y="257" width="0.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>try_to_wake_up (1 samples, 0.03%)</title><rect x="823.9" y="113" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (191 samples, 5.78%)</title><rect x="15.7" y="577" width="68.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="18.71" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sched..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>retint_user (4 samples, 0.12%)</title><rect x="1165.7" y="641" width="1.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>nmi_restore (1 samples, 0.03%)</title><rect x="90.7" y="481" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="93.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>try_to_wake_up (4 samples, 0.12%)</title><rect x="13.2" y="593" width="1.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/lang/String:::length (12 samples, 0.36%)</title><rect x="824.3" y="257" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="827.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (12 samples, 0.36%)</title><rect x="92.5" y="513" width="4.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (8 samples, 0.24%)</title><rect x="326.4" y="81" width="2.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (1 samples, 0.03%)</title><rect x="615.7" y="257" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="618.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="125.7" y="401" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (16 samples, 0.48%)</title><rect x="1169.6" y="465" width="5.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (4 samples, 0.12%)</title><rect x="97.1" y="561" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (1 samples, 0.03%)</title><rect x="127.1" y="593" width="0.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.14" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="305" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (10 samples, 0.30%)</title><rect x="123.6" y="593" width="3.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="126.57" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="11.4" y="625" width="1.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="91.1" y="657" width="1.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/util/Arrays:::copyOf (10 samples, 0.30%)</title><rect x="289.3" y="273" width="3.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="292.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="1161.1" y="241" width="1.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (36 samples, 1.09%)</title><rect x="1175.7" y="625" width="12.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>smp_apic_timer_interrupt (1 samples, 0.03%)</title><rect x="1165.4" y="625" width="0.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.36" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (1 samples, 0.03%)</title><rect x="16.8" y="481" width="0.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (8 samples, 0.24%)</title><rect x="326.4" y="241" width="2.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>rebalance_domains (1 samples, 0.03%)</title><rect x="616.8" y="177" width="0.3" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (12 samples, 0.36%)</title><rect x="92.5" y="577" width="4.3" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="10.4" y="481" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (4 samples, 0.12%)</title><rect x="1188.6" y="481" width="1.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_enable (4 samples, 0.12%)</title><rect x="617.1" y="161" width="1.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="620.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="93.6" y="497" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="96.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="1167.1" y="593" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="529" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="1161.1" y="177" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1164.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="1163.9" y="529" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (13 samples, 0.39%)</title><rect x="92.5" y="609" width="4.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="91.1" y="481" width="0.3" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (16 samples, 0.48%)</title><rect x="85.4" y="561" width="5.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (188 samples, 5.69%)</title><rect x="16.8" y="561" width="67.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.79" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.12%)</title><rect x="91.1" y="689" width="1.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (16 samples, 0.48%)</title><rect x="1169.6" y="481" width="5.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.64" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="10.0" y="481" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (8 samples, 0.24%)</title><rect x="326.4" y="225" width="2.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>nmi_restore (1 samples, 0.03%)</title><rect x="126.8" y="353" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="129.79" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>hrtimer_wakeup (1 samples, 0.03%)</title><rect x="823.9" y="145" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="826.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (36 samples, 1.09%)</title><rect x="1175.7" y="593" width="12.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_irq_event (1 samples, 0.03%)</title><rect x="743.9" y="161" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="13.2" y="465" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="96.8" y="561" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="99.79" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>finish_task_switch (4 samples, 0.12%)</title><rect x="91.1" y="561" width="1.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" /> |
|
<text text-anchor="" x="94.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_nmi (1 samples, 0.03%)</title><rect x="1175.7" y="449" width="0.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>handle_edge_irq (1 samples, 0.03%)</title><rect x="1024.3" y="193" width="0.3" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1027.29" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>run_rebalance_domains (1 samples, 0.03%)</title><rect x="616.8" y="193" width="0.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (5 samples, 0.15%)</title><rect x="123.9" y="561" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="126.93" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_sched_clock (1 samples, 0.03%)</title><rect x="326.4" y="65" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (5 samples, 0.15%)</title><rect x="97.1" y="641" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (4 samples, 0.12%)</title><rect x="1165.7" y="529" width="1.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__schedule (4 samples, 0.12%)</title><rect x="1165.7" y="577" width="1.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (4 samples, 0.12%)</title><rect x="11.4" y="657" width="1.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>Interpreter (2,902 samples, 87.83%)</title><rect x="127.5" y="401" width="1036.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="130.50" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__perf_event_task_sched_in (8 samples, 0.24%)</title><rect x="326.4" y="129" width="2.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[unknown] (4 samples, 0.12%)</title><rect x="1188.6" y="673" width="1.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1191.57" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (4 samples, 0.12%)</title><rect x="1165.7" y="593" width="1.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1168.71" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait_queue_me (4 samples, 0.12%)</title><rect x="10.0" y="609" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>__sched_yield (4 samples, 0.12%)</title><rect x="1167.1" y="657" width="1.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1170.14" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (2,988 samples, 90.44%)</title><rect x="100.0" y="657" width="1067.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="103.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[libjvm.so]</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>register_finalizer Runtime1 stub (13 samples, 0.39%)</title><rect x="1153.6" y="257" width="4.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1156.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (12 samples, 0.36%)</title><rect x="92.5" y="529" width="4.3" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="95.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="125.7" y="497" width="1.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="128.71" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>futex_wait (4 samples, 0.12%)</title><rect x="11.4" y="561" width="1.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>do_futex (4 samples, 0.12%)</title><rect x="83.9" y="625" width="1.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>update_curr (1 samples, 0.03%)</title><rect x="1169.3" y="481" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1172.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>update_blocked_averages (1 samples, 0.03%)</title><rect x="616.8" y="161" width="0.3" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>java/util/Arrays:::copyOfRange (7 samples, 0.21%)</title><rect x="292.9" y="273" width="2.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" /> |
|
<text text-anchor="" x="295.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>perf_pmu_enable.part.53 (16 samples, 0.48%)</title><rect x="85.4" y="529" width="5.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" /> |
|
<text text-anchor="" x="88.36" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>nmi_restore (7 samples, 0.21%)</title><rect x="80.4" y="481" width="2.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.36" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (36 samples, 1.09%)</title><rect x="1175.7" y="481" width="12.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>entry_SYSCALL_64_fastpath (8 samples, 0.24%)</title><rect x="326.4" y="257" width="2.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>schedule (36 samples, 1.09%)</title><rect x="1175.7" y="561" width="12.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1178.71" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>[libjvm.so] (10 samples, 0.30%)</title><rect x="123.6" y="577" width="3.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" /> |
|
<text text-anchor="" x="126.57" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>intel_pmu_enable_all (4 samples, 0.12%)</title><rect x="11.4" y="433" width="1.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="14.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sched_clock (1 samples, 0.03%)</title><rect x="1162.1" y="81" width="0.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1165.14" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>update_rq_clock.part.24 (1 samples, 0.03%)</title><rect x="16.4" y="545" width="0.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" /> |
|
<text text-anchor="" x="19.43" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="1163.9" y="545" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1166.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>page_fault (1 samples, 0.03%)</title><rect x="616.4" y="161" width="0.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" /> |
|
<text text-anchor="" x="619.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_msr (3 samples, 0.09%)</title><rect x="97.5" y="497" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="100.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>ttwu_do_activate (1 samples, 0.03%)</title><rect x="1168.9" y="561" width="0.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1171.93" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sys_futex (4 samples, 0.12%)</title><rect x="83.9" y="641" width="1.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" /> |
|
<text text-anchor="" x="86.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>x86_pmu_enable (8 samples, 0.24%)</title><rect x="326.4" y="97" width="2.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" /> |
|
<text text-anchor="" x="329.43" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>native_write_cr2 (1 samples, 0.03%)</title><rect x="13.2" y="417" width="0.4" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" /> |
|
<text text-anchor="" x="16.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
</svg> |