File Metadata

Author
cullmann
Created
Sep 2 2018, 11:04 AM

perf.2U8ac.svg

<?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="4800" height="310" onload="init(evt)" viewBox="0 0 4800 310" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="4800.0" height="310.0" fill="url(#background)" />
<text text-anchor="middle" x="2400.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="293" 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="4690.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="4690.00" y="293" 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>KSyntaxHighlighting::Format::id (1 samples, 0.52%)</title><rect x="3582.7" y="109" width="24.6" height="23.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text text-anchor="" x="3585.68" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (8 samples, 4.12%)</title><rect x="773.8" y="181" width="197.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="776.81" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int_free</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedTexts@plt (1 samples, 0.52%)</title><rect x="2868.1" y="61" width="24.7" height="23.0" fill="rgb(231,180,29)" rx="2" ry="2" />
<text text-anchor="" x="2871.14" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (1 samples, 0.52%)</title><rect x="2498.6" y="37" width="24.6" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="2501.56" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordList::contains (4 samples, 2.06%)</title><rect x="2153.6" y="37" width="98.6" height="23.0" fill="rgb(240,156,38)" rx="2" ry="2" />
<text text-anchor="" x="2156.61" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHigh..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectChar::doMatch (1 samples, 0.52%)</title><rect x="1389.8" y="85" width="24.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1392.79" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.52%)</title><rect x="4100.1" y="181" width="24.6" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="4103.10" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector&lt;QPair&lt;KSyntaxHighlighting::Context*, (1 samples, 0.52%)</title><rect x="3779.8" y="85" width="24.6" height="23.0" fill="rgb(232,160,30)" rx="2" ry="2" />
<text text-anchor="" x="3782.79" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x169357 (2 samples, 1.03%)</title><rect x="2005.8" y="61" width="49.3" height="23.0" fill="rgb(234,112,32)" rx="2" ry="2" />
<text text-anchor="" x="2008.77" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x16..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.52%)</title><rect x="3853.7" y="109" width="24.7" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="3856.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xffffffff8180018a (2 samples, 1.03%)</title><rect x="10.0" y="205" width="49.3" height="23.0" fill="rgb(241,96,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0xff..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::match (3 samples, 1.55%)</title><rect x="2424.6" y="37" width="74.0" height="23.0" fill="rgb(242,180,41)" rx="2" ry="2" />
<text text-anchor="" x="2427.64" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QRegular..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RegExpr::doMatch (18 samples, 9.28%)</title><rect x="2301.4" y="61" width="443.5" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="2304.44" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::RegExpr::doMatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Float::doMatch (2 samples, 1.03%)</title><rect x="1439.1" y="85" width="49.3" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1442.07" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topCaptures (1 samples, 0.52%)</title><rect x="3040.6" y="85" width="24.7" height="23.0" fill="rgb(239,156,38)" rx="2" ry="2" />
<text text-anchor="" x="3043.62" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331e9d (1 samples, 0.52%)</title><rect x="4272.6" y="205" width="24.6" height="23.0" fill="rgb(249,105,48)" rx="2" ry="2" />
<text text-anchor="" x="4275.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffcb40cb7a0 (1 samples, 0.52%)</title><rect x="4346.5" y="157" width="24.6" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="4349.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (1 samples, 0.52%)</title><rect x="3976.9" y="181" width="24.6" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="3979.91" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f91fcd0d600 (1 samples, 0.52%)</title><rect x="4494.3" y="181" width="24.7" height="23.0" fill="rgb(232,92,30)" rx="2" ry="2" />
<text text-anchor="" x="4497.33" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RegExpr::doMatch (2 samples, 1.03%)</title><rect x="1685.5" y="85" width="49.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1688.46" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::operator= (4 samples, 2.06%)</title><rect x="1537.6" y="85" width="98.6" height="23.0" fill="rgb(246,156,45)" rx="2" ry="2" />
<text text-anchor="" x="1540.63" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHigh..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topCaptures (2 samples, 1.03%)</title><rect x="3730.5" y="109" width="49.3" height="23.0" fill="rgb(239,156,38)" rx="2" ry="2" />
<text text-anchor="" x="3733.52" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFSFileEngine::supportsExtension (1 samples, 0.52%)</title><rect x="1143.4" y="133" width="24.6" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="1146.40" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::compare_helper (2 samples, 1.03%)</title><rect x="2252.2" y="37" width="49.2" height="23.0" fill="rgb(243,166,41)" rx="2" ry="2" />
<text text-anchor="" x="2255.16" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QStr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (7 samples, 3.61%)</title><rect x="970.9" y="181" width="172.5" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="973.93" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int_malloc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringRef::indexOf (2 samples, 1.03%)</title><rect x="2966.7" y="61" width="49.3" height="23.0" fill="rgb(249,166,48)" rx="2" ry="2" />
<text text-anchor="" x="2969.70" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QStr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (1 samples, 0.52%)</title><rect x="3016.0" y="61" width="24.6" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="3018.98" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (194 samples, 100%)</title><rect x="10.0" y="253" width="4780.0" height="23.0" fill="rgb(255,230,55)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>0x32ee6b (1 samples, 0.52%)</title><rect x="4247.9" y="205" width="24.7" height="23.0" fill="rgb(226,105,23)" rx="2" ry="2" />
<text text-anchor="" x="4250.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x312e312e6f732e6f (1 samples, 0.52%)</title><rect x="4198.7" y="205" width="24.6" height="23.0" fill="rgb(237,105,35)" rx="2" ry="2" />
<text text-anchor="" x="4201.66" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1292b4 (1 samples, 0.52%)</title><rect x="1907.2" y="61" width="24.7" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="1910.22" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::allocateNode (1 samples, 0.52%)</title><rect x="3804.4" y="109" width="24.7" height="23.0" fill="rgb(250,188,49)" rx="2" ry="2" />
<text text-anchor="" x="3807.43" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2700200067 (1 samples, 0.52%)</title><rect x="4174.0" y="205" width="24.7" height="23.0" fill="rgb(235,109,33)" rx="2" ry="2" />
<text text-anchor="" x="4177.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.52%)</title><rect x="2523.2" y="37" width="24.6" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="2526.20" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Float::doMatch (1 samples, 0.52%)</title><rect x="2055.1" y="61" width="24.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="2058.05" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::HlCChar::doMatch (1 samples, 0.52%)</title><rect x="2079.7" y="61" width="24.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="2082.69" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__unguarded_linear_insert&lt;__gnu_cxx::__normal_iterator&lt;QStringRef*, (1 samples, 0.52%)</title><rect x="3533.4" y="37" width="24.6" height="23.0" fill="rgb(233,146,31)" rx="2" ry="2" />
<text text-anchor="" x="3536.40" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash&lt;KSyntaxHighlighting::Rule*, (14 samples, 7.22%)</title><rect x="3089.9" y="85" width="344.9" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="3092.90" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHash&lt;KSyntaxHighlighting::Rule*,</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::id@plt (1 samples, 0.52%)</title><rect x="3607.3" y="109" width="24.7" height="23.0" fill="rgb(231,156,29)" rx="2" ry="2" />
<text text-anchor="" x="3610.32" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x356880 (1 samples, 0.52%)</title><rect x="4395.8" y="181" width="24.6" height="23.0" fill="rgb(234,105,32)" rx="2" ry="2" />
<text text-anchor="" x="4398.77" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread (10 samples, 5.15%)</title><rect x="10.0" y="229" width="246.4" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QThread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x4545454545454545 (1 samples, 0.52%)</title><rect x="4346.5" y="205" width="24.6" height="23.0" fill="rgb(237,102,35)" rx="2" ry="2" />
<text text-anchor="" x="4349.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighterPrivate::switchContext (1 samples, 0.52%)</title><rect x="1340.5" y="85" width="24.7" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="1343.52" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordListRule::doMatch (1 samples, 0.52%)</title><rect x="1660.8" y="85" width="24.7" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1663.82" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1a8ce36 (1 samples, 0.52%)</title><rect x="4346.5" y="181" width="24.6" height="23.0" fill="rgb(236,112,35)" rx="2" ry="2" />
<text text-anchor="" x="4349.49" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f91fcc822ea (1 samples, 0.52%)</title><rect x="4346.5" y="109" width="24.6" height="23.0" fill="rgb(239,92,37)" rx="2" ry="2" />
<text text-anchor="" x="4349.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DefinitionData::loadHighlighting (1 samples, 0.52%)</title><rect x="3508.8" y="61" width="24.6" height="23.0" fill="rgb(243,156,42)" rx="2" ry="2" />
<text text-anchor="" x="3511.76" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::HlCChar::doMatch (1 samples, 0.52%)</title><rect x="1636.2" y="85" width="24.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1639.19" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (5 samples, 2.58%)</title><rect x="2547.8" y="37" width="123.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="2550.84" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >malloc_check</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1a81120 (1 samples, 0.52%)</title><rect x="4050.8" y="205" width="24.7" height="23.0" fill="rgb(233,112,31)" rx="2" ry="2" />
<text text-anchor="" x="4053.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffcb40cb7a0 (1 samples, 0.52%)</title><rect x="4174.0" y="157" width="24.7" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="4177.02" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (1 samples, 0.52%)</title><rect x="256.4" y="157" width="24.6" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="259.39" 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>QXmlStreamReader::readNextStartElement (1 samples, 0.52%)</title><rect x="3508.8" y="37" width="24.6" height="23.0" fill="rgb(241,218,39)" rx="2" ry="2" />
<text text-anchor="" x="3511.76" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HighlighterBenchmark::qt_static_metacall (111 samples, 57.22%)</title><rect x="1168.0" y="133" width="2735.0" height="23.0" fill="rgb(230,161,28)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >HighlighterBenchmark::qt_static_metacall</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xffffffff81800a37 (6 samples, 3.09%)</title><rect x="305.7" y="181" width="147.8" height="23.0" fill="rgb(237,96,36)" rx="2" ry="2" />
<text text-anchor="" x="308.67" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0xffffffff81800a37</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::resize (1 samples, 0.52%)</title><rect x="4519.0" y="157" width="24.6" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4521.97" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1c33d4000000000 (1 samples, 0.52%)</title><rect x="4075.5" y="205" width="24.6" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="4078.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordListRule::doMatch (8 samples, 4.12%)</title><rect x="2104.3" y="61" width="197.1" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="2107.33" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::Keyw..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (1 samples, 0.52%)</title><rect x="3484.1" y="85" width="24.7" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3487.12" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xffffffff81800a37 (4 samples, 2.06%)</title><rect x="4568.2" y="205" width="98.6" height="23.0" fill="rgb(237,96,36)" rx="2" ry="2" />
<text text-anchor="" x="4571.25" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0xffffffff8..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StringDetect::doMatch (1 samples, 0.52%)</title><rect x="3065.3" y="85" width="24.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="3068.26" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293c6 (1 samples, 0.52%)</title><rect x="1956.5" y="61" width="24.6" height="23.0" fill="rgb(245,112,45)" rx="2" ry="2" />
<text text-anchor="" x="1959.49" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1a8af58 (1 samples, 0.52%)</title><rect x="4346.5" y="133" width="24.6" height="23.0" fill="rgb(230,112,28)" rx="2" ry="2" />
<text text-anchor="" x="4349.49" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectSpaces::doMatch (1 samples, 0.52%)</title><rect x="1414.4" y="85" width="24.7" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1417.43" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::context (1 samples, 0.52%)</title><rect x="1734.7" y="85" width="24.7" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="1737.74" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StringDetect::doMatch (3 samples, 1.55%)</title><rect x="2744.9" y="61" width="74.0" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="2747.95" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxH..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (2 samples, 1.03%)</title><rect x="2818.9" y="61" width="49.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2821.87" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QLis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x235a790 (1 samples, 0.52%)</title><rect x="4149.4" y="205" width="24.6" height="23.0" fill="rgb(233,109,31)" rx="2" ry="2" />
<text text-anchor="" x="4152.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2mem_check (1 samples, 0.52%)</title><rect x="4765.4" y="205" width="24.6" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="4768.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xbabababa00000004 (1 samples, 0.52%)</title><rect x="4519.0" y="205" width="24.6" height="23.0" fill="rgb(247,109,46)" rx="2" ry="2" />
<text text-anchor="" x="4521.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::push (1 samples, 0.52%)</title><rect x="1340.5" y="61" width="24.7" height="23.0" fill="rgb(236,156,34)" rx="2" ry="2" />
<text text-anchor="" x="1343.52" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293eb (1 samples, 0.52%)</title><rect x="1981.1" y="61" width="24.7" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="1984.13" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x353d18 (1 samples, 0.52%)</title><rect x="4297.2" y="205" width="24.7" height="23.0" fill="rgb(236,105,34)" rx="2" ry="2" />
<text text-anchor="" x="4300.22" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedTexts (1 samples, 0.52%)</title><rect x="281.0" y="157" width="24.7" height="23.0" fill="rgb(239,180,38)" rx="2" ry="2" />
<text text-anchor="" x="284.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x214a3d0 (1 samples, 0.52%)</title><rect x="4543.6" y="181" width="24.6" height="23.0" fill="rgb(237,109,36)" rx="2" ry="2" />
<text text-anchor="" x="4546.61" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7a7d6 (1 samples, 0.52%)</title><rect x="4075.5" y="181" width="24.6" height="23.0" fill="rgb(242,92,40)" rx="2" ry="2" />
<text text-anchor="" x="4078.46" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (1 samples, 0.52%)</title><rect x="3878.4" y="109" width="24.6" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="3881.35" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x225be10 (1 samples, 0.52%)</title><rect x="4124.7" y="205" width="24.7" height="23.0" fill="rgb(232,109,29)" rx="2" ry="2" />
<text text-anchor="" x="4127.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (1 samples, 0.52%)</title><rect x="4740.7" y="205" width="24.7" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="4743.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x14ad0 (113 samples, 58.25%)</title><rect x="1168.0" y="205" width="2784.3" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x14ad0</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (10 samples, 5.15%)</title><rect x="478.1" y="181" width="246.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="481.14" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__memset_avx2_unaligned_erms</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::Format (1 samples, 0.52%)</title><rect x="3558.0" y="109" width="24.7" height="23.0" fill="rgb(233,156,31)" rx="2" ry="2" />
<text text-anchor="" x="3561.04" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::Format (1 samples, 0.52%)</title><rect x="1513.0" y="85" width="24.6" height="23.0" fill="rgb(233,156,31)" rx="2" ry="2" />
<text text-anchor="" x="1515.99" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::match (52 samples, 26.80%)</title><rect x="1759.4" y="85" width="1281.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1762.38" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::Rule::match</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2366146 (1 samples, 0.52%)</title><rect x="4445.1" y="181" width="24.6" height="23.0" fill="rgb(238,109,36)" rx="2" ry="2" />
<text text-anchor="" x="4448.05" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2453a40 (1 samples, 0.52%)</title><rect x="1143.4" y="157" width="24.6" height="23.0" fill="rgb(231,109,29)" rx="2" ry="2" />
<text text-anchor="" x="1146.40" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2chunk_check (1 samples, 0.52%)</title><rect x="2671.0" y="37" width="24.7" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="2674.03" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaMethod::invoke (113 samples, 58.25%)</title><rect x="1168.0" y="157" width="2784.3" height="23.0" fill="rgb(242,205,41)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaMethod::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 1.55%)</title><rect x="4666.8" y="205" width="73.9" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="4669.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >malloc</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x65006d006d006f (1 samples, 0.52%)</title><rect x="4445.1" y="205" width="24.6" height="23.0" fill="rgb(240,96,39)" rx="2" ry="2" />
<text text-anchor="" x="4448.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x18fa390 (1 samples, 0.52%)</title><rect x="4026.2" y="205" width="24.6" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="4029.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffcb40cb7a0 (1 samples, 0.52%)</title><rect x="4445.1" y="157" width="24.6" height="23.0" fill="rgb(226,92,23)" rx="2" ry="2" />
<text text-anchor="" x="4448.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>highlighter_ben (184 samples, 94.85%)</title><rect x="256.4" y="229" width="4533.6" height="23.0" fill="rgb(251,145,51)" rx="2" ry="2" />
<text text-anchor="" x="259.39" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >highlighter_ben</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x12875c (1 samples, 0.52%)</title><rect x="2129.0" y="37" width="24.6" height="23.0" fill="rgb(224,112,21)" rx="2" ry="2" />
<text text-anchor="" x="2131.97" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordList::initLookupForCaseSensitivity (1 samples, 0.52%)</title><rect x="3533.4" y="61" width="24.6" height="23.0" fill="rgb(240,156,38)" rx="2" ry="2" />
<text text-anchor="" x="3536.40" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xbaba0000003e0076 (1 samples, 0.52%)</title><rect x="4494.3" y="205" width="24.7" height="23.0" fill="rgb(248,109,47)" rx="2" ry="2" />
<text text-anchor="" x="4497.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0 (36 samples, 18.56%)</title><rect x="256.4" y="205" width="887.0" height="23.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text text-anchor="" x="259.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.52%)</title><rect x="4149.4" y="181" width="24.6" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4152.38" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3568e9 (1 samples, 0.52%)</title><rect x="4371.1" y="181" width="24.7" height="23.0" fill="rgb(235,105,33)" rx="2" ry="2" />
<text text-anchor="" x="4374.13" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer&lt;KSyntaxHighlighting::StateData&gt;::~QExplicitlySharedDataPointer (1 samples, 0.52%)</title><rect x="3779.8" y="109" width="24.6" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="3782.79" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2mem_check (2 samples, 1.03%)</title><rect x="2695.7" y="37" width="49.2" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="2698.67" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mem2..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighter::highlightLine (95 samples, 48.97%)</title><rect x="1168.0" y="109" width="2340.8" height="23.0" fill="rgb(246,156,46)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::AbstractHighlighter::highlightLine</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QReadWriteLock::unlock (3 samples, 1.55%)</title><rect x="2326.1" y="37" width="73.9" height="23.0" fill="rgb(240,180,39)" rx="2" ry="2" />
<text text-anchor="" x="2329.08" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QReadWri..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x8b48078948fb8948 (1 samples, 0.52%)</title><rect x="4469.7" y="205" width="24.6" height="23.0" fill="rgb(229,89,26)" rx="2" ry="2" />
<text text-anchor="" x="4472.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xffffffff81800a37 (6 samples, 3.09%)</title><rect x="59.3" y="205" width="147.8" height="23.0" fill="rgb(237,96,36)" rx="2" ry="2" />
<text text-anchor="" x="62.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0xffffffff81800a37</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293bd (1 samples, 0.52%)</title><rect x="1931.9" y="61" width="24.6" height="23.0" fill="rgb(241,112,40)" rx="2" ry="2" />
<text text-anchor="" x="1934.86" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x9000000000 (1 samples, 0.52%)</title><rect x="4543.6" y="157" width="24.6" height="23.0" fill="rgb(236,86,34)" rx="2" ry="2" />
<text text-anchor="" x="4546.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331d46 (1 samples, 0.52%)</title><rect x="4420.4" y="181" width="24.7" height="23.0" fill="rgb(236,105,34)" rx="2" ry="2" />
<text text-anchor="" x="4423.41" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Context::lineEndContext (1 samples, 0.52%)</title><rect x="1365.2" y="85" width="24.6" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="1368.15" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x13dca (113 samples, 58.25%)</title><rect x="1168.0" y="181" width="2784.3" height="23.0" fill="rgb(240,112,38)" rx="2" ry="2" />
<text text-anchor="" x="1171.04" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x13dca</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x10a010e9057400 (1 samples, 0.52%)</title><rect x="1143.4" y="205" width="24.6" height="23.0" fill="rgb(233,112,31)" rx="2" ry="2" />
<text text-anchor="" x="1146.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x17f2c10 (1 samples, 0.52%)</title><rect x="3976.9" y="205" width="24.6" height="23.0" fill="rgb(233,112,31)" rx="2" ry="2" />
<text text-anchor="" x="3979.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x356819 (1 samples, 0.52%)</title><rect x="4321.9" y="205" width="24.6" height="23.0" fill="rgb(231,105,29)" rx="2" ry="2" />
<text text-anchor="" x="4324.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::firstNonSpace (2 samples, 1.03%)</title><rect x="3681.2" y="109" width="49.3" height="23.0" fill="rgb(252,156,52)" rx="2" ry="2" />
<text text-anchor="" x="3684.24" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x328b25 (1 samples, 0.52%)</title><rect x="4223.3" y="205" width="24.6" height="23.0" fill="rgb(241,105,40)" rx="2" ry="2" />
<text text-anchor="" x="4226.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffcb40d3e50 (1 samples, 0.52%)</title><rect x="4469.7" y="157" width="24.6" height="23.0" fill="rgb(227,92,24)" rx="2" ry="2" />
<text text-anchor="" x="4472.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x12876a (1 samples, 0.52%)</title><rect x="1882.6" y="61" width="24.6" height="23.0" fill="rgb(226,112,24)" rx="2" ry="2" />
<text text-anchor="" x="1885.58" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16926c (1 samples, 0.52%)</title><rect x="3952.3" y="205" width="24.6" height="23.0" fill="rgb(226,112,24)" rx="2" ry="2" />
<text text-anchor="" x="3955.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (1 samples, 0.52%)</title><rect x="453.5" y="181" width="24.6" height="23.0" fill="rgb(251,144,50)" rx="2" ry="2" />
<text text-anchor="" x="456.51" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.52%)</title><rect x="4026.2" y="181" width="24.6" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="4029.19" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector&lt;QPair&lt;KSyntaxHighlighting::Context*, (1 samples, 0.52%)</title><rect x="1340.5" y="37" width="24.7" height="23.0" fill="rgb(232,160,30)" rx="2" ry="2" />
<text text-anchor="" x="1343.52" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffcb40d3e20 (1 samples, 0.52%)</title><rect x="281.0" y="181" width="24.7" height="23.0" fill="rgb(230,92,28)" rx="2" ry="2" />
<text text-anchor="" x="284.03" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DefinitionData::load (2 samples, 1.03%)</title><rect x="3508.8" y="85" width="49.2" height="23.0" fill="rgb(243,156,41)" rx="2" ry="2" />
<text text-anchor="" x="3511.76" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1a45c0 (1 samples, 0.52%)</title><rect x="4469.7" y="181" width="24.6" height="23.0" fill="rgb(237,112,35)" rx="2" ry="2" />
<text text-anchor="" x="4472.69" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2022550 (1 samples, 0.52%)</title><rect x="4100.1" y="205" width="24.6" height="23.0" fill="rgb(227,109,24)" rx="2" ry="2" />
<text text-anchor="" x="4103.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime@plt (1 samples, 0.52%)</title><rect x="207.1" y="205" width="24.7" height="23.0" fill="rgb(231,144,29)" rx="2" ry="2" />
<text text-anchor="" x="210.11" 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>QList&lt;QString&gt;::QList (2 samples, 1.03%)</title><rect x="3434.8" y="85" width="49.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3437.85" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QLis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Definition::formats (2 samples, 1.03%)</title><rect x="3508.8" y="109" width="49.2" height="23.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text text-anchor="" x="3511.76" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x18f5000 (1 samples, 0.52%)</title><rect x="4001.5" y="205" width="24.7" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="4004.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::QRegularExpression (1 samples, 0.52%)</title><rect x="2400.0" y="37" width="24.6" height="23.0" fill="rgb(247,180,46)" rx="2" ry="2" />
<text text-anchor="" x="2403.00" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strcmp (1 samples, 0.52%)</title><rect x="4198.7" y="181" width="24.6" height="23.0" fill="rgb(238,140,36)" rx="2" ry="2" />
<text text-anchor="" x="4201.66" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::operator= (2 samples, 1.03%)</title><rect x="3632.0" y="109" width="49.2" height="23.0" fill="rgb(246,156,45)" rx="2" ry="2" />
<text text-anchor="" x="3634.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x6200750073003c (1 samples, 0.52%)</title><rect x="4395.8" y="205" width="24.6" height="23.0" fill="rgb(231,96,29)" rx="2" ry="2" />
<text text-anchor="" x="4398.77" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QReadWriteLock::unlock (1 samples, 0.52%)</title><rect x="4050.8" y="181" width="24.7" height="23.0" fill="rgb(240,180,39)" rx="2" ry="2" />
<text text-anchor="" x="4053.82" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2200000000 (1 samples, 0.52%)</title><rect x="256.4" y="181" width="24.6" height="23.0" fill="rgb(236,109,34)" rx="2" ry="2" />
<text text-anchor="" x="259.39" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.52%)</title><rect x="4001.5" y="181" width="24.7" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="4004.55" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2366148 (1 samples, 0.52%)</title><rect x="4445.1" y="133" width="24.6" height="23.0" fill="rgb(235,109,33)" rx="2" ry="2" />
<text text-anchor="" x="4448.05" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f91fcd81e86 (1 samples, 0.52%)</title><rect x="4445.1" y="109" width="24.6" height="23.0" fill="rgb(243,92,42)" rx="2" ry="2" />
<text text-anchor="" x="4448.05" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFile::qt_metacast (1 samples, 0.52%)</title><rect x="1143.4" y="181" width="24.6" height="23.0" fill="rgb(238,172,36)" rx="2" ry="2" />
<text text-anchor="" x="1146.40" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1fe9dcc (1 samples, 0.52%)</title><rect x="4174.0" y="133" width="24.7" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="4177.02" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x23081c0 (1 samples, 0.52%)</title><rect x="4519.0" y="181" width="24.6" height="23.0" fill="rgb(240,109,38)" rx="2" ry="2" />
<text text-anchor="" x="4521.97" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x6100700020006c (1 samples, 0.52%)</title><rect x="4371.1" y="205" width="24.7" height="23.0" fill="rgb(228,96,25)" rx="2" ry="2" />
<text text-anchor="" x="4374.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xbabababa000000f4 (1 samples, 0.52%)</title><rect x="4543.6" y="205" width="24.6" height="23.0" fill="rgb(248,109,47)" rx="2" ry="2" />
<text text-anchor="" x="4546.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.52%)</title><rect x="3829.1" y="109" width="24.6" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="3832.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>QFileDevice::readData (1 samples, 0.52%)</title><rect x="4469.7" y="133" width="24.6" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="4472.69" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x65006400200066 (1 samples, 0.52%)</title><rect x="4420.4" y="205" width="24.7" height="23.0" fill="rgb(237,96,35)" rx="2" ry="2" />
<text text-anchor="" x="4423.41" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.52%)</title><rect x="231.8" y="205" width="24.6" height="23.0" fill="rgb(250,158,50)" rx="2" ry="2" />
<text text-anchor="" x="234.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::free_helper (1 samples, 0.52%)</title><rect x="4124.7" y="181" width="24.7" height="23.0" fill="rgb(243,188,41)" rx="2" ry="2" />
<text text-anchor="" x="4127.74" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (2 samples, 1.03%)</title><rect x="724.5" y="181" width="49.3" height="23.0" fill="rgb(251,132,51)" rx="2" ry="2" />
<text text-anchor="" x="727.54" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f91fc2504c5 (1 samples, 0.52%)</title><rect x="4174.0" y="109" width="24.7" height="23.0" fill="rgb(246,92,46)" rx="2" ry="2" />
<text text-anchor="" x="4177.02" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QtPrivate::QContainerImplHelper::mid (1 samples, 0.52%)</title><rect x="4543.6" y="133" width="24.6" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="4546.61" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighter::highlightLine (1 samples, 0.52%)</title><rect x="3903.0" y="133" width="24.6" height="23.0" fill="rgb(246,156,46)" rx="2" ry="2" />
<text text-anchor="" x="3905.99" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::FoldingRegion::isValid (1 samples, 0.52%)</title><rect x="1488.4" y="85" width="24.6" height="23.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text text-anchor="" x="1491.35" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0 (1 samples, 0.52%)</title><rect x="4174.0" y="181" width="24.7" height="23.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text text-anchor="" x="4177.02" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::midRef (3 samples, 1.55%)</title><rect x="2892.8" y="61" width="73.9" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="2895.78" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QString:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::State::operator= (1 samples, 0.52%)</title><rect x="3927.6" y="133" width="24.7" height="23.0" fill="rgb(246,156,45)" rx="2" ry="2" />
<text text-anchor="" x="3930.63" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedStart (1 samples, 0.52%)</title><rect x="4001.5" y="157" width="24.7" height="23.0" fill="rgb(239,180,37)" rx="2" ry="2" />
<text text-anchor="" x="4004.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
</svg>