7049 lines
322 KiB
XML
7049 lines
322 KiB
XML
<?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="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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">
|
|
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
|
|
#search, #ignorecase { opacity:0.1; cursor:pointer; }
|
|
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
|
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
|
|
#title { text-anchor:middle; font-size:17px}
|
|
#unzoom { cursor:pointer; }
|
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
.hide { display:none; }
|
|
.parent { opacity:0.5; }
|
|
</style>
|
|
<script type="text/ecmascript">
|
|
<![CDATA[
|
|
"use strict";
|
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
ignorecaseBtn = document.getElementById("ignorecase");
|
|
unzoombtn = document.getElementById("unzoom");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
searching = 0;
|
|
currentSearchTerm = null;
|
|
}
|
|
|
|
window.addEventListener("click", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) {
|
|
if (target.nodeName == "a") {
|
|
if (e.ctrlKey === false) return;
|
|
e.preventDefault();
|
|
}
|
|
if (target.classList.contains("parent")) unzoom();
|
|
zoom(target);
|
|
}
|
|
else if (e.target.id == "unzoom") unzoom();
|
|
else if (e.target.id == "search") search_prompt();
|
|
else if (e.target.id == "ignorecase") toggle_ignorecase();
|
|
}, false)
|
|
|
|
// mouse-over for info
|
|
// show
|
|
window.addEventListener("mouseover", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = "Function: " + g_to_text(target);
|
|
}, false)
|
|
|
|
// clear
|
|
window.addEventListener("mouseout", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = ' ';
|
|
}, false)
|
|
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
}, false)
|
|
|
|
// ctrl-I to toggle case-sensitive search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.ctrlKey && e.keyCode === 73) {
|
|
e.preventDefault();
|
|
toggle_ignorecase();
|
|
}
|
|
}, false)
|
|
|
|
// functions
|
|
function find_child(node, selector) {
|
|
var children = node.querySelectorAll(selector);
|
|
if (children.length) return children[0];
|
|
return;
|
|
}
|
|
function find_group(node) {
|
|
var parent = node.parentElement;
|
|
if (!parent) return;
|
|
if (parent.id == "frames") return node;
|
|
return find_group(parent);
|
|
}
|
|
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]").attributes.x.value + 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;
|
|
|
|
unzoombtn.classList.remove("hide");
|
|
|
|
var el = document.getElementById("frames").children;
|
|
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);
|
|
var upstack;
|
|
// Is it an ancestor
|
|
if (0 == 0) {
|
|
upstack = parseFloat(a.y.value) > ymin;
|
|
} else {
|
|
upstack = parseFloat(a.y.value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
|
|
e.classList.add("parent");
|
|
zoom_parent(e);
|
|
update_text(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.classList.add("hide");
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex + fudge >= xmax) {
|
|
e.classList.add("hide");
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, ratio);
|
|
update_text(e);
|
|
}
|
|
}
|
|
}
|
|
search();
|
|
}
|
|
function unzoom() {
|
|
unzoombtn.classList.add("hide");
|
|
var el = document.getElementById("frames").children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
el[i].classList.remove("parent");
|
|
el[i].classList.remove("hide");
|
|
zoom_reset(el[i]);
|
|
update_text(el[i]);
|
|
}
|
|
search();
|
|
}
|
|
|
|
// search
|
|
function toggle_ignorecase() {
|
|
ignorecase = !ignorecase;
|
|
if (ignorecase) {
|
|
ignorecaseBtn.classList.add("show");
|
|
} else {
|
|
ignorecaseBtn.classList.remove("show");
|
|
}
|
|
reset_search();
|
|
search();
|
|
}
|
|
function reset_search() {
|
|
var el = document.querySelectorAll("#frames 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_)"
|
|
+ (ignorecase ? ", ignoring case" : "")
|
|
+ "\nPress Ctrl-i to toggle case sensitivity", "");
|
|
if (term != null) {
|
|
currentSearchTerm = term;
|
|
search();
|
|
}
|
|
} else {
|
|
reset_search();
|
|
searching = 0;
|
|
currentSearchTerm = null;
|
|
searchbtn.classList.remove("show");
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.classList.add("hide");
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
if (currentSearchTerm === null) return;
|
|
var term = currentSearchTerm;
|
|
|
|
var re = new RegExp(term, ignorecase ? 'i' : '');
|
|
var el = document.getElementById("frames").children;
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "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.classList.add("show");
|
|
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.classList.remove("hide");
|
|
var pct = 100 * count / maxwidth;
|
|
if (pct != 100) pct = pct.toFixed(1)
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
]]>
|
|
</script>
|
|
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="2117" > </text>
|
|
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
|
|
<text id="search" x="1090.00" y="24" >Search</text>
|
|
<text id="ignorecase" x="1174.00" y="24" >ic</text>
|
|
<text id="matched" x="1090.00" y="2117" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="68.4" y="1877" width="0.2" height="15.0" fill="rgb(243,38,53)" rx="2" ry="2" />
|
|
<text x="71.37" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (192 samples, 3.01%)</title><rect x="711.4" y="1749" width="35.5" height="15.0" fill="rgb(225,207,41)" rx="2" ry="2" />
|
|
<text x="714.39" y="1759.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (12 samples, 0.19%)</title><rect x="664.3" y="1717" width="2.2" height="15.0" fill="rgb(232,216,24)" rx="2" ry="2" />
|
|
<text x="667.28" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="634.5" y="1733" width="0.2" height="15.0" fill="rgb(252,203,0)" rx="2" ry="2" />
|
|
<text x="637.54" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (361 samples, 5.65%)</title><rect x="244.2" y="1957" width="66.7" height="15.0" fill="rgb(227,97,45)" rx="2" ry="2" />
|
|
<text x="247.23" y="1967.5" >WORLD_s..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="310.0" y="1765" width="0.4" height="15.0" fill="rgb(205,76,36)" rx="2" ry="2" />
|
|
<text x="312.99" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="1180.8" y="1781" width="0.5" height="15.0" fill="rgb(242,215,4)" rx="2" ry="2" />
|
|
<text x="1183.76" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="789" width="0.2" height="15.0" fill="rgb(211,183,43)" rx="2" ry="2" />
|
|
<text x="13.74" y="799.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (210 samples, 3.29%)</title><rect x="633.1" y="1765" width="38.8" height="15.0" fill="rgb(216,116,37)" rx="2" ry="2" />
|
|
<text x="636.07" y="1775.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1142.0" y="1733" width="0.3" height="15.0" fill="rgb(224,186,13)" rx="2" ry="2" />
|
|
<text x="1144.97" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="309.4" y="1765" width="0.6" height="15.0" fill="rgb(233,59,25)" rx="2" ry="2" />
|
|
<text x="312.43" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="670.0" y="1733" width="0.4" height="15.0" fill="rgb(241,39,43)" rx="2" ry="2" />
|
|
<text x="673.01" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="549.9" y="1813" width="0.6" height="15.0" fill="rgb(244,187,25)" rx="2" ry="2" />
|
|
<text x="552.94" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (7 samples, 0.11%)</title><rect x="855.5" y="1733" width="1.3" height="15.0" fill="rgb(230,0,9)" rx="2" ry="2" />
|
|
<text x="858.47" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="249.4" y="1797" width="0.7" height="15.0" fill="rgb(245,221,6)" rx="2" ry="2" />
|
|
<text x="252.40" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="745.6" y="1733" width="0.1" height="15.0" fill="rgb(252,137,42)" rx="2" ry="2" />
|
|
<text x="748.56" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (16 samples, 0.25%)</title><rect x="992.7" y="1733" width="3.0" height="15.0" fill="rgb(222,203,21)" rx="2" ry="2" />
|
|
<text x="995.72" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="299.8" y="1717" width="0.6" height="15.0" fill="rgb(209,197,9)" rx="2" ry="2" />
|
|
<text x="302.83" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="310.4" y="1733" width="0.1" height="15.0" fill="rgb(215,57,24)" rx="2" ry="2" />
|
|
<text x="313.36" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (8 samples, 0.13%)</title><rect x="993.5" y="1701" width="1.4" height="15.0" fill="rgb(217,55,4)" rx="2" ry="2" />
|
|
<text x="996.46" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (4 samples, 0.06%)</title><rect x="467.6" y="1877" width="0.7" height="15.0" fill="rgb(228,18,10)" rx="2" ry="2" />
|
|
<text x="470.55" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vsnprintf_internal (1 samples, 0.02%)</title><rect x="10.7" y="53" width="0.2" height="15.0" fill="rgb(248,154,26)" rx="2" ry="2" />
|
|
<text x="13.74" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (2 samples, 0.03%)</title><rect x="1038.7" y="1717" width="0.4" height="15.0" fill="rgb(218,41,42)" rx="2" ry="2" />
|
|
<text x="1041.71" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__call_rcu (1 samples, 0.02%)</title><rect x="658.9" y="1557" width="0.2" height="15.0" fill="rgb(236,217,28)" rx="2" ry="2" />
|
|
<text x="661.93" y="1567.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (38 samples, 0.59%)</title><rect x="230.9" y="1893" width="7.0" height="15.0" fill="rgb(223,132,44)" rx="2" ry="2" />
|
|
<text x="233.93" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="244.6" y="1861" width="0.7" height="15.0" fill="rgb(239,102,22)" rx="2" ry="2" />
|
|
<text x="247.60" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="1141.0" y="1781" width="0.6" height="15.0" fill="rgb(253,9,23)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="299.8" y="1733" width="0.6" height="15.0" fill="rgb(231,16,20)" rx="2" ry="2" />
|
|
<text x="302.83" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="258.3" y="1797" width="0.2" height="15.0" fill="rgb(244,179,40)" rx="2" ry="2" />
|
|
<text x="261.27" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (97 samples, 1.52%)</title><rect x="750.5" y="1717" width="18.0" height="15.0" fill="rgb(206,148,22)" rx="2" ry="2" />
|
|
<text x="753.55" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="302.6" y="1813" width="0.2" height="15.0" fill="rgb(224,4,31)" rx="2" ry="2" />
|
|
<text x="305.60" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (58 samples, 0.91%)</title><rect x="867.7" y="1733" width="10.7" height="15.0" fill="rgb(234,219,35)" rx="2" ry="2" />
|
|
<text x="870.66" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (41 samples, 0.64%)</title><rect x="1025.6" y="1813" width="7.6" height="15.0" fill="rgb(223,162,44)" rx="2" ry="2" />
|
|
<text x="1028.60" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="510.8" y="1845" width="0.2" height="15.0" fill="rgb(249,119,6)" rx="2" ry="2" />
|
|
<text x="513.78" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="812.1" y="1781" width="0.3" height="15.0" fill="rgb(252,104,49)" rx="2" ry="2" />
|
|
<text x="815.06" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1749" width="0.2" height="15.0" fill="rgb(217,226,0)" rx="2" ry="2" />
|
|
<text x="13.74" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (22 samples, 0.34%)</title><rect x="297.2" y="1861" width="4.1" height="15.0" fill="rgb(248,146,30)" rx="2" ry="2" />
|
|
<text x="300.24" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="213" width="0.2" height="15.0" fill="rgb(216,64,40)" rx="2" ry="2" />
|
|
<text x="13.74" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="1039.6" y="1717" width="0.2" height="15.0" fill="rgb(236,32,25)" rx="2" ry="2" />
|
|
<text x="1042.64" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="255.3" y="1765" width="0.4" height="15.0" fill="rgb(248,116,24)" rx="2" ry="2" />
|
|
<text x="258.31" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (4 samples, 0.06%)</title><rect x="860.3" y="1701" width="0.7" height="15.0" fill="rgb(209,35,6)" rx="2" ry="2" />
|
|
<text x="863.27" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="745.6" y="1605" width="0.1" height="15.0" fill="rgb(213,106,10)" rx="2" ry="2" />
|
|
<text x="748.56" y="1615.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (109 samples, 1.71%)</title><rect x="748.9" y="1749" width="20.1" height="15.0" fill="rgb(227,46,9)" rx="2" ry="2" />
|
|
<text x="751.89" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="977.8" y="1797" width="0.3" height="15.0" fill="rgb(225,74,26)" rx="2" ry="2" />
|
|
<text x="980.76" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="949" width="0.2" height="15.0" fill="rgb(207,147,14)" rx="2" ry="2" />
|
|
<text x="13.74" y="959.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (8 samples, 0.13%)</title><rect x="1144.0" y="1829" width="1.5" height="15.0" fill="rgb(232,40,48)" rx="2" ry="2" />
|
|
<text x="1147.00" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>prepare_exit_to_usermode (4 samples, 0.06%)</title><rect x="68.6" y="1893" width="0.7" height="15.0" fill="rgb(218,216,48)" rx="2" ry="2" />
|
|
<text x="71.56" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (5 samples, 0.08%)</title><rect x="859.3" y="1701" width="1.0" height="15.0" fill="rgb(252,193,20)" rx="2" ry="2" />
|
|
<text x="862.35" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="706.0" y="1749" width="0.2" height="15.0" fill="rgb(218,88,28)" rx="2" ry="2" />
|
|
<text x="709.03" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (8 samples, 0.13%)</title><rect x="1144.0" y="1845" width="1.5" height="15.0" fill="rgb(225,178,42)" rx="2" ry="2" />
|
|
<text x="1147.00" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (1 samples, 0.02%)</title><rect x="188.4" y="1845" width="0.2" height="15.0" fill="rgb(220,30,23)" rx="2" ry="2" />
|
|
<text x="191.44" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (5 samples, 0.08%)</title><rect x="310.0" y="1829" width="0.9" height="15.0" fill="rgb(215,103,8)" rx="2" ry="2" />
|
|
<text x="312.99" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="280.4" y="1829" width="0.2" height="15.0" fill="rgb(233,166,26)" rx="2" ry="2" />
|
|
<text x="283.43" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (4 samples, 0.06%)</title><rect x="1024.1" y="1781" width="0.8" height="15.0" fill="rgb(225,43,11)" rx="2" ry="2" />
|
|
<text x="1027.12" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (4 samples, 0.06%)</title><rect x="552.2" y="1829" width="0.7" height="15.0" fill="rgb(228,209,47)" rx="2" ry="2" />
|
|
<text x="555.16" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (68 samples, 1.06%)</title><rect x="887.2" y="1797" width="12.6" height="15.0" fill="rgb(227,64,20)" rx="2" ry="2" />
|
|
<text x="890.24" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cfree@GLIBC_2.2.5 (1 samples, 0.02%)</title><rect x="808.0" y="1813" width="0.2" height="15.0" fill="rgb(236,198,29)" rx="2" ry="2" />
|
|
<text x="811.00" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (14 samples, 0.22%)</title><rect x="889.6" y="1717" width="2.6" height="15.0" fill="rgb(221,59,12)" rx="2" ry="2" />
|
|
<text x="892.64" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (4 samples, 0.06%)</title><rect x="249.4" y="1781" width="0.7" height="15.0" fill="rgb(205,161,12)" rx="2" ry="2" />
|
|
<text x="252.40" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1184.3" y="1701" width="0.3" height="15.0" fill="rgb(209,120,32)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="981.8" y="1781" width="0.2" height="15.0" fill="rgb(219,116,1)" rx="2" ry="2" />
|
|
<text x="984.82" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (8 samples, 0.13%)</title><rect x="1180.6" y="1845" width="1.5" height="15.0" fill="rgb(249,196,24)" rx="2" ry="2" />
|
|
<text x="1183.58" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.06%)</title><rect x="10.0" y="2037" width="0.7" height="15.0" fill="rgb(215,143,50)" rx="2" ry="2" />
|
|
<text x="13.00" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (8 samples, 0.13%)</title><rect x="1044.6" y="1685" width="1.5" height="15.0" fill="rgb(210,13,53)" rx="2" ry="2" />
|
|
<text x="1047.62" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (9 samples, 0.14%)</title><rect x="297.2" y="1813" width="1.7" height="15.0" fill="rgb(241,105,45)" rx="2" ry="2" />
|
|
<text x="300.24" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (7 samples, 0.11%)</title><rect x="984.6" y="1765" width="1.3" height="15.0" fill="rgb(239,122,45)" rx="2" ry="2" />
|
|
<text x="987.59" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (22 samples, 0.34%)</title><rect x="858.1" y="1781" width="4.0" height="15.0" fill="rgb(218,57,49)" rx="2" ry="2" />
|
|
<text x="861.06" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (14 samples, 0.22%)</title><rect x="301.3" y="1893" width="2.6" height="15.0" fill="rgb(244,161,43)" rx="2" ry="2" />
|
|
<text x="304.31" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1008.8" y="1781" width="0.5" height="15.0" fill="rgb(237,5,44)" rx="2" ry="2" />
|
|
<text x="1011.79" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="298.9" y="1797" width="0.4" height="15.0" fill="rgb(226,171,9)" rx="2" ry="2" />
|
|
<text x="301.90" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (202 samples, 3.16%)</title><rect x="633.1" y="1749" width="37.3" height="15.0" fill="rgb(212,210,28)" rx="2" ry="2" />
|
|
<text x="636.07" y="1759.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="246.6" y="1893" width="0.6" height="15.0" fill="rgb(216,177,13)" rx="2" ry="2" />
|
|
<text x="249.63" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ktime_get_update_offsets_now (1 samples, 0.02%)</title><rect x="500.1" y="1765" width="0.2" height="15.0" fill="rgb(242,70,37)" rx="2" ry="2" />
|
|
<text x="503.07" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (19 samples, 0.30%)</title><rect x="293.7" y="1813" width="3.5" height="15.0" fill="rgb(220,93,36)" rx="2" ry="2" />
|
|
<text x="296.73" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (6 samples, 0.09%)</title><rect x="1182.1" y="1797" width="1.1" height="15.0" fill="rgb(239,142,5)" rx="2" ry="2" />
|
|
<text x="1185.06" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (653 samples, 10.22%)</title><rect x="939.3" y="1877" width="120.7" height="15.0" fill="rgb(227,106,18)" rx="2" ry="2" />
|
|
<text x="942.33" y="1887.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="306.3" y="1829" width="0.7" height="15.0" fill="rgb(235,56,29)" rx="2" ry="2" />
|
|
<text x="309.29" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="549" width="0.2" height="15.0" fill="rgb(215,215,5)" rx="2" ry="2" />
|
|
<text x="13.74" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (12 samples, 0.19%)</title><rect x="291.5" y="1829" width="2.2" height="15.0" fill="rgb(227,226,15)" rx="2" ry="2" />
|
|
<text x="294.52" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="256.2" y="1701" width="0.2" height="15.0" fill="rgb(241,168,7)" rx="2" ry="2" />
|
|
<text x="259.23" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="248.8" y="1781" width="0.2" height="15.0" fill="rgb(215,198,17)" rx="2" ry="2" />
|
|
<text x="251.84" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="310.0" y="1717" width="0.4" height="15.0" fill="rgb(214,223,27)" rx="2" ry="2" />
|
|
<text x="312.99" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="805" width="0.2" height="15.0" fill="rgb(235,208,52)" rx="2" ry="2" />
|
|
<text x="13.74" y="815.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="307.0" y="1797" width="0.4" height="15.0" fill="rgb(212,118,13)" rx="2" ry="2" />
|
|
<text x="310.03" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="1143.3" y="1813" width="0.7" height="15.0" fill="rgb(205,12,18)" rx="2" ry="2" />
|
|
<text x="1146.27" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1973" width="0.2" height="15.0" fill="rgb(236,225,7)" rx="2" ry="2" />
|
|
<text x="13.74" y="1983.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (5 samples, 0.08%)</title><rect x="287.6" y="1717" width="1.0" height="15.0" fill="rgb(229,223,21)" rx="2" ry="2" />
|
|
<text x="290.64" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (8 samples, 0.13%)</title><rect x="849.2" y="1765" width="1.5" height="15.0" fill="rgb(250,152,15)" rx="2" ry="2" />
|
|
<text x="852.19" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="249.4" y="1749" width="0.2" height="15.0" fill="rgb(239,52,19)" rx="2" ry="2" />
|
|
<text x="252.40" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1589" width="0.2" height="15.0" fill="rgb(236,36,54)" rx="2" ry="2" />
|
|
<text x="13.74" y="1599.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (2 samples, 0.03%)</title><rect x="282.1" y="1813" width="0.4" height="15.0" fill="rgb(236,206,0)" rx="2" ry="2" />
|
|
<text x="285.09" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="885" width="0.2" height="15.0" fill="rgb(241,134,0)" rx="2" ry="2" />
|
|
<text x="13.74" y="895.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1141.4" y="1733" width="0.2" height="15.0" fill="rgb(230,142,7)" rx="2" ry="2" />
|
|
<text x="1144.42" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>main (6,361 samples, 99.58%)</title><rect x="13.9" y="2037" width="1175.0" height="15.0" fill="rgb(206,157,15)" rx="2" ry="2" />
|
|
<text x="16.88" y="2047.5" >main</text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (2 samples, 0.03%)</title><rect x="1023.8" y="1765" width="0.3" height="15.0" fill="rgb(231,101,51)" rx="2" ry="2" />
|
|
<text x="1026.75" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="987.9" y="1797" width="0.2" height="15.0" fill="rgb(210,173,36)" rx="2" ry="2" />
|
|
<text x="990.91" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="251.2" y="1829" width="0.8" height="15.0" fill="rgb(228,154,39)" rx="2" ry="2" />
|
|
<text x="254.25" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="500.1" y="1797" width="0.2" height="15.0" fill="rgb(254,223,49)" rx="2" ry="2" />
|
|
<text x="503.07" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (58 samples, 0.91%)</title><rect x="915.9" y="1797" width="10.7" height="15.0" fill="rgb(227,16,22)" rx="2" ry="2" />
|
|
<text x="918.87" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="852.1" y="1781" width="0.4" height="15.0" fill="rgb(238,179,16)" rx="2" ry="2" />
|
|
<text x="855.14" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="297.6" y="1749" width="0.4" height="15.0" fill="rgb(247,99,22)" rx="2" ry="2" />
|
|
<text x="300.61" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="621.2" y="1733" width="1.0" height="15.0" fill="rgb(252,40,6)" rx="2" ry="2" />
|
|
<text x="624.24" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (4 samples, 0.06%)</title><rect x="1143.3" y="1797" width="0.7" height="15.0" fill="rgb(234,45,14)" rx="2" ry="2" />
|
|
<text x="1146.27" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="279.1" y="1845" width="0.2" height="15.0" fill="rgb(248,185,26)" rx="2" ry="2" />
|
|
<text x="282.14" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1381" width="0.2" height="15.0" fill="rgb(242,1,46)" rx="2" ry="2" />
|
|
<text x="13.74" y="1391.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="705.7" y="1749" width="0.3" height="15.0" fill="rgb(222,171,5)" rx="2" ry="2" />
|
|
<text x="708.66" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (9 samples, 0.14%)</title><rect x="289.9" y="1813" width="1.6" height="15.0" fill="rgb(242,182,10)" rx="2" ry="2" />
|
|
<text x="292.85" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (10 samples, 0.16%)</title><rect x="1132.2" y="1829" width="1.8" height="15.0" fill="rgb(213,174,46)" rx="2" ry="2" />
|
|
<text x="1135.18" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="629" width="0.2" height="15.0" fill="rgb(218,9,20)" rx="2" ry="2" />
|
|
<text x="13.74" y="639.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="290.0" y="1749" width="0.2" height="15.0" fill="rgb(238,36,53)" rx="2" ry="2" />
|
|
<text x="293.04" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (221 samples, 3.46%)</title><rect x="769.0" y="1861" width="40.8" height="15.0" fill="rgb(211,131,28)" rx="2" ry="2" />
|
|
<text x="772.02" y="1871.5" >WOR..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="1145.1" y="1797" width="0.4" height="15.0" fill="rgb(208,110,44)" rx="2" ry="2" />
|
|
<text x="1148.11" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (5 samples, 0.08%)</title><rect x="1187.4" y="1813" width="0.9" height="15.0" fill="rgb(253,161,36)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (610 samples, 9.55%)</title><rect x="310.9" y="1925" width="112.7" height="15.0" fill="rgb(252,104,23)" rx="2" ry="2" />
|
|
<text x="313.91" y="1935.5" >ARRLIST_itera..</text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1141.2" y="1733" width="0.2" height="15.0" fill="rgb(220,94,19)" rx="2" ry="2" />
|
|
<text x="1144.23" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (4 samples, 0.06%)</title><rect x="292.8" y="1781" width="0.7" height="15.0" fill="rgb(215,21,37)" rx="2" ry="2" />
|
|
<text x="295.81" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="309.6" y="1749" width="0.4" height="15.0" fill="rgb(233,30,51)" rx="2" ry="2" />
|
|
<text x="312.62" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (136 samples, 2.13%)</title><rect x="862.1" y="1781" width="25.1" height="15.0" fill="rgb(222,75,20)" rx="2" ry="2" />
|
|
<text x="865.12" y="1791.5" >G..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (3 samples, 0.05%)</title><rect x="307.4" y="1781" width="0.6" height="15.0" fill="rgb(238,49,29)" rx="2" ry="2" />
|
|
<text x="310.40" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="309.1" y="1781" width="0.9" height="15.0" fill="rgb(227,53,25)" rx="2" ry="2" />
|
|
<text x="312.06" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (225 samples, 3.52%)</title><rect x="1060.1" y="1893" width="41.6" height="15.0" fill="rgb(252,199,28)" rx="2" ry="2" />
|
|
<text x="1063.14" y="1903.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1144.9" y="1701" width="0.2" height="15.0" fill="rgb(235,61,28)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (1 samples, 0.02%)</title><rect x="1188.2" y="1765" width="0.1" height="15.0" fill="rgb(234,182,23)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (32 samples, 0.50%)</title><rect x="982.0" y="1781" width="5.9" height="15.0" fill="rgb(253,62,17)" rx="2" ry="2" />
|
|
<text x="985.00" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="257.5" y="1781" width="0.2" height="15.0" fill="rgb(214,0,41)" rx="2" ry="2" />
|
|
<text x="260.53" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (34 samples, 0.53%)</title><rect x="266.6" y="1845" width="6.3" height="15.0" fill="rgb(227,154,45)" rx="2" ry="2" />
|
|
<text x="269.58" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tasklet_action_common.isra.0 (1 samples, 0.02%)</title><rect x="1099.1" y="1765" width="0.2" height="15.0" fill="rgb(229,30,12)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (13 samples, 0.20%)</title><rect x="277.8" y="1893" width="2.4" height="15.0" fill="rgb(234,48,17)" rx="2" ry="2" />
|
|
<text x="280.85" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (231 samples, 3.62%)</title><rect x="426.2" y="1909" width="42.6" height="15.0" fill="rgb(224,207,22)" rx="2" ry="2" />
|
|
<text x="429.18" y="1919.5" >ARRL..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="306.8" y="1749" width="0.2" height="15.0" fill="rgb(245,144,1)" rx="2" ry="2" />
|
|
<text x="309.85" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_free (2 samples, 0.03%)</title><rect x="11.5" y="2037" width="0.3" height="15.0" fill="rgb(241,187,17)" rx="2" ry="2" />
|
|
<text x="14.48" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1077" width="0.2" height="15.0" fill="rgb(222,178,17)" rx="2" ry="2" />
|
|
<text x="13.74" y="1087.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="768.5" y="1717" width="0.2" height="15.0" fill="rgb(242,91,39)" rx="2" ry="2" />
|
|
<text x="771.47" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (29 samples, 0.45%)</title><rect x="678.0" y="1749" width="5.3" height="15.0" fill="rgb(233,148,54)" rx="2" ry="2" />
|
|
<text x="680.95" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (2 samples, 0.03%)</title><rect x="512.3" y="1877" width="0.3" height="15.0" fill="rgb(210,124,1)" rx="2" ry="2" />
|
|
<text x="515.26" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1141.8" y="1701" width="0.2" height="15.0" fill="rgb(218,198,4)" rx="2" ry="2" />
|
|
<text x="1144.79" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="68.4" y="1909" width="0.2" height="15.0" fill="rgb(219,55,36)" rx="2" ry="2" />
|
|
<text x="71.37" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (215 samples, 3.37%)</title><rect x="428.6" y="1893" width="39.7" height="15.0" fill="rgb(243,74,26)" rx="2" ry="2" />
|
|
<text x="431.58" y="1903.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (28 samples, 0.44%)</title><rect x="659.1" y="1717" width="5.2" height="15.0" fill="rgb(212,25,1)" rx="2" ry="2" />
|
|
<text x="662.11" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (9 samples, 0.14%)</title><rect x="237.9" y="1893" width="1.7" height="15.0" fill="rgb(226,93,54)" rx="2" ry="2" />
|
|
<text x="240.95" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (6 samples, 0.09%)</title><rect x="229.8" y="1877" width="1.1" height="15.0" fill="rgb(232,119,9)" rx="2" ry="2" />
|
|
<text x="232.82" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="341" width="0.2" height="15.0" fill="rgb(211,23,24)" rx="2" ry="2" />
|
|
<text x="13.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="1141.6" y="1797" width="0.4" height="15.0" fill="rgb(219,177,47)" rx="2" ry="2" />
|
|
<text x="1144.60" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (6,358 samples, 99.53%)</title><rect x="13.9" y="2005" width="1174.4" height="15.0" fill="rgb(209,80,46)" rx="2" ry="2" />
|
|
<text x="16.88" y="2015.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="276.0" y="1861" width="0.2" height="15.0" fill="rgb(219,164,7)" rx="2" ry="2" />
|
|
<text x="279.00" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="249.0" y="1765" width="0.2" height="15.0" fill="rgb(214,79,29)" rx="2" ry="2" />
|
|
<text x="252.03" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (324 samples, 5.07%)</title><rect x="709.2" y="1813" width="59.8" height="15.0" fill="rgb(219,50,25)" rx="2" ry="2" />
|
|
<text x="712.17" y="1823.5" >WORLD_..</text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="745.6" y="1717" width="0.1" height="15.0" fill="rgb(207,138,39)" rx="2" ry="2" />
|
|
<text x="748.56" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="257.9" y="1781" width="0.4" height="15.0" fill="rgb(233,99,54)" rx="2" ry="2" />
|
|
<text x="260.90" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (30 samples, 0.47%)</title><rect x="520.8" y="1813" width="5.5" height="15.0" fill="rgb(224,70,14)" rx="2" ry="2" />
|
|
<text x="523.75" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (204 samples, 3.19%)</title><rect x="1101.7" y="1877" width="37.7" height="15.0" fill="rgb(236,23,45)" rx="2" ry="2" />
|
|
<text x="1104.70" y="1887.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (36 samples, 0.56%)</title><rect x="1033.2" y="1733" width="6.6" height="15.0" fill="rgb(249,201,0)" rx="2" ry="2" />
|
|
<text x="1036.17" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="593.4" y="1749" width="0.1" height="15.0" fill="rgb(238,52,41)" rx="2" ry="2" />
|
|
<text x="596.35" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (190 samples, 2.97%)</title><rect x="1145.5" y="1861" width="35.1" height="15.0" fill="rgb(210,169,33)" rx="2" ry="2" />
|
|
<text x="1148.48" y="1871.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (6 samples, 0.09%)</title><rect x="250.1" y="1829" width="1.1" height="15.0" fill="rgb(250,26,8)" rx="2" ry="2" />
|
|
<text x="253.14" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (5 samples, 0.08%)</title><rect x="1184.8" y="1749" width="1.0" height="15.0" fill="rgb(229,7,40)" rx="2" ry="2" />
|
|
<text x="1187.83" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1701" width="0.2" height="15.0" fill="rgb(249,74,47)" rx="2" ry="2" />
|
|
<text x="13.74" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="249.6" y="1733" width="0.2" height="15.0" fill="rgb(244,113,28)" rx="2" ry="2" />
|
|
<text x="252.58" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ttwu_do_activate (1 samples, 0.02%)</title><rect x="1099.1" y="1621" width="0.2" height="15.0" fill="rgb(253,42,10)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1631.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>schedule (4 samples, 0.06%)</title><rect x="68.6" y="1861" width="0.7" height="15.0" fill="rgb(231,64,51)" rx="2" ry="2" />
|
|
<text x="71.56" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="421" width="0.2" height="15.0" fill="rgb(227,193,26)" rx="2" ry="2" />
|
|
<text x="13.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (2 samples, 0.03%)</title><rect x="241.3" y="1893" width="0.3" height="15.0" fill="rgb(220,17,17)" rx="2" ry="2" />
|
|
<text x="244.27" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="308.5" y="1749" width="0.4" height="15.0" fill="rgb(232,177,9)" rx="2" ry="2" />
|
|
<text x="311.51" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (69 samples, 1.08%)</title><rect x="825.4" y="1749" width="12.7" height="15.0" fill="rgb(254,222,40)" rx="2" ry="2" />
|
|
<text x="828.36" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (4 samples, 0.06%)</title><rect x="883.9" y="1733" width="0.8" height="15.0" fill="rgb(243,229,40)" rx="2" ry="2" />
|
|
<text x="886.92" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (7 samples, 0.11%)</title><rect x="801.0" y="1781" width="1.3" height="15.0" fill="rgb(211,9,12)" rx="2" ry="2" />
|
|
<text x="803.98" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (83 samples, 1.30%)</title><rect x="952.3" y="1797" width="15.3" height="15.0" fill="rgb(254,42,19)" rx="2" ry="2" />
|
|
<text x="955.26" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (4 samples, 0.06%)</title><rect x="137.1" y="1829" width="0.7" height="15.0" fill="rgb(209,200,9)" rx="2" ry="2" />
|
|
<text x="140.09" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_main (6,361 samples, 99.58%)</title><rect x="13.9" y="2053" width="1175.0" height="15.0" fill="rgb(233,19,29)" rx="2" ry="2" />
|
|
<text x="16.88" y="2063.5" >__libc_start_main</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (1 samples, 0.02%)</title><rect x="258.5" y="1797" width="0.1" height="15.0" fill="rgb(208,215,54)" rx="2" ry="2" />
|
|
<text x="261.45" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (4 samples, 0.06%)</title><rect x="68.6" y="1829" width="0.7" height="15.0" fill="rgb(245,60,46)" rx="2" ry="2" />
|
|
<text x="71.56" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (23 samples, 0.36%)</title><rect x="1000.3" y="1749" width="4.2" height="15.0" fill="rgb(222,14,12)" rx="2" ry="2" />
|
|
<text x="1003.29" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (6 samples, 0.09%)</title><rect x="308.9" y="1845" width="1.1" height="15.0" fill="rgb(230,123,46)" rx="2" ry="2" />
|
|
<text x="311.88" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="310.4" y="1781" width="0.1" height="15.0" fill="rgb(207,134,28)" rx="2" ry="2" />
|
|
<text x="313.36" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (36 samples, 0.56%)</title><rect x="1047.2" y="1749" width="6.7" height="15.0" fill="rgb(222,116,9)" rx="2" ry="2" />
|
|
<text x="1050.21" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1285" width="0.2" height="15.0" fill="rgb(222,57,45)" rx="2" ry="2" />
|
|
<text x="13.74" y="1295.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="256.0" y="1701" width="0.2" height="15.0" fill="rgb(249,16,29)" rx="2" ry="2" />
|
|
<text x="259.05" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="993.6" y="1685" width="1.0" height="15.0" fill="rgb(249,41,0)" rx="2" ry="2" />
|
|
<text x="996.64" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1144.0" y="1765" width="0.2" height="15.0" fill="rgb(219,113,8)" rx="2" ry="2" />
|
|
<text x="1147.00" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="467.4" y="1877" width="0.2" height="15.0" fill="rgb(253,75,27)" rx="2" ry="2" />
|
|
<text x="470.37" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="1141.6" y="1781" width="0.4" height="15.0" fill="rgb(207,112,9)" rx="2" ry="2" />
|
|
<text x="1144.60" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="11.3" y="2021" width="0.2" height="15.0" fill="rgb(236,77,34)" rx="2" ry="2" />
|
|
<text x="14.29" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="188.4" y="1925" width="0.2" height="15.0" fill="rgb(221,83,14)" rx="2" ry="2" />
|
|
<text x="191.44" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (11 samples, 0.17%)</title><rect x="287.5" y="1733" width="2.0" height="15.0" fill="rgb(239,97,47)" rx="2" ry="2" />
|
|
<text x="290.45" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (8 samples, 0.13%)</title><rect x="1184.3" y="1797" width="1.5" height="15.0" fill="rgb(241,35,25)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (22 samples, 0.34%)</title><rect x="188.6" y="1925" width="4.1" height="15.0" fill="rgb(234,209,5)" rx="2" ry="2" />
|
|
<text x="191.63" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (4 samples, 0.06%)</title><rect x="998.4" y="1733" width="0.8" height="15.0" fill="rgb(220,88,11)" rx="2" ry="2" />
|
|
<text x="1001.44" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (9 samples, 0.14%)</title><rect x="1020.1" y="1765" width="1.6" height="15.0" fill="rgb(229,149,13)" rx="2" ry="2" />
|
|
<text x="1023.06" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="293.2" y="1701" width="0.2" height="15.0" fill="rgb(232,7,45)" rx="2" ry="2" />
|
|
<text x="296.18" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="307.4" y="1749" width="0.6" height="15.0" fill="rgb(207,42,7)" rx="2" ry="2" />
|
|
<text x="310.40" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (77 samples, 1.21%)</title><rect x="683.3" y="1749" width="14.2" height="15.0" fill="rgb(248,42,23)" rx="2" ry="2" />
|
|
<text x="686.31" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="593.4" y="1765" width="0.1" height="15.0" fill="rgb(226,207,46)" rx="2" ry="2" />
|
|
<text x="596.35" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="996.6" y="1733" width="0.7" height="15.0" fill="rgb(225,37,13)" rx="2" ry="2" />
|
|
<text x="999.60" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (225 samples, 3.52%)</title><rect x="1060.1" y="1909" width="41.6" height="15.0" fill="rgb(211,127,54)" rx="2" ry="2" />
|
|
<text x="1063.14" y="1919.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (9 samples, 0.14%)</title><rect x="469.0" y="1909" width="1.7" height="15.0" fill="rgb(254,221,50)" rx="2" ry="2" />
|
|
<text x="472.03" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_normal_at (1 samples, 0.02%)</title><rect x="13.9" y="1973" width="0.2" height="15.0" fill="rgb(241,16,14)" rx="2" ry="2" />
|
|
<text x="16.88" y="1983.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (10 samples, 0.16%)</title><rect x="884.7" y="1733" width="1.8" height="15.0" fill="rgb(214,43,19)" rx="2" ry="2" />
|
|
<text x="887.66" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (234 samples, 3.66%)</title><rect x="201.0" y="1941" width="43.2" height="15.0" fill="rgb(224,71,2)" rx="2" ry="2" />
|
|
<text x="204.00" y="1951.5" >GROU..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="308.0" y="1765" width="0.3" height="15.0" fill="rgb(241,33,39)" rx="2" ry="2" />
|
|
<text x="310.96" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="428.2" y="1893" width="0.4" height="15.0" fill="rgb(232,124,0)" rx="2" ry="2" />
|
|
<text x="431.21" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="693" width="0.2" height="15.0" fill="rgb(246,163,23)" rx="2" ry="2" />
|
|
<text x="13.74" y="703.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="252.4" y="1813" width="0.1" height="15.0" fill="rgb(233,182,8)" rx="2" ry="2" />
|
|
<text x="255.35" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="299.3" y="1749" width="1.1" height="15.0" fill="rgb(252,94,40)" rx="2" ry="2" />
|
|
<text x="302.27" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (186 samples, 2.91%)</title><rect x="597.6" y="1765" width="34.4" height="15.0" fill="rgb(235,128,48)" rx="2" ry="2" />
|
|
<text x="600.60" y="1775.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (7 samples, 0.11%)</title><rect x="286.0" y="1765" width="1.3" height="15.0" fill="rgb(206,202,13)" rx="2" ry="2" />
|
|
<text x="288.97" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="255.3" y="1733" width="0.4" height="15.0" fill="rgb(250,141,33)" rx="2" ry="2" />
|
|
<text x="258.31" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (3,189 samples, 49.92%)</title><rect x="471.1" y="1925" width="589.0" height="15.0" fill="rgb(214,159,48)" rx="2" ry="2" />
|
|
<text x="474.06" y="1935.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (7 samples, 0.11%)</title><rect x="1167.5" y="1781" width="1.3" height="15.0" fill="rgb(232,54,52)" rx="2" ry="2" />
|
|
<text x="1170.46" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (3 samples, 0.05%)</title><rect x="252.5" y="1813" width="0.6" height="15.0" fill="rgb(247,207,0)" rx="2" ry="2" />
|
|
<text x="255.54" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1525" width="0.2" height="15.0" fill="rgb(216,176,4)" rx="2" ry="2" />
|
|
<text x="13.74" y="1535.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (6 samples, 0.09%)</title><rect x="550.5" y="1813" width="1.1" height="15.0" fill="rgb(231,155,30)" rx="2" ry="2" />
|
|
<text x="553.49" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="253.1" y="1829" width="0.2" height="15.0" fill="rgb(241,42,19)" rx="2" ry="2" />
|
|
<text x="256.09" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (215 samples, 3.37%)</title><rect x="709.2" y="1797" width="39.7" height="15.0" fill="rgb(242,167,44)" rx="2" ry="2" />
|
|
<text x="712.17" y="1807.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (7 samples, 0.11%)</title><rect x="1093.9" y="1845" width="1.3" height="15.0" fill="rgb(236,121,9)" rx="2" ry="2" />
|
|
<text x="1096.94" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="298.7" y="1765" width="0.2" height="15.0" fill="rgb(213,91,12)" rx="2" ry="2" />
|
|
<text x="301.72" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (13 samples, 0.20%)</title><rect x="280.2" y="1845" width="2.4" height="15.0" fill="rgb(208,28,35)" rx="2" ry="2" />
|
|
<text x="283.25" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (9 samples, 0.14%)</title><rect x="931.9" y="1813" width="1.7" height="15.0" fill="rgb(238,141,53)" rx="2" ry="2" />
|
|
<text x="934.94" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (102 samples, 1.60%)</title><rect x="259.0" y="1909" width="18.8" height="15.0" fill="rgb(216,107,11)" rx="2" ry="2" />
|
|
<text x="262.00" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__softirqentry_text_start (1 samples, 0.02%)</title><rect x="1099.1" y="1797" width="0.2" height="15.0" fill="rgb(218,200,25)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="1186.9" y="1749" width="0.1" height="15.0" fill="rgb(211,18,53)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="283.2" y="1781" width="0.2" height="15.0" fill="rgb(228,86,5)" rx="2" ry="2" />
|
|
<text x="286.20" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (17 samples, 0.27%)</title><rect x="992.7" y="1749" width="3.2" height="15.0" fill="rgb(231,125,33)" rx="2" ry="2" />
|
|
<text x="995.72" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (11 samples, 0.17%)</title><rect x="287.5" y="1749" width="2.0" height="15.0" fill="rgb(253,166,39)" rx="2" ry="2" />
|
|
<text x="290.45" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="247.2" y="1829" width="0.5" height="15.0" fill="rgb(225,19,41)" rx="2" ry="2" />
|
|
<text x="250.18" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (6 samples, 0.09%)</title><rect x="255.7" y="1813" width="1.1" height="15.0" fill="rgb(252,189,5)" rx="2" ry="2" />
|
|
<text x="258.68" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (13 samples, 0.20%)</title><rect x="1140.9" y="1845" width="2.4" height="15.0" fill="rgb(236,55,18)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1026.3" y="1765" width="0.2" height="15.0" fill="rgb(227,20,46)" rx="2" ry="2" />
|
|
<text x="1029.34" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="308.3" y="1749" width="0.2" height="15.0" fill="rgb(236,85,50)" rx="2" ry="2" />
|
|
<text x="311.32" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (942 samples, 14.75%)</title><rect x="595.0" y="1845" width="174.0" height="15.0" fill="rgb(250,227,39)" rx="2" ry="2" />
|
|
<text x="598.01" y="1855.5" >WORLD_shade_hit</text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="500.1" y="1781" width="0.2" height="15.0" fill="rgb(207,71,11)" rx="2" ry="2" />
|
|
<text x="503.07" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (136 samples, 2.13%)</title><rect x="862.1" y="1813" width="25.1" height="15.0" fill="rgb(240,190,1)" rx="2" ry="2" />
|
|
<text x="865.12" y="1823.5" >W..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (75 samples, 1.17%)</title><rect x="487.0" y="1845" width="13.8" height="15.0" fill="rgb(235,127,40)" rx="2" ry="2" />
|
|
<text x="489.95" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (2 samples, 0.03%)</title><rect x="939.0" y="1845" width="0.3" height="15.0" fill="rgb(224,171,17)" rx="2" ry="2" />
|
|
<text x="941.96" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (4 samples, 0.06%)</title><rect x="1138.6" y="1861" width="0.8" height="15.0" fill="rgb(216,173,25)" rx="2" ry="2" />
|
|
<text x="1141.65" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>prepare_exit_to_usermode (5 samples, 0.08%)</title><rect x="136.9" y="1877" width="0.9" height="15.0" fill="rgb(246,182,40)" rx="2" ry="2" />
|
|
<text x="139.90" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__perf_event_task_sched_in (4 samples, 0.06%)</title><rect x="68.6" y="1813" width="0.7" height="15.0" fill="rgb(223,70,12)" rx="2" ry="2" />
|
|
<text x="71.56" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (13 samples, 0.20%)</title><rect x="287.5" y="1797" width="2.4" height="15.0" fill="rgb(221,153,25)" rx="2" ry="2" />
|
|
<text x="290.45" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf (4 samples, 0.06%)</title><rect x="10.0" y="2069" width="0.7" height="15.0" fill="rgb(241,226,30)" rx="2" ry="2" />
|
|
<text x="13.00" y="2079.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1086.9" y="1797" width="0.2" height="15.0" fill="rgb(239,183,53)" rx="2" ry="2" />
|
|
<text x="1089.93" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="252.0" y="1733" width="0.2" height="15.0" fill="rgb(206,99,15)" rx="2" ry="2" />
|
|
<text x="254.98" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="252.0" y="1797" width="0.4" height="15.0" fill="rgb(210,49,52)" rx="2" ry="2" />
|
|
<text x="254.98" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="468.8" y="1909" width="0.2" height="15.0" fill="rgb(244,47,1)" rx="2" ry="2" />
|
|
<text x="471.85" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (14 samples, 0.22%)</title><rect x="865.1" y="1733" width="2.6" height="15.0" fill="rgb(218,121,18)" rx="2" ry="2" />
|
|
<text x="868.08" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="258.5" y="1749" width="0.1" height="15.0" fill="rgb(246,117,29)" rx="2" ry="2" />
|
|
<text x="261.45" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="251.8" y="1765" width="0.2" height="15.0" fill="rgb(242,216,5)" rx="2" ry="2" />
|
|
<text x="254.80" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (100 samples, 1.57%)</title><rect x="387.8" y="1893" width="18.4" height="15.0" fill="rgb(244,82,14)" rx="2" ry="2" />
|
|
<text x="390.76" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="1144.7" y="1749" width="0.2" height="15.0" fill="rgb(219,226,46)" rx="2" ry="2" />
|
|
<text x="1147.74" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_wall_time (1 samples, 0.02%)</title><rect x="926.4" y="1669" width="0.2" height="15.0" fill="rgb(229,202,4)" rx="2" ry="2" />
|
|
<text x="929.40" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (8 samples, 0.13%)</title><rect x="844.2" y="1765" width="1.5" height="15.0" fill="rgb(241,134,48)" rx="2" ry="2" />
|
|
<text x="847.20" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="308.5" y="1733" width="0.4" height="15.0" fill="rgb(207,20,47)" rx="2" ry="2" />
|
|
<text x="311.51" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1136.6" y="1797" width="0.2" height="15.0" fill="rgb(234,174,34)" rx="2" ry="2" />
|
|
<text x="1139.62" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (45 samples, 0.70%)</title><rect x="285.4" y="1845" width="8.3" height="15.0" fill="rgb(230,186,47)" rx="2" ry="2" />
|
|
<text x="288.42" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="283.0" y="1797" width="2.4" height="15.0" fill="rgb(210,0,49)" rx="2" ry="2" />
|
|
<text x="286.02" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (6 samples, 0.09%)</title><rect x="771.4" y="1797" width="1.1" height="15.0" fill="rgb(225,59,7)" rx="2" ry="2" />
|
|
<text x="774.42" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (36 samples, 0.56%)</title><rect x="1047.2" y="1733" width="6.7" height="15.0" fill="rgb(253,100,23)" rx="2" ry="2" />
|
|
<text x="1050.21" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="307.4" y="1733" width="0.6" height="15.0" fill="rgb(247,30,3)" rx="2" ry="2" />
|
|
<text x="310.40" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1237" width="0.2" height="15.0" fill="rgb(227,93,31)" rx="2" ry="2" />
|
|
<text x="13.74" y="1247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="748.7" y="1765" width="0.2" height="15.0" fill="rgb(228,84,22)" rx="2" ry="2" />
|
|
<text x="751.70" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (11 samples, 0.17%)</title><rect x="280.6" y="1829" width="2.0" height="15.0" fill="rgb(247,114,40)" rx="2" ry="2" />
|
|
<text x="283.62" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="895.0" y="1685" width="0.7" height="15.0" fill="rgb(220,137,8)" rx="2" ry="2" />
|
|
<text x="898.00" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="13.9" y="1957" width="0.2" height="15.0" fill="rgb(209,36,46)" rx="2" ry="2" />
|
|
<text x="16.88" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (41 samples, 0.64%)</title><rect x="988.3" y="1813" width="7.6" height="15.0" fill="rgb(206,154,44)" rx="2" ry="2" />
|
|
<text x="991.28" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1182.4" y="1749" width="0.4" height="15.0" fill="rgb(208,156,14)" rx="2" ry="2" />
|
|
<text x="1185.43" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="310.5" y="1701" width="0.2" height="15.0" fill="rgb(220,64,24)" rx="2" ry="2" />
|
|
<text x="313.54" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="248.7" y="1765" width="0.1" height="15.0" fill="rgb(227,115,2)" rx="2" ry="2" />
|
|
<text x="251.66" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (2 samples, 0.03%)</title><rect x="999.7" y="1733" width="0.4" height="15.0" fill="rgb(219,177,17)" rx="2" ry="2" />
|
|
<text x="1002.74" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (27 samples, 0.42%)</title><rect x="1054.0" y="1749" width="5.0" height="15.0" fill="rgb(209,72,11)" rx="2" ry="2" />
|
|
<text x="1057.05" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="1187.6" y="1701" width="0.6" height="15.0" fill="rgb(246,210,44)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (8 samples, 0.13%)</title><rect x="1139.4" y="1829" width="1.5" height="15.0" fill="rgb(254,1,13)" rx="2" ry="2" />
|
|
<text x="1142.39" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="300.6" y="1733" width="0.2" height="15.0" fill="rgb(252,58,40)" rx="2" ry="2" />
|
|
<text x="303.57" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="1142.9" y="1733" width="0.4" height="15.0" fill="rgb(218,60,26)" rx="2" ry="2" />
|
|
<text x="1145.90" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (19 samples, 0.30%)</title><rect x="1004.5" y="1781" width="3.5" height="15.0" fill="rgb(213,200,14)" rx="2" ry="2" />
|
|
<text x="1007.54" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1184.3" y="1717" width="0.3" height="15.0" fill="rgb(222,112,31)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="1142.9" y="1717" width="0.4" height="15.0" fill="rgb(238,125,26)" rx="2" ry="2" />
|
|
<text x="1145.90" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (229 samples, 3.58%)</title><rect x="201.0" y="1925" width="42.3" height="15.0" fill="rgb(234,224,49)" rx="2" ry="2" />
|
|
<text x="204.00" y="1935.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (13 samples, 0.20%)</title><rect x="547.5" y="1813" width="2.4" height="15.0" fill="rgb(217,115,13)" rx="2" ry="2" />
|
|
<text x="550.54" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="258.3" y="1733" width="0.2" height="15.0" fill="rgb(242,0,35)" rx="2" ry="2" />
|
|
<text x="261.27" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="251.2" y="1797" width="0.8" height="15.0" fill="rgb(252,32,42)" rx="2" ry="2" />
|
|
<text x="254.25" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (11 samples, 0.17%)</title><rect x="285.4" y="1813" width="2.1" height="15.0" fill="rgb(239,166,15)" rx="2" ry="2" />
|
|
<text x="288.42" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_do_timer (1 samples, 0.02%)</title><rect x="1186.9" y="1653" width="0.1" height="15.0" fill="rgb(214,183,36)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="188.4" y="1877" width="0.2" height="15.0" fill="rgb(218,117,29)" rx="2" ry="2" />
|
|
<text x="191.44" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (95 samples, 1.49%)</title><rect x="1008.0" y="1813" width="17.6" height="15.0" fill="rgb(220,25,29)" rx="2" ry="2" />
|
|
<text x="1011.05" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="281.4" y="1813" width="0.5" height="15.0" fill="rgb(214,226,21)" rx="2" ry="2" />
|
|
<text x="284.36" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (7 samples, 0.11%)</title><rect x="414.7" y="1893" width="1.3" height="15.0" fill="rgb(254,33,32)" rx="2" ry="2" />
|
|
<text x="417.72" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="298.9" y="1765" width="0.4" height="15.0" fill="rgb(218,138,24)" rx="2" ry="2" />
|
|
<text x="301.90" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (35 samples, 0.55%)</title><rect x="1040.6" y="1701" width="6.4" height="15.0" fill="rgb(219,42,3)" rx="2" ry="2" />
|
|
<text x="1043.56" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (488 samples, 7.64%)</title><rect x="810.0" y="1845" width="90.2" height="15.0" fill="rgb(213,168,21)" rx="2" ry="2" />
|
|
<text x="813.03" y="1855.5" >WORLD_colo..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (197 samples, 3.08%)</title><rect x="901.8" y="1829" width="36.4" height="15.0" fill="rgb(234,105,16)" rx="2" ry="2" />
|
|
<text x="904.83" y="1839.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="1188.2" y="1733" width="0.1" height="15.0" fill="rgb(250,207,33)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="994.9" y="1701" width="0.6" height="15.0" fill="rgb(244,178,6)" rx="2" ry="2" />
|
|
<text x="997.93" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (17 samples, 0.27%)</title><rect x="384.6" y="1877" width="3.2" height="15.0" fill="rgb(206,185,16)" rx="2" ry="2" />
|
|
<text x="387.61" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (13 samples, 0.20%)</title><rect x="1011.2" y="1765" width="2.4" height="15.0" fill="rgb(227,60,31)" rx="2" ry="2" />
|
|
<text x="1014.19" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (397 samples, 6.21%)</title><rect x="69.3" y="1925" width="73.3" height="15.0" fill="rgb(247,174,15)" rx="2" ry="2" />
|
|
<text x="72.30" y="1935.5" >RAY_tran..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="307.6" y="1685" width="0.4" height="15.0" fill="rgb(208,60,50)" rx="2" ry="2" />
|
|
<text x="310.59" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (44 samples, 0.69%)</title><rect x="854.0" y="1813" width="8.1" height="15.0" fill="rgb(206,78,37)" rx="2" ry="2" />
|
|
<text x="856.99" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (5 samples, 0.08%)</title><rect x="856.8" y="1733" width="0.9" height="15.0" fill="rgb(242,114,6)" rx="2" ry="2" />
|
|
<text x="859.76" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (51 samples, 0.80%)</title><rect x="1115.0" y="1813" width="9.4" height="15.0" fill="rgb(206,137,31)" rx="2" ry="2" />
|
|
<text x="1118.00" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="500.1" y="1813" width="0.2" height="15.0" fill="rgb(253,32,22)" rx="2" ry="2" />
|
|
<text x="503.07" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (42 samples, 0.66%)</title><rect x="1180.6" y="1877" width="7.7" height="15.0" fill="rgb(207,125,0)" rx="2" ry="2" />
|
|
<text x="1183.58" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (4 samples, 0.06%)</title><rect x="283.4" y="1781" width="0.7" height="15.0" fill="rgb(226,127,37)" rx="2" ry="2" />
|
|
<text x="286.39" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1141.6" y="1717" width="0.4" height="15.0" fill="rgb(208,108,25)" rx="2" ry="2" />
|
|
<text x="1144.60" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="300.8" y="1733" width="0.5" height="15.0" fill="rgb(212,169,42)" rx="2" ry="2" />
|
|
<text x="303.75" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1024.9" y="1797" width="0.5" height="15.0" fill="rgb(240,80,53)" rx="2" ry="2" />
|
|
<text x="1027.86" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="247.7" y="1829" width="1.1" height="15.0" fill="rgb(236,163,44)" rx="2" ry="2" />
|
|
<text x="250.74" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="252.0" y="1781" width="0.4" height="15.0" fill="rgb(210,127,16)" rx="2" ry="2" />
|
|
<text x="254.98" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="517" width="0.2" height="15.0" fill="rgb(225,127,3)" rx="2" ry="2" />
|
|
<text x="13.74" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (24 samples, 0.38%)</title><rect x="1054.2" y="1717" width="4.5" height="15.0" fill="rgb(213,70,29)" rx="2" ry="2" />
|
|
<text x="1057.23" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (11 samples, 0.17%)</title><rect x="895.7" y="1685" width="2.1" height="15.0" fill="rgb(239,168,16)" rx="2" ry="2" />
|
|
<text x="898.74" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="258.5" y="1717" width="0.1" height="15.0" fill="rgb(219,40,29)" rx="2" ry="2" />
|
|
<text x="261.45" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="554.0" y="1813" width="0.2" height="15.0" fill="rgb(222,194,17)" rx="2" ry="2" />
|
|
<text x="557.00" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="300.6" y="1749" width="0.2" height="15.0" fill="rgb(233,178,13)" rx="2" ry="2" />
|
|
<text x="303.57" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (5 samples, 0.08%)</title><rect x="1022.6" y="1765" width="1.0" height="15.0" fill="rgb(211,118,40)" rx="2" ry="2" />
|
|
<text x="1025.64" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="853" width="0.2" height="15.0" fill="rgb(206,207,34)" rx="2" ry="2" />
|
|
<text x="13.74" y="863.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="300.8" y="1749" width="0.5" height="15.0" fill="rgb(250,158,51)" rx="2" ry="2" />
|
|
<text x="303.75" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="149" width="0.2" height="15.0" fill="rgb(247,77,5)" rx="2" ry="2" />
|
|
<text x="13.74" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="280.2" y="1877" width="2.4" height="15.0" fill="rgb(248,227,45)" rx="2" ry="2" />
|
|
<text x="283.25" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (6 samples, 0.09%)</title><rect x="702.7" y="1749" width="1.1" height="15.0" fill="rgb(205,23,14)" rx="2" ry="2" />
|
|
<text x="705.71" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="2005" width="0.2" height="15.0" fill="rgb(229,80,18)" rx="2" ry="2" />
|
|
<text x="13.74" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1477" width="0.2" height="15.0" fill="rgb(229,137,26)" rx="2" ry="2" />
|
|
<text x="13.74" y="1487.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="511.7" y="1877" width="0.6" height="15.0" fill="rgb(242,137,54)" rx="2" ry="2" />
|
|
<text x="514.70" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="293.0" y="1701" width="0.2" height="15.0" fill="rgb(250,112,33)" rx="2" ry="2" />
|
|
<text x="295.99" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (11 samples, 0.17%)</title><rect x="890.2" y="1701" width="2.0" height="15.0" fill="rgb(254,67,1)" rx="2" ry="2" />
|
|
<text x="893.20" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="899.1" y="1685" width="0.1" height="15.0" fill="rgb(235,128,31)" rx="2" ry="2" />
|
|
<text x="902.06" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="255.3" y="1813" width="0.4" height="15.0" fill="rgb(207,174,15)" rx="2" ry="2" />
|
|
<text x="258.31" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1,011 samples, 15.83%)</title><rect x="14.1" y="1973" width="186.7" height="15.0" fill="rgb(246,38,4)" rx="2" ry="2" />
|
|
<text x="17.06" y="1983.5" >GROUP_local_intersect</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="283.4" y="1765" width="0.5" height="15.0" fill="rgb(219,165,22)" rx="2" ry="2" />
|
|
<text x="286.39" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="300.6" y="1717" width="0.2" height="15.0" fill="rgb(212,187,6)" rx="2" ry="2" />
|
|
<text x="303.57" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="300.6" y="1781" width="0.2" height="15.0" fill="rgb(224,161,43)" rx="2" ry="2" />
|
|
<text x="303.57" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (80 samples, 1.25%)</title><rect x="441.7" y="1877" width="14.8" height="15.0" fill="rgb(229,83,23)" rx="2" ry="2" />
|
|
<text x="444.69" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (7 samples, 0.11%)</title><rect x="299.3" y="1813" width="1.3" height="15.0" fill="rgb(250,223,38)" rx="2" ry="2" />
|
|
<text x="302.27" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="245.9" y="1861" width="0.4" height="15.0" fill="rgb(229,172,1)" rx="2" ry="2" />
|
|
<text x="248.89" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (1 samples, 0.02%)</title><rect x="13.7" y="2037" width="0.2" height="15.0" fill="rgb(237,122,38)" rx="2" ry="2" />
|
|
<text x="16.69" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="281.9" y="1813" width="0.2" height="15.0" fill="rgb(243,207,30)" rx="2" ry="2" />
|
|
<text x="284.91" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="292.8" y="1749" width="0.7" height="15.0" fill="rgb(213,205,18)" rx="2" ry="2" />
|
|
<text x="295.81" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="310.0" y="1749" width="0.4" height="15.0" fill="rgb(252,197,31)" rx="2" ry="2" />
|
|
<text x="312.99" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="258.1" y="1765" width="0.2" height="15.0" fill="rgb(218,89,43)" rx="2" ry="2" />
|
|
<text x="261.08" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1059.0" y="1685" width="1.0" height="15.0" fill="rgb(216,35,39)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1685" width="0.2" height="15.0" fill="rgb(234,25,20)" rx="2" ry="2" />
|
|
<text x="13.74" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1142.9" y="1749" width="0.4" height="15.0" fill="rgb(217,43,23)" rx="2" ry="2" />
|
|
<text x="1145.90" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (221 samples, 3.46%)</title><rect x="554.2" y="1829" width="40.8" height="15.0" fill="rgb(225,60,45)" rx="2" ry="2" />
|
|
<text x="557.19" y="1839.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="310.0" y="1669" width="0.2" height="15.0" fill="rgb(219,156,36)" rx="2" ry="2" />
|
|
<text x="312.99" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (3 samples, 0.05%)</title><rect x="630.5" y="1749" width="0.5" height="15.0" fill="rgb(217,164,31)" rx="2" ry="2" />
|
|
<text x="633.48" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (16 samples, 0.25%)</title><rect x="10.9" y="2053" width="3.0" height="15.0" fill="rgb(239,81,31)" rx="2" ry="2" />
|
|
<text x="13.92" y="2063.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (22 samples, 0.34%)</title><rect x="854.0" y="1781" width="4.1" height="15.0" fill="rgb(249,185,39)" rx="2" ry="2" />
|
|
<text x="856.99" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="284.9" y="1781" width="0.2" height="15.0" fill="rgb(248,122,38)" rx="2" ry="2" />
|
|
<text x="287.87" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (5 samples, 0.08%)</title><rect x="1059.0" y="1765" width="1.0" height="15.0" fill="rgb(214,227,2)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vfprintf_internal (1 samples, 0.02%)</title><rect x="1188.5" y="1989" width="0.2" height="15.0" fill="rgb(252,49,24)" rx="2" ry="2" />
|
|
<text x="1191.52" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (3 samples, 0.05%)</title><rect x="1052.9" y="1717" width="0.6" height="15.0" fill="rgb(227,141,36)" rx="2" ry="2" />
|
|
<text x="1055.94" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="245" width="0.2" height="15.0" fill="rgb(252,207,49)" rx="2" ry="2" />
|
|
<text x="13.74" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (9 samples, 0.14%)</title><rect x="421.9" y="1909" width="1.7" height="15.0" fill="rgb(220,30,35)" rx="2" ry="2" />
|
|
<text x="424.93" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (101 samples, 1.58%)</title><rect x="259.0" y="1893" width="18.7" height="15.0" fill="rgb(205,28,20)" rx="2" ry="2" />
|
|
<text x="262.00" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1461" width="0.2" height="15.0" fill="rgb(207,205,20)" rx="2" ry="2" />
|
|
<text x="13.74" y="1471.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="1142.3" y="1749" width="0.6" height="15.0" fill="rgb(238,191,30)" rx="2" ry="2" />
|
|
<text x="1145.34" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="1142.0" y="1781" width="0.3" height="15.0" fill="rgb(248,122,30)" rx="2" ry="2" />
|
|
<text x="1144.97" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="857.9" y="1765" width="0.2" height="15.0" fill="rgb(212,106,44)" rx="2" ry="2" />
|
|
<text x="860.87" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="181" width="0.2" height="15.0" fill="rgb(217,196,1)" rx="2" ry="2" />
|
|
<text x="13.74" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (75 samples, 1.17%)</title><rect x="913.7" y="1813" width="13.8" height="15.0" fill="rgb(241,228,42)" rx="2" ry="2" />
|
|
<text x="916.66" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (76 samples, 1.19%)</title><rect x="1033.2" y="1797" width="14.0" height="15.0" fill="rgb(221,120,31)" rx="2" ry="2" />
|
|
<text x="1036.17" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="288.6" y="1717" width="0.3" height="15.0" fill="rgb(225,38,7)" rx="2" ry="2" />
|
|
<text x="291.56" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="258.5" y="1765" width="0.1" height="15.0" fill="rgb(249,91,43)" rx="2" ry="2" />
|
|
<text x="261.45" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1144.6" y="1733" width="0.1" height="15.0" fill="rgb(218,165,37)" rx="2" ry="2" />
|
|
<text x="1147.56" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (57 samples, 0.89%)</title><rect x="1158.2" y="1797" width="10.6" height="15.0" fill="rgb(237,97,27)" rx="2" ry="2" />
|
|
<text x="1161.23" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="984.6" y="1749" width="0.9" height="15.0" fill="rgb(225,65,28)" rx="2" ry="2" />
|
|
<text x="987.59" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (6 samples, 0.09%)</title><rect x="252.0" y="1845" width="1.1" height="15.0" fill="rgb(230,138,44)" rx="2" ry="2" />
|
|
<text x="254.98" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="593.7" y="1813" width="0.2" height="15.0" fill="rgb(218,223,3)" rx="2" ry="2" />
|
|
<text x="596.72" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="248.8" y="1797" width="0.2" height="15.0" fill="rgb(253,149,34)" rx="2" ry="2" />
|
|
<text x="251.84" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (227 samples, 3.55%)</title><rect x="939.3" y="1861" width="42.0" height="15.0" fill="rgb(222,59,53)" rx="2" ry="2" />
|
|
<text x="942.33" y="1871.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="1023.6" y="1765" width="0.2" height="15.0" fill="rgb(205,43,53)" rx="2" ry="2" />
|
|
<text x="1026.57" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (568 samples, 8.89%)</title><rect x="317.0" y="1909" width="104.9" height="15.0" fill="rgb(225,187,27)" rx="2" ry="2" />
|
|
<text x="320.01" y="1919.5" >SHAPE_inters..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (5 samples, 0.08%)</title><rect x="1187.4" y="1829" width="0.9" height="15.0" fill="rgb(220,173,7)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="745.0" y="1733" width="0.4" height="15.0" fill="rgb(243,8,42)" rx="2" ry="2" />
|
|
<text x="748.01" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>intel_engine_add_retire (1 samples, 0.02%)</title><rect x="1099.1" y="1717" width="0.2" height="15.0" fill="rgb(227,199,40)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1046.1" y="1685" width="0.2" height="15.0" fill="rgb(240,200,32)" rx="2" ry="2" />
|
|
<text x="1049.10" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="281.0" y="1813" width="0.4" height="15.0" fill="rgb(248,40,2)" rx="2" ry="2" />
|
|
<text x="283.99" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="869" width="0.2" height="15.0" fill="rgb(239,115,1)" rx="2" ry="2" />
|
|
<text x="13.74" y="879.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="255.3" y="1781" width="0.4" height="15.0" fill="rgb(252,224,49)" rx="2" ry="2" />
|
|
<text x="258.31" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="389" width="0.2" height="15.0" fill="rgb(220,170,8)" rx="2" ry="2" />
|
|
<text x="13.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1141.6" y="1765" width="0.4" height="15.0" fill="rgb(233,189,12)" rx="2" ry="2" />
|
|
<text x="1144.60" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="258.5" y="1781" width="0.1" height="15.0" fill="rgb(208,143,43)" rx="2" ry="2" />
|
|
<text x="261.45" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="1186.9" y="1685" width="0.1" height="15.0" fill="rgb(230,195,23)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (22 samples, 0.34%)</title><rect x="858.1" y="1765" width="4.0" height="15.0" fill="rgb(226,153,47)" rx="2" ry="2" />
|
|
<text x="861.06" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (74 samples, 1.16%)</title><rect x="645.4" y="1717" width="13.7" height="15.0" fill="rgb(252,30,54)" rx="2" ry="2" />
|
|
<text x="648.44" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_prepare_computations (1 samples, 0.02%)</title><rect x="554.0" y="1845" width="0.2" height="15.0" fill="rgb(239,23,8)" rx="2" ry="2" />
|
|
<text x="557.00" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (62 samples, 0.97%)</title><rect x="1075.7" y="1829" width="11.4" height="15.0" fill="rgb(240,67,38)" rx="2" ry="2" />
|
|
<text x="1078.66" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_preempt_curr (1 samples, 0.02%)</title><rect x="1099.1" y="1589" width="0.2" height="15.0" fill="rgb(245,77,4)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1599.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (145 samples, 2.27%)</title><rect x="1033.2" y="1813" width="26.8" height="15.0" fill="rgb(228,121,50)" rx="2" ry="2" />
|
|
<text x="1036.17" y="1823.5" >W..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (3 samples, 0.05%)</title><rect x="300.8" y="1781" width="0.5" height="15.0" fill="rgb(246,171,15)" rx="2" ry="2" />
|
|
<text x="303.75" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wake_up_process (1 samples, 0.02%)</title><rect x="1099.1" y="1653" width="0.2" height="15.0" fill="rgb(214,229,38)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="473.1" y="1861" width="0.4" height="15.0" fill="rgb(248,99,35)" rx="2" ry="2" />
|
|
<text x="476.10" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="272.9" y="1845" width="0.3" height="15.0" fill="rgb(221,39,52)" rx="2" ry="2" />
|
|
<text x="275.86" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (21 samples, 0.33%)</title><rect x="255.1" y="1877" width="3.9" height="15.0" fill="rgb(208,53,53)" rx="2" ry="2" />
|
|
<text x="258.13" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (6 samples, 0.09%)</title><rect x="1001.6" y="1717" width="1.1" height="15.0" fill="rgb(217,221,54)" rx="2" ry="2" />
|
|
<text x="1004.58" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="308.5" y="1717" width="0.4" height="15.0" fill="rgb(213,186,5)" rx="2" ry="2" />
|
|
<text x="311.51" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (12 samples, 0.19%)</title><rect x="304.1" y="1813" width="2.2" height="15.0" fill="rgb(250,44,19)" rx="2" ry="2" />
|
|
<text x="307.08" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (6 samples, 0.09%)</title><rect x="854.4" y="1733" width="1.1" height="15.0" fill="rgb(221,8,39)" rx="2" ry="2" />
|
|
<text x="857.36" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (8 samples, 0.13%)</title><rect x="17.8" y="1941" width="1.4" height="15.0" fill="rgb(232,107,22)" rx="2" ry="2" />
|
|
<text x="20.76" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timekeeping_advance (1 samples, 0.02%)</title><rect x="1186.9" y="1605" width="0.1" height="15.0" fill="rgb(254,15,5)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1615.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_sort_intersections (1 samples, 0.02%)</title><rect x="981.1" y="1845" width="0.2" height="15.0" fill="rgb(254,47,51)" rx="2" ry="2" />
|
|
<text x="984.08" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="1184.1" y="1749" width="0.2" height="15.0" fill="rgb(248,158,50)" rx="2" ry="2" />
|
|
<text x="1187.09" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="303.9" y="1813" width="0.2" height="15.0" fill="rgb(228,162,23)" rx="2" ry="2" />
|
|
<text x="306.89" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1141.0" y="1733" width="0.2" height="15.0" fill="rgb(217,90,39)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_usermode_loop (1 samples, 0.02%)</title><rect x="658.9" y="1653" width="0.2" height="15.0" fill="rgb(229,189,45)" rx="2" ry="2" />
|
|
<text x="661.93" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (37 samples, 0.58%)</title><rect x="1047.2" y="1781" width="6.8" height="15.0" fill="rgb(227,43,33)" rx="2" ry="2" />
|
|
<text x="1050.21" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="1048.5" y="1717" width="0.9" height="15.0" fill="rgb(228,192,15)" rx="2" ry="2" />
|
|
<text x="1051.50" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (200 samples, 3.13%)</title><rect x="595.0" y="1781" width="37.0" height="15.0" fill="rgb(236,141,39)" rx="2" ry="2" />
|
|
<text x="598.01" y="1791.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (309 samples, 4.84%)</title><rect x="80.7" y="1909" width="57.1" height="15.0" fill="rgb(251,143,44)" rx="2" ry="2" />
|
|
<text x="83.75" y="1919.5" >MATRIX..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (6 samples, 0.09%)</title><rect x="855.5" y="1717" width="1.1" height="15.0" fill="rgb(234,140,3)" rx="2" ry="2" />
|
|
<text x="858.47" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (14 samples, 0.22%)</title><rect x="464.0" y="1877" width="2.6" height="15.0" fill="rgb(251,124,20)" rx="2" ry="2" />
|
|
<text x="467.05" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="901" width="0.2" height="15.0" fill="rgb(232,90,43)" rx="2" ry="2" />
|
|
<text x="13.74" y="911.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1046.8" y="1685" width="0.2" height="15.0" fill="rgb(241,83,38)" rx="2" ry="2" />
|
|
<text x="1049.84" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (5 samples, 0.08%)</title><rect x="295.6" y="1781" width="0.9" height="15.0" fill="rgb(246,197,30)" rx="2" ry="2" />
|
|
<text x="298.58" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pow@@GLIBC_2.29 (2 samples, 0.03%)</title><rect x="899.8" y="1813" width="0.4" height="15.0" fill="rgb(208,72,31)" rx="2" ry="2" />
|
|
<text x="902.80" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (4 samples, 0.06%)</title><rect x="1143.3" y="1845" width="0.7" height="15.0" fill="rgb(253,43,50)" rx="2" ry="2" />
|
|
<text x="1146.27" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="997.7" y="1717" width="0.7" height="15.0" fill="rgb(233,54,4)" rx="2" ry="2" />
|
|
<text x="1000.71" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (220 samples, 3.44%)</title><rect x="939.3" y="1829" width="40.7" height="15.0" fill="rgb(247,74,8)" rx="2" ry="2" />
|
|
<text x="942.33" y="1839.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (7 samples, 0.11%)</title><rect x="291.5" y="1781" width="1.3" height="15.0" fill="rgb(253,194,24)" rx="2" ry="2" />
|
|
<text x="294.52" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1188.2" y="1685" width="0.1" height="15.0" fill="rgb(235,206,30)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="859.3" y="1685" width="1.0" height="15.0" fill="rgb(225,182,16)" rx="2" ry="2" />
|
|
<text x="862.35" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_do_timer (1 samples, 0.02%)</title><rect x="926.4" y="1701" width="0.2" height="15.0" fill="rgb(213,13,28)" rx="2" ry="2" />
|
|
<text x="929.40" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (9 samples, 0.14%)</title><rect x="1134.0" y="1829" width="1.7" height="15.0" fill="rgb(223,5,49)" rx="2" ry="2" />
|
|
<text x="1137.03" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="310.0" y="1781" width="0.4" height="15.0" fill="rgb(237,127,52)" rx="2" ry="2" />
|
|
<text x="312.99" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (42 samples, 0.66%)</title><rect x="905.9" y="1813" width="7.8" height="15.0" fill="rgb(231,202,46)" rx="2" ry="2" />
|
|
<text x="908.90" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (191 samples, 2.99%)</title><rect x="672.2" y="1781" width="35.3" height="15.0" fill="rgb(217,199,19)" rx="2" ry="2" />
|
|
<text x="675.23" y="1791.5" >AR..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="1142.9" y="1781" width="0.4" height="15.0" fill="rgb(236,120,4)" rx="2" ry="2" />
|
|
<text x="1145.90" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="249.0" y="1781" width="0.4" height="15.0" fill="rgb(251,20,46)" rx="2" ry="2" />
|
|
<text x="252.03" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (15 samples, 0.23%)</title><rect x="505.8" y="1845" width="2.8" height="15.0" fill="rgb(250,172,0)" rx="2" ry="2" />
|
|
<text x="508.79" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (20 samples, 0.31%)</title><rect x="988.7" y="1749" width="3.6" height="15.0" fill="rgb(228,61,19)" rx="2" ry="2" />
|
|
<text x="991.65" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1182.1" y="1765" width="0.9" height="15.0" fill="rgb(236,8,33)" rx="2" ry="2" />
|
|
<text x="1185.06" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="1186.9" y="1701" width="0.1" height="15.0" fill="rgb(214,223,2)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (211 samples, 3.30%)</title><rect x="633.1" y="1797" width="38.9" height="15.0" fill="rgb(215,170,42)" rx="2" ry="2" />
|
|
<text x="636.07" y="1807.5" >WOR..</text>
|
|
</g>
|
|
<g >
|
|
<title>do_IRQ (1 samples, 0.02%)</title><rect x="1099.1" y="1829" width="0.2" height="15.0" fill="rgb(236,89,39)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="1183.9" y="1733" width="0.2" height="15.0" fill="rgb(225,163,27)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="926.4" y="1733" width="0.2" height="15.0" fill="rgb(221,204,12)" rx="2" ry="2" />
|
|
<text x="929.40" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (5 samples, 0.08%)</title><rect x="631.0" y="1749" width="1.0" height="15.0" fill="rgb(244,176,23)" rx="2" ry="2" />
|
|
<text x="634.03" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1188.2" y="1749" width="0.1" height="15.0" fill="rgb(211,98,50)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>account_process_tick (1 samples, 0.02%)</title><rect x="593.4" y="1653" width="0.1" height="15.0" fill="rgb(251,203,12)" rx="2" ry="2" />
|
|
<text x="596.35" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ret_from_intr (1 samples, 0.02%)</title><rect x="1099.1" y="1845" width="0.2" height="15.0" fill="rgb(214,82,0)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="581" width="0.2" height="15.0" fill="rgb(228,107,40)" rx="2" ry="2" />
|
|
<text x="13.74" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (48 samples, 0.75%)</title><rect x="649.5" y="1701" width="8.9" height="15.0" fill="rgb(219,56,53)" rx="2" ry="2" />
|
|
<text x="652.51" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (46 samples, 0.72%)</title><rect x="478.5" y="1845" width="8.5" height="15.0" fill="rgb(224,160,26)" rx="2" ry="2" />
|
|
<text x="481.45" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="248.1" y="1749" width="0.6" height="15.0" fill="rgb(220,202,1)" rx="2" ry="2" />
|
|
<text x="251.11" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (39 samples, 0.61%)</title><rect x="1040.0" y="1765" width="7.2" height="15.0" fill="rgb(232,69,49)" rx="2" ry="2" />
|
|
<text x="1043.01" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1147.1" y="1813" width="0.2" height="15.0" fill="rgb(225,95,5)" rx="2" ry="2" />
|
|
<text x="1150.14" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_work_run (1 samples, 0.02%)</title><rect x="658.9" y="1605" width="0.2" height="15.0" fill="rgb(241,13,9)" rx="2" ry="2" />
|
|
<text x="661.93" y="1615.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (211 samples, 3.30%)</title><rect x="633.1" y="1813" width="38.9" height="15.0" fill="rgb(233,175,30)" rx="2" ry="2" />
|
|
<text x="636.07" y="1823.5" >WOR..</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (11 samples, 0.17%)</title><rect x="285.4" y="1797" width="2.1" height="15.0" fill="rgb(246,86,9)" rx="2" ry="2" />
|
|
<text x="288.42" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (28 samples, 0.44%)</title><rect x="894.3" y="1749" width="5.1" height="15.0" fill="rgb(245,1,25)" rx="2" ry="2" />
|
|
<text x="897.26" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (224 samples, 3.51%)</title><rect x="512.6" y="1877" width="41.4" height="15.0" fill="rgb(212,81,48)" rx="2" ry="2" />
|
|
<text x="515.63" y="1887.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (2 samples, 0.03%)</title><rect x="986.6" y="1765" width="0.4" height="15.0" fill="rgb(245,148,0)" rx="2" ry="2" />
|
|
<text x="989.62" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="255.7" y="1717" width="0.2" height="15.0" fill="rgb(239,53,1)" rx="2" ry="2" />
|
|
<text x="258.68" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vm_mmap (1 samples, 0.02%)</title><rect x="12.6" y="1925" width="0.2" height="15.0" fill="rgb(232,108,26)" rx="2" ry="2" />
|
|
<text x="15.59" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_execve_file.isra.0 (4 samples, 0.06%)</title><rect x="10.0" y="1989" width="0.7" height="15.0" fill="rgb(206,149,34)" rx="2" ry="2" />
|
|
<text x="13.00" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>render_obj (6,384 samples, 99.94%)</title><rect x="10.7" y="2069" width="1179.3" height="15.0" fill="rgb(249,0,39)" rx="2" ry="2" />
|
|
<text x="13.74" y="2079.5" >render_obj</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="306.8" y="1765" width="0.2" height="15.0" fill="rgb(236,88,10)" rx="2" ry="2" />
|
|
<text x="309.85" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>realloc (1 samples, 0.02%)</title><rect x="10.9" y="1989" width="0.2" height="15.0" fill="rgb(230,43,22)" rx="2" ry="2" />
|
|
<text x="13.92" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>try_to_wake_up (1 samples, 0.02%)</title><rect x="1099.1" y="1637" width="0.2" height="15.0" fill="rgb(219,87,14)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="275.8" y="1861" width="0.2" height="15.0" fill="rgb(219,47,16)" rx="2" ry="2" />
|
|
<text x="278.81" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="1140.7" y="1797" width="0.2" height="15.0" fill="rgb(227,193,3)" rx="2" ry="2" />
|
|
<text x="1143.68" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="987.0" y="1765" width="0.4" height="15.0" fill="rgb(234,96,19)" rx="2" ry="2" />
|
|
<text x="989.99" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_irq_work_interrupt (1 samples, 0.02%)</title><rect x="658.9" y="1621" width="0.2" height="15.0" fill="rgb(216,205,37)" rx="2" ry="2" />
|
|
<text x="661.93" y="1631.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="294.8" y="1797" width="2.4" height="15.0" fill="rgb(246,197,4)" rx="2" ry="2" />
|
|
<text x="297.84" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="1145.1" y="1749" width="0.4" height="15.0" fill="rgb(236,136,8)" rx="2" ry="2" />
|
|
<text x="1148.11" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (90 samples, 1.41%)</title><rect x="260.5" y="1877" width="16.6" height="15.0" fill="rgb(226,0,14)" rx="2" ry="2" />
|
|
<text x="263.48" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="707.5" y="1781" width="0.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
|
|
<text x="710.51" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1765" width="0.2" height="15.0" fill="rgb(245,0,28)" rx="2" ry="2" />
|
|
<text x="13.74" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="894.3" y="1701" width="0.1" height="15.0" fill="rgb(227,12,36)" rx="2" ry="2" />
|
|
<text x="897.26" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1365" width="0.2" height="15.0" fill="rgb(216,75,11)" rx="2" ry="2" />
|
|
<text x="13.74" y="1375.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (2,099 samples, 32.86%)</title><rect x="512.6" y="1893" width="387.8" height="15.0" fill="rgb(205,155,13)" rx="2" ry="2" />
|
|
<text x="515.63" y="1903.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="468.3" y="1893" width="0.5" height="15.0" fill="rgb(210,82,49)" rx="2" ry="2" />
|
|
<text x="471.29" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="290.4" y="1733" width="0.7" height="15.0" fill="rgb(226,5,44)" rx="2" ry="2" />
|
|
<text x="293.41" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (238 samples, 3.73%)</title><rect x="810.0" y="1813" width="44.0" height="15.0" fill="rgb(206,165,47)" rx="2" ry="2" />
|
|
<text x="813.03" y="1823.5" >GROU..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (9 samples, 0.14%)</title><rect x="933.6" y="1813" width="1.7" height="15.0" fill="rgb(224,16,19)" rx="2" ry="2" />
|
|
<text x="936.61" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (178 samples, 2.79%)</title><rect x="1147.3" y="1813" width="32.9" height="15.0" fill="rgb(211,186,41)" rx="2" ry="2" />
|
|
<text x="1150.33" y="1823.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="255.3" y="1797" width="0.4" height="15.0" fill="rgb(236,10,18)" rx="2" ry="2" />
|
|
<text x="258.31" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapgs_restore_regs_and_return_to_usermode (5 samples, 0.08%)</title><rect x="136.9" y="1893" width="0.9" height="15.0" fill="rgb(225,133,42)" rx="2" ry="2" />
|
|
<text x="139.90" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (1 samples, 0.02%)</title><rect x="1188.2" y="1781" width="0.1" height="15.0" fill="rgb(210,50,14)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="1059.8" y="1669" width="0.2" height="15.0" fill="rgb(219,144,47)" rx="2" ry="2" />
|
|
<text x="1062.77" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="250.1" y="1813" width="1.1" height="15.0" fill="rgb(236,110,38)" rx="2" ry="2" />
|
|
<text x="253.14" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="1086.9" y="1765" width="0.2" height="15.0" fill="rgb(209,188,47)" rx="2" ry="2" />
|
|
<text x="1089.93" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="898.3" y="1685" width="0.2" height="15.0" fill="rgb(212,155,47)" rx="2" ry="2" />
|
|
<text x="901.32" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (67 samples, 1.05%)</title><rect x="246.6" y="1925" width="12.4" height="15.0" fill="rgb(246,40,13)" rx="2" ry="2" />
|
|
<text x="249.63" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (38 samples, 0.59%)</title><rect x="945.2" y="1797" width="7.1" height="15.0" fill="rgb(211,98,45)" rx="2" ry="2" />
|
|
<text x="948.24" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (38 samples, 0.59%)</title><rect x="303.9" y="1893" width="7.0" height="15.0" fill="rgb(237,13,7)" rx="2" ry="2" />
|
|
<text x="306.89" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="804.5" y="1749" width="0.2" height="15.0" fill="rgb(248,79,7)" rx="2" ry="2" />
|
|
<text x="807.49" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="307.2" y="1733" width="0.2" height="15.0" fill="rgb(222,141,4)" rx="2" ry="2" />
|
|
<text x="310.22" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (5 samples, 0.08%)</title><rect x="765.3" y="1701" width="0.9" height="15.0" fill="rgb(252,67,1)" rx="2" ry="2" />
|
|
<text x="768.33" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1269" width="0.2" height="15.0" fill="rgb(253,79,5)" rx="2" ry="2" />
|
|
<text x="13.74" y="1279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="1059.6" y="1653" width="0.2" height="15.0" fill="rgb(216,107,26)" rx="2" ry="2" />
|
|
<text x="1062.59" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="2037" width="0.2" height="15.0" fill="rgb(220,66,22)" rx="2" ry="2" />
|
|
<text x="13.74" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (2 samples, 0.03%)</title><rect x="310.5" y="1781" width="0.4" height="15.0" fill="rgb(206,171,46)" rx="2" ry="2" />
|
|
<text x="313.54" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="307.0" y="1749" width="0.4" height="15.0" fill="rgb(234,91,28)" rx="2" ry="2" />
|
|
<text x="310.03" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="545.0" y="1781" width="0.1" height="15.0" fill="rgb(226,112,20)" rx="2" ry="2" />
|
|
<text x="547.95" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (623 samples, 9.75%)</title><rect x="310.9" y="1941" width="115.1" height="15.0" fill="rgb(244,15,46)" rx="2" ry="2" />
|
|
<text x="313.91" y="1951.5" >GROUP_local_in..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (95 samples, 1.49%)</title><rect x="1008.0" y="1829" width="17.6" height="15.0" fill="rgb(236,80,31)" rx="2" ry="2" />
|
|
<text x="1011.05" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1059.0" y="1653" width="0.6" height="15.0" fill="rgb(238,57,6)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_init_from_tuples (1 samples, 0.02%)</title><rect x="426.0" y="1957" width="0.2" height="15.0" fill="rgb(247,88,0)" rx="2" ry="2" />
|
|
<text x="428.99" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (76 samples, 1.19%)</title><rect x="1073.6" y="1845" width="14.1" height="15.0" fill="rgb(206,209,21)" rx="2" ry="2" />
|
|
<text x="1076.63" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="256.8" y="1797" width="1.1" height="15.0" fill="rgb(252,51,15)" rx="2" ry="2" />
|
|
<text x="259.79" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="307.0" y="1765" width="0.4" height="15.0" fill="rgb(211,217,28)" rx="2" ry="2" />
|
|
<text x="310.03" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="252.7" y="1749" width="0.4" height="15.0" fill="rgb(244,93,49)" rx="2" ry="2" />
|
|
<text x="255.72" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="257.2" y="1781" width="0.3" height="15.0" fill="rgb(209,130,52)" rx="2" ry="2" />
|
|
<text x="260.16" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="278.4" y="1829" width="0.6" height="15.0" fill="rgb(224,162,41)" rx="2" ry="2" />
|
|
<text x="281.40" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="745.6" y="1669" width="0.1" height="15.0" fill="rgb(210,211,1)" rx="2" ry="2" />
|
|
<text x="748.56" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (107 samples, 1.68%)</title><rect x="748.9" y="1733" width="19.8" height="15.0" fill="rgb(233,56,3)" rx="2" ry="2" />
|
|
<text x="751.89" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timekeeping_update (1 samples, 0.02%)</title><rect x="926.4" y="1637" width="0.2" height="15.0" fill="rgb(232,172,35)" rx="2" ry="2" />
|
|
<text x="929.40" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>prepare_exit_to_usermode (1 samples, 0.02%)</title><rect x="658.9" y="1669" width="0.2" height="15.0" fill="rgb(229,91,16)" rx="2" ry="2" />
|
|
<text x="661.93" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (8 samples, 0.13%)</title><rect x="978.3" y="1797" width="1.5" height="15.0" fill="rgb(217,57,24)" rx="2" ry="2" />
|
|
<text x="981.31" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (37 samples, 0.58%)</title><rect x="887.2" y="1749" width="6.9" height="15.0" fill="rgb(250,29,47)" rx="2" ry="2" />
|
|
<text x="890.24" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (4 samples, 0.06%)</title><rect x="256.0" y="1733" width="0.8" height="15.0" fill="rgb(244,229,32)" rx="2" ry="2" />
|
|
<text x="259.05" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="838.1" y="1749" width="0.9" height="15.0" fill="rgb(226,21,17)" rx="2" ry="2" />
|
|
<text x="841.11" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="292.6" y="1733" width="0.2" height="15.0" fill="rgb(252,34,16)" rx="2" ry="2" />
|
|
<text x="295.62" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="837" width="0.2" height="15.0" fill="rgb(245,42,40)" rx="2" ry="2" />
|
|
<text x="13.74" y="847.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="304.6" y="1781" width="0.8" height="15.0" fill="rgb(239,175,38)" rx="2" ry="2" />
|
|
<text x="307.63" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (6 samples, 0.09%)</title><rect x="256.8" y="1861" width="1.1" height="15.0" fill="rgb(215,188,54)" rx="2" ry="2" />
|
|
<text x="259.79" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1140.9" y="1781" width="0.1" height="15.0" fill="rgb(237,128,9)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (426 samples, 6.67%)</title><rect x="981.3" y="1861" width="78.7" height="15.0" fill="rgb(208,14,0)" rx="2" ry="2" />
|
|
<text x="984.26" y="1871.5" >WORLD_sha..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="1143.1" y="1669" width="0.2" height="15.0" fill="rgb(254,116,24)" rx="2" ry="2" />
|
|
<text x="1146.08" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (21 samples, 0.33%)</title><rect x="858.1" y="1733" width="3.8" height="15.0" fill="rgb(215,115,18)" rx="2" ry="2" />
|
|
<text x="861.06" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="254.4" y="1813" width="0.2" height="15.0" fill="rgb(229,74,51)" rx="2" ry="2" />
|
|
<text x="257.39" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="286.7" y="1749" width="0.4" height="15.0" fill="rgb(214,76,14)" rx="2" ry="2" />
|
|
<text x="289.71" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (6 samples, 0.09%)</title><rect x="766.2" y="1701" width="1.2" height="15.0" fill="rgb(220,18,14)" rx="2" ry="2" />
|
|
<text x="769.25" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1349" width="0.2" height="15.0" fill="rgb(245,174,52)" rx="2" ry="2" />
|
|
<text x="13.74" y="1359.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (35 samples, 0.55%)</title><rect x="561.0" y="1781" width="6.5" height="15.0" fill="rgb(245,184,20)" rx="2" ry="2" />
|
|
<text x="564.02" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (208 samples, 3.26%)</title><rect x="900.4" y="1845" width="38.4" height="15.0" fill="rgb(225,122,22)" rx="2" ry="2" />
|
|
<text x="903.36" y="1855.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="325" width="0.2" height="15.0" fill="rgb(228,42,6)" rx="2" ry="2" />
|
|
<text x="13.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1059.0" y="1733" width="1.0" height="15.0" fill="rgb(232,90,50)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (926 samples, 14.50%)</title><rect x="21.6" y="1941" width="171.1" height="15.0" fill="rgb(217,130,51)" rx="2" ry="2" />
|
|
<text x="24.64" y="1951.5" >SHAPE_intersect</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (59 samples, 0.92%)</title><rect x="686.1" y="1733" width="10.9" height="15.0" fill="rgb(209,43,14)" rx="2" ry="2" />
|
|
<text x="689.08" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__queue_work (1 samples, 0.02%)</title><rect x="1099.1" y="1685" width="0.2" height="15.0" fill="rgb(238,184,21)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (3 samples, 0.05%)</title><rect x="300.8" y="1765" width="0.5" height="15.0" fill="rgb(218,125,1)" rx="2" ry="2" />
|
|
<text x="303.75" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (38 samples, 0.59%)</title><rect x="887.2" y="1765" width="7.1" height="15.0" fill="rgb(252,76,1)" rx="2" ry="2" />
|
|
<text x="890.24" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="255.3" y="1717" width="0.2" height="15.0" fill="rgb(212,5,39)" rx="2" ry="2" />
|
|
<text x="258.31" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1797" width="0.2" height="15.0" fill="rgb(239,171,25)" rx="2" ry="2" />
|
|
<text x="13.74" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1605" width="0.2" height="15.0" fill="rgb(206,13,42)" rx="2" ry="2" />
|
|
<text x="13.74" y="1615.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (1 samples, 0.02%)</title><rect x="545.0" y="1717" width="0.1" height="15.0" fill="rgb(223,218,13)" rx="2" ry="2" />
|
|
<text x="547.95" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (5 samples, 0.08%)</title><rect x="1059.0" y="1717" width="1.0" height="15.0" fill="rgb(217,136,45)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="298.9" y="1749" width="0.4" height="15.0" fill="rgb(234,144,10)" rx="2" ry="2" />
|
|
<text x="301.90" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="1184.3" y="1685" width="0.3" height="15.0" fill="rgb(229,58,5)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (4 samples, 0.06%)</title><rect x="1059.0" y="1669" width="0.8" height="15.0" fill="rgb(211,107,8)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="289.5" y="1749" width="0.2" height="15.0" fill="rgb(213,92,48)" rx="2" ry="2" />
|
|
<text x="292.48" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="248.8" y="1813" width="0.2" height="15.0" fill="rgb(207,15,33)" rx="2" ry="2" />
|
|
<text x="251.84" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="303.9" y="1861" width="2.4" height="15.0" fill="rgb(235,53,38)" rx="2" ry="2" />
|
|
<text x="306.89" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (14 samples, 0.22%)</title><rect x="301.3" y="1877" width="2.6" height="15.0" fill="rgb(231,209,44)" rx="2" ry="2" />
|
|
<text x="304.31" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (31 samples, 0.49%)</title><rect x="622.2" y="1749" width="5.7" height="15.0" fill="rgb(230,208,25)" rx="2" ry="2" />
|
|
<text x="625.17" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__perf_event_task_sched_in (4 samples, 0.06%)</title><rect x="137.1" y="1797" width="0.7" height="15.0" fill="rgb(214,18,25)" rx="2" ry="2" />
|
|
<text x="140.09" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (24 samples, 0.38%)</title><rect x="406.2" y="1893" width="4.5" height="15.0" fill="rgb(235,61,46)" rx="2" ry="2" />
|
|
<text x="409.23" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="229" width="0.2" height="15.0" fill="rgb(226,140,46)" rx="2" ry="2" />
|
|
<text x="13.74" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vm_mmap_pgoff (1 samples, 0.02%)</title><rect x="12.6" y="1909" width="0.2" height="15.0" fill="rgb(232,67,9)" rx="2" ry="2" />
|
|
<text x="15.59" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (4 samples, 0.06%)</title><rect x="553.3" y="1845" width="0.7" height="15.0" fill="rgb(217,3,16)" rx="2" ry="2" />
|
|
<text x="556.27" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="252.4" y="1765" width="0.1" height="15.0" fill="rgb(253,44,26)" rx="2" ry="2" />
|
|
<text x="255.35" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (5 samples, 0.08%)</title><rect x="253.1" y="1909" width="0.9" height="15.0" fill="rgb(223,59,7)" rx="2" ry="2" />
|
|
<text x="256.09" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="667.6" y="1717" width="0.7" height="15.0" fill="rgb(210,38,16)" rx="2" ry="2" />
|
|
<text x="670.61" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (15 samples, 0.23%)</title><rect x="845.7" y="1765" width="2.8" height="15.0" fill="rgb(249,99,9)" rx="2" ry="2" />
|
|
<text x="848.68" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cfree@GLIBC_2.2.5 (1 samples, 0.02%)</title><rect x="671.1" y="1749" width="0.2" height="15.0" fill="rgb(231,107,49)" rx="2" ry="2" />
|
|
<text x="674.12" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (14 samples, 0.22%)</title><rect x="185.9" y="1925" width="2.5" height="15.0" fill="rgb(217,137,52)" rx="2" ry="2" />
|
|
<text x="188.85" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (36 samples, 0.56%)</title><rect x="1033.2" y="1749" width="6.6" height="15.0" fill="rgb(246,38,40)" rx="2" ry="2" />
|
|
<text x="1036.17" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (2 samples, 0.03%)</title><rect x="768.7" y="1733" width="0.3" height="15.0" fill="rgb(239,213,32)" rx="2" ry="2" />
|
|
<text x="771.65" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="310.4" y="1765" width="0.1" height="15.0" fill="rgb(220,93,8)" rx="2" ry="2" />
|
|
<text x="313.36" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1653" width="0.2" height="15.0" fill="rgb(247,13,2)" rx="2" ry="2" />
|
|
<text x="13.74" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (10 samples, 0.16%)</title><rect x="936.4" y="1813" width="1.8" height="15.0" fill="rgb(249,88,37)" rx="2" ry="2" />
|
|
<text x="939.38" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (136 samples, 2.13%)</title><rect x="862.1" y="1797" width="25.1" height="15.0" fill="rgb(247,145,46)" rx="2" ry="2" />
|
|
<text x="865.12" y="1807.5" >S..</text>
|
|
</g>
|
|
<g >
|
|
<title>scheduler_tick (1 samples, 0.02%)</title><rect x="545.0" y="1685" width="0.1" height="15.0" fill="rgb(211,195,21)" rx="2" ry="2" />
|
|
<text x="547.95" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="634.7" y="1733" width="0.6" height="15.0" fill="rgb(214,87,40)" rx="2" ry="2" />
|
|
<text x="637.73" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="748.7" y="1781" width="0.2" height="15.0" fill="rgb(252,117,5)" rx="2" ry="2" />
|
|
<text x="751.70" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (12 samples, 0.19%)</title><rect x="291.5" y="1813" width="2.2" height="15.0" fill="rgb(213,43,53)" rx="2" ry="2" />
|
|
<text x="294.52" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_i915_sw_fence_work (1 samples, 0.02%)</title><rect x="658.9" y="1573" width="0.2" height="15.0" fill="rgb(250,17,43)" rx="2" ry="2" />
|
|
<text x="661.93" y="1583.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="597.4" y="1765" width="0.2" height="15.0" fill="rgb(209,227,20)" rx="2" ry="2" />
|
|
<text x="600.41" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (6 samples, 0.09%)</title><rect x="1057.0" y="1701" width="1.1" height="15.0" fill="rgb(247,200,44)" rx="2" ry="2" />
|
|
<text x="1060.00" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1621" width="0.2" height="15.0" fill="rgb(219,46,13)" rx="2" ry="2" />
|
|
<text x="13.74" y="1631.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="992.0" y="1733" width="0.2" height="15.0" fill="rgb(218,184,4)" rx="2" ry="2" />
|
|
<text x="994.98" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1003.6" y="1717" width="0.2" height="15.0" fill="rgb(224,27,16)" rx="2" ry="2" />
|
|
<text x="1006.62" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1253" width="0.2" height="15.0" fill="rgb(212,117,36)" rx="2" ry="2" />
|
|
<text x="13.74" y="1263.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1557" width="0.2" height="15.0" fill="rgb(207,147,23)" rx="2" ry="2" />
|
|
<text x="13.74" y="1567.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (4 samples, 0.06%)</title><rect x="291.9" y="1733" width="0.7" height="15.0" fill="rgb(232,204,48)" rx="2" ry="2" />
|
|
<text x="294.88" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (6 samples, 0.09%)</title><rect x="256.8" y="1813" width="1.1" height="15.0" fill="rgb(210,129,5)" rx="2" ry="2" />
|
|
<text x="259.79" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (7 samples, 0.11%)</title><rect x="239.6" y="1893" width="1.3" height="15.0" fill="rgb(231,183,5)" rx="2" ry="2" />
|
|
<text x="242.61" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ttwu_do_wakeup (1 samples, 0.02%)</title><rect x="1099.1" y="1605" width="0.2" height="15.0" fill="rgb(250,200,4)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1615.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (4 samples, 0.06%)</title><rect x="881.5" y="1733" width="0.8" height="15.0" fill="rgb(214,106,0)" rx="2" ry="2" />
|
|
<text x="884.52" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (4 samples, 0.06%)</title><rect x="258.3" y="1829" width="0.7" height="15.0" fill="rgb(228,24,54)" rx="2" ry="2" />
|
|
<text x="261.27" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="250.1" y="1861" width="1.1" height="15.0" fill="rgb(224,225,20)" rx="2" ry="2" />
|
|
<text x="253.14" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (5 samples, 0.08%)</title><rect x="1002.7" y="1717" width="0.9" height="15.0" fill="rgb(223,32,27)" rx="2" ry="2" />
|
|
<text x="1005.69" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (238 samples, 3.73%)</title><rect x="810.0" y="1829" width="44.0" height="15.0" fill="rgb(209,200,5)" rx="2" ry="2" />
|
|
<text x="813.03" y="1839.5" >SHAP..</text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1183.0" y="1781" width="0.2" height="15.0" fill="rgb(215,170,7)" rx="2" ry="2" />
|
|
<text x="1185.98" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="1061.1" y="1861" width="0.7" height="15.0" fill="rgb(248,87,15)" rx="2" ry="2" />
|
|
<text x="1064.06" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="1186.1" y="1749" width="0.6" height="15.0" fill="rgb(238,157,44)" rx="2" ry="2" />
|
|
<text x="1189.12" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (58 samples, 0.91%)</title><rect x="610.5" y="1733" width="10.7" height="15.0" fill="rgb(215,56,29)" rx="2" ry="2" />
|
|
<text x="613.53" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (13 samples, 0.20%)</title><rect x="1049.4" y="1717" width="2.4" height="15.0" fill="rgb(213,180,40)" rx="2" ry="2" />
|
|
<text x="1052.43" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="861.8" y="1717" width="0.1" height="15.0" fill="rgb(231,65,8)" rx="2" ry="2" />
|
|
<text x="864.75" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (29 samples, 0.45%)</title><rect x="894.3" y="1765" width="5.3" height="15.0" fill="rgb(250,81,30)" rx="2" ry="2" />
|
|
<text x="897.26" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="304.1" y="1797" width="0.3" height="15.0" fill="rgb(215,66,54)" rx="2" ry="2" />
|
|
<text x="307.08" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (19 samples, 0.30%)</title><rect x="1004.5" y="1749" width="3.5" height="15.0" fill="rgb(213,90,26)" rx="2" ry="2" />
|
|
<text x="1007.54" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="252.4" y="1797" width="0.1" height="15.0" fill="rgb(208,48,33)" rx="2" ry="2" />
|
|
<text x="255.35" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (417 samples, 6.53%)</title><rect x="595.0" y="1829" width="77.0" height="15.0" fill="rgb(250,142,39)" rx="2" ry="2" />
|
|
<text x="598.01" y="1839.5" >WORLD_co..</text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="310.7" y="1701" width="0.2" height="15.0" fill="rgb(253,218,13)" rx="2" ry="2" />
|
|
<text x="313.73" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="291.3" y="1749" width="0.2" height="15.0" fill="rgb(240,114,6)" rx="2" ry="2" />
|
|
<text x="294.33" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_prepare_computations (1 samples, 0.02%)</title><rect x="13.9" y="1989" width="0.2" height="15.0" fill="rgb(252,186,7)" rx="2" ry="2" />
|
|
<text x="16.88" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1086.9" y="1813" width="0.2" height="15.0" fill="rgb(246,158,45)" rx="2" ry="2" />
|
|
<text x="1089.93" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (595 samples, 9.31%)</title><rect x="201.0" y="1973" width="109.9" height="15.0" fill="rgb(246,80,31)" rx="2" ry="2" />
|
|
<text x="204.00" y="1983.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (32 samples, 0.50%)</title><rect x="247.2" y="1893" width="5.9" height="15.0" fill="rgb(229,224,50)" rx="2" ry="2" />
|
|
<text x="250.18" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1000.3" y="1733" width="0.2" height="15.0" fill="rgb(218,29,54)" rx="2" ry="2" />
|
|
<text x="1003.29" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (7 samples, 0.11%)</title><rect x="1055.7" y="1685" width="1.3" height="15.0" fill="rgb(230,44,16)" rx="2" ry="2" />
|
|
<text x="1058.71" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.02%)</title><rect x="12.6" y="2037" width="0.2" height="15.0" fill="rgb(207,166,11)" rx="2" ry="2" />
|
|
<text x="15.59" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (3 samples, 0.05%)</title><rect x="307.4" y="1797" width="0.6" height="15.0" fill="rgb(218,88,50)" rx="2" ry="2" />
|
|
<text x="310.40" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="287.5" y="1717" width="0.1" height="15.0" fill="rgb(216,64,27)" rx="2" ry="2" />
|
|
<text x="290.45" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (200 samples, 3.13%)</title><rect x="1062.4" y="1861" width="36.9" height="15.0" fill="rgb(238,175,21)" rx="2" ry="2" />
|
|
<text x="1065.36" y="1871.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="993.1" y="1701" width="0.4" height="15.0" fill="rgb(234,172,16)" rx="2" ry="2" />
|
|
<text x="996.09" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="258.3" y="1749" width="0.2" height="15.0" fill="rgb(212,174,17)" rx="2" ry="2" />
|
|
<text x="261.27" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_normal_at (1 samples, 0.02%)</title><rect x="554.0" y="1829" width="0.2" height="15.0" fill="rgb(254,158,12)" rx="2" ry="2" />
|
|
<text x="557.00" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="887.4" y="1733" width="0.2" height="15.0" fill="rgb(229,35,31)" rx="2" ry="2" />
|
|
<text x="890.43" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (4 samples, 0.06%)</title><rect x="893.2" y="1717" width="0.7" height="15.0" fill="rgb(227,175,52)" rx="2" ry="2" />
|
|
<text x="896.15" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="710.5" y="1749" width="0.5" height="15.0" fill="rgb(245,12,25)" rx="2" ry="2" />
|
|
<text x="713.46" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vfprintf_internal (1 samples, 0.02%)</title><rect x="10.7" y="37" width="0.2" height="15.0" fill="rgb(238,177,22)" rx="2" ry="2" />
|
|
<text x="13.74" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="1004.9" y="1685" width="0.9" height="15.0" fill="rgb(234,200,24)" rx="2" ry="2" />
|
|
<text x="1007.91" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (90 samples, 1.41%)</title><rect x="822.4" y="1765" width="16.6" height="15.0" fill="rgb(228,2,24)" rx="2" ry="2" />
|
|
<text x="825.40" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (34 samples, 0.53%)</title><rect x="1087.7" y="1845" width="6.2" height="15.0" fill="rgb(213,164,28)" rx="2" ry="2" />
|
|
<text x="1090.66" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1157" width="0.2" height="15.0" fill="rgb(246,37,37)" rx="2" ry="2" />
|
|
<text x="13.74" y="1167.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="258.6" y="1733" width="0.4" height="15.0" fill="rgb(211,85,6)" rx="2" ry="2" />
|
|
<text x="261.63" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (5 samples, 0.08%)</title><rect x="1187.4" y="1797" width="0.9" height="15.0" fill="rgb(205,124,31)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (3 samples, 0.05%)</title><rect x="308.3" y="1797" width="0.6" height="15.0" fill="rgb(247,106,37)" rx="2" ry="2" />
|
|
<text x="311.32" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (24 samples, 0.38%)</title><rect x="995.9" y="1797" width="4.4" height="15.0" fill="rgb(211,146,33)" rx="2" ry="2" />
|
|
<text x="998.86" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_vsyscall (1 samples, 0.02%)</title><rect x="926.4" y="1621" width="0.2" height="15.0" fill="rgb(240,186,39)" rx="2" ry="2" />
|
|
<text x="929.40" y="1631.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="1187.0" y="1749" width="0.2" height="15.0" fill="rgb(234,7,19)" rx="2" ry="2" />
|
|
<text x="1190.04" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (23 samples, 0.36%)</title><rect x="988.3" y="1781" width="4.2" height="15.0" fill="rgb(228,19,1)" rx="2" ry="2" />
|
|
<text x="991.28" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="248.8" y="1749" width="0.2" height="15.0" fill="rgb(228,225,23)" rx="2" ry="2" />
|
|
<text x="251.84" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WAVEFRONTOBJ_parse_file_by_name (1 samples, 0.02%)</title><rect x="1188.7" y="2021" width="0.2" height="15.0" fill="rgb(251,1,15)" rx="2" ry="2" />
|
|
<text x="1191.71" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (61 samples, 0.95%)</title><rect x="1114.1" y="1829" width="11.2" height="15.0" fill="rgb(233,45,13)" rx="2" ry="2" />
|
|
<text x="1117.08" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (250 samples, 3.91%)</title><rect x="854.0" y="1829" width="46.2" height="15.0" fill="rgb(232,146,34)" rx="2" ry="2" />
|
|
<text x="856.99" y="1839.5" >WORL..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="255.3" y="1749" width="0.4" height="15.0" fill="rgb(206,182,13)" rx="2" ry="2" />
|
|
<text x="258.31" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (4 samples, 0.06%)</title><rect x="935.6" y="1813" width="0.8" height="15.0" fill="rgb(214,26,16)" rx="2" ry="2" />
|
|
<text x="938.64" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="310.4" y="1797" width="0.1" height="15.0" fill="rgb(231,127,24)" rx="2" ry="2" />
|
|
<text x="313.36" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (182 samples, 2.85%)</title><rect x="1104.3" y="1845" width="33.6" height="15.0" fill="rgb(243,114,47)" rx="2" ry="2" />
|
|
<text x="1107.29" y="1855.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (9 samples, 0.14%)</title><rect x="289.9" y="1781" width="1.6" height="15.0" fill="rgb(247,80,37)" rx="2" ry="2" />
|
|
<text x="292.85" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="1186.9" y="1669" width="0.1" height="15.0" fill="rgb(242,113,8)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="901.1" y="1829" width="0.5" height="15.0" fill="rgb(226,204,28)" rx="2" ry="2" />
|
|
<text x="904.10" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (211 samples, 3.30%)</title><rect x="940.8" y="1813" width="39.0" height="15.0" fill="rgb(230,90,27)" rx="2" ry="2" />
|
|
<text x="943.81" y="1823.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (8 samples, 0.13%)</title><rect x="1180.6" y="1829" width="1.5" height="15.0" fill="rgb(231,214,33)" rx="2" ry="2" />
|
|
<text x="1183.58" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1184.3" y="1765" width="0.5" height="15.0" fill="rgb(232,214,37)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (37 samples, 0.58%)</title><rect x="1033.2" y="1781" width="6.8" height="15.0" fill="rgb(249,139,15)" rx="2" ry="2" />
|
|
<text x="1036.17" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="250.3" y="1797" width="0.2" height="15.0" fill="rgb(228,27,43)" rx="2" ry="2" />
|
|
<text x="253.32" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (37 samples, 0.58%)</title><rect x="1125.3" y="1829" width="6.9" height="15.0" fill="rgb(213,94,48)" rx="2" ry="2" />
|
|
<text x="1128.35" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (4 samples, 0.06%)</title><rect x="1178.2" y="1797" width="0.7" height="15.0" fill="rgb(231,89,8)" rx="2" ry="2" />
|
|
<text x="1181.18" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_sort_intersections (1 samples, 0.02%)</title><rect x="992.5" y="1781" width="0.2" height="15.0" fill="rgb(239,199,16)" rx="2" ry="2" />
|
|
<text x="995.53" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (4 samples, 0.06%)</title><rect x="249.4" y="1829" width="0.7" height="15.0" fill="rgb(237,139,22)" rx="2" ry="2" />
|
|
<text x="252.40" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (5 samples, 0.08%)</title><rect x="1184.8" y="1717" width="1.0" height="15.0" fill="rgb(219,34,50)" rx="2" ry="2" />
|
|
<text x="1187.83" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rb_erase (1 samples, 0.02%)</title><rect x="1086.9" y="1733" width="0.2" height="15.0" fill="rgb(214,213,42)" rx="2" ry="2" />
|
|
<text x="1089.93" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (79 samples, 1.24%)</title><rect x="607.6" y="1749" width="14.6" height="15.0" fill="rgb(254,162,9)" rx="2" ry="2" />
|
|
<text x="610.57" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (1 samples, 0.02%)</title><rect x="1187.4" y="1781" width="0.2" height="15.0" fill="rgb(224,68,9)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1941" width="0.2" height="15.0" fill="rgb(221,150,44)" rx="2" ry="2" />
|
|
<text x="13.74" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="243.3" y="1925" width="0.4" height="15.0" fill="rgb(214,192,4)" rx="2" ry="2" />
|
|
<text x="246.30" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="1006.0" y="1669" width="0.9" height="15.0" fill="rgb(239,86,44)" rx="2" ry="2" />
|
|
<text x="1009.02" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1187.6" y="1717" width="0.6" height="15.0" fill="rgb(241,213,11)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (20 samples, 0.31%)</title><rect x="854.2" y="1749" width="3.7" height="15.0" fill="rgb(206,30,46)" rx="2" ry="2" />
|
|
<text x="857.18" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (3 samples, 0.05%)</title><rect x="1187.6" y="1781" width="0.6" height="15.0" fill="rgb(246,59,0)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="277" width="0.2" height="15.0" fill="rgb(206,7,39)" rx="2" ry="2" />
|
|
<text x="13.74" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (10 samples, 0.16%)</title><rect x="586.7" y="1781" width="1.8" height="15.0" fill="rgb(218,155,39)" rx="2" ry="2" />
|
|
<text x="589.70" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="255.5" y="1717" width="0.2" height="15.0" fill="rgb(209,188,32)" rx="2" ry="2" />
|
|
<text x="258.49" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (2 samples, 0.03%)</title><rect x="1058.1" y="1701" width="0.4" height="15.0" fill="rgb(209,116,8)" rx="2" ry="2" />
|
|
<text x="1061.11" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="200.8" y="1957" width="0.2" height="15.0" fill="rgb(238,159,51)" rx="2" ry="2" />
|
|
<text x="203.82" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1099.3" y="1877" width="0.9" height="15.0" fill="rgb(210,25,9)" rx="2" ry="2" />
|
|
<text x="1102.30" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="11.3" y="2037" width="0.2" height="15.0" fill="rgb(209,199,47)" rx="2" ry="2" />
|
|
<text x="14.29" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="1086.9" y="1781" width="0.2" height="15.0" fill="rgb(242,52,3)" rx="2" ry="2" />
|
|
<text x="1089.93" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (7 samples, 0.11%)</title><rect x="743.7" y="1733" width="1.3" height="15.0" fill="rgb(208,160,52)" rx="2" ry="2" />
|
|
<text x="746.71" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="965" width="0.2" height="15.0" fill="rgb(243,117,29)" rx="2" ry="2" />
|
|
<text x="13.74" y="975.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (22 samples, 0.34%)</title><rect x="858.1" y="1797" width="4.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
|
|
<text x="861.06" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="1143.3" y="1829" width="0.7" height="15.0" fill="rgb(211,229,20)" rx="2" ry="2" />
|
|
<text x="1146.27" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (145 samples, 2.27%)</title><rect x="981.3" y="1845" width="26.7" height="15.0" fill="rgb(246,18,53)" rx="2" ry="2" />
|
|
<text x="984.26" y="1855.5" >W..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (17 samples, 0.27%)</title><rect x="1004.7" y="1701" width="3.2" height="15.0" fill="rgb(251,123,48)" rx="2" ry="2" />
|
|
<text x="1007.72" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (2 samples, 0.03%)</title><rect x="1004.2" y="1717" width="0.3" height="15.0" fill="rgb(241,9,13)" rx="2" ry="2" />
|
|
<text x="1007.17" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1183.9" y="1685" width="0.2" height="15.0" fill="rgb(211,78,1)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1183.9" y="1701" width="0.2" height="15.0" fill="rgb(209,215,22)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="295.2" y="1781" width="0.4" height="15.0" fill="rgb(205,153,39)" rx="2" ry="2" />
|
|
<text x="298.21" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_enter (1 samples, 0.02%)</title><rect x="804.5" y="1733" width="0.2" height="15.0" fill="rgb(238,124,21)" rx="2" ry="2" />
|
|
<text x="807.49" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (1 samples, 0.02%)</title><rect x="10.9" y="2021" width="0.2" height="15.0" fill="rgb(206,26,10)" rx="2" ry="2" />
|
|
<text x="13.92" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__printf_chk (1 samples, 0.02%)</title><rect x="1188.3" y="2005" width="0.2" height="15.0" fill="rgb(232,202,29)" rx="2" ry="2" />
|
|
<text x="1191.34" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="246.6" y="1845" width="0.6" height="15.0" fill="rgb(210,141,0)" rx="2" ry="2" />
|
|
<text x="249.63" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1187.6" y="1765" width="0.6" height="15.0" fill="rgb(228,195,51)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CANVAS_write_to_file (1 samples, 0.02%)</title><rect x="1188.5" y="2021" width="0.2" height="15.0" fill="rgb(246,107,45)" rx="2" ry="2" />
|
|
<text x="1191.52" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (4 samples, 0.06%)</title><rect x="10.0" y="2053" width="0.7" height="15.0" fill="rgb(243,220,48)" rx="2" ry="2" />
|
|
<text x="13.00" y="2063.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="308.5" y="1781" width="0.4" height="15.0" fill="rgb(250,48,7)" rx="2" ry="2" />
|
|
<text x="311.51" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (9 samples, 0.14%)</title><rect x="289.9" y="1765" width="1.6" height="15.0" fill="rgb(213,21,39)" rx="2" ry="2" />
|
|
<text x="292.85" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (7 samples, 0.11%)</title><rect x="1103.0" y="1845" width="1.3" height="15.0" fill="rgb(241,34,19)" rx="2" ry="2" />
|
|
<text x="1106.00" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (23 samples, 0.36%)</title><rect x="1000.3" y="1781" width="4.2" height="15.0" fill="rgb(218,143,31)" rx="2" ry="2" />
|
|
<text x="1003.29" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1,011 samples, 15.83%)</title><rect x="14.1" y="1989" width="186.7" height="15.0" fill="rgb(231,33,19)" rx="2" ry="2" />
|
|
<text x="17.06" y="1999.5" >SHAPE_intersect</text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1031.1" y="1717" width="0.2" height="15.0" fill="rgb(218,196,39)" rx="2" ry="2" />
|
|
<text x="1034.14" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (6 samples, 0.09%)</title><rect x="254.0" y="1845" width="1.1" height="15.0" fill="rgb(218,76,27)" rx="2" ry="2" />
|
|
<text x="257.02" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="257.9" y="1765" width="0.2" height="15.0" fill="rgb(210,78,15)" rx="2" ry="2" />
|
|
<text x="260.90" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (14 samples, 0.22%)</title><rect x="273.2" y="1861" width="2.6" height="15.0" fill="rgb(219,62,24)" rx="2" ry="2" />
|
|
<text x="276.23" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="807.1" y="1797" width="0.3" height="15.0" fill="rgb(208,193,11)" rx="2" ry="2" />
|
|
<text x="810.07" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (166 samples, 2.60%)</title><rect x="280.2" y="1909" width="30.7" height="15.0" fill="rgb(248,11,30)" rx="2" ry="2" />
|
|
<text x="283.25" y="1919.5" >WO..</text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="285.2" y="1781" width="0.2" height="15.0" fill="rgb(214,134,47)" rx="2" ry="2" />
|
|
<text x="288.23" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="309" width="0.2" height="15.0" fill="rgb(222,181,35)" rx="2" ry="2" />
|
|
<text x="13.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="1142.0" y="1765" width="0.3" height="15.0" fill="rgb(216,154,43)" rx="2" ry="2" />
|
|
<text x="1144.97" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (4 samples, 0.06%)</title><rect x="300.6" y="1797" width="0.7" height="15.0" fill="rgb(234,25,11)" rx="2" ry="2" />
|
|
<text x="303.57" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (72 samples, 1.13%)</title><rect x="567.5" y="1781" width="13.3" height="15.0" fill="rgb(223,175,0)" rx="2" ry="2" />
|
|
<text x="570.49" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="305.4" y="1797" width="0.5" height="15.0" fill="rgb(253,67,36)" rx="2" ry="2" />
|
|
<text x="308.37" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="298.9" y="1733" width="0.4" height="15.0" fill="rgb(236,8,1)" rx="2" ry="2" />
|
|
<text x="301.90" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (9 samples, 0.14%)</title><rect x="1176.0" y="1797" width="1.6" height="15.0" fill="rgb(233,129,13)" rx="2" ry="2" />
|
|
<text x="1178.96" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="757" width="0.2" height="15.0" fill="rgb(246,43,12)" rx="2" ry="2" />
|
|
<text x="13.74" y="767.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1909" width="0.2" height="15.0" fill="rgb(252,13,40)" rx="2" ry="2" />
|
|
<text x="13.74" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (21 samples, 0.33%)</title><rect x="854.0" y="1765" width="3.9" height="15.0" fill="rgb(221,227,13)" rx="2" ry="2" />
|
|
<text x="856.99" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (1 samples, 0.02%)</title><rect x="545.0" y="1701" width="0.1" height="15.0" fill="rgb(239,156,22)" rx="2" ry="2" />
|
|
<text x="547.95" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1861" width="0.2" height="15.0" fill="rgb(242,46,6)" rx="2" ry="2" />
|
|
<text x="13.74" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="485" width="0.2" height="15.0" fill="rgb(253,97,52)" rx="2" ry="2" />
|
|
<text x="13.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (8 samples, 0.13%)</title><rect x="1139.4" y="1845" width="1.5" height="15.0" fill="rgb(247,76,37)" rx="2" ry="2" />
|
|
<text x="1142.39" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="291.1" y="1733" width="0.2" height="15.0" fill="rgb(220,146,47)" rx="2" ry="2" />
|
|
<text x="294.15" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (5 samples, 0.08%)</title><rect x="1051.8" y="1717" width="1.0" height="15.0" fill="rgb(211,64,26)" rx="2" ry="2" />
|
|
<text x="1054.83" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_sort_intersections (1 samples, 0.02%)</title><rect x="470.7" y="1925" width="0.2" height="15.0" fill="rgb(224,66,16)" rx="2" ry="2" />
|
|
<text x="473.70" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (6 samples, 0.09%)</title><rect x="593.9" y="1813" width="1.1" height="15.0" fill="rgb(206,44,49)" rx="2" ry="2" />
|
|
<text x="596.90" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (6 samples, 0.09%)</title><rect x="745.7" y="1733" width="1.2" height="15.0" fill="rgb(228,41,30)" rx="2" ry="2" />
|
|
<text x="748.75" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="258.6" y="1813" width="0.4" height="15.0" fill="rgb(224,224,39)" rx="2" ry="2" />
|
|
<text x="261.63" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (13 samples, 0.20%)</title><rect x="1028.9" y="1749" width="2.4" height="15.0" fill="rgb(237,39,24)" rx="2" ry="2" />
|
|
<text x="1031.92" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (9 samples, 0.14%)</title><rect x="297.2" y="1797" width="1.7" height="15.0" fill="rgb(205,117,22)" rx="2" ry="2" />
|
|
<text x="300.24" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (28 samples, 0.44%)</title><rect x="894.3" y="1733" width="5.1" height="15.0" fill="rgb(205,221,38)" rx="2" ry="2" />
|
|
<text x="897.26" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_execve_file.isra.0 (1 samples, 0.02%)</title><rect x="12.6" y="1989" width="0.2" height="15.0" fill="rgb(225,124,38)" rx="2" ry="2" />
|
|
<text x="15.59" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__schedule (4 samples, 0.06%)</title><rect x="68.6" y="1845" width="0.7" height="15.0" fill="rgb(254,59,53)" rx="2" ry="2" />
|
|
<text x="71.56" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="287.3" y="1781" width="0.2" height="15.0" fill="rgb(241,71,47)" rx="2" ry="2" />
|
|
<text x="290.27" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (36 samples, 0.56%)</title><rect x="435.0" y="1877" width="6.7" height="15.0" fill="rgb(252,173,12)" rx="2" ry="2" />
|
|
<text x="438.04" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (207 samples, 3.24%)</title><rect x="473.5" y="1861" width="38.2" height="15.0" fill="rgb(241,83,2)" rx="2" ry="2" />
|
|
<text x="476.47" y="1871.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1026.5" y="1765" width="0.2" height="15.0" fill="rgb(221,8,52)" rx="2" ry="2" />
|
|
<text x="1029.52" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (4 samples, 0.06%)</title><rect x="673.3" y="1765" width="0.8" height="15.0" fill="rgb(231,45,51)" rx="2" ry="2" />
|
|
<text x="676.33" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="992.2" y="1733" width="0.1" height="15.0" fill="rgb(242,49,46)" rx="2" ry="2" />
|
|
<text x="995.16" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="300.8" y="1669" width="0.3" height="15.0" fill="rgb(227,9,13)" rx="2" ry="2" />
|
|
<text x="303.75" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="188.4" y="1893" width="0.2" height="15.0" fill="rgb(209,22,6)" rx="2" ry="2" />
|
|
<text x="191.44" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="252.5" y="1781" width="0.2" height="15.0" fill="rgb(243,80,42)" rx="2" ry="2" />
|
|
<text x="255.54" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (9 samples, 0.14%)</title><rect x="1050.2" y="1701" width="1.6" height="15.0" fill="rgb(236,192,22)" rx="2" ry="2" />
|
|
<text x="1053.17" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1142.2" y="1717" width="0.1" height="15.0" fill="rgb(236,17,54)" rx="2" ry="2" />
|
|
<text x="1145.16" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (27 samples, 0.42%)</title><rect x="1015.1" y="1749" width="5.0" height="15.0" fill="rgb(223,40,26)" rx="2" ry="2" />
|
|
<text x="1018.07" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="257.9" y="1813" width="0.4" height="15.0" fill="rgb(211,81,0)" rx="2" ry="2" />
|
|
<text x="260.90" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1813" width="0.2" height="15.0" fill="rgb(215,126,19)" rx="2" ry="2" />
|
|
<text x="13.74" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="249.0" y="1813" width="0.4" height="15.0" fill="rgb(244,102,51)" rx="2" ry="2" />
|
|
<text x="252.03" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (8 samples, 0.13%)</title><rect x="297.4" y="1781" width="1.5" height="15.0" fill="rgb(223,67,5)" rx="2" ry="2" />
|
|
<text x="300.43" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="197" width="0.2" height="15.0" fill="rgb(214,88,32)" rx="2" ry="2" />
|
|
<text x="13.74" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (56 samples, 0.88%)</title><rect x="569.5" y="1765" width="10.4" height="15.0" fill="rgb(231,229,14)" rx="2" ry="2" />
|
|
<text x="572.52" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="286.3" y="1733" width="0.4" height="15.0" fill="rgb(249,75,21)" rx="2" ry="2" />
|
|
<text x="289.34" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="898.7" y="1685" width="0.2" height="15.0" fill="rgb(223,138,38)" rx="2" ry="2" />
|
|
<text x="901.69" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="861.9" y="1733" width="0.2" height="15.0" fill="rgb(208,71,33)" rx="2" ry="2" />
|
|
<text x="864.93" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>elf_map (1 samples, 0.02%)</title><rect x="12.6" y="1941" width="0.2" height="15.0" fill="rgb(223,28,3)" rx="2" ry="2" />
|
|
<text x="15.59" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (3 samples, 0.05%)</title><rect x="886.7" y="1765" width="0.5" height="15.0" fill="rgb(240,53,51)" rx="2" ry="2" />
|
|
<text x="889.69" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="308.9" y="1781" width="0.2" height="15.0" fill="rgb(225,98,13)" rx="2" ry="2" />
|
|
<text x="311.88" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (22 samples, 0.34%)</title><rect x="1000.5" y="1733" width="4.0" height="15.0" fill="rgb(221,168,28)" rx="2" ry="2" />
|
|
<text x="1003.48" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (36 samples, 0.56%)</title><rect x="815.8" y="1765" width="6.6" height="15.0" fill="rgb(230,77,24)" rx="2" ry="2" />
|
|
<text x="818.75" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="988.1" y="1797" width="0.2" height="15.0" fill="rgb(240,15,47)" rx="2" ry="2" />
|
|
<text x="991.10" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (211 samples, 3.30%)</title><rect x="900.4" y="1893" width="38.9" height="15.0" fill="rgb(253,188,35)" rx="2" ry="2" />
|
|
<text x="903.36" y="1903.5" >WOR..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (5 samples, 0.08%)</title><rect x="307.0" y="1813" width="1.0" height="15.0" fill="rgb(233,109,48)" rx="2" ry="2" />
|
|
<text x="310.03" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="133" width="0.2" height="15.0" fill="rgb(253,154,16)" rx="2" ry="2" />
|
|
<text x="13.74" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="253.3" y="1829" width="0.3" height="15.0" fill="rgb(241,10,52)" rx="2" ry="2" />
|
|
<text x="256.28" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="287.1" y="1749" width="0.2" height="15.0" fill="rgb(223,111,50)" rx="2" ry="2" />
|
|
<text x="290.08" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (92 samples, 1.44%)</title><rect x="213.9" y="1893" width="17.0" height="15.0" fill="rgb(220,96,6)" rx="2" ry="2" />
|
|
<text x="216.93" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1145.3" y="1717" width="0.2" height="15.0" fill="rgb(227,115,8)" rx="2" ry="2" />
|
|
<text x="1148.30" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cfree@GLIBC_2.2.5 (1 samples, 0.02%)</title><rect x="293.5" y="1781" width="0.2" height="15.0" fill="rgb(215,115,42)" rx="2" ry="2" />
|
|
<text x="296.55" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (7 samples, 0.11%)</title><rect x="706.2" y="1749" width="1.3" height="15.0" fill="rgb(238,9,49)" rx="2" ry="2" />
|
|
<text x="709.21" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1002.0" y="1701" width="0.5" height="15.0" fill="rgb(211,131,30)" rx="2" ry="2" />
|
|
<text x="1004.95" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x86_pmu_enable (4 samples, 0.06%)</title><rect x="68.6" y="1781" width="0.7" height="15.0" fill="rgb(254,215,4)" rx="2" ry="2" />
|
|
<text x="71.56" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="245.3" y="1861" width="0.6" height="15.0" fill="rgb(247,72,39)" rx="2" ry="2" />
|
|
<text x="248.34" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="244.2" y="1925" width="2.4" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
|
|
<text x="247.23" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="938.2" y="1829" width="0.6" height="15.0" fill="rgb(223,218,30)" rx="2" ry="2" />
|
|
<text x="941.22" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="996.0" y="1749" width="0.2" height="15.0" fill="rgb(233,172,45)" rx="2" ry="2" />
|
|
<text x="999.04" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="310.0" y="1733" width="0.4" height="15.0" fill="rgb(244,16,24)" rx="2" ry="2" />
|
|
<text x="312.99" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (1 samples, 0.02%)</title><rect x="593.4" y="1669" width="0.1" height="15.0" fill="rgb(235,126,7)" rx="2" ry="2" />
|
|
<text x="596.35" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="300.4" y="1765" width="0.2" height="15.0" fill="rgb(211,47,10)" rx="2" ry="2" />
|
|
<text x="303.38" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="747.0" y="1765" width="0.8" height="15.0" fill="rgb(234,120,40)" rx="2" ry="2" />
|
|
<text x="750.04" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="804.7" y="1781" width="0.7" height="15.0" fill="rgb(233,29,48)" rx="2" ry="2" />
|
|
<text x="807.67" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.06%)</title><rect x="68.6" y="1909" width="0.7" height="15.0" fill="rgb(237,34,22)" rx="2" ry="2" />
|
|
<text x="71.56" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="310.2" y="1685" width="0.2" height="15.0" fill="rgb(236,223,32)" rx="2" ry="2" />
|
|
<text x="313.17" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (1 samples, 0.02%)</title><rect x="1144.9" y="1797" width="0.2" height="15.0" fill="rgb(215,20,37)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="308.7" y="1685" width="0.2" height="15.0" fill="rgb(253,199,30)" rx="2" ry="2" />
|
|
<text x="311.69" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1717" width="0.2" height="15.0" fill="rgb(209,0,13)" rx="2" ry="2" />
|
|
<text x="13.74" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (6 samples, 0.09%)</title><rect x="250.1" y="1845" width="1.1" height="15.0" fill="rgb(224,5,35)" rx="2" ry="2" />
|
|
<text x="253.14" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1637" width="0.2" height="15.0" fill="rgb(206,175,0)" rx="2" ry="2" />
|
|
<text x="13.74" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="307.4" y="1717" width="0.6" height="15.0" fill="rgb(249,180,22)" rx="2" ry="2" />
|
|
<text x="310.40" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (5 samples, 0.08%)</title><rect x="627.9" y="1749" width="0.9" height="15.0" fill="rgb(239,169,46)" rx="2" ry="2" />
|
|
<text x="630.89" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="250.5" y="1797" width="0.6" height="15.0" fill="rgb(209,170,7)" rx="2" ry="2" />
|
|
<text x="253.51" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1136.6" y="1813" width="0.2" height="15.0" fill="rgb(237,57,39)" rx="2" ry="2" />
|
|
<text x="1139.62" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (4 samples, 0.06%)</title><rect x="669.3" y="1717" width="0.7" height="15.0" fill="rgb(232,136,13)" rx="2" ry="2" />
|
|
<text x="672.27" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="307.4" y="1765" width="0.6" height="15.0" fill="rgb(216,156,29)" rx="2" ry="2" />
|
|
<text x="310.40" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (30 samples, 0.47%)</title><rect x="894.3" y="1781" width="5.5" height="15.0" fill="rgb(213,87,34)" rx="2" ry="2" />
|
|
<text x="897.26" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (5 samples, 0.08%)</title><rect x="1021.7" y="1765" width="0.9" height="15.0" fill="rgb(228,102,54)" rx="2" ry="2" />
|
|
<text x="1024.72" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="472.4" y="1861" width="0.7" height="15.0" fill="rgb(210,58,41)" rx="2" ry="2" />
|
|
<text x="475.36" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="940.1" y="1813" width="0.7" height="15.0" fill="rgb(240,8,27)" rx="2" ry="2" />
|
|
<text x="943.07" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (4 samples, 0.06%)</title><rect x="300.6" y="1813" width="0.7" height="15.0" fill="rgb(225,156,9)" rx="2" ry="2" />
|
|
<text x="303.57" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (68 samples, 1.06%)</title><rect x="887.2" y="1813" width="12.6" height="15.0" fill="rgb(225,72,7)" rx="2" ry="2" />
|
|
<text x="890.24" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>schedule (4 samples, 0.06%)</title><rect x="137.1" y="1845" width="0.7" height="15.0" fill="rgb(242,50,41)" rx="2" ry="2" />
|
|
<text x="140.09" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (2 samples, 0.03%)</title><rect x="298.9" y="1813" width="0.4" height="15.0" fill="rgb(222,228,24)" rx="2" ry="2" />
|
|
<text x="301.90" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (5 samples, 0.08%)</title><rect x="304.4" y="1797" width="1.0" height="15.0" fill="rgb(231,131,40)" rx="2" ry="2" />
|
|
<text x="307.45" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (188 samples, 2.94%)</title><rect x="1145.5" y="1829" width="34.7" height="15.0" fill="rgb(252,212,7)" rx="2" ry="2" />
|
|
<text x="1148.48" y="1839.5" >AR..</text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_execve (4 samples, 0.06%)</title><rect x="10.0" y="2005" width="0.7" height="15.0" fill="rgb(241,102,30)" rx="2" ry="2" />
|
|
<text x="13.00" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (28 samples, 0.44%)</title><rect x="697.5" y="1749" width="5.2" height="15.0" fill="rgb(213,222,51)" rx="2" ry="2" />
|
|
<text x="700.53" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (37 samples, 0.58%)</title><rect x="1047.2" y="1765" width="6.8" height="15.0" fill="rgb(254,93,12)" rx="2" ry="2" />
|
|
<text x="1050.21" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1957" width="0.2" height="15.0" fill="rgb(228,224,6)" rx="2" ry="2" />
|
|
<text x="13.74" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="244.2" y="1877" width="2.4" height="15.0" fill="rgb(246,190,36)" rx="2" ry="2" />
|
|
<text x="247.23" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (205 samples, 3.21%)</title><rect x="709.2" y="1765" width="37.8" height="15.0" fill="rgb(245,143,50)" rx="2" ry="2" />
|
|
<text x="712.17" y="1775.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1733" width="0.2" height="15.0" fill="rgb(205,228,32)" rx="2" ry="2" />
|
|
<text x="13.74" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (9 samples, 0.14%)</title><rect x="255.1" y="1845" width="1.7" height="15.0" fill="rgb(232,119,38)" rx="2" ry="2" />
|
|
<text x="258.13" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="745.6" y="1685" width="0.1" height="15.0" fill="rgb(227,67,27)" rx="2" ry="2" />
|
|
<text x="748.56" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cfree@GLIBC_2.2.5 (1 samples, 0.02%)</title><rect x="899.6" y="1765" width="0.2" height="15.0" fill="rgb(241,62,40)" rx="2" ry="2" />
|
|
<text x="902.62" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (225 samples, 3.52%)</title><rect x="471.1" y="1909" width="41.5" height="15.0" fill="rgb(242,110,50)" rx="2" ry="2" />
|
|
<text x="474.06" y="1919.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1183.4" y="1717" width="0.1" height="15.0" fill="rgb(248,222,18)" rx="2" ry="2" />
|
|
<text x="1186.35" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (6 samples, 0.09%)</title><rect x="308.9" y="1797" width="1.1" height="15.0" fill="rgb(213,84,9)" rx="2" ry="2" />
|
|
<text x="311.88" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (242 samples, 3.79%)</title><rect x="426.2" y="1941" width="44.7" height="15.0" fill="rgb(215,226,44)" rx="2" ry="2" />
|
|
<text x="429.18" y="1951.5" >SHAP..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="709" width="0.2" height="15.0" fill="rgb(243,98,32)" rx="2" ry="2" />
|
|
<text x="13.74" y="719.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scheduler_tick (1 samples, 0.02%)</title><rect x="745.6" y="1621" width="0.1" height="15.0" fill="rgb(218,78,8)" rx="2" ry="2" />
|
|
<text x="748.56" y="1631.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (35 samples, 0.55%)</title><rect x="1026.7" y="1765" width="6.5" height="15.0" fill="rgb(226,109,44)" rx="2" ry="2" />
|
|
<text x="1029.71" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (38 samples, 0.59%)</title><rect x="1040.0" y="1717" width="7.0" height="15.0" fill="rgb(233,170,38)" rx="2" ry="2" />
|
|
<text x="1043.01" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="1145.1" y="1765" width="0.4" height="15.0" fill="rgb(248,12,43)" rx="2" ry="2" />
|
|
<text x="1148.11" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (13 samples, 0.20%)</title><rect x="280.2" y="1861" width="2.4" height="15.0" fill="rgb(206,152,24)" rx="2" ry="2" />
|
|
<text x="283.25" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (24 samples, 0.38%)</title><rect x="927.5" y="1813" width="4.4" height="15.0" fill="rgb(252,110,50)" rx="2" ry="2" />
|
|
<text x="930.51" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="308.3" y="1701" width="0.2" height="15.0" fill="rgb(252,141,23)" rx="2" ry="2" />
|
|
<text x="311.32" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="298.0" y="1749" width="0.2" height="15.0" fill="rgb(237,164,38)" rx="2" ry="2" />
|
|
<text x="300.98" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (6 samples, 0.09%)</title><rect x="192.7" y="1941" width="1.1" height="15.0" fill="rgb(224,152,5)" rx="2" ry="2" />
|
|
<text x="195.69" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (212 samples, 3.32%)</title><rect x="1060.1" y="1877" width="39.2" height="15.0" fill="rgb(249,175,25)" rx="2" ry="2" />
|
|
<text x="1063.14" y="1887.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="1183.9" y="1765" width="0.2" height="15.0" fill="rgb(244,96,35)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (38 samples, 0.59%)</title><rect x="206.9" y="1893" width="7.0" height="15.0" fill="rgb(218,27,4)" rx="2" ry="2" />
|
|
<text x="209.91" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (6 samples, 0.09%)</title><rect x="1096.9" y="1845" width="1.1" height="15.0" fill="rgb(251,225,50)" rx="2" ry="2" />
|
|
<text x="1099.90" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="762.4" y="1685" width="0.7" height="15.0" fill="rgb(236,14,24)" rx="2" ry="2" />
|
|
<text x="765.37" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (39 samples, 0.61%)</title><rect x="1040.0" y="1733" width="7.2" height="15.0" fill="rgb(243,94,43)" rx="2" ry="2" />
|
|
<text x="1043.01" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (7 samples, 0.11%)</title><rect x="299.3" y="1781" width="1.3" height="15.0" fill="rgb(239,118,26)" rx="2" ry="2" />
|
|
<text x="302.27" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="165" width="0.2" height="15.0" fill="rgb(226,79,31)" rx="2" ry="2" />
|
|
<text x="13.74" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1144.2" y="1749" width="0.2" height="15.0" fill="rgb(237,25,0)" rx="2" ry="2" />
|
|
<text x="1147.19" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (10 samples, 0.16%)</title><rect x="251.2" y="1877" width="1.9" height="15.0" fill="rgb(246,202,28)" rx="2" ry="2" />
|
|
<text x="254.25" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1013" width="0.2" height="15.0" fill="rgb(211,142,11)" rx="2" ry="2" />
|
|
<text x="13.74" y="1023.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1029" width="0.2" height="15.0" fill="rgb(218,133,5)" rx="2" ry="2" />
|
|
<text x="13.74" y="1039.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (41 samples, 0.64%)</title><rect x="1025.6" y="1797" width="7.6" height="15.0" fill="rgb(218,214,42)" rx="2" ry="2" />
|
|
<text x="1028.60" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (5 samples, 0.08%)</title><rect x="742.8" y="1733" width="0.9" height="15.0" fill="rgb(251,113,54)" rx="2" ry="2" />
|
|
<text x="745.79" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (17 samples, 0.27%)</title><rect x="878.4" y="1733" width="3.1" height="15.0" fill="rgb(247,143,31)" rx="2" ry="2" />
|
|
<text x="881.38" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="292.3" y="1717" width="0.3" height="15.0" fill="rgb(239,101,8)" rx="2" ry="2" />
|
|
<text x="295.25" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (109 samples, 1.71%)</title><rect x="748.9" y="1781" width="20.1" height="15.0" fill="rgb(214,2,25)" rx="2" ry="2" />
|
|
<text x="751.89" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (225 samples, 3.52%)</title><rect x="471.1" y="1893" width="41.5" height="15.0" fill="rgb(223,102,29)" rx="2" ry="2" />
|
|
<text x="474.06" y="1903.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (211 samples, 3.30%)</title><rect x="900.4" y="1861" width="38.9" height="15.0" fill="rgb(214,223,17)" rx="2" ry="2" />
|
|
<text x="903.36" y="1871.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (6 samples, 0.09%)</title><rect x="254.0" y="1861" width="1.1" height="15.0" fill="rgb(235,195,11)" rx="2" ry="2" />
|
|
<text x="257.02" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1317" width="0.2" height="15.0" fill="rgb(209,96,5)" rx="2" ry="2" />
|
|
<text x="13.74" y="1327.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (5 samples, 0.08%)</title><rect x="1141.0" y="1813" width="1.0" height="15.0" fill="rgb(250,155,5)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (3 samples, 0.05%)</title><rect x="252.5" y="1829" width="0.6" height="15.0" fill="rgb(208,111,36)" rx="2" ry="2" />
|
|
<text x="255.54" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (9 samples, 0.14%)</title><rect x="1185.8" y="1765" width="1.6" height="15.0" fill="rgb(218,202,35)" rx="2" ry="2" />
|
|
<text x="1188.75" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (4 samples, 0.06%)</title><rect x="1189.1" y="2053" width="0.7" height="15.0" fill="rgb(223,180,10)" rx="2" ry="2" />
|
|
<text x="1192.08" y="2063.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>insert_work (1 samples, 0.02%)</title><rect x="1099.1" y="1669" width="0.2" height="15.0" fill="rgb(206,171,27)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="1187.6" y="1749" width="0.6" height="15.0" fill="rgb(226,178,50)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="697.0" y="1733" width="0.5" height="15.0" fill="rgb(253,125,14)" rx="2" ry="2" />
|
|
<text x="699.98" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="257.7" y="1781" width="0.2" height="15.0" fill="rgb(214,185,41)" rx="2" ry="2" />
|
|
<text x="260.71" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (32 samples, 0.50%)</title><rect x="1054.0" y="1781" width="6.0" height="15.0" fill="rgb(254,76,28)" rx="2" ry="2" />
|
|
<text x="1057.05" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (241 samples, 3.77%)</title><rect x="426.2" y="1925" width="44.5" height="15.0" fill="rgb(244,216,21)" rx="2" ry="2" />
|
|
<text x="429.18" y="1935.5" >GROU..</text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (15 samples, 0.23%)</title><rect x="419.2" y="1893" width="2.7" height="15.0" fill="rgb(231,37,30)" rx="2" ry="2" />
|
|
<text x="422.16" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="284.1" y="1781" width="0.6" height="15.0" fill="rgb(247,46,3)" rx="2" ry="2" />
|
|
<text x="287.13" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="935.3" y="1813" width="0.3" height="15.0" fill="rgb(248,177,34)" rx="2" ry="2" />
|
|
<text x="938.27" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (14 samples, 0.22%)</title><rect x="306.3" y="1845" width="2.6" height="15.0" fill="rgb(242,92,51)" rx="2" ry="2" />
|
|
<text x="309.29" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="306.5" y="1765" width="0.3" height="15.0" fill="rgb(233,212,9)" rx="2" ry="2" />
|
|
<text x="309.48" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="301.3" y="1829" width="2.4" height="15.0" fill="rgb(253,33,0)" rx="2" ry="2" />
|
|
<text x="304.31" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (17 samples, 0.27%)</title><rect x="992.7" y="1781" width="3.2" height="15.0" fill="rgb(226,148,11)" rx="2" ry="2" />
|
|
<text x="995.72" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (53 samples, 0.83%)</title><rect x="724.1" y="1717" width="9.8" height="15.0" fill="rgb(245,34,48)" rx="2" ry="2" />
|
|
<text x="727.13" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_delete (1 samples, 0.02%)</title><rect x="10.9" y="2037" width="0.2" height="15.0" fill="rgb(223,51,17)" rx="2" ry="2" />
|
|
<text x="13.92" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (325 samples, 5.09%)</title><rect x="709.0" y="1829" width="60.0" height="15.0" fill="rgb(242,21,12)" rx="2" ry="2" />
|
|
<text x="711.99" y="1839.5" >WORLD_..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (41 samples, 0.64%)</title><rect x="1025.6" y="1781" width="7.6" height="15.0" fill="rgb(253,222,50)" rx="2" ry="2" />
|
|
<text x="1028.60" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="277.1" y="1877" width="0.6" height="15.0" fill="rgb(244,30,11)" rx="2" ry="2" />
|
|
<text x="280.11" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1142.0" y="1797" width="0.3" height="15.0" fill="rgb(242,207,33)" rx="2" ry="2" />
|
|
<text x="1144.97" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (2 samples, 0.03%)</title><rect x="279.3" y="1845" width="0.4" height="15.0" fill="rgb(225,37,47)" rx="2" ry="2" />
|
|
<text x="282.32" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="310.5" y="1685" width="0.2" height="15.0" fill="rgb(238,211,51)" rx="2" ry="2" />
|
|
<text x="313.54" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="188.4" y="1909" width="0.2" height="15.0" fill="rgb(228,155,16)" rx="2" ry="2" />
|
|
<text x="191.44" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (42 samples, 0.66%)</title><rect x="735.0" y="1733" width="7.8" height="15.0" fill="rgb(229,22,32)" rx="2" ry="2" />
|
|
<text x="738.03" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (4 samples, 0.06%)</title><rect x="276.2" y="1861" width="0.7" height="15.0" fill="rgb(215,132,31)" rx="2" ry="2" />
|
|
<text x="279.18" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (34 samples, 0.53%)</title><rect x="1182.1" y="1845" width="6.2" height="15.0" fill="rgb(244,152,18)" rx="2" ry="2" />
|
|
<text x="1185.06" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (6 samples, 0.09%)</title><rect x="1005.8" y="1685" width="1.1" height="15.0" fill="rgb(217,38,16)" rx="2" ry="2" />
|
|
<text x="1008.83" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (2 samples, 0.03%)</title><rect x="1003.8" y="1717" width="0.4" height="15.0" fill="rgb(208,52,0)" rx="2" ry="2" />
|
|
<text x="1006.80" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1143.1" y="1685" width="0.2" height="15.0" fill="rgb(239,206,30)" rx="2" ry="2" />
|
|
<text x="1146.08" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1140.9" y="1829" width="0.1" height="15.0" fill="rgb(245,163,16)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (5 samples, 0.08%)</title><rect x="1144.0" y="1781" width="0.9" height="15.0" fill="rgb(217,84,40)" rx="2" ry="2" />
|
|
<text x="1147.00" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (17 samples, 0.27%)</title><rect x="416.0" y="1893" width="3.2" height="15.0" fill="rgb(252,161,9)" rx="2" ry="2" />
|
|
<text x="419.02" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (6 samples, 0.09%)</title><rect x="301.5" y="1813" width="1.1" height="15.0" fill="rgb(205,222,41)" rx="2" ry="2" />
|
|
<text x="304.49" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="1184.3" y="1749" width="0.5" height="15.0" fill="rgb(229,96,47)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (4 samples, 0.06%)</title><rect x="247.9" y="1765" width="0.8" height="15.0" fill="rgb(234,73,39)" rx="2" ry="2" />
|
|
<text x="250.92" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="897.8" y="1685" width="0.5" height="15.0" fill="rgb(253,198,38)" rx="2" ry="2" />
|
|
<text x="900.77" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (137 samples, 2.14%)</title><rect x="142.6" y="1925" width="25.3" height="15.0" fill="rgb(235,220,45)" rx="2" ry="2" />
|
|
<text x="145.63" y="1935.5" >T..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1144.0" y="1813" width="0.9" height="15.0" fill="rgb(218,85,1)" rx="2" ry="2" />
|
|
<text x="1147.00" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="1142.9" y="1765" width="0.4" height="15.0" fill="rgb(214,81,33)" rx="2" ry="2" />
|
|
<text x="1145.90" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (5,346 samples, 83.69%)</title><rect x="200.8" y="1989" width="987.5" height="15.0" fill="rgb(238,201,17)" rx="2" ry="2" />
|
|
<text x="203.82" y="1999.5" >WORLD_shade_hit</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (13 samples, 0.20%)</title><rect x="802.3" y="1781" width="2.4" height="15.0" fill="rgb(221,118,5)" rx="2" ry="2" />
|
|
<text x="805.27" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_do_update_jiffies64.part.0 (1 samples, 0.02%)</title><rect x="926.4" y="1685" width="0.2" height="15.0" fill="rgb(214,137,16)" rx="2" ry="2" />
|
|
<text x="929.40" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1009.3" y="1781" width="0.4" height="15.0" fill="rgb(206,162,17)" rx="2" ry="2" />
|
|
<text x="1012.34" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="926.4" y="1765" width="0.2" height="15.0" fill="rgb(228,140,31)" rx="2" ry="2" />
|
|
<text x="929.40" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (14 samples, 0.22%)</title><rect x="1183.2" y="1813" width="2.6" height="15.0" fill="rgb(214,117,37)" rx="2" ry="2" />
|
|
<text x="1186.17" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (7 samples, 0.11%)</title><rect x="555.9" y="1797" width="1.2" height="15.0" fill="rgb(252,75,9)" rx="2" ry="2" />
|
|
<text x="558.85" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="254.8" y="1813" width="0.1" height="15.0" fill="rgb(223,177,26)" rx="2" ry="2" />
|
|
<text x="257.76" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="256.2" y="1685" width="0.2" height="15.0" fill="rgb(248,17,53)" rx="2" ry="2" />
|
|
<text x="259.23" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (101 samples, 1.58%)</title><rect x="282.6" y="1877" width="18.7" height="15.0" fill="rgb(235,195,3)" rx="2" ry="2" />
|
|
<text x="285.65" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (199 samples, 3.12%)</title><rect x="672.2" y="1813" width="36.8" height="15.0" fill="rgb(221,155,15)" rx="2" ry="2" />
|
|
<text x="675.23" y="1823.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="926.4" y="1749" width="0.2" height="15.0" fill="rgb(238,211,5)" rx="2" ry="2" />
|
|
<text x="929.40" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (6 samples, 0.09%)</title><rect x="1027.8" y="1749" width="1.1" height="15.0" fill="rgb(225,132,0)" rx="2" ry="2" />
|
|
<text x="1030.81" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="308.1" y="1717" width="0.2" height="15.0" fill="rgb(238,111,28)" rx="2" ry="2" />
|
|
<text x="311.14" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1573" width="0.2" height="15.0" fill="rgb(249,97,37)" rx="2" ry="2" />
|
|
<text x="13.74" y="1583.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="260.1" y="1877" width="0.4" height="15.0" fill="rgb(242,82,47)" rx="2" ry="2" />
|
|
<text x="263.11" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (4 samples, 0.06%)</title><rect x="1136.1" y="1829" width="0.7" height="15.0" fill="rgb(211,71,33)" rx="2" ry="2" />
|
|
<text x="1139.06" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="292.8" y="1765" width="0.7" height="15.0" fill="rgb(206,62,31)" rx="2" ry="2" />
|
|
<text x="295.81" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (6,388 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(211,101,11)" rx="2" ry="2" />
|
|
<text x="13.00" y="2095.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="253.1" y="1893" width="0.9" height="15.0" fill="rgb(228,48,12)" rx="2" ry="2" />
|
|
<text x="256.09" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="255.7" y="1749" width="0.3" height="15.0" fill="rgb(248,106,28)" rx="2" ry="2" />
|
|
<text x="258.68" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="247.2" y="1797" width="0.5" height="15.0" fill="rgb(243,209,26)" rx="2" ry="2" />
|
|
<text x="250.18" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (6 samples, 0.09%)</title><rect x="308.9" y="1813" width="1.1" height="15.0" fill="rgb(228,53,32)" rx="2" ry="2" />
|
|
<text x="311.88" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="250.5" y="1781" width="0.6" height="15.0" fill="rgb(234,196,40)" rx="2" ry="2" />
|
|
<text x="253.51" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="252.5" y="1797" width="0.2" height="15.0" fill="rgb(208,117,27)" rx="2" ry="2" />
|
|
<text x="255.54" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1180.2" y="1829" width="0.2" height="15.0" fill="rgb(209,182,26)" rx="2" ry="2" />
|
|
<text x="1183.21" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="1139.8" y="1797" width="0.3" height="15.0" fill="rgb(221,98,18)" rx="2" ry="2" />
|
|
<text x="1142.76" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (206 samples, 3.22%)</title><rect x="595.0" y="1797" width="38.1" height="15.0" fill="rgb(213,65,4)" rx="2" ry="2" />
|
|
<text x="598.01" y="1807.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="298.5" y="1765" width="0.2" height="15.0" fill="rgb(225,167,10)" rx="2" ry="2" />
|
|
<text x="301.53" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1989" width="0.2" height="15.0" fill="rgb(207,196,2)" rx="2" ry="2" />
|
|
<text x="13.74" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (4,126 samples, 64.59%)</title><rect x="426.2" y="1957" width="762.1" height="15.0" fill="rgb(234,34,15)" rx="2" ry="2" />
|
|
<text x="429.18" y="1967.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (9 samples, 0.14%)</title><rect x="1185.8" y="1797" width="1.6" height="15.0" fill="rgb(229,112,30)" rx="2" ry="2" />
|
|
<text x="1188.75" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (42 samples, 0.66%)</title><rect x="1000.3" y="1797" width="7.7" height="15.0" fill="rgb(214,75,7)" rx="2" ry="2" />
|
|
<text x="1003.29" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (35 samples, 0.55%)</title><rect x="246.6" y="1909" width="6.5" height="15.0" fill="rgb(252,121,22)" rx="2" ry="2" />
|
|
<text x="249.63" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATERIAL_lighting (1 samples, 0.02%)</title><rect x="200.8" y="1973" width="0.2" height="15.0" fill="rgb(208,113,49)" rx="2" ry="2" />
|
|
<text x="203.82" y="1983.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="310.4" y="1749" width="0.1" height="15.0" fill="rgb(230,188,9)" rx="2" ry="2" />
|
|
<text x="313.36" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="750.0" y="1717" width="0.5" height="15.0" fill="rgb(253,53,47)" rx="2" ry="2" />
|
|
<text x="752.99" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (12 samples, 0.19%)</title><rect x="508.6" y="1845" width="2.2" height="15.0" fill="rgb(245,3,2)" rx="2" ry="2" />
|
|
<text x="511.56" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (22 samples, 0.34%)</title><rect x="297.2" y="1845" width="4.1" height="15.0" fill="rgb(254,157,50)" rx="2" ry="2" />
|
|
<text x="300.24" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="545.0" y="1733" width="0.1" height="15.0" fill="rgb(237,59,46)" rx="2" ry="2" />
|
|
<text x="547.95" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="545.0" y="1669" width="0.1" height="15.0" fill="rgb(225,74,44)" rx="2" ry="2" />
|
|
<text x="547.95" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (129 samples, 2.02%)</title><rect x="862.7" y="1749" width="23.8" height="15.0" fill="rgb(218,177,38)" rx="2" ry="2" />
|
|
<text x="865.67" y="1759.5" >S..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="858.6" y="1701" width="0.7" height="15.0" fill="rgb(243,119,52)" rx="2" ry="2" />
|
|
<text x="861.61" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="1046.7" y="1685" width="0.1" height="15.0" fill="rgb(211,170,37)" rx="2" ry="2" />
|
|
<text x="1049.66" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1140.1" y="1797" width="0.4" height="15.0" fill="rgb(244,163,45)" rx="2" ry="2" />
|
|
<text x="1143.13" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1140.5" y="1797" width="0.2" height="15.0" fill="rgb(248,198,26)" rx="2" ry="2" />
|
|
<text x="1143.49" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>parse_face (1 samples, 0.02%)</title><rect x="1188.7" y="1989" width="0.2" height="15.0" fill="rgb(237,33,13)" rx="2" ry="2" />
|
|
<text x="1191.71" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (22 samples, 0.34%)</title><rect x="858.1" y="1749" width="4.0" height="15.0" fill="rgb(253,173,29)" rx="2" ry="2" />
|
|
<text x="861.06" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (38 samples, 0.59%)</title><rect x="981.3" y="1813" width="7.0" height="15.0" fill="rgb(245,151,9)" rx="2" ry="2" />
|
|
<text x="984.26" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (2 samples, 0.03%)</title><rect x="987.4" y="1765" width="0.3" height="15.0" fill="rgb(245,17,30)" rx="2" ry="2" />
|
|
<text x="990.36" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (30 samples, 0.47%)</title><rect x="602.0" y="1749" width="5.6" height="15.0" fill="rgb(208,185,6)" rx="2" ry="2" />
|
|
<text x="605.03" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (5 samples, 0.08%)</title><rect x="747.8" y="1765" width="0.9" height="15.0" fill="rgb(224,101,33)" rx="2" ry="2" />
|
|
<text x="750.78" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="746.9" y="1749" width="0.1" height="15.0" fill="rgb(222,105,31)" rx="2" ry="2" />
|
|
<text x="749.85" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="300.8" y="1701" width="0.5" height="15.0" fill="rgb(228,209,42)" rx="2" ry="2" />
|
|
<text x="303.75" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (35 samples, 0.55%)</title><rect x="715.6" y="1733" width="6.5" height="15.0" fill="rgb(243,100,8)" rx="2" ry="2" />
|
|
<text x="718.64" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="259.9" y="1877" width="0.2" height="15.0" fill="rgb(205,87,14)" rx="2" ry="2" />
|
|
<text x="262.93" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (2 samples, 0.03%)</title><rect x="246.3" y="1861" width="0.3" height="15.0" fill="rgb(238,221,6)" rx="2" ry="2" />
|
|
<text x="249.26" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="1181.9" y="1781" width="0.2" height="15.0" fill="rgb(246,146,17)" rx="2" ry="2" />
|
|
<text x="1184.87" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (8 samples, 0.13%)</title><rect x="895.9" y="1669" width="1.5" height="15.0" fill="rgb(232,152,31)" rx="2" ry="2" />
|
|
<text x="898.92" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1145.1" y="1717" width="0.2" height="15.0" fill="rgb(225,160,17)" rx="2" ry="2" />
|
|
<text x="1148.11" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (33 samples, 0.52%)</title><rect x="1067.5" y="1845" width="6.1" height="15.0" fill="rgb(229,112,44)" rx="2" ry="2" />
|
|
<text x="1070.53" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (166 samples, 2.60%)</title><rect x="354.0" y="1877" width="30.6" height="15.0" fill="rgb(208,162,30)" rx="2" ry="2" />
|
|
<text x="356.95" y="1887.5" >MA..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="990.9" y="1717" width="0.2" height="15.0" fill="rgb(251,113,35)" rx="2" ry="2" />
|
|
<text x="993.87" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (13 samples, 0.20%)</title><rect x="545.1" y="1813" width="2.4" height="15.0" fill="rgb(214,134,15)" rx="2" ry="2" />
|
|
<text x="548.14" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="557.1" y="1797" width="0.6" height="15.0" fill="rgb(247,115,45)" rx="2" ry="2" />
|
|
<text x="560.14" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (2 samples, 0.03%)</title><rect x="258.3" y="1813" width="0.3" height="15.0" fill="rgb(238,56,46)" rx="2" ry="2" />
|
|
<text x="261.27" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="255.1" y="1781" width="0.2" height="15.0" fill="rgb(251,68,32)" rx="2" ry="2" />
|
|
<text x="258.13" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1893" width="0.2" height="15.0" fill="rgb(242,212,12)" rx="2" ry="2" />
|
|
<text x="13.74" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (13 samples, 0.20%)</title><rect x="298.9" y="1829" width="2.4" height="15.0" fill="rgb(227,44,4)" rx="2" ry="2" />
|
|
<text x="301.90" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1187.4" y="1701" width="0.2" height="15.0" fill="rgb(212,19,5)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="992.7" y="1717" width="0.2" height="15.0" fill="rgb(239,62,51)" rx="2" ry="2" />
|
|
<text x="995.72" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="308.5" y="1765" width="0.4" height="15.0" fill="rgb(226,118,50)" rx="2" ry="2" />
|
|
<text x="311.51" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1146.6" y="1813" width="0.5" height="15.0" fill="rgb(220,202,38)" rx="2" ry="2" />
|
|
<text x="1149.59" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1141" width="0.2" height="15.0" fill="rgb(231,115,3)" rx="2" ry="2" />
|
|
<text x="13.74" y="1151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (8 samples, 0.13%)</title><rect x="1100.2" y="1877" width="1.5" height="15.0" fill="rgb(222,213,36)" rx="2" ry="2" />
|
|
<text x="1103.23" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1144.9" y="1685" width="0.2" height="15.0" fill="rgb(225,147,14)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (6 samples, 0.09%)</title><rect x="852.9" y="1797" width="1.1" height="15.0" fill="rgb(251,180,4)" rx="2" ry="2" />
|
|
<text x="855.88" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="310.0" y="1701" width="0.4" height="15.0" fill="rgb(230,91,31)" rx="2" ry="2" />
|
|
<text x="312.99" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1877" width="0.2" height="15.0" fill="rgb(242,217,0)" rx="2" ry="2" />
|
|
<text x="13.74" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1142.9" y="1701" width="0.4" height="15.0" fill="rgb(232,197,25)" rx="2" ry="2" />
|
|
<text x="1145.90" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (114 samples, 1.78%)</title><rect x="280.2" y="1893" width="21.1" height="15.0" fill="rgb(252,77,13)" rx="2" ry="2" />
|
|
<text x="283.25" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="673.0" y="1765" width="0.3" height="15.0" fill="rgb(253,217,1)" rx="2" ry="2" />
|
|
<text x="675.96" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="852.5" y="1797" width="0.4" height="15.0" fill="rgb(209,122,53)" rx="2" ry="2" />
|
|
<text x="855.51" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (1,164 samples, 18.22%)</title><rect x="554.0" y="1861" width="215.0" height="15.0" fill="rgb(254,143,45)" rx="2" ry="2" />
|
|
<text x="557.00" y="1871.5" >WORLD_color_at</text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_new_smooth_from_points (1 samples, 0.02%)</title><rect x="1188.7" y="1973" width="0.2" height="15.0" fill="rgb(218,195,1)" rx="2" ry="2" />
|
|
<text x="1191.71" y="1983.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (43 samples, 0.67%)</title><rect x="1159.5" y="1781" width="8.0" height="15.0" fill="rgb(231,121,48)" rx="2" ry="2" />
|
|
<text x="1162.52" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="247.2" y="1845" width="0.5" height="15.0" fill="rgb(216,76,38)" rx="2" ry="2" />
|
|
<text x="250.18" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="1000.8" y="1717" width="0.8" height="15.0" fill="rgb(221,56,30)" rx="2" ry="2" />
|
|
<text x="1003.85" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (12 samples, 0.19%)</title><rect x="1141.0" y="1829" width="2.3" height="15.0" fill="rgb(218,50,43)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1205" width="0.2" height="15.0" fill="rgb(215,104,51)" rx="2" ry="2" />
|
|
<text x="13.74" y="1215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="249.0" y="1829" width="0.4" height="15.0" fill="rgb(252,130,36)" rx="2" ry="2" />
|
|
<text x="252.03" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (194 samples, 3.04%)</title><rect x="557.7" y="1797" width="35.8" height="15.0" fill="rgb(224,22,18)" rx="2" ry="2" />
|
|
<text x="560.70" y="1807.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="285.8" y="1765" width="0.2" height="15.0" fill="rgb(242,56,26)" rx="2" ry="2" />
|
|
<text x="288.79" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (10 samples, 0.16%)</title><rect x="703.8" y="1749" width="1.9" height="15.0" fill="rgb(250,205,17)" rx="2" ry="2" />
|
|
<text x="706.81" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1045" width="0.2" height="15.0" fill="rgb(250,49,18)" rx="2" ry="2" />
|
|
<text x="13.74" y="1055.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1125" width="0.2" height="15.0" fill="rgb(243,127,34)" rx="2" ry="2" />
|
|
<text x="13.74" y="1135.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_preempt_wakeup (1 samples, 0.02%)</title><rect x="1099.1" y="1573" width="0.2" height="15.0" fill="rgb(221,127,33)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1583.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_enter (1 samples, 0.02%)</title><rect x="1136.6" y="1781" width="0.2" height="15.0" fill="rgb(217,93,43)" rx="2" ry="2" />
|
|
<text x="1139.62" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="630.3" y="1749" width="0.2" height="15.0" fill="rgb(251,57,11)" rx="2" ry="2" />
|
|
<text x="633.29" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1109" width="0.2" height="15.0" fill="rgb(245,146,45)" rx="2" ry="2" />
|
|
<text x="13.74" y="1119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="310.5" y="1717" width="0.4" height="15.0" fill="rgb(232,215,34)" rx="2" ry="2" />
|
|
<text x="313.54" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (42 samples, 0.66%)</title><rect x="870.1" y="1717" width="7.7" height="15.0" fill="rgb(224,220,15)" rx="2" ry="2" />
|
|
<text x="873.06" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (2 samples, 0.03%)</title><rect x="310.0" y="1797" width="0.4" height="15.0" fill="rgb(254,134,10)" rx="2" ry="2" />
|
|
<text x="312.99" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (221 samples, 3.46%)</title><rect x="554.2" y="1845" width="40.8" height="15.0" fill="rgb(212,183,28)" rx="2" ry="2" />
|
|
<text x="557.19" y="1855.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="997" width="0.2" height="15.0" fill="rgb(236,124,22)" rx="2" ry="2" />
|
|
<text x="13.74" y="1007.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (22 samples, 0.34%)</title><rect x="988.3" y="1765" width="4.0" height="15.0" fill="rgb(237,215,50)" rx="2" ry="2" />
|
|
<text x="991.28" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (3 samples, 0.05%)</title><rect x="255.1" y="1829" width="0.6" height="15.0" fill="rgb(233,202,10)" rx="2" ry="2" />
|
|
<text x="258.13" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="298.9" y="1781" width="0.4" height="15.0" fill="rgb(237,228,15)" rx="2" ry="2" />
|
|
<text x="301.90" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (206 samples, 3.22%)</title><rect x="595.0" y="1813" width="38.1" height="15.0" fill="rgb(254,149,43)" rx="2" ry="2" />
|
|
<text x="598.01" y="1823.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="277.8" y="1845" width="0.2" height="15.0" fill="rgb(252,59,47)" rx="2" ry="2" />
|
|
<text x="280.85" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="306.3" y="1813" width="0.7" height="15.0" fill="rgb(246,69,42)" rx="2" ry="2" />
|
|
<text x="309.29" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (9 samples, 0.14%)</title><rect x="513.2" y="1829" width="1.6" height="15.0" fill="rgb(245,198,36)" rx="2" ry="2" />
|
|
<text x="516.18" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="1188.9" y="2053" width="0.2" height="15.0" fill="rgb(242,142,14)" rx="2" ry="2" />
|
|
<text x="1191.89" y="2063.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="253.5" y="1813" width="0.1" height="15.0" fill="rgb(213,4,36)" rx="2" ry="2" />
|
|
<text x="256.46" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_task_tick (1 samples, 0.02%)</title><rect x="188.4" y="1797" width="0.2" height="15.0" fill="rgb(215,5,36)" rx="2" ry="2" />
|
|
<text x="191.44" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (2 samples, 0.03%)</title><rect x="767.4" y="1701" width="0.3" height="15.0" fill="rgb(214,34,45)" rx="2" ry="2" />
|
|
<text x="770.36" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>msort_with_tmp.part.0 (5 samples, 0.08%)</title><rect x="12.8" y="2037" width="0.9" height="15.0" fill="rgb(238,61,15)" rx="2" ry="2" />
|
|
<text x="15.77" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (490 samples, 7.67%)</title><rect x="809.8" y="1861" width="90.6" height="15.0" fill="rgb(229,128,15)" rx="2" ry="2" />
|
|
<text x="812.84" y="1871.5" >WORLD_refr..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="437" width="0.2" height="15.0" fill="rgb(212,24,22)" rx="2" ry="2" />
|
|
<text x="13.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1413" width="0.2" height="15.0" fill="rgb(248,110,22)" rx="2" ry="2" />
|
|
<text x="13.74" y="1423.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="293.4" y="1733" width="0.1" height="15.0" fill="rgb(222,227,11)" rx="2" ry="2" />
|
|
<text x="296.36" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="1141.6" y="1733" width="0.4" height="15.0" fill="rgb(254,34,0)" rx="2" ry="2" />
|
|
<text x="1144.60" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="1061.8" y="1861" width="0.6" height="15.0" fill="rgb(228,1,41)" rx="2" ry="2" />
|
|
<text x="1064.80" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (42 samples, 0.66%)</title><rect x="1180.6" y="1861" width="7.7" height="15.0" fill="rgb(247,224,37)" rx="2" ry="2" />
|
|
<text x="1183.58" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (10 samples, 0.16%)</title><rect x="184.0" y="1925" width="1.9" height="15.0" fill="rgb(205,71,10)" rx="2" ry="2" />
|
|
<text x="187.01" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (27 samples, 0.42%)</title><rect x="254.0" y="1909" width="5.0" height="15.0" fill="rgb(208,84,27)" rx="2" ry="2" />
|
|
<text x="257.02" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (9 samples, 0.14%)</title><rect x="888.0" y="1717" width="1.6" height="15.0" fill="rgb(238,46,2)" rx="2" ry="2" />
|
|
<text x="890.98" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1184.8" y="1733" width="1.0" height="15.0" fill="rgb(220,4,48)" rx="2" ry="2" />
|
|
<text x="1187.83" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="453" width="0.2" height="15.0" fill="rgb(238,207,4)" rx="2" ry="2" />
|
|
<text x="13.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="987.7" y="1765" width="0.2" height="15.0" fill="rgb(209,184,43)" rx="2" ry="2" />
|
|
<text x="990.73" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="308.3" y="1765" width="0.2" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
|
|
<text x="311.32" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (4 samples, 0.06%)</title><rect x="256.0" y="1797" width="0.8" height="15.0" fill="rgb(218,176,30)" rx="2" ry="2" />
|
|
<text x="259.05" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="292.8" y="1733" width="0.6" height="15.0" fill="rgb(242,114,33)" rx="2" ry="2" />
|
|
<text x="295.81" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (7 samples, 0.11%)</title><rect x="983.3" y="1765" width="1.3" height="15.0" fill="rgb(224,195,10)" rx="2" ry="2" />
|
|
<text x="986.30" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (2 samples, 0.03%)</title><rect x="1098.0" y="1845" width="0.4" height="15.0" fill="rgb(225,18,4)" rx="2" ry="2" />
|
|
<text x="1101.01" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1052.8" y="1717" width="0.1" height="15.0" fill="rgb(216,118,31)" rx="2" ry="2" />
|
|
<text x="1055.75" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1145.3" y="1701" width="0.2" height="15.0" fill="rgb(209,131,4)" rx="2" ry="2" />
|
|
<text x="1148.30" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (190 samples, 2.97%)</title><rect x="1145.5" y="1845" width="35.1" height="15.0" fill="rgb(212,75,1)" rx="2" ry="2" />
|
|
<text x="1148.48" y="1855.5" >GR..</text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (4 samples, 0.06%)</title><rect x="980.3" y="1829" width="0.8" height="15.0" fill="rgb(238,217,21)" rx="2" ry="2" />
|
|
<text x="983.34" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="1142.3" y="1765" width="0.6" height="15.0" fill="rgb(208,158,36)" rx="2" ry="2" />
|
|
<text x="1145.34" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="1187.4" y="1733" width="0.2" height="15.0" fill="rgb(209,65,4)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (22 samples, 0.34%)</title><rect x="410.7" y="1893" width="4.0" height="15.0" fill="rgb(239,222,8)" rx="2" ry="2" />
|
|
<text x="413.66" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (9 samples, 0.14%)</title><rect x="297.2" y="1829" width="1.7" height="15.0" fill="rgb(206,109,5)" rx="2" ry="2" />
|
|
<text x="300.24" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (199 samples, 3.12%)</title><rect x="672.2" y="1797" width="36.8" height="15.0" fill="rgb(207,66,17)" rx="2" ry="2" />
|
|
<text x="675.23" y="1807.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1829" width="0.2" height="15.0" fill="rgb(240,99,54)" rx="2" ry="2" />
|
|
<text x="13.74" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="1183.2" y="1781" width="0.7" height="15.0" fill="rgb(217,95,42)" rx="2" ry="2" />
|
|
<text x="1186.17" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="247.7" y="1765" width="0.2" height="15.0" fill="rgb(219,109,37)" rx="2" ry="2" />
|
|
<text x="250.74" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (5 samples, 0.08%)</title><rect x="1037.8" y="1717" width="0.9" height="15.0" fill="rgb(251,164,22)" rx="2" ry="2" />
|
|
<text x="1040.79" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1186.9" y="1733" width="0.1" height="15.0" fill="rgb(239,35,41)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (42 samples, 0.66%)</title><rect x="176.2" y="1925" width="7.8" height="15.0" fill="rgb(235,159,18)" rx="2" ry="2" />
|
|
<text x="179.25" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (11 samples, 0.17%)</title><rect x="588.5" y="1781" width="2.1" height="15.0" fill="rgb(250,150,33)" rx="2" ry="2" />
|
|
<text x="591.55" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (9 samples, 0.14%)</title><rect x="591.9" y="1781" width="1.6" height="15.0" fill="rgb(241,201,28)" rx="2" ry="2" />
|
|
<text x="594.87" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="258.6" y="1765" width="0.4" height="15.0" fill="rgb(239,126,17)" rx="2" ry="2" />
|
|
<text x="261.63" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (4 samples, 0.06%)</title><rect x="511.0" y="1845" width="0.7" height="15.0" fill="rgb(214,183,3)" rx="2" ry="2" />
|
|
<text x="513.96" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (10 samples, 0.16%)</title><rect x="975.9" y="1797" width="1.9" height="15.0" fill="rgb(213,56,42)" rx="2" ry="2" />
|
|
<text x="978.91" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="297.4" y="1765" width="0.2" height="15.0" fill="rgb(219,8,51)" rx="2" ry="2" />
|
|
<text x="300.43" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="1142.7" y="1717" width="0.2" height="15.0" fill="rgb(246,11,22)" rx="2" ry="2" />
|
|
<text x="1145.71" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (13 samples, 0.20%)</title><rect x="303.9" y="1845" width="2.4" height="15.0" fill="rgb(245,32,2)" rx="2" ry="2" />
|
|
<text x="306.89" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (2 samples, 0.03%)</title><rect x="591.5" y="1781" width="0.4" height="15.0" fill="rgb(247,116,36)" rx="2" ry="2" />
|
|
<text x="594.50" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (11 samples, 0.17%)</title><rect x="1029.3" y="1733" width="2.0" height="15.0" fill="rgb(232,191,47)" rx="2" ry="2" />
|
|
<text x="1032.29" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>setup_new_exec (4 samples, 0.06%)</title><rect x="10.0" y="1941" width="0.7" height="15.0" fill="rgb(239,39,17)" rx="2" ry="2" />
|
|
<text x="13.00" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="745.6" y="1701" width="0.1" height="15.0" fill="rgb(235,190,53)" rx="2" ry="2" />
|
|
<text x="748.56" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (188 samples, 2.94%)</title><rect x="635.3" y="1733" width="34.7" height="15.0" fill="rgb(205,204,31)" rx="2" ry="2" />
|
|
<text x="638.28" y="1743.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1141.0" y="1797" width="0.6" height="15.0" fill="rgb(248,65,53)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>finish_task_switch (4 samples, 0.06%)</title><rect x="137.1" y="1813" width="0.7" height="15.0" fill="rgb(213,102,49)" rx="2" ry="2" />
|
|
<text x="140.09" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (13 samples, 0.20%)</title><rect x="423.6" y="1925" width="2.4" height="15.0" fill="rgb(254,127,24)" rx="2" ry="2" />
|
|
<text x="426.59" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="1187.4" y="1749" width="0.2" height="15.0" fill="rgb(238,17,5)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="1144.9" y="1717" width="0.2" height="15.0" fill="rgb(247,200,28)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="310.5" y="1765" width="0.4" height="15.0" fill="rgb(228,7,52)" rx="2" ry="2" />
|
|
<text x="313.54" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="293" width="0.2" height="15.0" fill="rgb(209,7,42)" rx="2" ry="2" />
|
|
<text x="13.74" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="307.0" y="1781" width="0.4" height="15.0" fill="rgb(213,13,48)" rx="2" ry="2" />
|
|
<text x="310.03" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (8 samples, 0.13%)</title><rect x="1139.4" y="1861" width="1.5" height="15.0" fill="rgb(252,204,13)" rx="2" ry="2" />
|
|
<text x="1142.39" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (8 samples, 0.13%)</title><rect x="628.8" y="1749" width="1.5" height="15.0" fill="rgb(228,153,26)" rx="2" ry="2" />
|
|
<text x="631.82" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="300.6" y="1765" width="0.2" height="15.0" fill="rgb(226,104,26)" rx="2" ry="2" />
|
|
<text x="303.57" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="252.5" y="1765" width="0.2" height="15.0" fill="rgb(215,96,43)" rx="2" ry="2" />
|
|
<text x="255.54" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="247.2" y="1813" width="0.5" height="15.0" fill="rgb(241,77,21)" rx="2" ry="2" />
|
|
<text x="250.18" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="258.5" y="1701" width="0.1" height="15.0" fill="rgb(227,130,10)" rx="2" ry="2" />
|
|
<text x="261.45" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>load_elf_binary (4 samples, 0.06%)</title><rect x="10.0" y="1957" width="0.7" height="15.0" fill="rgb(228,217,18)" rx="2" ry="2" />
|
|
<text x="13.00" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="248.8" y="1765" width="0.2" height="15.0" fill="rgb(234,157,47)" rx="2" ry="2" />
|
|
<text x="251.84" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (34 samples, 0.53%)</title><rect x="1168.8" y="1797" width="6.2" height="15.0" fill="rgb(236,221,29)" rx="2" ry="2" />
|
|
<text x="1171.76" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (31 samples, 0.49%)</title><rect x="775.5" y="1781" width="5.7" height="15.0" fill="rgb(236,142,1)" rx="2" ry="2" />
|
|
<text x="778.49" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (214 samples, 3.35%)</title><rect x="709.2" y="1781" width="39.5" height="15.0" fill="rgb(245,91,50)" rx="2" ry="2" />
|
|
<text x="712.17" y="1791.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="981.3" y="1781" width="0.5" height="15.0" fill="rgb(248,169,36)" rx="2" ry="2" />
|
|
<text x="984.26" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (26 samples, 0.41%)</title><rect x="894.4" y="1701" width="4.8" height="15.0" fill="rgb(233,153,51)" rx="2" ry="2" />
|
|
<text x="897.45" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (218 samples, 3.41%)</title><rect x="512.6" y="1845" width="40.3" height="15.0" fill="rgb(240,64,2)" rx="2" ry="2" />
|
|
<text x="515.63" y="1855.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="249.0" y="1749" width="0.2" height="15.0" fill="rgb(209,64,43)" rx="2" ry="2" />
|
|
<text x="252.03" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>load_elf_binary (1 samples, 0.02%)</title><rect x="12.6" y="1957" width="0.2" height="15.0" fill="rgb(217,121,19)" rx="2" ry="2" />
|
|
<text x="15.59" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="252.4" y="1829" width="0.1" height="15.0" fill="rgb(213,192,5)" rx="2" ry="2" />
|
|
<text x="255.35" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1093" width="0.2" height="15.0" fill="rgb(218,160,32)" rx="2" ry="2" />
|
|
<text x="13.74" y="1103.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="258.6" y="1797" width="0.4" height="15.0" fill="rgb(208,76,54)" rx="2" ry="2" />
|
|
<text x="261.63" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="565" width="0.2" height="15.0" fill="rgb(216,225,31)" rx="2" ry="2" />
|
|
<text x="13.74" y="575.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1184.6" y="1733" width="0.2" height="15.0" fill="rgb(226,159,44)" rx="2" ry="2" />
|
|
<text x="1187.64" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="992.3" y="1765" width="0.2" height="15.0" fill="rgb(216,119,26)" rx="2" ry="2" />
|
|
<text x="995.35" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="1142.0" y="1813" width="0.3" height="15.0" fill="rgb(245,190,23)" rx="2" ry="2" />
|
|
<text x="1144.97" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_wall_time (1 samples, 0.02%)</title><rect x="1186.9" y="1621" width="0.1" height="15.0" fill="rgb(233,116,35)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1631.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (27 samples, 0.42%)</title><rect x="894.3" y="1717" width="4.9" height="15.0" fill="rgb(249,6,17)" rx="2" ry="2" />
|
|
<text x="897.26" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (6 samples, 0.09%)</title><rect x="256.8" y="1829" width="1.1" height="15.0" fill="rgb(248,126,35)" rx="2" ry="2" />
|
|
<text x="259.79" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (190 samples, 2.97%)</title><rect x="1145.5" y="1877" width="35.1" height="15.0" fill="rgb(209,0,5)" rx="2" ry="2" />
|
|
<text x="1148.48" y="1887.5" >WO..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="255.1" y="1813" width="0.2" height="15.0" fill="rgb(247,12,21)" rx="2" ry="2" />
|
|
<text x="258.13" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1429" width="0.2" height="15.0" fill="rgb(250,219,24)" rx="2" ry="2" />
|
|
<text x="13.74" y="1439.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="887.6" y="1733" width="0.2" height="15.0" fill="rgb(214,86,8)" rx="2" ry="2" />
|
|
<text x="890.61" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (61 samples, 0.95%)</title><rect x="444.5" y="1861" width="11.2" height="15.0" fill="rgb(230,84,52)" rx="2" ry="2" />
|
|
<text x="447.46" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1301" width="0.2" height="15.0" fill="rgb(219,168,45)" rx="2" ry="2" />
|
|
<text x="13.74" y="1311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="308.0" y="1813" width="0.3" height="15.0" fill="rgb(251,205,46)" rx="2" ry="2" />
|
|
<text x="310.96" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="773" width="0.2" height="15.0" fill="rgb(238,80,53)" rx="2" ry="2" />
|
|
<text x="13.74" y="783.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="68.4" y="1893" width="0.2" height="15.0" fill="rgb(223,107,9)" rx="2" ry="2" />
|
|
<text x="71.37" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (37 samples, 0.58%)</title><rect x="1047.2" y="1797" width="6.8" height="15.0" fill="rgb(236,227,26)" rx="2" ry="2" />
|
|
<text x="1050.21" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (28 samples, 0.44%)</title><rect x="839.0" y="1765" width="5.2" height="15.0" fill="rgb(250,19,42)" rx="2" ry="2" />
|
|
<text x="842.03" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (2 samples, 0.03%)</title><rect x="986.3" y="1765" width="0.3" height="15.0" fill="rgb(229,223,34)" rx="2" ry="2" />
|
|
<text x="989.25" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (2 samples, 0.03%)</title><rect x="310.5" y="1797" width="0.4" height="15.0" fill="rgb(242,91,51)" rx="2" ry="2" />
|
|
<text x="313.54" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (5 samples, 0.08%)</title><rect x="253.1" y="1877" width="0.9" height="15.0" fill="rgb(209,21,30)" rx="2" ry="2" />
|
|
<text x="256.09" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1142.7" y="1701" width="0.2" height="15.0" fill="rgb(251,143,5)" rx="2" ry="2" />
|
|
<text x="1145.71" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (8 samples, 0.13%)</title><rect x="850.7" y="1765" width="1.4" height="15.0" fill="rgb(251,195,51)" rx="2" ry="2" />
|
|
<text x="853.67" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (13 samples, 0.20%)</title><rect x="247.7" y="1861" width="2.4" height="15.0" fill="rgb(217,110,27)" rx="2" ry="2" />
|
|
<text x="250.74" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (4 samples, 0.06%)</title><rect x="306.3" y="1797" width="0.7" height="15.0" fill="rgb(233,70,30)" rx="2" ry="2" />
|
|
<text x="309.29" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (2 samples, 0.03%)</title><rect x="1046.3" y="1685" width="0.4" height="15.0" fill="rgb(208,92,41)" rx="2" ry="2" />
|
|
<text x="1049.29" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1025.4" y="1797" width="0.2" height="15.0" fill="rgb(250,38,33)" rx="2" ry="2" />
|
|
<text x="1028.41" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (8 samples, 0.13%)</title><rect x="882.3" y="1733" width="1.4" height="15.0" fill="rgb(243,175,9)" rx="2" ry="2" />
|
|
<text x="885.25" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (215 samples, 3.37%)</title><rect x="812.4" y="1781" width="39.7" height="15.0" fill="rgb(244,156,1)" rx="2" ry="2" />
|
|
<text x="815.43" y="1791.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (24 samples, 0.38%)</title><rect x="995.9" y="1765" width="4.4" height="15.0" fill="rgb(231,60,19)" rx="2" ry="2" />
|
|
<text x="998.86" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1144.4" y="1749" width="0.3" height="15.0" fill="rgb(217,133,3)" rx="2" ry="2" />
|
|
<text x="1147.37" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="593.5" y="1797" width="0.2" height="15.0" fill="rgb(230,65,2)" rx="2" ry="2" />
|
|
<text x="596.53" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (8 samples, 0.13%)</title><rect x="1184.3" y="1781" width="1.5" height="15.0" fill="rgb(216,212,4)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (9 samples, 0.14%)</title><rect x="255.1" y="1861" width="1.7" height="15.0" fill="rgb(251,61,30)" rx="2" ry="2" />
|
|
<text x="258.13" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (4 samples, 0.06%)</title><rect x="242.6" y="1909" width="0.7" height="15.0" fill="rgb(216,183,34)" rx="2" ry="2" />
|
|
<text x="245.56" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (19 samples, 0.30%)</title><rect x="293.7" y="1845" width="3.5" height="15.0" fill="rgb(232,149,27)" rx="2" ry="2" />
|
|
<text x="296.73" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (181 samples, 2.83%)</title><rect x="674.1" y="1765" width="33.4" height="15.0" fill="rgb(242,16,14)" rx="2" ry="2" />
|
|
<text x="677.07" y="1775.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1186.7" y="1749" width="0.2" height="15.0" fill="rgb(250,138,18)" rx="2" ry="2" />
|
|
<text x="1189.68" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="291.7" y="1749" width="1.1" height="15.0" fill="rgb(220,179,20)" rx="2" ry="2" />
|
|
<text x="294.70" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (19 samples, 0.30%)</title><rect x="262.5" y="1861" width="3.5" height="15.0" fill="rgb(252,59,10)" rx="2" ry="2" />
|
|
<text x="265.51" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (20 samples, 0.31%)</title><rect x="858.1" y="1717" width="3.7" height="15.0" fill="rgb(221,198,46)" rx="2" ry="2" />
|
|
<text x="861.06" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="286.2" y="1749" width="0.5" height="15.0" fill="rgb(228,167,28)" rx="2" ry="2" />
|
|
<text x="289.16" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>search_binary_handler (4 samples, 0.06%)</title><rect x="10.0" y="1973" width="0.7" height="15.0" fill="rgb(212,171,3)" rx="2" ry="2" />
|
|
<text x="13.00" y="1983.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="252.7" y="1701" width="0.2" height="15.0" fill="rgb(212,22,1)" rx="2" ry="2" />
|
|
<text x="255.72" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="310.4" y="1717" width="0.1" height="15.0" fill="rgb(242,0,30)" rx="2" ry="2" />
|
|
<text x="313.36" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="1044.1" y="1669" width="0.5" height="15.0" fill="rgb(251,137,28)" rx="2" ry="2" />
|
|
<text x="1047.07" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (10 samples, 0.16%)</title><rect x="251.2" y="1861" width="1.9" height="15.0" fill="rgb(208,49,53)" rx="2" ry="2" />
|
|
<text x="254.25" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (38 samples, 0.59%)</title><rect x="756.1" y="1701" width="7.0" height="15.0" fill="rgb(212,180,43)" rx="2" ry="2" />
|
|
<text x="759.09" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="253.6" y="1829" width="0.4" height="15.0" fill="rgb(226,210,11)" rx="2" ry="2" />
|
|
<text x="256.65" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1007.7" y="1685" width="0.2" height="15.0" fill="rgb(244,212,19)" rx="2" ry="2" />
|
|
<text x="1010.68" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="857.7" y="1733" width="0.2" height="15.0" fill="rgb(226,154,52)" rx="2" ry="2" />
|
|
<text x="860.69" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (1 samples, 0.02%)</title><rect x="553.1" y="1845" width="0.2" height="15.0" fill="rgb(221,184,2)" rx="2" ry="2" />
|
|
<text x="556.08" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (14 samples, 0.22%)</title><rect x="301.3" y="1861" width="2.6" height="15.0" fill="rgb(209,125,2)" rx="2" ry="2" />
|
|
<text x="304.31" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="886.5" y="1749" width="0.2" height="15.0" fill="rgb(243,135,44)" rx="2" ry="2" />
|
|
<text x="889.50" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="247.2" y="1861" width="0.5" height="15.0" fill="rgb(226,132,9)" rx="2" ry="2" />
|
|
<text x="250.18" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (7 samples, 0.11%)</title><rect x="247.7" y="1845" width="1.3" height="15.0" fill="rgb(250,206,6)" rx="2" ry="2" />
|
|
<text x="250.74" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="897.4" y="1669" width="0.4" height="15.0" fill="rgb(227,101,49)" rx="2" ry="2" />
|
|
<text x="900.40" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="1037.6" y="1701" width="0.2" height="15.0" fill="rgb(240,95,51)" rx="2" ry="2" />
|
|
<text x="1040.60" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="848.5" y="1765" width="0.7" height="15.0" fill="rgb(223,181,2)" rx="2" ry="2" />
|
|
<text x="851.45" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="613" width="0.2" height="15.0" fill="rgb(218,133,38)" rx="2" ry="2" />
|
|
<text x="13.74" y="623.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1509" width="0.2" height="15.0" fill="rgb(227,82,27)" rx="2" ry="2" />
|
|
<text x="13.74" y="1519.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="455.7" y="1861" width="0.8" height="15.0" fill="rgb(246,77,33)" rx="2" ry="2" />
|
|
<text x="458.73" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="255.7" y="1733" width="0.2" height="15.0" fill="rgb(223,56,37)" rx="2" ry="2" />
|
|
<text x="258.68" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (39 samples, 0.61%)</title><rect x="1040.0" y="1781" width="7.2" height="15.0" fill="rgb(245,59,51)" rx="2" ry="2" />
|
|
<text x="1043.01" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (5 samples, 0.08%)</title><rect x="1183.2" y="1797" width="0.9" height="15.0" fill="rgb(207,56,29)" rx="2" ry="2" />
|
|
<text x="1186.17" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1144.9" y="1749" width="0.2" height="15.0" fill="rgb(233,76,35)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (8 samples, 0.13%)</title><rect x="1139.4" y="1813" width="1.5" height="15.0" fill="rgb(251,22,2)" rx="2" ry="2" />
|
|
<text x="1142.39" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="252.7" y="1733" width="0.4" height="15.0" fill="rgb(252,223,7)" rx="2" ry="2" />
|
|
<text x="255.72" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (5 samples, 0.08%)</title><rect x="668.3" y="1717" width="1.0" height="15.0" fill="rgb(227,31,31)" rx="2" ry="2" />
|
|
<text x="671.35" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="500.3" y="1829" width="0.5" height="15.0" fill="rgb(229,13,49)" rx="2" ry="2" />
|
|
<text x="503.25" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (13 samples, 0.20%)</title><rect x="19.2" y="1941" width="2.4" height="15.0" fill="rgb(217,29,28)" rx="2" ry="2" />
|
|
<text x="22.24" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="1032.6" y="1749" width="0.2" height="15.0" fill="rgb(237,101,49)" rx="2" ry="2" />
|
|
<text x="1035.62" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="596.7" y="1765" width="0.7" height="15.0" fill="rgb(225,68,13)" rx="2" ry="2" />
|
|
<text x="599.68" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_add_intersection_tri (1 samples, 0.02%)</title><rect x="702.5" y="1733" width="0.2" height="15.0" fill="rgb(218,100,49)" rx="2" ry="2" />
|
|
<text x="705.52" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (5 samples, 0.08%)</title><rect x="1144.0" y="1797" width="0.9" height="15.0" fill="rgb(247,123,26)" rx="2" ry="2" />
|
|
<text x="1147.00" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (26 samples, 0.41%)</title><rect x="137.8" y="1909" width="4.8" height="15.0" fill="rgb(234,23,22)" rx="2" ry="2" />
|
|
<text x="140.83" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="661" width="0.2" height="15.0" fill="rgb(227,178,12)" rx="2" ry="2" />
|
|
<text x="13.74" y="671.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (225 samples, 3.52%)</title><rect x="1060.1" y="1925" width="41.6" height="15.0" fill="rgb(228,12,28)" rx="2" ry="2" />
|
|
<text x="1063.14" y="1935.5" >WOR..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="2053" width="0.2" height="15.0" fill="rgb(232,202,12)" rx="2" ry="2" />
|
|
<text x="13.74" y="2063.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="295.8" y="1765" width="0.3" height="15.0" fill="rgb(210,169,38)" rx="2" ry="2" />
|
|
<text x="298.76" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="246.6" y="1861" width="0.6" height="15.0" fill="rgb(218,4,24)" rx="2" ry="2" />
|
|
<text x="249.63" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (6 samples, 0.09%)</title><rect x="1031.3" y="1749" width="1.1" height="15.0" fill="rgb(232,182,50)" rx="2" ry="2" />
|
|
<text x="1034.32" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="883.7" y="1733" width="0.2" height="15.0" fill="rgb(206,185,51)" rx="2" ry="2" />
|
|
<text x="886.73" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (16 samples, 0.25%)</title><rect x="247.2" y="1877" width="2.9" height="15.0" fill="rgb(219,42,16)" rx="2" ry="2" />
|
|
<text x="250.18" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="256.0" y="1717" width="0.8" height="15.0" fill="rgb(230,51,22)" rx="2" ry="2" />
|
|
<text x="259.05" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="1006.9" y="1685" width="0.4" height="15.0" fill="rgb(212,112,24)" rx="2" ry="2" />
|
|
<text x="1009.94" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="252.0" y="1813" width="0.4" height="15.0" fill="rgb(226,17,2)" rx="2" ry="2" />
|
|
<text x="254.98" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (221 samples, 3.46%)</title><rect x="769.0" y="1845" width="40.8" height="15.0" fill="rgb(253,45,29)" rx="2" ry="2" />
|
|
<text x="772.02" y="1855.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="405" width="0.2" height="15.0" fill="rgb(249,109,30)" rx="2" ry="2" />
|
|
<text x="13.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1143.6" y="1781" width="0.4" height="15.0" fill="rgb(227,123,30)" rx="2" ry="2" />
|
|
<text x="1146.63" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="711.0" y="1749" width="0.4" height="15.0" fill="rgb(207,68,31)" rx="2" ry="2" />
|
|
<text x="714.02" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_determinant (1 samples, 0.02%)</title><rect x="1188.7" y="1925" width="0.2" height="15.0" fill="rgb(211,224,38)" rx="2" ry="2" />
|
|
<text x="1191.71" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (9 samples, 0.14%)</title><rect x="1095.2" y="1845" width="1.7" height="15.0" fill="rgb(253,77,9)" rx="2" ry="2" />
|
|
<text x="1098.24" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="981" width="0.2" height="15.0" fill="rgb(248,208,31)" rx="2" ry="2" />
|
|
<text x="13.74" y="991.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="1182.4" y="1733" width="0.4" height="15.0" fill="rgb(208,9,7)" rx="2" ry="2" />
|
|
<text x="1185.43" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (28 samples, 0.44%)</title><rect x="456.5" y="1877" width="5.1" height="15.0" fill="rgb(214,36,48)" rx="2" ry="2" />
|
|
<text x="459.47" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (208 samples, 3.26%)</title><rect x="769.0" y="1813" width="38.4" height="15.0" fill="rgb(253,147,29)" rx="2" ry="2" />
|
|
<text x="772.02" y="1823.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (3 samples, 0.05%)</title><rect x="1181.3" y="1781" width="0.6" height="15.0" fill="rgb(211,111,33)" rx="2" ry="2" />
|
|
<text x="1184.32" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (36 samples, 0.56%)</title><rect x="1151.6" y="1797" width="6.6" height="15.0" fill="rgb(235,35,40)" rx="2" ry="2" />
|
|
<text x="1154.58" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (32 samples, 0.50%)</title><rect x="1054.0" y="1797" width="6.0" height="15.0" fill="rgb(224,206,47)" rx="2" ry="2" />
|
|
<text x="1057.05" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="256.8" y="1845" width="1.1" height="15.0" fill="rgb(246,118,9)" rx="2" ry="2" />
|
|
<text x="259.79" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (8 samples, 0.13%)</title><rect x="1034.3" y="1717" width="1.5" height="15.0" fill="rgb(215,167,0)" rx="2" ry="2" />
|
|
<text x="1037.28" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1397" width="0.2" height="15.0" fill="rgb(206,159,35)" rx="2" ry="2" />
|
|
<text x="13.74" y="1407.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>queue_work_on (1 samples, 0.02%)</title><rect x="1099.1" y="1701" width="0.2" height="15.0" fill="rgb(230,26,45)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1007.9" y="1701" width="0.1" height="15.0" fill="rgb(229,137,43)" rx="2" ry="2" />
|
|
<text x="1010.86" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (33 samples, 0.52%)</title><rect x="539.0" y="1813" width="6.1" height="15.0" fill="rgb(250,210,5)" rx="2" ry="2" />
|
|
<text x="542.04" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (1 samples, 0.02%)</title><rect x="1183.9" y="1781" width="0.2" height="15.0" fill="rgb(248,154,20)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1058.5" y="1701" width="0.2" height="15.0" fill="rgb(228,131,22)" rx="2" ry="2" />
|
|
<text x="1061.48" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="254.6" y="1797" width="0.2" height="15.0" fill="rgb(227,228,19)" rx="2" ry="2" />
|
|
<text x="257.57" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="308.5" y="1701" width="0.4" height="15.0" fill="rgb(233,144,11)" rx="2" ry="2" />
|
|
<text x="311.51" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (19 samples, 0.30%)</title><rect x="293.7" y="1861" width="3.5" height="15.0" fill="rgb(225,71,38)" rx="2" ry="2" />
|
|
<text x="296.73" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="1002.5" y="1701" width="0.2" height="15.0" fill="rgb(217,128,25)" rx="2" ry="2" />
|
|
<text x="1005.51" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="1053.5" y="1717" width="0.4" height="15.0" fill="rgb(250,56,51)" rx="2" ry="2" />
|
|
<text x="1056.49" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="286.0" y="1749" width="0.2" height="15.0" fill="rgb(219,166,51)" rx="2" ry="2" />
|
|
<text x="288.97" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (197 samples, 3.08%)</title><rect x="1101.7" y="1861" width="36.4" height="15.0" fill="rgb(232,64,28)" rx="2" ry="2" />
|
|
<text x="1104.70" y="1871.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="249.4" y="1765" width="0.7" height="15.0" fill="rgb(228,77,11)" rx="2" ry="2" />
|
|
<text x="252.40" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="256.0" y="1765" width="0.8" height="15.0" fill="rgb(221,73,22)" rx="2" ry="2" />
|
|
<text x="259.05" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="1144.9" y="1765" width="0.2" height="15.0" fill="rgb(244,52,14)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="284.7" y="1781" width="0.2" height="15.0" fill="rgb(215,56,35)" rx="2" ry="2" />
|
|
<text x="287.68" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="255.1" y="1797" width="0.2" height="15.0" fill="rgb(211,44,29)" rx="2" ry="2" />
|
|
<text x="258.13" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="893.9" y="1717" width="0.2" height="15.0" fill="rgb(248,165,29)" rx="2" ry="2" />
|
|
<text x="896.89" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (24 samples, 0.38%)</title><rect x="988.3" y="1797" width="4.4" height="15.0" fill="rgb(240,89,47)" rx="2" ry="2" />
|
|
<text x="991.28" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (9 samples, 0.14%)</title><rect x="1042.4" y="1669" width="1.7" height="15.0" fill="rgb(227,210,1)" rx="2" ry="2" />
|
|
<text x="1045.41" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="297.6" y="1765" width="0.6" height="15.0" fill="rgb(236,58,39)" rx="2" ry="2" />
|
|
<text x="300.61" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="307.6" y="1701" width="0.4" height="15.0" fill="rgb(238,92,52)" rx="2" ry="2" />
|
|
<text x="310.59" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (4 samples, 0.06%)</title><rect x="632.3" y="1781" width="0.8" height="15.0" fill="rgb(219,149,36)" rx="2" ry="2" />
|
|
<text x="635.33" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>account_user_time (1 samples, 0.02%)</title><rect x="593.4" y="1637" width="0.1" height="15.0" fill="rgb(223,141,52)" rx="2" ry="2" />
|
|
<text x="596.35" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="308.0" y="1781" width="0.3" height="15.0" fill="rgb(213,200,50)" rx="2" ry="2" />
|
|
<text x="310.96" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="811.5" y="1781" width="0.6" height="15.0" fill="rgb(254,69,41)" rx="2" ry="2" />
|
|
<text x="814.51" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>cfree@GLIBC_2.2.5 (1 samples, 0.02%)</title><rect x="900.2" y="1845" width="0.2" height="15.0" fill="rgb(206,196,14)" rx="2" ry="2" />
|
|
<text x="903.17" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="303.7" y="1845" width="0.2" height="15.0" fill="rgb(235,25,23)" rx="2" ry="2" />
|
|
<text x="306.71" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (2 samples, 0.03%)</title><rect x="252.0" y="1829" width="0.4" height="15.0" fill="rgb(242,63,4)" rx="2" ry="2" />
|
|
<text x="254.98" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="253.3" y="1813" width="0.2" height="15.0" fill="rgb(216,15,8)" rx="2" ry="2" />
|
|
<text x="256.28" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (24 samples, 0.38%)</title><rect x="995.9" y="1781" width="4.4" height="15.0" fill="rgb(237,187,21)" rx="2" ry="2" />
|
|
<text x="998.86" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (10 samples, 0.16%)</title><rect x="307.0" y="1829" width="1.9" height="15.0" fill="rgb(253,133,2)" rx="2" ry="2" />
|
|
<text x="310.03" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="69" width="0.2" height="15.0" fill="rgb(241,135,47)" rx="2" ry="2" />
|
|
<text x="13.74" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (14 samples, 0.22%)</title><rect x="282.8" y="1813" width="2.6" height="15.0" fill="rgb(207,71,43)" rx="2" ry="2" />
|
|
<text x="285.83" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1061" width="0.2" height="15.0" fill="rgb(251,71,50)" rx="2" ry="2" />
|
|
<text x="13.74" y="1071.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (19 samples, 0.30%)</title><rect x="1004.5" y="1765" width="3.5" height="15.0" fill="rgb(223,34,27)" rx="2" ry="2" />
|
|
<text x="1007.54" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1541" width="0.2" height="15.0" fill="rgb(215,102,5)" rx="2" ry="2" />
|
|
<text x="13.74" y="1551.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (469 samples, 7.34%)</title><rect x="1101.7" y="1909" width="86.6" height="15.0" fill="rgb(252,21,16)" rx="2" ry="2" />
|
|
<text x="1104.70" y="1919.5" >WORLD_colo..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (144 samples, 2.25%)</title><rect x="42.7" y="1925" width="26.6" height="15.0" fill="rgb(210,59,43)" rx="2" ry="2" />
|
|
<text x="45.70" y="1935.5" >M..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_color (1 samples, 0.02%)</title><rect x="709.0" y="1813" width="0.2" height="15.0" fill="rgb(227,18,12)" rx="2" ry="2" />
|
|
<text x="711.99" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (623 samples, 9.75%)</title><rect x="310.9" y="1957" width="115.1" height="15.0" fill="rgb(221,10,46)" rx="2" ry="2" />
|
|
<text x="313.91" y="1967.5" >SHAPE_intersect</text>
|
|
</g>
|
|
<g >
|
|
<title>__fprintf_chk (1 samples, 0.02%)</title><rect x="1188.5" y="2005" width="0.2" height="15.0" fill="rgb(207,210,45)" rx="2" ry="2" />
|
|
<text x="1191.52" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.02%)</title><rect x="658.9" y="1685" width="0.2" height="15.0" fill="rgb(220,29,1)" rx="2" ry="2" />
|
|
<text x="661.93" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1187.4" y="1685" width="0.2" height="15.0" fill="rgb(216,118,12)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (6 samples, 0.09%)</title><rect x="257.9" y="1861" width="1.1" height="15.0" fill="rgb(224,25,41)" rx="2" ry="2" />
|
|
<text x="260.90" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1183.4" y="1733" width="0.5" height="15.0" fill="rgb(205,209,10)" rx="2" ry="2" />
|
|
<text x="1186.35" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="861.6" y="1701" width="0.2" height="15.0" fill="rgb(238,2,50)" rx="2" ry="2" />
|
|
<text x="864.57" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="538.1" y="1797" width="0.9" height="15.0" fill="rgb(213,47,7)" rx="2" ry="2" />
|
|
<text x="541.12" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (6 samples, 0.09%)</title><rect x="250.1" y="1877" width="1.1" height="15.0" fill="rgb(227,70,16)" rx="2" ry="2" />
|
|
<text x="253.14" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="308.0" y="1749" width="0.3" height="15.0" fill="rgb(242,81,40)" rx="2" ry="2" />
|
|
<text x="310.96" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (5 samples, 0.08%)</title><rect x="1175.0" y="1797" width="1.0" height="15.0" fill="rgb(206,206,1)" rx="2" ry="2" />
|
|
<text x="1178.04" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="597" width="0.2" height="15.0" fill="rgb(251,83,9)" rx="2" ry="2" />
|
|
<text x="13.74" y="607.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (211 samples, 3.30%)</title><rect x="900.4" y="1877" width="38.9" height="15.0" fill="rgb(223,174,41)" rx="2" ry="2" />
|
|
<text x="903.36" y="1887.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>smp_apic_timer_interrupt (1 samples, 0.02%)</title><rect x="1186.9" y="1717" width="0.1" height="15.0" fill="rgb(228,70,52)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="995.5" y="1701" width="0.2" height="15.0" fill="rgb(253,216,16)" rx="2" ry="2" />
|
|
<text x="998.49" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_add_intersection_tri (1 samples, 0.02%)</title><rect x="167.8" y="1909" width="0.1" height="15.0" fill="rgb(253,195,0)" rx="2" ry="2" />
|
|
<text x="170.75" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (6 samples, 0.09%)</title><rect x="1036.5" y="1701" width="1.1" height="15.0" fill="rgb(226,144,22)" rx="2" ry="2" />
|
|
<text x="1039.50" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (6 samples, 0.09%)</title><rect x="997.3" y="1733" width="1.1" height="15.0" fill="rgb(237,145,49)" rx="2" ry="2" />
|
|
<text x="1000.34" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1039.8" y="1749" width="0.2" height="15.0" fill="rgb(247,89,13)" rx="2" ry="2" />
|
|
<text x="1042.82" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1845" width="0.2" height="15.0" fill="rgb(251,33,40)" rx="2" ry="2" />
|
|
<text x="13.74" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (4 samples, 0.06%)</title><rect x="251.2" y="1813" width="0.8" height="15.0" fill="rgb(220,71,50)" rx="2" ry="2" />
|
|
<text x="254.25" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (7 samples, 0.11%)</title><rect x="315.7" y="1909" width="1.3" height="15.0" fill="rgb(238,123,22)" rx="2" ry="2" />
|
|
<text x="318.71" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (4,127 samples, 64.61%)</title><rect x="426.0" y="1973" width="762.3" height="15.0" fill="rgb(234,53,27)" rx="2" ry="2" />
|
|
<text x="428.99" y="1983.5" >WORLD_refracted_color</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="357" width="0.2" height="15.0" fill="rgb(220,23,1)" rx="2" ry="2" />
|
|
<text x="13.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (1 samples, 0.02%)</title><rect x="745.6" y="1637" width="0.1" height="15.0" fill="rgb(209,158,13)" rx="2" ry="2" />
|
|
<text x="748.56" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1493" width="0.2" height="15.0" fill="rgb(217,20,37)" rx="2" ry="2" />
|
|
<text x="13.74" y="1503.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (214 samples, 3.35%)</title><rect x="554.2" y="1813" width="39.5" height="15.0" fill="rgb(234,163,32)" rx="2" ry="2" />
|
|
<text x="557.19" y="1823.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="310.0" y="1685" width="0.2" height="15.0" fill="rgb(217,69,38)" rx="2" ry="2" />
|
|
<text x="312.99" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (6 samples, 0.09%)</title><rect x="247.7" y="1797" width="1.1" height="15.0" fill="rgb(246,89,47)" rx="2" ry="2" />
|
|
<text x="250.74" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="310.5" y="1749" width="0.4" height="15.0" fill="rgb(224,80,39)" rx="2" ry="2" />
|
|
<text x="313.54" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="988.8" y="1733" width="0.6" height="15.0" fill="rgb(243,66,8)" rx="2" ry="2" />
|
|
<text x="991.84" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (234 samples, 3.66%)</title><rect x="201.0" y="1957" width="43.2" height="15.0" fill="rgb(219,191,11)" rx="2" ry="2" />
|
|
<text x="204.00" y="1967.5" >SHAP..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (1 samples, 0.02%)</title><rect x="248.8" y="1829" width="0.2" height="15.0" fill="rgb(243,5,41)" rx="2" ry="2" />
|
|
<text x="251.84" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (7 samples, 0.11%)</title><rect x="966.3" y="1781" width="1.3" height="15.0" fill="rgb(252,177,46)" rx="2" ry="2" />
|
|
<text x="969.30" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (230 samples, 3.60%)</title><rect x="810.0" y="1797" width="42.5" height="15.0" fill="rgb(218,93,25)" rx="2" ry="2" />
|
|
<text x="813.03" y="1807.5" >ARRL..</text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (5 samples, 0.08%)</title><rect x="241.6" y="1893" width="1.0" height="15.0" fill="rgb(253,190,26)" rx="2" ry="2" />
|
|
<text x="244.64" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="308.9" y="1829" width="1.1" height="15.0" fill="rgb(227,155,26)" rx="2" ry="2" />
|
|
<text x="311.88" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (1 samples, 0.02%)</title><rect x="745.6" y="1653" width="0.1" height="15.0" fill="rgb(249,117,35)" rx="2" ry="2" />
|
|
<text x="748.56" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (109 samples, 1.71%)</title><rect x="748.9" y="1797" width="20.1" height="15.0" fill="rgb(230,71,16)" rx="2" ry="2" />
|
|
<text x="751.89" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (42 samples, 0.66%)</title><rect x="1000.3" y="1813" width="7.7" height="15.0" fill="rgb(233,225,26)" rx="2" ry="2" />
|
|
<text x="1003.29" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1187.4" y="1717" width="0.2" height="15.0" fill="rgb(234,22,48)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (226 samples, 3.54%)</title><rect x="939.3" y="1845" width="41.8" height="15.0" fill="rgb(246,224,42)" rx="2" ry="2" />
|
|
<text x="942.33" y="1855.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="249.6" y="1749" width="0.2" height="15.0" fill="rgb(217,98,38)" rx="2" ry="2" />
|
|
<text x="252.58" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (10 samples, 0.16%)</title><rect x="285.4" y="1781" width="1.9" height="15.0" fill="rgb(222,191,7)" rx="2" ry="2" />
|
|
<text x="288.42" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (9 samples, 0.14%)</title><rect x="314.1" y="1909" width="1.6" height="15.0" fill="rgb(238,69,51)" rx="2" ry="2" />
|
|
<text x="317.05" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (3 samples, 0.05%)</title><rect x="296.5" y="1781" width="0.6" height="15.0" fill="rgb(221,74,45)" rx="2" ry="2" />
|
|
<text x="299.50" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="249.4" y="1813" width="0.7" height="15.0" fill="rgb(205,16,6)" rx="2" ry="2" />
|
|
<text x="252.40" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (2 samples, 0.03%)</title><rect x="861.0" y="1701" width="0.4" height="15.0" fill="rgb(249,156,53)" rx="2" ry="2" />
|
|
<text x="864.01" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (216 samples, 3.38%)</title><rect x="347.9" y="1893" width="39.9" height="15.0" fill="rgb(214,224,16)" rx="2" ry="2" />
|
|
<text x="350.86" y="1903.5" >RAY..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="277.7" y="1893" width="0.1" height="15.0" fill="rgb(227,116,21)" rx="2" ry="2" />
|
|
<text x="280.66" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (17 samples, 0.27%)</title><rect x="992.7" y="1797" width="3.2" height="15.0" fill="rgb(240,31,18)" rx="2" ry="2" />
|
|
<text x="995.72" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="255.9" y="1733" width="0.1" height="15.0" fill="rgb(251,107,53)" rx="2" ry="2" />
|
|
<text x="258.86" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (39 samples, 0.61%)</title><rect x="1040.0" y="1749" width="7.2" height="15.0" fill="rgb(243,203,13)" rx="2" ry="2" />
|
|
<text x="1043.01" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="240.9" y="1893" width="0.4" height="15.0" fill="rgb(218,170,49)" rx="2" ry="2" />
|
|
<text x="243.90" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (1 samples, 0.02%)</title><rect x="1144.9" y="1781" width="0.2" height="15.0" fill="rgb(220,25,12)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (9 samples, 0.14%)</title><rect x="989.4" y="1733" width="1.7" height="15.0" fill="rgb(226,182,28)" rx="2" ry="2" />
|
|
<text x="992.39" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="741" width="0.2" height="15.0" fill="rgb(239,102,7)" rx="2" ry="2" />
|
|
<text x="13.74" y="751.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (5 samples, 0.08%)</title><rect x="1182.1" y="1781" width="0.9" height="15.0" fill="rgb(213,191,13)" rx="2" ry="2" />
|
|
<text x="1185.06" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="1183.2" y="1765" width="0.7" height="15.0" fill="rgb(240,43,39)" rx="2" ry="2" />
|
|
<text x="1186.17" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (5 samples, 0.08%)</title><rect x="1059.0" y="1749" width="1.0" height="15.0" fill="rgb(212,67,50)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (39 samples, 0.61%)</title><rect x="266.0" y="1861" width="7.2" height="15.0" fill="rgb(215,216,48)" rx="2" ry="2" />
|
|
<text x="269.02" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="1183.9" y="1717" width="0.2" height="15.0" fill="rgb(241,118,50)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="1185.8" y="1749" width="0.3" height="15.0" fill="rgb(218,100,16)" rx="2" ry="2" />
|
|
<text x="1188.75" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="1032.4" y="1749" width="0.2" height="15.0" fill="rgb(248,90,3)" rx="2" ry="2" />
|
|
<text x="1035.43" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="287.5" y="1781" width="2.4" height="15.0" fill="rgb(247,36,37)" rx="2" ry="2" />
|
|
<text x="290.45" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="297.1" y="1781" width="0.1" height="15.0" fill="rgb(225,73,40)" rx="2" ry="2" />
|
|
<text x="300.06" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (13 samples, 0.20%)</title><rect x="244.2" y="1893" width="2.4" height="15.0" fill="rgb(253,71,16)" rx="2" ry="2" />
|
|
<text x="247.23" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (7 samples, 0.11%)</title><rect x="291.5" y="1765" width="1.3" height="15.0" fill="rgb(252,209,7)" rx="2" ry="2" />
|
|
<text x="294.52" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="938.8" y="1845" width="0.2" height="15.0" fill="rgb(212,72,20)" rx="2" ry="2" />
|
|
<text x="941.78" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="856.6" y="1717" width="0.2" height="15.0" fill="rgb(229,201,44)" rx="2" ry="2" />
|
|
<text x="859.58" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="1184.3" y="1733" width="0.3" height="15.0" fill="rgb(205,74,1)" rx="2" ry="2" />
|
|
<text x="1187.27" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (6 samples, 0.09%)</title><rect x="290.2" y="1749" width="1.1" height="15.0" fill="rgb(246,159,17)" rx="2" ry="2" />
|
|
<text x="293.22" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (5 samples, 0.08%)</title><rect x="1142.3" y="1797" width="1.0" height="15.0" fill="rgb(219,118,46)" rx="2" ry="2" />
|
|
<text x="1145.34" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="301.1" y="1685" width="0.2" height="15.0" fill="rgb(254,59,39)" rx="2" ry="2" />
|
|
<text x="304.12" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="247.0" y="1813" width="0.2" height="15.0" fill="rgb(224,25,54)" rx="2" ry="2" />
|
|
<text x="250.00" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="285.1" y="1781" width="0.1" height="15.0" fill="rgb(227,208,30)" rx="2" ry="2" />
|
|
<text x="288.05" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1189" width="0.2" height="15.0" fill="rgb(213,91,43)" rx="2" ry="2" />
|
|
<text x="13.74" y="1199.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (1 samples, 0.02%)</title><rect x="1184.1" y="1797" width="0.2" height="15.0" fill="rgb(250,202,46)" rx="2" ry="2" />
|
|
<text x="1187.09" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (68 samples, 1.06%)</title><rect x="781.2" y="1781" width="12.6" height="15.0" fill="rgb(234,68,31)" rx="2" ry="2" />
|
|
<text x="784.21" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="926.6" y="1797" width="0.9" height="15.0" fill="rgb(232,93,1)" rx="2" ry="2" />
|
|
<text x="929.59" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (27 samples, 0.42%)</title><rect x="254.0" y="1893" width="5.0" height="15.0" fill="rgb(225,177,34)" rx="2" ry="2" />
|
|
<text x="257.02" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="593.4" y="1701" width="0.1" height="15.0" fill="rgb(212,117,51)" rx="2" ry="2" />
|
|
<text x="596.35" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="282.5" y="1813" width="0.1" height="15.0" fill="rgb(237,18,10)" rx="2" ry="2" />
|
|
<text x="285.46" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="300.8" y="1685" width="0.3" height="15.0" fill="rgb(246,39,49)" rx="2" ry="2" />
|
|
<text x="303.75" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (9 samples, 0.14%)</title><rect x="289.9" y="1797" width="1.6" height="15.0" fill="rgb(251,36,29)" rx="2" ry="2" />
|
|
<text x="292.85" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1141.8" y="1685" width="0.2" height="15.0" fill="rgb(214,184,5)" rx="2" ry="2" />
|
|
<text x="1144.79" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="310.5" y="1733" width="0.4" height="15.0" fill="rgb(205,129,51)" rx="2" ry="2" />
|
|
<text x="313.54" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="254.6" y="1813" width="0.2" height="15.0" fill="rgb(224,162,30)" rx="2" ry="2" />
|
|
<text x="257.57" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="590.6" y="1781" width="0.9" height="15.0" fill="rgb(248,55,18)" rx="2" ry="2" />
|
|
<text x="593.58" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (92 samples, 1.44%)</title><rect x="330.9" y="1893" width="17.0" height="15.0" fill="rgb(248,178,8)" rx="2" ry="2" />
|
|
<text x="333.86" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="301.3" y="1813" width="0.2" height="15.0" fill="rgb(253,176,17)" rx="2" ry="2" />
|
|
<text x="304.31" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="1187.6" y="1733" width="0.6" height="15.0" fill="rgb(207,83,45)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1142.5" y="1717" width="0.2" height="15.0" fill="rgb(225,69,13)" rx="2" ry="2" />
|
|
<text x="1145.53" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (15 samples, 0.23%)</title><rect x="992.9" y="1717" width="2.8" height="15.0" fill="rgb(244,73,9)" rx="2" ry="2" />
|
|
<text x="995.90" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (38 samples, 0.59%)</title><rect x="887.2" y="1781" width="7.1" height="15.0" fill="rgb(230,77,53)" rx="2" ry="2" />
|
|
<text x="890.24" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="252.2" y="1749" width="0.2" height="15.0" fill="rgb(219,17,46)" rx="2" ry="2" />
|
|
<text x="255.17" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (5 samples, 0.08%)</title><rect x="1142.3" y="1813" width="1.0" height="15.0" fill="rgb(224,130,8)" rx="2" ry="2" />
|
|
<text x="1145.34" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (25 samples, 0.39%)</title><rect x="306.3" y="1861" width="4.6" height="15.0" fill="rgb(226,200,35)" rx="2" ry="2" />
|
|
<text x="309.29" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="258.5" y="1685" width="0.1" height="15.0" fill="rgb(250,144,27)" rx="2" ry="2" />
|
|
<text x="261.45" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (13 samples, 0.20%)</title><rect x="461.6" y="1877" width="2.4" height="15.0" fill="rgb(237,217,53)" rx="2" ry="2" />
|
|
<text x="464.64" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (78 samples, 1.22%)</title><rect x="1009.7" y="1781" width="14.4" height="15.0" fill="rgb(239,47,15)" rx="2" ry="2" />
|
|
<text x="1012.71" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (3 samples, 0.05%)</title><rect x="202.7" y="1909" width="0.5" height="15.0" fill="rgb(253,110,48)" rx="2" ry="2" />
|
|
<text x="205.66" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1187.2" y="1749" width="0.2" height="15.0" fill="rgb(210,97,43)" rx="2" ry="2" />
|
|
<text x="1190.23" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="252.4" y="1749" width="0.1" height="15.0" fill="rgb(225,196,16)" rx="2" ry="2" />
|
|
<text x="255.35" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="894.1" y="1749" width="0.2" height="15.0" fill="rgb(215,74,52)" rx="2" ry="2" />
|
|
<text x="897.08" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (3 samples, 0.05%)</title><rect x="246.6" y="1877" width="0.6" height="15.0" fill="rgb(209,69,1)" rx="2" ry="2" />
|
|
<text x="249.63" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (34 samples, 0.53%)</title><rect x="639.2" y="1717" width="6.2" height="15.0" fill="rgb(247,180,31)" rx="2" ry="2" />
|
|
<text x="642.16" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="257.9" y="1829" width="0.4" height="15.0" fill="rgb(234,1,0)" rx="2" ry="2" />
|
|
<text x="260.90" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1183.9" y="1749" width="0.2" height="15.0" fill="rgb(218,213,53)" rx="2" ry="2" />
|
|
<text x="1186.90" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="1141.6" y="1749" width="0.4" height="15.0" fill="rgb(239,177,29)" rx="2" ry="2" />
|
|
<text x="1144.60" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>CAMERA_render (6,359 samples, 99.55%)</title><rect x="13.9" y="2021" width="1174.6" height="15.0" fill="rgb(234,59,24)" rx="2" ry="2" />
|
|
<text x="16.88" y="2031.5" >CAMERA_render</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (19 samples, 0.30%)</title><rect x="293.7" y="1829" width="3.5" height="15.0" fill="rgb(213,199,39)" rx="2" ry="2" />
|
|
<text x="296.73" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1143.8" y="1765" width="0.2" height="15.0" fill="rgb(233,176,42)" rx="2" ry="2" />
|
|
<text x="1146.82" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="255.7" y="1781" width="0.3" height="15.0" fill="rgb(243,167,2)" rx="2" ry="2" />
|
|
<text x="258.68" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="296.1" y="1765" width="0.4" height="15.0" fill="rgb(245,4,48)" rx="2" ry="2" />
|
|
<text x="299.13" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (210 samples, 3.29%)</title><rect x="633.1" y="1781" width="38.8" height="15.0" fill="rgb(210,102,13)" rx="2" ry="2" />
|
|
<text x="636.07" y="1791.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (6 samples, 0.09%)</title><rect x="255.7" y="1829" width="1.1" height="15.0" fill="rgb(234,216,36)" rx="2" ry="2" />
|
|
<text x="258.68" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="294.5" y="1797" width="0.3" height="15.0" fill="rgb(234,182,19)" rx="2" ry="2" />
|
|
<text x="297.47" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="545.0" y="1797" width="0.1" height="15.0" fill="rgb(225,37,8)" rx="2" ry="2" />
|
|
<text x="547.95" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (623 samples, 9.75%)</title><rect x="310.9" y="1973" width="115.1" height="15.0" fill="rgb(239,118,47)" rx="2" ry="2" />
|
|
<text x="313.91" y="1983.5" >WORLD_is_shado..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="308.3" y="1733" width="0.2" height="15.0" fill="rgb(213,207,34)" rx="2" ry="2" />
|
|
<text x="311.32" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="251.2" y="1845" width="0.8" height="15.0" fill="rgb(249,214,32)" rx="2" ry="2" />
|
|
<text x="254.25" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_work_run_list (1 samples, 0.02%)</title><rect x="658.9" y="1589" width="0.2" height="15.0" fill="rgb(224,174,32)" rx="2" ry="2" />
|
|
<text x="661.93" y="1599.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="745.4" y="1733" width="0.2" height="15.0" fill="rgb(253,76,23)" rx="2" ry="2" />
|
|
<text x="748.38" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="821" width="0.2" height="15.0" fill="rgb(239,48,2)" rx="2" ry="2" />
|
|
<text x="13.74" y="831.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="292.8" y="1717" width="0.6" height="15.0" fill="rgb(240,60,3)" rx="2" ry="2" />
|
|
<text x="295.81" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (3 samples, 0.05%)</title><rect x="999.2" y="1733" width="0.5" height="15.0" fill="rgb(238,39,46)" rx="2" ry="2" />
|
|
<text x="1002.18" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="202.3" y="1909" width="0.4" height="15.0" fill="rgb(230,153,23)" rx="2" ry="2" />
|
|
<text x="205.29" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="252.0" y="1765" width="0.4" height="15.0" fill="rgb(250,165,34)" rx="2" ry="2" />
|
|
<text x="254.98" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (213 samples, 3.33%)</title><rect x="203.2" y="1909" width="39.4" height="15.0" fill="rgb(220,215,45)" rx="2" ry="2" />
|
|
<text x="206.22" y="1919.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1187.4" y="1765" width="0.2" height="15.0" fill="rgb(223,143,44)" rx="2" ry="2" />
|
|
<text x="1190.41" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (7 samples, 0.11%)</title><rect x="1178.9" y="1797" width="1.3" height="15.0" fill="rgb(247,184,28)" rx="2" ry="2" />
|
|
<text x="1181.92" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="254.9" y="1813" width="0.2" height="15.0" fill="rgb(225,165,16)" rx="2" ry="2" />
|
|
<text x="257.94" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (3 samples, 0.05%)</title><rect x="806.5" y="1781" width="0.6" height="15.0" fill="rgb(226,48,8)" rx="2" ry="2" />
|
|
<text x="809.52" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="308.3" y="1717" width="0.2" height="15.0" fill="rgb(254,10,21)" rx="2" ry="2" />
|
|
<text x="311.32" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="252.9" y="1701" width="0.2" height="15.0" fill="rgb(218,37,26)" rx="2" ry="2" />
|
|
<text x="255.91" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1137.9" y="1845" width="0.2" height="15.0" fill="rgb(218,43,3)" rx="2" ry="2" />
|
|
<text x="1140.91" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="899.2" y="1717" width="0.2" height="15.0" fill="rgb(229,16,12)" rx="2" ry="2" />
|
|
<text x="902.25" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (91 samples, 1.42%)</title><rect x="1008.0" y="1797" width="16.9" height="15.0" fill="rgb(225,38,3)" rx="2" ry="2" />
|
|
<text x="1011.05" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (5 samples, 0.08%)</title><rect x="892.2" y="1717" width="1.0" height="15.0" fill="rgb(213,176,10)" rx="2" ry="2" />
|
|
<text x="895.23" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_pmu_enable.part.0 (4 samples, 0.06%)</title><rect x="137.1" y="1781" width="0.7" height="15.0" fill="rgb(245,152,39)" rx="2" ry="2" />
|
|
<text x="140.09" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1183.2" y="1733" width="0.2" height="15.0" fill="rgb(228,102,9)" rx="2" ry="2" />
|
|
<text x="1186.17" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (12 samples, 0.19%)</title><rect x="763.1" y="1701" width="2.2" height="15.0" fill="rgb(248,53,37)" rx="2" ry="2" />
|
|
<text x="766.11" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (9 samples, 0.14%)</title><rect x="1185.8" y="1781" width="1.6" height="15.0" fill="rgb(249,17,0)" rx="2" ry="2" />
|
|
<text x="1188.75" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="85" width="0.2" height="15.0" fill="rgb(224,62,46)" rx="2" ry="2" />
|
|
<text x="13.74" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="899.4" y="1749" width="0.2" height="15.0" fill="rgb(234,129,23)" rx="2" ry="2" />
|
|
<text x="902.43" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="248.8" y="1717" width="0.2" height="15.0" fill="rgb(243,221,43)" rx="2" ry="2" />
|
|
<text x="251.84" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (9 samples, 0.14%)</title><rect x="1055.3" y="1701" width="1.7" height="15.0" fill="rgb(243,156,13)" rx="2" ry="2" />
|
|
<text x="1058.34" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (14 samples, 0.22%)</title><rect x="282.8" y="1845" width="2.6" height="15.0" fill="rgb(205,61,31)" rx="2" ry="2" />
|
|
<text x="285.83" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (13 samples, 0.20%)</title><rect x="287.5" y="1813" width="2.4" height="15.0" fill="rgb(251,79,27)" rx="2" ry="2" />
|
|
<text x="290.45" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (5 samples, 0.08%)</title><rect x="292.8" y="1797" width="0.9" height="15.0" fill="rgb(226,148,34)" rx="2" ry="2" />
|
|
<text x="295.81" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_sort_intersections (1 samples, 0.02%)</title><rect x="289.7" y="1765" width="0.2" height="15.0" fill="rgb(236,209,22)" rx="2" ry="2" />
|
|
<text x="292.67" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="933" width="0.2" height="15.0" fill="rgb(226,45,16)" rx="2" ry="2" />
|
|
<text x="13.74" y="943.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="257.5" y="1765" width="0.2" height="15.0" fill="rgb(240,102,23)" rx="2" ry="2" />
|
|
<text x="260.53" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="1140.9" y="1797" width="0.1" height="15.0" fill="rgb(220,12,1)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="252.5" y="1749" width="0.2" height="15.0" fill="rgb(206,182,7)" rx="2" ry="2" />
|
|
<text x="255.54" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (39 samples, 0.61%)</title><rect x="793.8" y="1781" width="7.2" height="15.0" fill="rgb(217,109,4)" rx="2" ry="2" />
|
|
<text x="796.77" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1925" width="0.2" height="15.0" fill="rgb(230,64,30)" rx="2" ry="2" />
|
|
<text x="13.74" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (221 samples, 3.46%)</title><rect x="769.0" y="1829" width="40.8" height="15.0" fill="rgb(223,215,3)" rx="2" ry="2" />
|
|
<text x="772.02" y="1839.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (23 samples, 0.36%)</title><rect x="196.6" y="1957" width="4.2" height="15.0" fill="rgb(243,128,53)" rx="2" ry="2" />
|
|
<text x="199.57" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1184.1" y="1717" width="0.2" height="15.0" fill="rgb(224,50,20)" rx="2" ry="2" />
|
|
<text x="1187.09" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="1183.5" y="1717" width="0.4" height="15.0" fill="rgb(227,74,12)" rx="2" ry="2" />
|
|
<text x="1186.53" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="862.5" y="1749" width="0.2" height="15.0" fill="rgb(226,176,26)" rx="2" ry="2" />
|
|
<text x="865.49" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="255.1" y="1765" width="0.2" height="15.0" fill="rgb(245,200,38)" rx="2" ry="2" />
|
|
<text x="258.13" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="280.1" y="1877" width="0.1" height="15.0" fill="rgb(244,160,24)" rx="2" ry="2" />
|
|
<text x="283.06" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="579.9" y="1765" width="0.9" height="15.0" fill="rgb(218,179,44)" rx="2" ry="2" />
|
|
<text x="582.87" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (29 samples, 0.45%)</title><rect x="757.0" y="1685" width="5.4" height="15.0" fill="rgb(210,129,40)" rx="2" ry="2" />
|
|
<text x="760.01" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (5 samples, 0.08%)</title><rect x="1184.8" y="1701" width="1.0" height="15.0" fill="rgb(251,86,13)" rx="2" ry="2" />
|
|
<text x="1187.83" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="251.8" y="1781" width="0.2" height="15.0" fill="rgb(205,5,53)" rx="2" ry="2" />
|
|
<text x="254.80" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="1144.9" y="1733" width="0.2" height="15.0" fill="rgb(216,120,45)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="308.7" y="1669" width="0.2" height="15.0" fill="rgb(238,137,25)" rx="2" ry="2" />
|
|
<text x="311.69" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="545.0" y="1765" width="0.1" height="15.0" fill="rgb(217,226,10)" rx="2" ry="2" />
|
|
<text x="547.95" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (6 samples, 0.09%)</title><rect x="792.7" y="1765" width="1.1" height="15.0" fill="rgb(236,39,33)" rx="2" ry="2" />
|
|
<text x="795.66" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (58 samples, 0.91%)</title><rect x="489.5" y="1829" width="10.8" height="15.0" fill="rgb(210,202,48)" rx="2" ry="2" />
|
|
<text x="492.54" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (3 samples, 0.05%)</title><rect x="308.3" y="1813" width="0.6" height="15.0" fill="rgb(223,167,11)" rx="2" ry="2" />
|
|
<text x="311.32" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="249.8" y="1749" width="0.2" height="15.0" fill="rgb(210,179,17)" rx="2" ry="2" />
|
|
<text x="252.77" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1000.1" y="1749" width="0.2" height="15.0" fill="rgb(207,78,2)" rx="2" ry="2" />
|
|
<text x="1003.11" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>search_binary_handler (1 samples, 0.02%)</title><rect x="12.6" y="1973" width="0.2" height="15.0" fill="rgb(240,5,5)" rx="2" ry="2" />
|
|
<text x="15.59" y="1983.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="255.1" y="1749" width="0.2" height="15.0" fill="rgb(237,133,15)" rx="2" ry="2" />
|
|
<text x="258.13" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (102 samples, 1.60%)</title><rect x="259.0" y="1925" width="18.8" height="15.0" fill="rgb(238,205,40)" rx="2" ry="2" />
|
|
<text x="262.00" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1173" width="0.2" height="15.0" fill="rgb(237,179,2)" rx="2" ry="2" />
|
|
<text x="13.74" y="1183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (5 samples, 0.08%)</title><rect x="1124.4" y="1813" width="0.9" height="15.0" fill="rgb(231,165,19)" rx="2" ry="2" />
|
|
<text x="1127.42" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="287.8" y="1701" width="0.8" height="15.0" fill="rgb(205,80,10)" rx="2" ry="2" />
|
|
<text x="290.82" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (35 samples, 0.55%)</title><rect x="1013.6" y="1765" width="6.5" height="15.0" fill="rgb(236,191,6)" rx="2" ry="2" />
|
|
<text x="1016.59" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_usermode_loop (4 samples, 0.06%)</title><rect x="68.6" y="1877" width="0.7" height="15.0" fill="rgb(252,75,7)" rx="2" ry="2" />
|
|
<text x="71.56" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (186 samples, 2.91%)</title><rect x="1025.6" y="1845" width="34.4" height="15.0" fill="rgb(232,80,17)" rx="2" ry="2" />
|
|
<text x="1028.60" y="1855.5" >WO..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_determinant (1 samples, 0.02%)</title><rect x="1188.7" y="1909" width="0.2" height="15.0" fill="rgb(229,185,52)" rx="2" ry="2" />
|
|
<text x="1191.71" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (133 samples, 2.08%)</title><rect x="862.1" y="1765" width="24.6" height="15.0" fill="rgb(236,132,39)" rx="2" ry="2" />
|
|
<text x="865.12" y="1775.5" >A..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="308.3" y="1781" width="0.2" height="15.0" fill="rgb(246,150,34)" rx="2" ry="2" />
|
|
<text x="311.32" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="985.5" y="1749" width="0.4" height="15.0" fill="rgb(244,162,13)" rx="2" ry="2" />
|
|
<text x="988.51" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (60 samples, 0.94%)</title><rect x="282.6" y="1861" width="11.1" height="15.0" fill="rgb(248,173,5)" rx="2" ry="2" />
|
|
<text x="285.65" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (2 samples, 0.03%)</title><rect x="258.6" y="1781" width="0.4" height="15.0" fill="rgb(237,137,50)" rx="2" ry="2" />
|
|
<text x="261.63" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (200 samples, 3.13%)</title><rect x="515.2" y="1829" width="37.0" height="15.0" fill="rgb(218,189,50)" rx="2" ry="2" />
|
|
<text x="518.21" y="1839.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_shadow_hit (1 samples, 0.02%)</title><rect x="672.0" y="1813" width="0.2" height="15.0" fill="rgb(230,122,31)" rx="2" ry="2" />
|
|
<text x="675.04" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="245.3" y="1845" width="0.6" height="15.0" fill="rgb(224,59,43)" rx="2" ry="2" />
|
|
<text x="248.34" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1180.4" y="1829" width="0.2" height="15.0" fill="rgb(237,229,45)" rx="2" ry="2" />
|
|
<text x="1183.39" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (6 samples, 0.09%)</title><rect x="733.9" y="1717" width="1.1" height="15.0" fill="rgb(214,60,17)" rx="2" ry="2" />
|
|
<text x="736.92" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (33 samples, 0.52%)</title><rect x="1139.4" y="1877" width="6.1" height="15.0" fill="rgb(228,74,19)" rx="2" ry="2" />
|
|
<text x="1142.39" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="255.7" y="1797" width="0.3" height="15.0" fill="rgb(247,149,12)" rx="2" ry="2" />
|
|
<text x="258.68" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (11 samples, 0.17%)</title><rect x="1035.8" y="1717" width="2.0" height="15.0" fill="rgb(211,167,16)" rx="2" ry="2" />
|
|
<text x="1038.76" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="1040.2" y="1701" width="0.4" height="15.0" fill="rgb(243,219,35)" rx="2" ry="2" />
|
|
<text x="1043.19" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (32 samples, 0.50%)</title><rect x="580.8" y="1781" width="5.9" height="15.0" fill="rgb(227,199,4)" rx="2" ry="2" />
|
|
<text x="583.79" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="298.9" y="1717" width="0.4" height="15.0" fill="rgb(211,6,4)" rx="2" ry="2" />
|
|
<text x="301.90" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="926.4" y="1781" width="0.2" height="15.0" fill="rgb(216,108,30)" rx="2" ry="2" />
|
|
<text x="929.40" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (38 samples, 0.59%)</title><rect x="303.9" y="1877" width="7.0" height="15.0" fill="rgb(218,135,9)" rx="2" ry="2" />
|
|
<text x="306.89" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (4 samples, 0.06%)</title><rect x="249.4" y="1845" width="0.7" height="15.0" fill="rgb(243,128,22)" rx="2" ry="2" />
|
|
<text x="252.40" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (653 samples, 10.22%)</title><rect x="939.3" y="1893" width="120.7" height="15.0" fill="rgb(254,218,7)" rx="2" ry="2" />
|
|
<text x="942.33" y="1903.5" >WORLD_refracted..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1142.0" y="1749" width="0.3" height="15.0" fill="rgb(225,99,3)" rx="2" ry="2" />
|
|
<text x="1144.97" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="252.0" y="1749" width="0.2" height="15.0" fill="rgb(224,19,52)" rx="2" ry="2" />
|
|
<text x="254.98" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (3 samples, 0.05%)</title><rect x="1039.1" y="1717" width="0.5" height="15.0" fill="rgb(234,20,38)" rx="2" ry="2" />
|
|
<text x="1042.08" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="11.1" y="2037" width="0.2" height="15.0" fill="rgb(214,35,41)" rx="2" ry="2" />
|
|
<text x="14.11" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (5 samples, 0.08%)</title><rect x="708.1" y="1781" width="0.9" height="15.0" fill="rgb(229,7,22)" rx="2" ry="2" />
|
|
<text x="711.06" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="117" width="0.2" height="15.0" fill="rgb(226,76,4)" rx="2" ry="2" />
|
|
<text x="13.74" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="470.9" y="1941" width="0.2" height="15.0" fill="rgb(218,190,22)" rx="2" ry="2" />
|
|
<text x="473.88" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="1135.7" y="1829" width="0.4" height="15.0" fill="rgb(207,190,39)" rx="2" ry="2" />
|
|
<text x="1138.69" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="256.4" y="1701" width="0.4" height="15.0" fill="rgb(223,217,23)" rx="2" ry="2" />
|
|
<text x="259.42" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="898.5" y="1685" width="0.2" height="15.0" fill="rgb(245,187,32)" rx="2" ry="2" />
|
|
<text x="901.51" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="306.3" y="1781" width="0.7" height="15.0" fill="rgb(218,45,18)" rx="2" ry="2" />
|
|
<text x="309.29" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="1054.6" y="1701" width="0.7" height="15.0" fill="rgb(240,1,33)" rx="2" ry="2" />
|
|
<text x="1057.60" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="289.3" y="1717" width="0.2" height="15.0" fill="rgb(213,219,46)" rx="2" ry="2" />
|
|
<text x="292.30" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1445" width="0.2" height="15.0" fill="rgb(207,70,36)" rx="2" ry="2" />
|
|
<text x="13.74" y="1455.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_mmap (1 samples, 0.02%)</title><rect x="12.6" y="1893" width="0.2" height="15.0" fill="rgb(236,27,19)" rx="2" ry="2" />
|
|
<text x="15.59" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (95 samples, 1.49%)</title><rect x="1008.0" y="1845" width="17.6" height="15.0" fill="rgb(211,191,6)" rx="2" ry="2" />
|
|
<text x="1011.05" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (6 samples, 0.09%)</title><rect x="1136.8" y="1829" width="1.1" height="15.0" fill="rgb(249,16,15)" rx="2" ry="2" />
|
|
<text x="1139.80" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="258.5" y="1733" width="0.1" height="15.0" fill="rgb(209,81,22)" rx="2" ry="2" />
|
|
<text x="261.45" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="1041.1" y="1685" width="0.8" height="15.0" fill="rgb(224,213,8)" rx="2" ry="2" />
|
|
<text x="1044.11" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2 samples, 0.03%)</title><rect x="252.7" y="1797" width="0.4" height="15.0" fill="rgb(212,192,29)" rx="2" ry="2" />
|
|
<text x="255.72" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1186.1" y="1733" width="0.6" height="15.0" fill="rgb(246,10,22)" rx="2" ry="2" />
|
|
<text x="1189.12" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="307.0" y="1733" width="0.2" height="15.0" fill="rgb(210,144,15)" rx="2" ry="2" />
|
|
<text x="310.03" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (67 samples, 1.05%)</title><rect x="217.4" y="1877" width="12.4" height="15.0" fill="rgb(205,168,7)" rx="2" ry="2" />
|
|
<text x="220.44" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="807.4" y="1813" width="0.6" height="15.0" fill="rgb(227,132,24)" rx="2" ry="2" />
|
|
<text x="810.44" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="247.0" y="1829" width="0.2" height="15.0" fill="rgb(252,95,7)" rx="2" ry="2" />
|
|
<text x="250.00" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (186 samples, 2.91%)</title><rect x="1025.6" y="1829" width="34.4" height="15.0" fill="rgb(238,120,8)" rx="2" ry="2" />
|
|
<text x="1028.60" y="1839.5" >WO..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (55 samples, 0.86%)</title><rect x="528.0" y="1797" width="10.1" height="15.0" fill="rgb(229,105,46)" rx="2" ry="2" />
|
|
<text x="530.96" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (1 samples, 0.02%)</title><rect x="10.9" y="2005" width="0.2" height="15.0" fill="rgb(239,140,15)" rx="2" ry="2" />
|
|
<text x="13.92" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1180.8" y="1765" width="0.5" height="15.0" fill="rgb(222,103,39)" rx="2" ry="2" />
|
|
<text x="1183.76" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (102 samples, 1.60%)</title><rect x="259.0" y="1941" width="18.8" height="15.0" fill="rgb(236,183,37)" rx="2" ry="2" />
|
|
<text x="262.00" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="901.6" y="1829" width="0.2" height="15.0" fill="rgb(228,227,34)" rx="2" ry="2" />
|
|
<text x="904.65" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (5 samples, 0.08%)</title><rect x="310.0" y="1813" width="0.9" height="15.0" fill="rgb(210,136,42)" rx="2" ry="2" />
|
|
<text x="312.99" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (6 samples, 0.09%)</title><rect x="257.9" y="1845" width="1.1" height="15.0" fill="rgb(248,19,49)" rx="2" ry="2" />
|
|
<text x="260.90" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="725" width="0.2" height="15.0" fill="rgb(226,113,47)" rx="2" ry="2" />
|
|
<text x="13.74" y="735.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="200.8" y="1941" width="0.2" height="15.0" fill="rgb(221,129,14)" rx="2" ry="2" />
|
|
<text x="203.82" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="645" width="0.2" height="15.0" fill="rgb(246,144,25)" rx="2" ry="2" />
|
|
<text x="13.74" y="655.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (4 samples, 0.06%)</title><rect x="770.7" y="1797" width="0.7" height="15.0" fill="rgb(244,153,36)" rx="2" ry="2" />
|
|
<text x="773.68" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="258.8" y="1717" width="0.2" height="15.0" fill="rgb(221,81,31)" rx="2" ry="2" />
|
|
<text x="261.82" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="310.5" y="1669" width="0.2" height="15.0" fill="rgb(237,168,27)" rx="2" ry="2" />
|
|
<text x="313.54" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1333" width="0.2" height="15.0" fill="rgb(230,58,6)" rx="2" ry="2" />
|
|
<text x="13.74" y="1343.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="552.9" y="1845" width="0.2" height="15.0" fill="rgb(239,224,6)" rx="2" ry="2" />
|
|
<text x="555.90" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>rcu_irq_enter (1 samples, 0.02%)</title><rect x="804.5" y="1717" width="0.2" height="15.0" fill="rgb(211,83,37)" rx="2" ry="2" />
|
|
<text x="807.49" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="257.9" y="1797" width="0.4" height="15.0" fill="rgb(227,22,34)" rx="2" ry="2" />
|
|
<text x="260.90" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="861.4" y="1701" width="0.2" height="15.0" fill="rgb(230,118,36)" rx="2" ry="2" />
|
|
<text x="864.38" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="985.9" y="1765" width="0.4" height="15.0" fill="rgb(240,17,32)" rx="2" ry="2" />
|
|
<text x="988.88" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="979.8" y="1813" width="0.2" height="15.0" fill="rgb(235,99,14)" rx="2" ry="2" />
|
|
<text x="982.79" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (3,883 samples, 60.79%)</title><rect x="471.1" y="1941" width="717.2" height="15.0" fill="rgb(219,101,45)" rx="2" ry="2" />
|
|
<text x="474.06" y="1951.5" >WORLD_shade_hit</text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (19 samples, 0.30%)</title><rect x="1004.5" y="1733" width="3.5" height="15.0" fill="rgb(208,111,36)" rx="2" ry="2" />
|
|
<text x="1007.54" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (13 samples, 0.20%)</title><rect x="277.8" y="1909" width="2.4" height="15.0" fill="rgb(252,91,26)" rx="2" ry="2" />
|
|
<text x="280.85" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (220 samples, 3.44%)</title><rect x="471.1" y="1877" width="40.6" height="15.0" fill="rgb(232,200,26)" rx="2" ry="2" />
|
|
<text x="474.06" y="1887.5" >ARR..</text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="677" width="0.2" height="15.0" fill="rgb(224,38,3)" rx="2" ry="2" />
|
|
<text x="13.74" y="687.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="281.4" y="1797" width="0.5" height="15.0" fill="rgb(210,84,5)" rx="2" ry="2" />
|
|
<text x="284.36" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="308.1" y="1733" width="0.2" height="15.0" fill="rgb(238,128,25)" rx="2" ry="2" />
|
|
<text x="311.14" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="247.7" y="1781" width="1.1" height="15.0" fill="rgb(221,89,19)" rx="2" ry="2" />
|
|
<text x="250.74" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1141.0" y="1717" width="0.2" height="15.0" fill="rgb(206,36,18)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="252.7" y="1781" width="0.4" height="15.0" fill="rgb(226,6,1)" rx="2" ry="2" />
|
|
<text x="255.72" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc (1 samples, 0.02%)</title><rect x="1189.8" y="2053" width="0.2" height="15.0" fill="rgb(243,136,32)" rx="2" ry="2" />
|
|
<text x="1192.82" y="2063.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (5 samples, 0.08%)</title><rect x="1059.0" y="1701" width="1.0" height="15.0" fill="rgb(229,133,14)" rx="2" ry="2" />
|
|
<text x="1062.03" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1058.7" y="1733" width="0.3" height="15.0" fill="rgb(206,193,20)" rx="2" ry="2" />
|
|
<text x="1061.66" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (4 samples, 0.06%)</title><rect x="767.7" y="1701" width="0.8" height="15.0" fill="rgb(253,110,43)" rx="2" ry="2" />
|
|
<text x="770.73" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1184.1" y="1781" width="0.2" height="15.0" fill="rgb(228,210,44)" rx="2" ry="2" />
|
|
<text x="1187.09" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (1 samples, 0.02%)</title><rect x="305.9" y="1797" width="0.2" height="15.0" fill="rgb(242,107,52)" rx="2" ry="2" />
|
|
<text x="308.92" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="632.0" y="1781" width="0.3" height="15.0" fill="rgb(254,77,41)" rx="2" ry="2" />
|
|
<text x="634.96" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>process_csb (1 samples, 0.02%)</title><rect x="1099.1" y="1733" width="0.2" height="15.0" fill="rgb(205,111,7)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="279.7" y="1845" width="0.2" height="15.0" fill="rgb(251,169,34)" rx="2" ry="2" />
|
|
<text x="282.69" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="1187.6" y="1685" width="0.6" height="15.0" fill="rgb(214,81,4)" rx="2" ry="2" />
|
|
<text x="1190.60" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scheduler_tick (1 samples, 0.02%)</title><rect x="188.4" y="1813" width="0.2" height="15.0" fill="rgb(241,216,17)" rx="2" ry="2" />
|
|
<text x="191.44" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="261" width="0.2" height="15.0" fill="rgb(241,25,43)" rx="2" ry="2" />
|
|
<text x="13.74" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="246.6" y="1829" width="0.4" height="15.0" fill="rgb(247,118,30)" rx="2" ry="2" />
|
|
<text x="249.63" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (5 samples, 0.08%)</title><rect x="991.1" y="1733" width="0.9" height="15.0" fill="rgb(226,109,33)" rx="2" ry="2" />
|
|
<text x="994.06" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (5 samples, 0.08%)</title><rect x="278.0" y="1845" width="1.0" height="15.0" fill="rgb(254,13,37)" rx="2" ry="2" />
|
|
<text x="281.03" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="308.0" y="1797" width="0.3" height="15.0" fill="rgb(236,229,14)" rx="2" ry="2" />
|
|
<text x="310.96" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="249.0" y="1797" width="0.4" height="15.0" fill="rgb(220,67,50)" rx="2" ry="2" />
|
|
<text x="252.03" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_inverse (1 samples, 0.02%)</title><rect x="1188.7" y="1941" width="0.2" height="15.0" fill="rgb(239,30,43)" rx="2" ry="2" />
|
|
<text x="1191.71" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (265 samples, 4.15%)</title><rect x="1139.4" y="1893" width="48.9" height="15.0" fill="rgb(236,151,29)" rx="2" ry="2" />
|
|
<text x="1142.39" y="1903.5" >WORL..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (1 samples, 0.02%)</title><rect x="306.1" y="1797" width="0.2" height="15.0" fill="rgb(226,219,4)" rx="2" ry="2" />
|
|
<text x="309.11" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (80 samples, 1.25%)</title><rect x="244.2" y="1941" width="14.8" height="15.0" fill="rgb(214,30,17)" rx="2" ry="2" />
|
|
<text x="247.23" y="1951.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (6 samples, 0.09%)</title><rect x="666.5" y="1717" width="1.1" height="15.0" fill="rgb(214,116,23)" rx="2" ry="2" />
|
|
<text x="669.50" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__remove_hrtimer (1 samples, 0.02%)</title><rect x="1086.9" y="1749" width="0.2" height="15.0" fill="rgb(229,217,14)" rx="2" ry="2" />
|
|
<text x="1089.93" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (17 samples, 0.27%)</title><rect x="992.7" y="1765" width="3.2" height="15.0" fill="rgb(239,178,40)" rx="2" ry="2" />
|
|
<text x="995.72" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="279.0" y="1845" width="0.1" height="15.0" fill="rgb(209,224,23)" rx="2" ry="2" />
|
|
<text x="281.95" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="276.9" y="1861" width="0.2" height="15.0" fill="rgb(212,155,3)" rx="2" ry="2" />
|
|
<text x="279.92" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="978.1" y="1797" width="0.2" height="15.0" fill="rgb(218,89,22)" rx="2" ry="2" />
|
|
<text x="981.12" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="301.7" y="1797" width="0.9" height="15.0" fill="rgb(246,163,36)" rx="2" ry="2" />
|
|
<text x="304.68" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (7 samples, 0.11%)</title><rect x="989.6" y="1717" width="1.3" height="15.0" fill="rgb(221,6,22)" rx="2" ry="2" />
|
|
<text x="992.58" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (2 samples, 0.03%)</title><rect x="514.8" y="1829" width="0.4" height="15.0" fill="rgb(227,193,42)" rx="2" ry="2" />
|
|
<text x="517.84" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1188.2" y="1701" width="0.1" height="15.0" fill="rgb(221,58,10)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="307.4" y="1701" width="0.2" height="15.0" fill="rgb(211,199,45)" rx="2" ry="2" />
|
|
<text x="310.40" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>x86_pmu_enable (4 samples, 0.06%)</title><rect x="137.1" y="1765" width="0.7" height="15.0" fill="rgb(228,105,47)" rx="2" ry="2" />
|
|
<text x="140.09" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (109 samples, 1.71%)</title><rect x="748.9" y="1765" width="20.1" height="15.0" fill="rgb(222,75,28)" rx="2" ry="2" />
|
|
<text x="751.89" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (25 samples, 0.39%)</title><rect x="1140.9" y="1861" width="4.6" height="15.0" fill="rgb(207,104,10)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (224 samples, 3.51%)</title><rect x="512.6" y="1861" width="41.4" height="15.0" fill="rgb(252,40,1)" rx="2" ry="2" />
|
|
<text x="515.63" y="1871.5" >GRO..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (25 samples, 0.39%)</title><rect x="1054.0" y="1733" width="4.7" height="15.0" fill="rgb(236,111,5)" rx="2" ry="2" />
|
|
<text x="1057.05" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (1 samples, 0.02%)</title><rect x="11.8" y="2037" width="0.2" height="15.0" fill="rgb(229,105,11)" rx="2" ry="2" />
|
|
<text x="14.85" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (4 samples, 0.06%)</title><rect x="256.0" y="1749" width="0.8" height="15.0" fill="rgb(208,143,6)" rx="2" ry="2" />
|
|
<text x="259.05" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (204 samples, 3.19%)</title><rect x="1101.7" y="1893" width="37.7" height="15.0" fill="rgb(252,133,14)" rx="2" ry="2" />
|
|
<text x="1104.70" y="1903.5" >SHA..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (5 samples, 0.08%)</title><rect x="427.3" y="1893" width="0.9" height="15.0" fill="rgb(232,135,42)" rx="2" ry="2" />
|
|
<text x="430.29" y="1903.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="917" width="0.2" height="15.0" fill="rgb(233,170,10)" rx="2" ry="2" />
|
|
<text x="13.74" y="927.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1142.3" y="1733" width="0.6" height="15.0" fill="rgb(211,191,23)" rx="2" ry="2" />
|
|
<text x="1145.34" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1140.9" y="1765" width="0.1" height="15.0" fill="rgb(235,110,11)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="303.5" y="1813" width="0.2" height="15.0" fill="rgb(232,77,15)" rx="2" ry="2" />
|
|
<text x="306.52" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_exit (1 samples, 0.02%)</title><rect x="1099.1" y="1813" width="0.2" height="15.0" fill="rgb(220,206,51)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>execlists_submission_tasklet (1 samples, 0.02%)</title><rect x="1099.1" y="1749" width="0.2" height="15.0" fill="rgb(249,212,48)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="466.6" y="1877" width="0.8" height="15.0" fill="rgb(214,215,3)" rx="2" ry="2" />
|
|
<text x="469.63" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="300.8" y="1717" width="0.5" height="15.0" fill="rgb(236,77,24)" rx="2" ry="2" />
|
|
<text x="303.75" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1145.1" y="1733" width="0.4" height="15.0" fill="rgb(224,227,13)" rx="2" ry="2" />
|
|
<text x="1148.11" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (36 samples, 0.56%)</title><rect x="981.3" y="1797" width="6.6" height="15.0" fill="rgb(245,68,42)" rx="2" ry="2" />
|
|
<text x="984.26" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (3 samples, 0.05%)</title><rect x="1141.0" y="1765" width="0.6" height="15.0" fill="rgb(221,5,35)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="251.1" y="1797" width="0.1" height="15.0" fill="rgb(237,176,32)" rx="2" ry="2" />
|
|
<text x="254.06" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="373" width="0.2" height="15.0" fill="rgb(210,149,3)" rx="2" ry="2" />
|
|
<text x="13.74" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="469" width="0.2" height="15.0" fill="rgb(223,127,48)" rx="2" ry="2" />
|
|
<text x="13.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="1143.6" y="1765" width="0.2" height="15.0" fill="rgb(217,56,18)" rx="2" ry="2" />
|
|
<text x="1146.63" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="101" width="0.2" height="15.0" fill="rgb(229,167,9)" rx="2" ry="2" />
|
|
<text x="13.74" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="1184.1" y="1765" width="0.2" height="15.0" fill="rgb(206,151,46)" rx="2" ry="2" />
|
|
<text x="1187.09" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (6 samples, 0.09%)</title><rect x="299.3" y="1765" width="1.1" height="15.0" fill="rgb(237,162,41)" rx="2" ry="2" />
|
|
<text x="302.27" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (5 samples, 0.08%)</title><rect x="310.0" y="1845" width="0.9" height="15.0" fill="rgb(219,90,51)" rx="2" ry="2" />
|
|
<text x="312.99" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="279.9" y="1845" width="0.2" height="15.0" fill="rgb(228,71,34)" rx="2" ry="2" />
|
|
<text x="282.88" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irq_work_interrupt (1 samples, 0.02%)</title><rect x="658.9" y="1637" width="0.2" height="15.0" fill="rgb(225,182,17)" rx="2" ry="2" />
|
|
<text x="661.93" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (7 samples, 0.11%)</title><rect x="299.3" y="1797" width="1.3" height="15.0" fill="rgb(225,142,32)" rx="2" ry="2" />
|
|
<text x="302.27" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (179 samples, 2.80%)</title><rect x="277.8" y="1925" width="33.1" height="15.0" fill="rgb(253,82,25)" rx="2" ry="2" />
|
|
<text x="280.85" y="1935.5" >WO..</text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="307.2" y="1717" width="0.2" height="15.0" fill="rgb(229,201,39)" rx="2" ry="2" />
|
|
<text x="310.22" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (48 samples, 0.75%)</title><rect x="783.8" y="1765" width="8.9" height="15.0" fill="rgb(220,26,2)" rx="2" ry="2" />
|
|
<text x="786.80" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="1140.9" y="1813" width="0.1" height="15.0" fill="rgb(254,103,46)" rx="2" ry="2" />
|
|
<text x="1143.86" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="253.1" y="1845" width="0.9" height="15.0" fill="rgb(220,54,35)" rx="2" ry="2" />
|
|
<text x="256.09" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (45 samples, 0.70%)</title><rect x="167.9" y="1925" width="8.3" height="15.0" fill="rgb(243,58,45)" rx="2" ry="2" />
|
|
<text x="170.94" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (12 samples, 0.19%)</title><rect x="277.8" y="1861" width="2.3" height="15.0" fill="rgb(223,32,49)" rx="2" ry="2" />
|
|
<text x="280.85" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="980.0" y="1829" width="0.3" height="15.0" fill="rgb(215,7,50)" rx="2" ry="2" />
|
|
<text x="982.97" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (69 samples, 1.08%)</title><rect x="526.3" y="1813" width="12.7" height="15.0" fill="rgb(205,183,3)" rx="2" ry="2" />
|
|
<text x="529.30" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (13 samples, 0.20%)</title><rect x="301.3" y="1845" width="2.4" height="15.0" fill="rgb(206,161,41)" rx="2" ry="2" />
|
|
<text x="304.31" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="533" width="0.2" height="15.0" fill="rgb(232,126,21)" rx="2" ry="2" />
|
|
<text x="13.74" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (3 samples, 0.05%)</title><rect x="671.3" y="1749" width="0.6" height="15.0" fill="rgb(214,81,1)" rx="2" ry="2" />
|
|
<text x="674.30" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="188.4" y="1861" width="0.2" height="15.0" fill="rgb(240,115,39)" rx="2" ry="2" />
|
|
<text x="191.44" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (3 samples, 0.05%)</title><rect x="243.7" y="1925" width="0.5" height="15.0" fill="rgb(248,161,46)" rx="2" ry="2" />
|
|
<text x="246.67" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (38 samples, 0.59%)</title><rect x="981.3" y="1829" width="7.0" height="15.0" fill="rgb(207,5,2)" rx="2" ry="2" />
|
|
<text x="984.26" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1221" width="0.2" height="15.0" fill="rgb(206,175,4)" rx="2" ry="2" />
|
|
<text x="13.74" y="1231.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1 samples, 0.02%)</title><rect x="926.4" y="1717" width="0.2" height="15.0" fill="rgb(211,1,25)" rx="2" ry="2" />
|
|
<text x="929.40" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (17 samples, 0.27%)</title><rect x="752.9" y="1701" width="3.2" height="15.0" fill="rgb(248,71,44)" rx="2" ry="2" />
|
|
<text x="755.95" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (2 samples, 0.03%)</title><rect x="249.0" y="1845" width="0.4" height="15.0" fill="rgb(254,36,51)" rx="2" ry="2" />
|
|
<text x="252.03" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="545.0" y="1749" width="0.1" height="15.0" fill="rgb(254,107,2)" rx="2" ry="2" />
|
|
<text x="547.95" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_file_xsputn@@GLIBC_2.2.5 (1 samples, 0.02%)</title><rect x="1188.3" y="1989" width="0.2" height="15.0" fill="rgb(223,177,39)" rx="2" ry="2" />
|
|
<text x="1191.34" y="1999.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (4 samples, 0.06%)</title><rect x="256.0" y="1781" width="0.8" height="15.0" fill="rgb(208,53,32)" rx="2" ry="2" />
|
|
<text x="259.05" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (4 samples, 0.06%)</title><rect x="1098.4" y="1845" width="0.7" height="15.0" fill="rgb(252,99,25)" rx="2" ry="2" />
|
|
<text x="1101.38" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (27 samples, 0.42%)</title><rect x="500.8" y="1845" width="5.0" height="15.0" fill="rgb(248,226,11)" rx="2" ry="2" />
|
|
<text x="503.80" y="1855.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (70 samples, 1.10%)</title><rect x="722.1" y="1733" width="12.9" height="15.0" fill="rgb(221,52,17)" rx="2" ry="2" />
|
|
<text x="725.10" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="283.9" y="1765" width="0.2" height="15.0" fill="rgb(238,180,45)" rx="2" ry="2" />
|
|
<text x="286.94" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1781" width="0.2" height="15.0" fill="rgb(235,95,26)" rx="2" ry="2" />
|
|
<text x="13.74" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (4 samples, 0.06%)</title><rect x="10.0" y="2021" width="0.7" height="15.0" fill="rgb(209,97,27)" rx="2" ry="2" />
|
|
<text x="13.00" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (973 samples, 15.23%)</title><rect x="14.1" y="1957" width="179.7" height="15.0" fill="rgb(210,127,1)" rx="2" ry="2" />
|
|
<text x="17.06" y="1967.5" >ARRLIST_iterator</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (8 samples, 0.13%)</title><rect x="1180.6" y="1797" width="1.5" height="15.0" fill="rgb(231,139,28)" rx="2" ry="2" />
|
|
<text x="1183.58" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (9 samples, 0.14%)</title><rect x="808.2" y="1813" width="1.6" height="15.0" fill="rgb(216,86,6)" rx="2" ry="2" />
|
|
<text x="811.18" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1 samples, 0.02%)</title><rect x="12.6" y="2021" width="0.2" height="15.0" fill="rgb(251,215,48)" rx="2" ry="2" />
|
|
<text x="15.59" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="254.0" y="1829" width="1.1" height="15.0" fill="rgb(243,90,50)" rx="2" ry="2" />
|
|
<text x="257.02" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="308.5" y="1685" width="0.2" height="15.0" fill="rgb(224,8,54)" rx="2" ry="2" />
|
|
<text x="311.51" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___qsort_r (1 samples, 0.02%)</title><rect x="1060.0" y="1909" width="0.1" height="15.0" fill="rgb(241,85,52)" rx="2" ry="2" />
|
|
<text x="1062.96" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="2021" width="0.2" height="15.0" fill="rgb(224,40,50)" rx="2" ry="2" />
|
|
<text x="13.74" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (6 samples, 0.09%)</title><rect x="247.7" y="1813" width="1.1" height="15.0" fill="rgb(218,104,21)" rx="2" ry="2" />
|
|
<text x="250.74" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (5 samples, 0.08%)</title><rect x="1184.8" y="1765" width="1.0" height="15.0" fill="rgb(230,26,24)" rx="2" ry="2" />
|
|
<text x="1187.83" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (1 samples, 0.02%)</title><rect x="593.4" y="1685" width="0.1" height="15.0" fill="rgb(226,14,45)" rx="2" ry="2" />
|
|
<text x="596.35" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (24 samples, 0.38%)</title><rect x="285.4" y="1829" width="4.5" height="15.0" fill="rgb(230,171,12)" rx="2" ry="2" />
|
|
<text x="288.42" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (1 samples, 0.02%)</title><rect x="248.8" y="1733" width="0.2" height="15.0" fill="rgb(241,54,45)" rx="2" ry="2" />
|
|
<text x="251.84" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (469 samples, 7.34%)</title><rect x="1101.7" y="1925" width="86.6" height="15.0" fill="rgb(207,147,48)" rx="2" ry="2" />
|
|
<text x="1104.70" y="1935.5" >WORLD_refr..</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_init (1 samples, 0.02%)</title><rect x="1188.7" y="1957" width="0.2" height="15.0" fill="rgb(239,142,37)" rx="2" ry="2" />
|
|
<text x="1191.71" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (15 samples, 0.23%)</title><rect x="193.8" y="1957" width="2.8" height="15.0" fill="rgb(219,17,41)" rx="2" ry="2" />
|
|
<text x="196.80" y="1967.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (13 samples, 0.20%)</title><rect x="244.2" y="1909" width="2.4" height="15.0" fill="rgb(229,221,52)" rx="2" ry="2" />
|
|
<text x="247.23" y="1919.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (7 samples, 0.11%)</title><rect x="291.5" y="1797" width="1.3" height="15.0" fill="rgb(238,27,14)" rx="2" ry="2" />
|
|
<text x="294.52" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (11 samples, 0.17%)</title><rect x="973.9" y="1797" width="2.0" height="15.0" fill="rgb(217,194,34)" rx="2" ry="2" />
|
|
<text x="976.88" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (4 samples, 0.06%)</title><rect x="658.4" y="1701" width="0.7" height="15.0" fill="rgb(254,149,0)" rx="2" ry="2" />
|
|
<text x="661.37" y="1711.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="298.2" y="1765" width="0.3" height="15.0" fill="rgb(252,104,23)" rx="2" ry="2" />
|
|
<text x="301.17" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tasklet_hi_action (1 samples, 0.02%)</title><rect x="1099.1" y="1781" width="0.2" height="15.0" fill="rgb(239,165,35)" rx="2" ry="2" />
|
|
<text x="1102.12" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (14 samples, 0.22%)</title><rect x="282.8" y="1829" width="2.6" height="15.0" fill="rgb(243,196,30)" rx="2" ry="2" />
|
|
<text x="285.83" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1138.1" y="1861" width="0.5" height="15.0" fill="rgb(206,62,37)" rx="2" ry="2" />
|
|
<text x="1141.09" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_exec (4 samples, 0.06%)</title><rect x="10.0" y="1925" width="0.7" height="15.0" fill="rgb(248,44,36)" rx="2" ry="2" />
|
|
<text x="13.00" y="1935.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="250.0" y="1749" width="0.1" height="15.0" fill="rgb(207,179,27)" rx="2" ry="2" />
|
|
<text x="252.95" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (22 samples, 0.34%)</title><rect x="854.0" y="1797" width="4.1" height="15.0" fill="rgb(241,186,45)" rx="2" ry="2" />
|
|
<text x="856.99" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="877.8" y="1717" width="0.6" height="15.0" fill="rgb(254,48,7)" rx="2" ry="2" />
|
|
<text x="880.82" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (3 samples, 0.05%)</title><rect x="1144.9" y="1813" width="0.6" height="15.0" fill="rgb(218,67,38)" rx="2" ry="2" />
|
|
<text x="1147.93" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="501" width="0.2" height="15.0" fill="rgb(206,203,4)" rx="2" ry="2" />
|
|
<text x="13.74" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (5 samples, 0.08%)</title><rect x="253.1" y="1861" width="0.9" height="15.0" fill="rgb(225,168,30)" rx="2" ry="2" />
|
|
<text x="256.09" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="252.7" y="1717" width="0.4" height="15.0" fill="rgb(235,130,37)" rx="2" ry="2" />
|
|
<text x="255.72" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (2 samples, 0.03%)</title><rect x="1185.4" y="1669" width="0.4" height="15.0" fill="rgb(206,150,46)" rx="2" ry="2" />
|
|
<text x="1188.38" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="995.7" y="1733" width="0.2" height="15.0" fill="rgb(245,138,14)" rx="2" ry="2" />
|
|
<text x="998.67" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>RAY_transform (15 samples, 0.23%)</title><rect x="1041.9" y="1685" width="2.7" height="15.0" fill="rgb(252,88,19)" rx="2" ry="2" />
|
|
<text x="1044.85" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (2 samples, 0.03%)</title><rect x="288.9" y="1717" width="0.4" height="15.0" fill="rgb(247,71,11)" rx="2" ry="2" />
|
|
<text x="291.93" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (200 samples, 3.13%)</title><rect x="672.0" y="1829" width="37.0" height="15.0" fill="rgb(242,38,35)" rx="2" ry="2" />
|
|
<text x="675.04" y="1839.5" >WOR..</text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (2 samples, 0.03%)</title><rect x="1032.8" y="1749" width="0.4" height="15.0" fill="rgb(249,161,21)" rx="2" ry="2" />
|
|
<text x="1035.80" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_usermode_loop (4 samples, 0.06%)</title><rect x="137.1" y="1861" width="0.7" height="15.0" fill="rgb(231,60,13)" rx="2" ry="2" />
|
|
<text x="140.09" y="1871.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>compare_RAY_Xs (3 samples, 0.05%)</title><rect x="12.0" y="2037" width="0.6" height="15.0" fill="rgb(251,187,34)" rx="2" ry="2" />
|
|
<text x="15.03" y="2047.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (21 samples, 0.33%)</title><rect x="996.2" y="1749" width="3.9" height="15.0" fill="rgb(208,67,0)" rx="2" ry="2" />
|
|
<text x="999.23" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="1188.2" y="1717" width="0.1" height="15.0" fill="rgb(241,21,27)" rx="2" ry="2" />
|
|
<text x="1191.15" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (13 samples, 0.20%)</title><rect x="303.9" y="1829" width="2.4" height="15.0" fill="rgb(208,117,48)" rx="2" ry="2" />
|
|
<text x="306.89" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1 samples, 0.02%)</title><rect x="593.4" y="1733" width="0.1" height="15.0" fill="rgb(212,212,12)" rx="2" ry="2" />
|
|
<text x="596.35" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (23 samples, 0.36%)</title><rect x="1000.3" y="1765" width="4.2" height="15.0" fill="rgb(226,38,21)" rx="2" ry="2" />
|
|
<text x="1003.29" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (1,875 samples, 29.35%)</title><rect x="554.0" y="1877" width="346.4" height="15.0" fill="rgb(230,107,38)" rx="2" ry="2" />
|
|
<text x="557.00" y="1887.5" >WORLD_shade_hit</text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (1 samples, 0.02%)</title><rect x="1182.8" y="1749" width="0.2" height="15.0" fill="rgb(237,206,12)" rx="2" ry="2" />
|
|
<text x="1185.80" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (34 samples, 0.53%)</title><rect x="887.8" y="1733" width="6.3" height="15.0" fill="rgb(246,226,53)" rx="2" ry="2" />
|
|
<text x="890.80" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="254.0" y="1877" width="1.1" height="15.0" fill="rgb(233,85,43)" rx="2" ry="2" />
|
|
<text x="257.02" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_color_at (20 samples, 0.31%)</title><rect x="1182.1" y="1829" width="3.7" height="15.0" fill="rgb(252,3,49)" rx="2" ry="2" />
|
|
<text x="1185.06" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="303.3" y="1813" width="0.2" height="15.0" fill="rgb(251,132,22)" rx="2" ry="2" />
|
|
<text x="306.34" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (1 samples, 0.02%)</title><rect x="188.4" y="1829" width="0.2" height="15.0" fill="rgb(234,132,24)" rx="2" ry="2" />
|
|
<text x="191.44" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (1 samples, 0.02%)</title><rect x="258.3" y="1781" width="0.2" height="15.0" fill="rgb(236,72,7)" rx="2" ry="2" />
|
|
<text x="261.27" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>PATTERN_color_at_shape (1 samples, 0.02%)</title><rect x="10.7" y="1669" width="0.2" height="15.0" fill="rgb(253,33,46)" rx="2" ry="2" />
|
|
<text x="13.74" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="1087.1" y="1829" width="0.6" height="15.0" fill="rgb(230,73,54)" rx="2" ry="2" />
|
|
<text x="1090.11" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>double_equal (3 samples, 0.05%)</title><rect x="551.6" y="1813" width="0.6" height="15.0" fill="rgb(233,223,48)" rx="2" ry="2" />
|
|
<text x="554.60" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (2,963 samples, 46.38%)</title><rect x="512.6" y="1909" width="547.4" height="15.0" fill="rgb(251,187,29)" rx="2" ry="2" />
|
|
<text x="515.63" y="1919.5" >WORLD_shade_hit</text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (27 samples, 0.42%)</title><rect x="1054.0" y="1765" width="5.0" height="15.0" fill="rgb(212,180,15)" rx="2" ry="2" />
|
|
<text x="1057.05" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_refracted_color (179 samples, 2.80%)</title><rect x="277.8" y="1941" width="33.1" height="15.0" fill="rgb(207,155,22)" rx="2" ry="2" />
|
|
<text x="280.85" y="1951.5" >WO..</text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (4 samples, 0.06%)</title><rect x="1183.2" y="1749" width="0.7" height="15.0" fill="rgb(224,176,19)" rx="2" ry="2" />
|
|
<text x="1186.17" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="804.5" y="1765" width="0.2" height="15.0" fill="rgb(206,60,14)" rx="2" ry="2" />
|
|
<text x="807.49" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="258.3" y="1765" width="0.2" height="15.0" fill="rgb(240,213,45)" rx="2" ry="2" />
|
|
<text x="261.27" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (6 samples, 0.09%)</title><rect x="1182.1" y="1813" width="1.1" height="15.0" fill="rgb(237,192,11)" rx="2" ry="2" />
|
|
<text x="1185.06" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (3 samples, 0.05%)</title><rect x="1177.6" y="1797" width="0.6" height="15.0" fill="rgb(245,34,32)" rx="2" ry="2" />
|
|
<text x="1180.62" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1141.0" y="1749" width="0.6" height="15.0" fill="rgb(230,121,33)" rx="2" ry="2" />
|
|
<text x="1144.05" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (2 samples, 0.03%)</title><rect x="994.6" y="1685" width="0.3" height="15.0" fill="rgb(247,43,6)" rx="2" ry="2" />
|
|
<text x="997.56" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (3 samples, 0.05%)</title><rect x="1142.3" y="1781" width="0.6" height="15.0" fill="rgb(239,135,24)" rx="2" ry="2" />
|
|
<text x="1145.34" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1053.9" y="1749" width="0.1" height="15.0" fill="rgb(246,82,46)" rx="2" ry="2" />
|
|
<text x="1056.86" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1 samples, 0.02%)</title><rect x="593.4" y="1717" width="0.1" height="15.0" fill="rgb(236,194,38)" rx="2" ry="2" />
|
|
<text x="596.35" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (12 samples, 0.19%)</title><rect x="287.5" y="1765" width="2.2" height="15.0" fill="rgb(237,103,34)" rx="2" ry="2" />
|
|
<text x="290.45" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="1145.1" y="1781" width="0.4" height="15.0" fill="rgb(221,121,30)" rx="2" ry="2" />
|
|
<text x="1148.11" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (34 samples, 0.53%)</title><rect x="967.6" y="1797" width="6.3" height="15.0" fill="rgb(254,145,50)" rx="2" ry="2" />
|
|
<text x="970.60" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (27 samples, 0.42%)</title><rect x="1109.1" y="1829" width="5.0" height="15.0" fill="rgb(253,214,27)" rx="2" ry="2" />
|
|
<text x="1112.09" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_shape (1 samples, 0.02%)</title><rect x="1047.0" y="1717" width="0.2" height="15.0" fill="rgb(227,29,44)" rx="2" ry="2" />
|
|
<text x="1050.03" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (6 samples, 0.09%)</title><rect x="805.4" y="1781" width="1.1" height="15.0" fill="rgb(250,101,22)" rx="2" ry="2" />
|
|
<text x="808.41" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (9 samples, 0.14%)</title><rect x="1185.8" y="1813" width="1.6" height="15.0" fill="rgb(206,50,31)" rx="2" ry="2" />
|
|
<text x="1188.75" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timekeeping_advance (1 samples, 0.02%)</title><rect x="926.4" y="1653" width="0.2" height="15.0" fill="rgb(224,106,1)" rx="2" ry="2" />
|
|
<text x="929.40" y="1663.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (1 samples, 0.02%)</title><rect x="1185.2" y="1669" width="0.2" height="15.0" fill="rgb(224,168,23)" rx="2" ry="2" />
|
|
<text x="1188.20" y="1679.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (3 samples, 0.05%)</title><rect x="299.3" y="1733" width="0.5" height="15.0" fill="rgb(209,48,25)" rx="2" ry="2" />
|
|
<text x="302.27" y="1743.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (8 samples, 0.13%)</title><rect x="1180.6" y="1813" width="1.5" height="15.0" fill="rgb(221,220,52)" rx="2" ry="2" />
|
|
<text x="1183.58" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="258.6" y="1749" width="0.4" height="15.0" fill="rgb(214,154,35)" rx="2" ry="2" />
|
|
<text x="261.63" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_init_point (1 samples, 0.02%)</title><rect x="671.9" y="1781" width="0.1" height="15.0" fill="rgb(225,18,21)" rx="2" ry="2" />
|
|
<text x="674.86" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (19 samples, 0.30%)</title><rect x="1004.5" y="1717" width="3.5" height="15.0" fill="rgb(229,7,28)" rx="2" ry="2" />
|
|
<text x="1007.54" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TRIANGLE_local_intersect (1 samples, 0.02%)</title><rect x="249.2" y="1765" width="0.2" height="15.0" fill="rgb(213,36,5)" rx="2" ry="2" />
|
|
<text x="252.21" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (187 samples, 2.93%)</title><rect x="772.5" y="1797" width="34.6" height="15.0" fill="rgb(222,146,49)" rx="2" ry="2" />
|
|
<text x="775.53" y="1807.5" >SH..</text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_cross (2 samples, 0.03%)</title><rect x="1007.3" y="1685" width="0.4" height="15.0" fill="rgb(205,204,34)" rx="2" ry="2" />
|
|
<text x="1010.31" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (1 samples, 0.02%)</title><rect x="252.4" y="1781" width="0.1" height="15.0" fill="rgb(223,190,13)" rx="2" ry="2" />
|
|
<text x="255.35" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_subtract (1 samples, 0.02%)</title><rect x="898.9" y="1685" width="0.2" height="15.0" fill="rgb(216,203,43)" rx="2" ry="2" />
|
|
<text x="901.88" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (24 samples, 0.38%)</title><rect x="995.9" y="1813" width="4.4" height="15.0" fill="rgb(252,150,23)" rx="2" ry="2" />
|
|
<text x="998.86" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (9 samples, 0.14%)</title><rect x="1185.8" y="1829" width="1.6" height="15.0" fill="rgb(215,20,27)" rx="2" ry="2" />
|
|
<text x="1188.75" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (2 samples, 0.03%)</title><rect x="255.7" y="1765" width="0.3" height="15.0" fill="rgb(251,124,31)" rx="2" ry="2" />
|
|
<text x="258.68" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="1140.1" y="1781" width="0.4" height="15.0" fill="rgb(248,92,16)" rx="2" ry="2" />
|
|
<text x="1143.13" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>TUPLES_dot (3 samples, 0.05%)</title><rect x="302.8" y="1813" width="0.5" height="15.0" fill="rgb(236,75,43)" rx="2" ry="2" />
|
|
<text x="305.78" y="1823.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_pmu_enable.part.0 (4 samples, 0.06%)</title><rect x="68.6" y="1797" width="0.7" height="15.0" fill="rgb(230,48,33)" rx="2" ry="2" />
|
|
<text x="71.56" y="1807.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (2 samples, 0.03%)</title><rect x="252.7" y="1765" width="0.4" height="15.0" fill="rgb(205,229,34)" rx="2" ry="2" />
|
|
<text x="255.72" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_is_shadowed (9 samples, 0.14%)</title><rect x="289.9" y="1829" width="1.6" height="15.0" fill="rgb(232,165,45)" rx="2" ry="2" />
|
|
<text x="292.85" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="670.4" y="1749" width="0.7" height="15.0" fill="rgb(240,33,50)" rx="2" ry="2" />
|
|
<text x="673.38" y="1759.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ARRLIST_iterator (12 samples, 0.19%)</title><rect x="277.8" y="1877" width="2.3" height="15.0" fill="rgb(250,71,17)" rx="2" ry="2" />
|
|
<text x="280.85" y="1887.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>apic_timer_interrupt (1 samples, 0.02%)</title><rect x="11.1" y="2021" width="0.2" height="15.0" fill="rgb(245,128,3)" rx="2" ry="2" />
|
|
<text x="14.11" y="2031.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WORLD_shade_hit (107 samples, 1.68%)</title><rect x="988.3" y="1829" width="19.7" height="15.0" fill="rgb(215,103,10)" rx="2" ry="2" />
|
|
<text x="991.28" y="1839.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>WAVEFRONTOBJ_init (1 samples, 0.02%)</title><rect x="1188.7" y="2005" width="0.2" height="15.0" fill="rgb(219,156,24)" rx="2" ry="2" />
|
|
<text x="1191.71" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (5 samples, 0.08%)</title><rect x="1184.8" y="1685" width="1.0" height="15.0" fill="rgb(233,121,38)" rx="2" ry="2" />
|
|
<text x="1187.83" y="1695.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (4 samples, 0.06%)</title><rect x="1144.2" y="1765" width="0.7" height="15.0" fill="rgb(218,1,11)" rx="2" ry="2" />
|
|
<text x="1147.19" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>GROUP_local_intersect (37 samples, 0.58%)</title><rect x="1033.2" y="1765" width="6.8" height="15.0" fill="rgb(227,91,5)" rx="2" ry="2" />
|
|
<text x="1036.17" y="1775.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (62 samples, 0.97%)</title><rect x="954.8" y="1781" width="11.5" height="15.0" fill="rgb(245,122,28)" rx="2" ry="2" />
|
|
<text x="957.85" y="1791.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_execve (1 samples, 0.02%)</title><rect x="12.6" y="2005" width="0.2" height="15.0" fill="rgb(229,204,15)" rx="2" ry="2" />
|
|
<text x="15.59" y="2015.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_do_update_jiffies64.part.0 (1 samples, 0.02%)</title><rect x="1186.9" y="1637" width="0.1" height="15.0" fill="rgb(246,69,1)" rx="2" ry="2" />
|
|
<text x="1189.86" y="1647.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>MATRIX_multiply_tuple (2 samples, 0.03%)</title><rect x="291.9" y="1717" width="0.4" height="15.0" fill="rgb(251,91,50)" rx="2" ry="2" />
|
|
<text x="294.88" y="1727.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>SHAPE_intersect (1 samples, 0.02%)</title><rect x="1184.1" y="1733" width="0.2" height="15.0" fill="rgb(238,182,41)" rx="2" ry="2" />
|
|
<text x="1187.09" y="1743.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|