jruby-async-profiler 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/README.md +35 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/ext/Rakefile +6 -0
- data/ext/async-profiler/.gitattributes +1 -0
- data/ext/async-profiler/.gitignore +6 -0
- data/ext/async-profiler/.travis.yml +11 -0
- data/ext/async-profiler/CHANGELOG.md +107 -0
- data/ext/async-profiler/JavaHome.class +0 -0
- data/ext/async-profiler/LICENSE +201 -0
- data/ext/async-profiler/Makefile +66 -0
- data/ext/async-profiler/README.md +487 -0
- data/ext/async-profiler/demo/SwingSet2.svg +2247 -0
- data/ext/async-profiler/docs/cddl1.txt +358 -0
- data/ext/async-profiler/profiler.sh +240 -0
- data/ext/async-profiler/src/allocTracer.cpp +155 -0
- data/ext/async-profiler/src/allocTracer.h +74 -0
- data/ext/async-profiler/src/arch.h +69 -0
- data/ext/async-profiler/src/arguments.cpp +265 -0
- data/ext/async-profiler/src/arguments.h +152 -0
- data/ext/async-profiler/src/codeCache.cpp +128 -0
- data/ext/async-profiler/src/codeCache.h +99 -0
- data/ext/async-profiler/src/engine.cpp +50 -0
- data/ext/async-profiler/src/engine.h +38 -0
- data/ext/async-profiler/src/flameGraph.cpp +770 -0
- data/ext/async-profiler/src/flameGraph.h +118 -0
- data/ext/async-profiler/src/flightRecorder.cpp +727 -0
- data/ext/async-profiler/src/flightRecorder.h +39 -0
- data/ext/async-profiler/src/frameName.cpp +189 -0
- data/ext/async-profiler/src/frameName.h +56 -0
- data/ext/async-profiler/src/itimer.cpp +49 -0
- data/ext/async-profiler/src/itimer.h +43 -0
- data/ext/async-profiler/src/jattach/jattach.c +437 -0
- data/ext/async-profiler/src/java/one/profiler/AsyncProfiler.java +160 -0
- data/ext/async-profiler/src/java/one/profiler/AsyncProfilerMXBean.java +43 -0
- data/ext/async-profiler/src/java/one/profiler/Counter.java +25 -0
- data/ext/async-profiler/src/java/one/profiler/Events.java +28 -0
- data/ext/async-profiler/src/javaApi.cpp +124 -0
- data/ext/async-profiler/src/lockTracer.cpp +161 -0
- data/ext/async-profiler/src/lockTracer.h +55 -0
- data/ext/async-profiler/src/mutex.cpp +33 -0
- data/ext/async-profiler/src/mutex.h +49 -0
- data/ext/async-profiler/src/os.h +45 -0
- data/ext/async-profiler/src/os_linux.cpp +129 -0
- data/ext/async-profiler/src/os_macos.cpp +115 -0
- data/ext/async-profiler/src/perfEvents.h +60 -0
- data/ext/async-profiler/src/perfEvents_linux.cpp +550 -0
- data/ext/async-profiler/src/perfEvents_macos.cpp +64 -0
- data/ext/async-profiler/src/profiler.cpp +952 -0
- data/ext/async-profiler/src/profiler.h +238 -0
- data/ext/async-profiler/src/spinLock.h +66 -0
- data/ext/async-profiler/src/stackFrame.h +57 -0
- data/ext/async-profiler/src/stackFrame_aarch64.cpp +75 -0
- data/ext/async-profiler/src/stackFrame_arm.cpp +58 -0
- data/ext/async-profiler/src/stackFrame_i386.cpp +82 -0
- data/ext/async-profiler/src/stackFrame_x64.cpp +113 -0
- data/ext/async-profiler/src/symbols.h +37 -0
- data/ext/async-profiler/src/symbols_linux.cpp +354 -0
- data/ext/async-profiler/src/symbols_macos.cpp +156 -0
- data/ext/async-profiler/src/vmEntry.cpp +173 -0
- data/ext/async-profiler/src/vmEntry.h +105 -0
- data/ext/async-profiler/src/vmStructs.cpp +104 -0
- data/ext/async-profiler/src/vmStructs.h +112 -0
- data/ext/async-profiler/src/wallClock.cpp +96 -0
- data/ext/async-profiler/src/wallClock.h +56 -0
- data/ext/async-profiler/test/AllocatingTarget.java +26 -0
- data/ext/async-profiler/test/LoadLibraryTest.java +21 -0
- data/ext/async-profiler/test/Target.java +31 -0
- data/ext/async-profiler/test/ThreadsTarget.java +35 -0
- data/ext/async-profiler/test/alloc-smoke-test.sh +36 -0
- data/ext/async-profiler/test/load-library-test.sh +35 -0
- data/ext/async-profiler/test/smoke-test.sh +37 -0
- data/ext/async-profiler/test/thread-smoke-test.sh +32 -0
- data/jruby-async-profiler.gemspec +32 -0
- data/lib/jruby/async/profiler.rb +10 -0
- data/lib/jruby/async/profiler/version.rb +7 -0
- metadata +155 -0
@@ -0,0 +1,2247 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3
|
+
<svg version="1.1" width="1200" height="966" onload="init(evt)" viewBox="0 0 1200 966" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
4
|
+
<style type="text/css">
|
5
|
+
text { font-family:Verdana; font-size:12px; fill:black; }
|
6
|
+
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
7
|
+
</style>
|
8
|
+
<script type="text/ecmascript">
|
9
|
+
<![CDATA[
|
10
|
+
var details, searchbtn, matchedtxt, svg;
|
11
|
+
function init(evt) {
|
12
|
+
details = document.getElementById("details").firstChild;
|
13
|
+
searchbtn = document.getElementById("search");
|
14
|
+
matchedtxt = document.getElementById("matched");
|
15
|
+
svg = document.getElementsByTagName("svg")[0];
|
16
|
+
searching = 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
// mouse-over for info
|
20
|
+
function s(node) { // show
|
21
|
+
info = g_to_text(node);
|
22
|
+
details.nodeValue = "Function: " + info;
|
23
|
+
}
|
24
|
+
function c() { // clear
|
25
|
+
details.nodeValue = ' ';
|
26
|
+
}
|
27
|
+
|
28
|
+
// ctrl-F for search
|
29
|
+
window.addEventListener("keydown",function (e) {
|
30
|
+
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
31
|
+
e.preventDefault();
|
32
|
+
search_prompt();
|
33
|
+
}
|
34
|
+
})
|
35
|
+
|
36
|
+
// functions
|
37
|
+
function find_child(parent, name, attr) {
|
38
|
+
var children = parent.childNodes;
|
39
|
+
for (var i=0; i<children.length;i++) {
|
40
|
+
if (children[i].tagName == name)
|
41
|
+
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
|
42
|
+
}
|
43
|
+
return;
|
44
|
+
}
|
45
|
+
function orig_save(e, attr, val) {
|
46
|
+
if (e.attributes["_orig_"+attr] != undefined) return;
|
47
|
+
if (e.attributes[attr] == undefined) return;
|
48
|
+
if (val == undefined) val = e.attributes[attr].value;
|
49
|
+
e.setAttribute("_orig_"+attr, val);
|
50
|
+
}
|
51
|
+
function orig_load(e, attr) {
|
52
|
+
if (e.attributes["_orig_"+attr] == undefined) return;
|
53
|
+
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
|
54
|
+
e.removeAttribute("_orig_"+attr);
|
55
|
+
}
|
56
|
+
function g_to_text(e) {
|
57
|
+
var text = find_child(e, "title").firstChild.nodeValue;
|
58
|
+
return (text)
|
59
|
+
}
|
60
|
+
function g_to_func(e) {
|
61
|
+
var func = g_to_text(e);
|
62
|
+
// if there's any manipulation we want to do to the function
|
63
|
+
// name before it's searched, do it here before returning.
|
64
|
+
return (func);
|
65
|
+
}
|
66
|
+
function update_text(e) {
|
67
|
+
var r = find_child(e, "rect");
|
68
|
+
var t = find_child(e, "text");
|
69
|
+
var w = parseFloat(r.attributes["width"].value) -3;
|
70
|
+
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
71
|
+
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
|
72
|
+
|
73
|
+
// Smaller than this size won't fit anything
|
74
|
+
if (w < 2*12*0.59) {
|
75
|
+
t.textContent = "";
|
76
|
+
return;
|
77
|
+
}
|
78
|
+
|
79
|
+
t.textContent = txt;
|
80
|
+
// Fit in full text width
|
81
|
+
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
|
82
|
+
return;
|
83
|
+
|
84
|
+
for (var x=txt.length-2; x>0; x--) {
|
85
|
+
if (t.getSubStringLength(0, x+2) <= w) {
|
86
|
+
t.textContent = txt.substring(0,x) + "..";
|
87
|
+
return;
|
88
|
+
}
|
89
|
+
}
|
90
|
+
t.textContent = "";
|
91
|
+
}
|
92
|
+
|
93
|
+
// zoom
|
94
|
+
function zoom_reset(e) {
|
95
|
+
if (e.attributes != undefined) {
|
96
|
+
orig_load(e, "x");
|
97
|
+
orig_load(e, "width");
|
98
|
+
}
|
99
|
+
if (e.childNodes == undefined) return;
|
100
|
+
for(var i=0, c=e.childNodes; i<c.length; i++) {
|
101
|
+
zoom_reset(c[i]);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
function zoom_child(e, x, ratio) {
|
105
|
+
if (e.attributes != undefined) {
|
106
|
+
if (e.attributes["x"] != undefined) {
|
107
|
+
orig_save(e, "x");
|
108
|
+
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
|
109
|
+
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
|
110
|
+
}
|
111
|
+
if (e.attributes["width"] != undefined) {
|
112
|
+
orig_save(e, "width");
|
113
|
+
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
if (e.childNodes == undefined) return;
|
118
|
+
for(var i=0, c=e.childNodes; i<c.length; i++) {
|
119
|
+
zoom_child(c[i], x-10, ratio);
|
120
|
+
}
|
121
|
+
}
|
122
|
+
function zoom_parent(e) {
|
123
|
+
if (e.attributes) {
|
124
|
+
if (e.attributes["x"] != undefined) {
|
125
|
+
orig_save(e, "x");
|
126
|
+
e.attributes["x"].value = 10;
|
127
|
+
}
|
128
|
+
if (e.attributes["width"] != undefined) {
|
129
|
+
orig_save(e, "width");
|
130
|
+
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
|
131
|
+
}
|
132
|
+
}
|
133
|
+
if (e.childNodes == undefined) return;
|
134
|
+
for(var i=0, c=e.childNodes; i<c.length; i++) {
|
135
|
+
zoom_parent(c[i]);
|
136
|
+
}
|
137
|
+
}
|
138
|
+
function zoom(node) {
|
139
|
+
var attr = find_child(node, "rect").attributes;
|
140
|
+
var width = parseFloat(attr["width"].value);
|
141
|
+
var xmin = parseFloat(attr["x"].value);
|
142
|
+
var xmax = parseFloat(xmin + width);
|
143
|
+
var ymin = parseFloat(attr["y"].value);
|
144
|
+
var ratio = (svg.width.baseVal.value - 2*10) / width;
|
145
|
+
|
146
|
+
// XXX: Workaround for JavaScript float issues (fix me)
|
147
|
+
var fudge = 0.0001;
|
148
|
+
|
149
|
+
var unzoombtn = document.getElementById("unzoom");
|
150
|
+
unzoombtn.style["opacity"] = "1.0";
|
151
|
+
|
152
|
+
var el = document.getElementsByTagName("g");
|
153
|
+
for(var i=0;i<el.length;i++){
|
154
|
+
var e = el[i];
|
155
|
+
var a = find_child(e, "rect").attributes;
|
156
|
+
var ex = parseFloat(a["x"].value);
|
157
|
+
var ew = parseFloat(a["width"].value);
|
158
|
+
// Is it an ancestor
|
159
|
+
if (0 == 0) {
|
160
|
+
var upstack = parseFloat(a["y"].value) > ymin;
|
161
|
+
} else {
|
162
|
+
var upstack = parseFloat(a["y"].value) < ymin;
|
163
|
+
}
|
164
|
+
if (upstack) {
|
165
|
+
// Direct ancestor
|
166
|
+
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
|
167
|
+
e.style["opacity"] = "0.5";
|
168
|
+
zoom_parent(e);
|
169
|
+
e.onclick = function(e){unzoom(); zoom(this);};
|
170
|
+
update_text(e);
|
171
|
+
}
|
172
|
+
// not in current path
|
173
|
+
else
|
174
|
+
e.style["display"] = "none";
|
175
|
+
}
|
176
|
+
// Children maybe
|
177
|
+
else {
|
178
|
+
// no common path
|
179
|
+
if (ex < xmin || ex + fudge >= xmax) {
|
180
|
+
e.style["display"] = "none";
|
181
|
+
}
|
182
|
+
else {
|
183
|
+
zoom_child(e, xmin, ratio);
|
184
|
+
e.onclick = function(e){zoom(this);};
|
185
|
+
update_text(e);
|
186
|
+
}
|
187
|
+
}
|
188
|
+
}
|
189
|
+
}
|
190
|
+
function unzoom() {
|
191
|
+
var unzoombtn = document.getElementById("unzoom");
|
192
|
+
unzoombtn.style["opacity"] = "0.0";
|
193
|
+
|
194
|
+
var el = document.getElementsByTagName("g");
|
195
|
+
for(i=0;i<el.length;i++) {
|
196
|
+
el[i].style["display"] = "block";
|
197
|
+
el[i].style["opacity"] = "1";
|
198
|
+
zoom_reset(el[i]);
|
199
|
+
update_text(el[i]);
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
// search
|
204
|
+
function reset_search() {
|
205
|
+
var el = document.getElementsByTagName("rect");
|
206
|
+
for (var i=0; i < el.length; i++) {
|
207
|
+
orig_load(el[i], "fill")
|
208
|
+
}
|
209
|
+
}
|
210
|
+
function search_prompt() {
|
211
|
+
if (!searching) {
|
212
|
+
var term = prompt("Enter a search term (regexp " +
|
213
|
+
"allowed, eg: ^ext4_)", "");
|
214
|
+
if (term != null) {
|
215
|
+
search(term)
|
216
|
+
}
|
217
|
+
} else {
|
218
|
+
reset_search();
|
219
|
+
searching = 0;
|
220
|
+
searchbtn.style["opacity"] = "0.1";
|
221
|
+
searchbtn.firstChild.nodeValue = "Search"
|
222
|
+
matchedtxt.style["opacity"] = "0.0";
|
223
|
+
matchedtxt.firstChild.nodeValue = ""
|
224
|
+
}
|
225
|
+
}
|
226
|
+
function search(term) {
|
227
|
+
var re = new RegExp(term);
|
228
|
+
var el = document.getElementsByTagName("g");
|
229
|
+
var matches = new Object();
|
230
|
+
var maxwidth = 0;
|
231
|
+
for (var i = 0; i < el.length; i++) {
|
232
|
+
var e = el[i];
|
233
|
+
if (e.attributes["class"].value != "func_g")
|
234
|
+
continue;
|
235
|
+
var func = g_to_func(e);
|
236
|
+
var rect = find_child(e, "rect");
|
237
|
+
if (rect == null) {
|
238
|
+
// the rect might be wrapped in an anchor
|
239
|
+
// if nameattr href is being used
|
240
|
+
if (rect = find_child(e, "a")) {
|
241
|
+
rect = find_child(r, "rect");
|
242
|
+
}
|
243
|
+
}
|
244
|
+
if (func == null || rect == null)
|
245
|
+
continue;
|
246
|
+
|
247
|
+
// Save max width. Only works as we have a root frame
|
248
|
+
var w = parseFloat(rect.attributes["width"].value);
|
249
|
+
if (w > maxwidth)
|
250
|
+
maxwidth = w;
|
251
|
+
|
252
|
+
if (func.match(re)) {
|
253
|
+
// highlight
|
254
|
+
var x = parseFloat(rect.attributes["x"].value);
|
255
|
+
orig_save(rect, "fill");
|
256
|
+
rect.attributes["fill"].value =
|
257
|
+
"rgb(230,0,230)";
|
258
|
+
|
259
|
+
// remember matches
|
260
|
+
if (matches[x] == undefined) {
|
261
|
+
matches[x] = w;
|
262
|
+
} else {
|
263
|
+
if (w > matches[x]) {
|
264
|
+
// overwrite with parent
|
265
|
+
matches[x] = w;
|
266
|
+
}
|
267
|
+
}
|
268
|
+
searching = 1;
|
269
|
+
}
|
270
|
+
}
|
271
|
+
if (!searching)
|
272
|
+
return;
|
273
|
+
|
274
|
+
searchbtn.style["opacity"] = "1.0";
|
275
|
+
searchbtn.firstChild.nodeValue = "Reset Search"
|
276
|
+
|
277
|
+
// calculate percent matched, excluding vertical overlap
|
278
|
+
var count = 0;
|
279
|
+
var lastx = -1;
|
280
|
+
var lastw = 0;
|
281
|
+
var keys = Array();
|
282
|
+
for (k in matches) {
|
283
|
+
if (matches.hasOwnProperty(k))
|
284
|
+
keys.push(k);
|
285
|
+
}
|
286
|
+
// sort the matched frames by their x location
|
287
|
+
// ascending, then width descending
|
288
|
+
keys.sort(function(a, b){
|
289
|
+
return a - b;
|
290
|
+
});
|
291
|
+
// Step through frames saving only the biggest bottom-up frames
|
292
|
+
// thanks to the sort order. This relies on the tree property
|
293
|
+
// where children are always smaller than their parents.
|
294
|
+
var fudge = 0.0001; // JavaScript floating point
|
295
|
+
for (var k in keys) {
|
296
|
+
var x = parseFloat(keys[k]);
|
297
|
+
var w = matches[keys[k]];
|
298
|
+
if (x >= lastx + lastw - fudge) {
|
299
|
+
count += w;
|
300
|
+
lastx = x;
|
301
|
+
lastw = w;
|
302
|
+
}
|
303
|
+
}
|
304
|
+
// display matched percent
|
305
|
+
matchedtxt.style["opacity"] = "1.0";
|
306
|
+
pct = 100 * count / maxwidth;
|
307
|
+
if (pct == 100)
|
308
|
+
pct = "100"
|
309
|
+
else
|
310
|
+
pct = pct.toFixed(1)
|
311
|
+
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
312
|
+
}
|
313
|
+
function searchover(e) {
|
314
|
+
searchbtn.style["opacity"] = "1.0";
|
315
|
+
}
|
316
|
+
function searchout(e) {
|
317
|
+
if (searching) {
|
318
|
+
searchbtn.style["opacity"] = "1.0";
|
319
|
+
} else {
|
320
|
+
searchbtn.style["opacity"] = "0.1";
|
321
|
+
}
|
322
|
+
}
|
323
|
+
]]>
|
324
|
+
</script>
|
325
|
+
<rect x="0" y="0" width="100%" height="100%" fill="rgb(240,240,220)"/>
|
326
|
+
<text x="600" y="24" text-anchor="middle" style="font-size:17px">Flame Graph</text>
|
327
|
+
<text x="10" y="2821" id="details"> </text>
|
328
|
+
<text x="10" y="24" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer">Reset Zoom</text>
|
329
|
+
<text x="1090" y="24" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer">Search</text>
|
330
|
+
<text x="1090" y="2821" id="matched"> </text>
|
331
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
332
|
+
<title>CompileBroker::compiler_thread_loop() (517 samples, 39.38%)</title><rect x="610.3" y="837" width="464.7" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
|
333
|
+
<text x="613.34" y="847.5">CompileBroker::compiler_thread_loop()</text>
|
334
|
+
</g>
|
335
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
336
|
+
<title>sun/awt/X11/XDecoratedPeer.<init> (31 samples, 2.36%)</title><rect x="371.3" y="581" width="27.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
|
337
|
+
<text x="374.28" y="591.5">s..</text>
|
338
|
+
</g>
|
339
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
340
|
+
<title>javax/swing/JComponent.paint (34 samples, 2.59%)</title><rect x="450.4" y="453" width="30.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
|
341
|
+
<text x="453.37" y="463.5">ja..</text>
|
342
|
+
</g>
|
343
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
344
|
+
<title>ComboBoxDemo.createComboBoxDemo (20 samples, 1.52%)</title><rect x="52.2" y="773" width="18.0" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
345
|
+
<text x="55.24" y="783.5"></text>
|
346
|
+
</g>
|
347
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
348
|
+
<title>java/lang/ClassLoader.loadClass (9 samples, 0.69%)</title><rect x="12.7" y="789" width="8.1" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
349
|
+
<text x="15.70" y="799.5"></text>
|
350
|
+
</g>
|
351
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
352
|
+
<title>java/awt/Container.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="117" width="10.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
|
353
|
+
<text x="353.61" y="127.5"></text>
|
354
|
+
</g>
|
355
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
356
|
+
<title>Parse::do_one_bytecode() (9 samples, 0.69%)</title><rect x="889.8" y="613" width="8.1" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
|
357
|
+
<text x="892.83" y="623.5"></text>
|
358
|
+
</g>
|
359
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
360
|
+
<title>PhaseChaitin::post_allocate_copy_removal() (15 samples, 1.14%)</title><rect x="740.6" y="741" width="13.5" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
|
361
|
+
<text x="743.65" y="751.5"></text>
|
362
|
+
</g>
|
363
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
364
|
+
<title>ip_output (10 samples, 0.76%)</title><rect x="484.5" y="197" width="9.0" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
|
365
|
+
<text x="487.52" y="207.5"></text>
|
366
|
+
</g>
|
367
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
368
|
+
<title>sun/awt/GlobalCursorManager.updateCursorImmediately (10 samples, 0.76%)</title><rect x="484.5" y="533" width="9.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
|
369
|
+
<text x="487.52" y="543.5"></text>
|
370
|
+
</g>
|
371
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
372
|
+
<title>TableDemo.createTable (16 samples, 1.22%)</title><rect x="142.1" y="773" width="14.4" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
|
373
|
+
<text x="145.11" y="783.5"></text>
|
374
|
+
</g>
|
375
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
376
|
+
<title>sun/font/FontDesignMetrics.<init> (9 samples, 0.69%)</title><rect x="298.5" y="597" width="8.1" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
377
|
+
<text x="301.48" y="607.5"></text>
|
378
|
+
</g>
|
379
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
380
|
+
<title>javax/swing/JTree.updateUI (9 samples, 0.69%)</title><rect x="166.4" y="693" width="8.1" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
381
|
+
<text x="169.37" y="703.5"></text>
|
382
|
+
</g>
|
383
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
384
|
+
<title>java/awt/Frame.addNotify (59 samples, 4.49%)</title><rect x="346.1" y="629" width="53.0" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
385
|
+
<text x="349.12" y="639.5">java/..</text>
|
386
|
+
</g>
|
387
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
388
|
+
<title>java/awt/Component.dispatchEvent (45 samples, 3.43%)</title><rect x="497.1" y="613" width="40.4" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
|
389
|
+
<text x="500.10" y="623.5">jav..</text>
|
390
|
+
</g>
|
391
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
392
|
+
<title>JvmtiExport::post_compiled_method_load(nmethod*) (8 samples, 0.61%)</title><rect x="1075.9" y="805" width="7.2" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
|
393
|
+
<text x="1078.86" y="815.5"></text>
|
394
|
+
</g>
|
395
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
396
|
+
<title>javax/swing/plaf/basic/BasicButtonUI.getPreferredSize (12 samples, 0.91%)</title><rect x="297.6" y="677" width="10.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
|
397
|
+
<text x="300.59" y="687.5"></text>
|
398
|
+
</g>
|
399
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
400
|
+
<title>javax/swing/JTextField.<init> (12 samples, 0.91%)</title><rect x="260.7" y="837" width="10.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
401
|
+
<text x="263.74" y="847.5"></text>
|
402
|
+
</g>
|
403
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
404
|
+
<title>java/awt/GraphicsCallback$PaintCallback.run (8 samples, 0.61%)</title><rect x="433.3" y="469" width="7.2" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
|
405
|
+
<text x="436.29" y="479.5"></text>
|
406
|
+
</g>
|
407
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
408
|
+
<title>ip_finish_output2 (10 samples, 0.76%)</title><rect x="484.5" y="165" width="9.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
|
409
|
+
<text x="487.52" y="175.5"></text>
|
410
|
+
</g>
|
411
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
412
|
+
<title>SwingSet2$DemoLoadThread.run (184 samples, 14.01%)</title><rect x="11.8" y="901" width="165.4" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
413
|
+
<text x="14.80" y="911.5">SwingSet2$DemoLoadThr..</text>
|
414
|
+
</g>
|
415
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
416
|
+
<title>javax/swing/JInternalFrame$JDesktopIcon.updateUI (14 samples, 1.07%)</title><rect x="297.6" y="773" width="12.6" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
417
|
+
<text x="300.59" y="783.5"></text>
|
418
|
+
</g>
|
419
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
420
|
+
<title>javax/swing/JComponent.setUI (8 samples, 0.61%)</title><rect x="264.3" y="773" width="7.2" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
|
421
|
+
<text x="267.33" y="783.5"></text>
|
422
|
+
</g>
|
423
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
424
|
+
<title>inet_sendmsg (10 samples, 0.76%)</title><rect x="484.5" y="325" width="9.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
|
425
|
+
<text x="487.52" y="335.5"></text>
|
426
|
+
</g>
|
427
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
428
|
+
<title>java/awt/EventQueue$3.run (48 samples, 3.66%)</title><rect x="497.1" y="677" width="43.1" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
429
|
+
<text x="500.10" y="687.5">java..</text>
|
430
|
+
</g>
|
431
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
432
|
+
<title>Compile::fill_buffer(CodeBuffer*, unsigned int*) (8 samples, 0.61%)</title><rect x="621.1" y="757" width="7.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
|
433
|
+
<text x="624.12" y="767.5"></text>
|
434
|
+
</g>
|
435
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
436
|
+
<title>PhaseIterGVN::transform_old(Node*) (9 samples, 0.69%)</title><rect x="871.9" y="741" width="8.0" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
|
437
|
+
<text x="874.86" y="751.5"></text>
|
438
|
+
</g>
|
439
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
440
|
+
<title>java/awt/EventQueue$4.run (48 samples, 3.66%)</title><rect x="497.1" y="741" width="43.1" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
|
441
|
+
<text x="500.10" y="751.5">java..</text>
|
442
|
+
</g>
|
443
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
444
|
+
<title>javax/swing/JScrollPane.<init> (8 samples, 0.61%)</title><rect x="246.4" y="837" width="7.1" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
|
445
|
+
<text x="249.36" y="847.5"></text>
|
446
|
+
</g>
|
447
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
448
|
+
<title>java/awt/Component.dispatchEventImpl (28 samples, 2.13%)</title><rect x="510.6" y="453" width="25.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
|
449
|
+
<text x="513.58" y="463.5">j..</text>
|
450
|
+
</g>
|
451
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
452
|
+
<title>sun/awt/GlobalCursorManager._updateCursor (10 samples, 0.76%)</title><rect x="484.5" y="517" width="9.0" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
|
453
|
+
<text x="487.52" y="527.5"></text>
|
454
|
+
</g>
|
455
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
456
|
+
<title>sun/awt/image/JPEGImageDecoder.produceImage (36 samples, 2.74%)</title><rect x="1137.0" y="853" width="32.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
457
|
+
<text x="1139.98" y="863.5">su..</text>
|
458
|
+
</g>
|
459
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
460
|
+
<title>GraphBuilder::iterate_all_blocks(bool) (33 samples, 2.51%)</title><rect x="927.6" y="677" width="29.6" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
|
461
|
+
<text x="930.58" y="687.5">Gr..</text>
|
462
|
+
</g>
|
463
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
464
|
+
<title>java/awt/Container.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="485" width="12.6" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
|
465
|
+
<text x="351.81" y="495.5"></text>
|
466
|
+
</g>
|
467
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
468
|
+
<title>java/lang/reflect/Constructor.newInstance (174 samples, 13.25%)</title><rect x="20.8" y="853" width="156.4" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
|
469
|
+
<text x="23.78" y="863.5">java/lang/reflect/Co..</text>
|
470
|
+
</g>
|
471
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
472
|
+
<title>javax/swing/JTable.<init> (8 samples, 0.61%)</title><rect x="146.6" y="741" width="7.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
|
473
|
+
<text x="149.60" y="751.5"></text>
|
474
|
+
</g>
|
475
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
476
|
+
<title>javax/swing/JInternalFrame$JDesktopIcon.<init> (14 samples, 1.07%)</title><rect x="297.6" y="789" width="12.6" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
|
477
|
+
<text x="300.59" y="799.5"></text>
|
478
|
+
</g>
|
479
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
480
|
+
<title>javax/swing/plaf/nimbus/NimbusDefaults.<init> (28 samples, 2.13%)</title><rect x="182.6" y="709" width="25.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
|
481
|
+
<text x="185.55" y="719.5">j..</text>
|
482
|
+
</g>
|
483
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
484
|
+
<title>java/awt/Window.paint (8 samples, 0.61%)</title><rect x="433.3" y="533" width="7.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
|
485
|
+
<text x="436.29" y="543.5"></text>
|
486
|
+
</g>
|
487
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
488
|
+
<title>PhaseCFG::global_code_motion() (9 samples, 0.69%)</title><rect x="645.4" y="741" width="8.1" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
|
489
|
+
<text x="648.38" y="751.5"></text>
|
490
|
+
</g>
|
491
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
492
|
+
<title>javax/swing/JRootPane.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="277" width="10.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
|
493
|
+
<text x="353.61" y="287.5"></text>
|
494
|
+
</g>
|
495
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
496
|
+
<title>do_readv_writev (10 samples, 0.76%)</title><rect x="484.5" y="373" width="9.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
|
497
|
+
<text x="487.52" y="383.5"></text>
|
498
|
+
</g>
|
499
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
500
|
+
<title>javax/swing/text/JTextComponent.setUI (8 samples, 0.61%)</title><rect x="264.3" y="789" width="7.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
501
|
+
<text x="267.33" y="799.5"></text>
|
502
|
+
</g>
|
503
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
504
|
+
<title>GraphBuilder::GraphBuilder(Compilation*, IRScope*) (42 samples, 3.20%)</title><rect x="919.5" y="693" width="37.7" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
|
505
|
+
<text x="922.49" y="703.5">Gra..</text>
|
506
|
+
</g>
|
507
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
508
|
+
<title>InstanceKlass::link_class_impl(instanceKlassHandle, bool, Thread*) (11 samples, 0.84%)</title><rect x="185.2" y="517" width="9.9" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
|
509
|
+
<text x="188.25" y="527.5"></text>
|
510
|
+
</g>
|
511
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
512
|
+
<title>DemoModule.<init> (9 samples, 0.69%)</title><rect x="130.4" y="773" width="8.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
|
513
|
+
<text x="133.43" y="783.5"></text>
|
514
|
+
</g>
|
515
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
516
|
+
<title>ParseGenerator::generate(JVMState*) (19 samples, 1.45%)</title><rect x="885.3" y="773" width="17.1" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
|
517
|
+
<text x="888.34" y="783.5"></text>
|
518
|
+
</g>
|
519
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
520
|
+
<title>sun/awt/image/ImageDecoder.setPixels (11 samples, 0.84%)</title><rect x="1116.3" y="789" width="9.9" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
|
521
|
+
<text x="1119.31" y="799.5"></text>
|
522
|
+
</g>
|
523
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
524
|
+
<title>java/security/AccessController.doPrivileged (48 samples, 3.66%)</title><rect x="497.1" y="693" width="43.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
|
525
|
+
<text x="500.10" y="703.5">java..</text>
|
526
|
+
</g>
|
527
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
528
|
+
<title>GraphBuilder::try_inline_full(ciMethod*, bool, Bytecodes::Code, Instruction*) (20 samples, 1.52%)</title><rect x="931.2" y="613" width="17.9" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
|
529
|
+
<text x="934.17" y="623.5"></text>
|
530
|
+
</g>
|
531
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
532
|
+
<title>PhaseChaitin::gather_lrg_masks(bool) (9 samples, 0.69%)</title><rect x="731.7" y="741" width="8.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
|
533
|
+
<text x="734.66" y="751.5"></text>
|
534
|
+
</g>
|
535
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
536
|
+
<title>InternalFrameDemo.createInternalFrame (11 samples, 0.84%)</title><rect x="282.3" y="837" width="9.9" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
|
537
|
+
<text x="285.31" y="847.5"></text>
|
538
|
+
</g>
|
539
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
540
|
+
<title>sun/awt/X11/XBaseWindow.init (31 samples, 2.36%)</title><rect x="371.3" y="469" width="27.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
|
541
|
+
<text x="374.28" y="479.5">s..</text>
|
542
|
+
</g>
|
543
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
544
|
+
<title>ButtonDemo.addButtons (23 samples, 1.75%)</title><rect x="20.8" y="773" width="20.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
545
|
+
<text x="23.78" y="783.5"></text>
|
546
|
+
</g>
|
547
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
548
|
+
<title>JvmtiEnv::GetClassMethods(oopDesc*, int*, _jmethodID***) (9 samples, 0.69%)</title><rect x="186.1" y="469" width="8.1" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
|
549
|
+
<text x="189.15" y="479.5"></text>
|
550
|
+
</g>
|
551
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
552
|
+
<title>__tcp_push_pending_frames (10 samples, 0.76%)</title><rect x="484.5" y="277" width="9.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
|
553
|
+
<text x="487.52" y="287.5"></text>
|
554
|
+
</g>
|
555
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
556
|
+
<title>Parse::do_one_block() (9 samples, 0.69%)</title><rect x="889.8" y="629" width="8.1" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
|
557
|
+
<text x="892.83" y="639.5"></text>
|
558
|
+
</g>
|
559
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
560
|
+
<title>sun/awt/image/JPEGImageDecoder.readImage (30 samples, 2.28%)</title><rect x="1142.4" y="837" width="26.9" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
561
|
+
<text x="1145.37" y="847.5">s..</text>
|
562
|
+
</g>
|
563
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
564
|
+
<title>ServiceThread::service_thread_entry(JavaThread*, Thread*) (15 samples, 1.14%)</title><rect x="1075.9" y="837" width="13.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
|
565
|
+
<text x="1078.86" y="847.5"></text>
|
566
|
+
</g>
|
567
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
568
|
+
<title>java/awt/Container.paint (8 samples, 0.61%)</title><rect x="433.3" y="517" width="7.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
569
|
+
<text x="436.29" y="527.5"></text>
|
570
|
+
</g>
|
571
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
572
|
+
<title>GraphBuilder::invoke(Bytecodes::Code) (9 samples, 0.69%)</title><rect x="933.9" y="565" width="8.1" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
|
573
|
+
<text x="936.87" y="575.5"></text>
|
574
|
+
</g>
|
575
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
576
|
+
<title>javax/swing/plaf/nimbus/NimbusDefaults.register (24 samples, 1.83%)</title><rect x="183.5" y="693" width="21.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
|
577
|
+
<text x="186.45" y="703.5">j..</text>
|
578
|
+
</g>
|
579
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
580
|
+
<title>java/awt/Window.pack (74 samples, 5.64%)</title><rect x="333.5" y="645" width="66.5" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
|
581
|
+
<text x="336.53" y="655.5">java/aw..</text>
|
582
|
+
</g>
|
583
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
584
|
+
<title>Compilation::emit_code_epilog(LIR_Assembler*) (8 samples, 0.61%)</title><rect x="964.4" y="725" width="7.2" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
|
585
|
+
<text x="967.42" y="735.5"></text>
|
586
|
+
</g>
|
587
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
588
|
+
<title>Compilation::Compilation(AbstractCompiler*, ciEnv*, ciMethod*, int, BufferBlob*) (160 samples, 12.19%)</title><rect x="913.2" y="789" width="143.8" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
|
589
|
+
<text x="916.20" y="799.5">Compilation::Compi..</text>
|
590
|
+
</g>
|
591
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
592
|
+
<title>javax/swing/JComponent.paintChildren (20 samples, 1.52%)</title><rect x="455.8" y="389" width="17.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
593
|
+
<text x="458.76" y="399.5"></text>
|
594
|
+
</g>
|
595
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
596
|
+
<title>PhaseIdealLoop::build_and_optimize(bool, bool) (85 samples, 6.47%)</title><rect x="795.5" y="757" width="76.4" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
597
|
+
<text x="798.47" y="767.5">PhaseIde..</text>
|
598
|
+
</g>
|
599
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
600
|
+
<title>java/lang/Class.forName (10 samples, 0.76%)</title><rect x="11.8" y="853" width="9.0" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
601
|
+
<text x="14.80" y="863.5"></text>
|
602
|
+
</g>
|
603
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
604
|
+
<title>find_class_from_class_loader(JNIEnv_*, Symbol*, unsigned char, Handle, Handle, unsigned char, Thread*) (11 samples, 0.84%)</title><rect x="185.2" y="565" width="9.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
|
605
|
+
<text x="188.25" y="575.5"></text>
|
606
|
+
</g>
|
607
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
608
|
+
<title>javax/swing/plaf/metal/MetalDesktopIconUI.installComponents (14 samples, 1.07%)</title><rect x="297.6" y="709" width="12.6" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
609
|
+
<text x="300.59" y="719.5"></text>
|
610
|
+
</g>
|
611
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
612
|
+
<title>javax/swing/RepaintManager$4.run (53 samples, 4.04%)</title><rect x="433.3" y="549" width="47.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
|
613
|
+
<text x="436.29" y="559.5">java..</text>
|
614
|
+
</g>
|
615
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
616
|
+
<title>sun/awt/X11/XInputMethod.openXIMNative (17 samples, 1.29%)</title><rect x="520.5" y="293" width="15.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
|
617
|
+
<text x="523.46" y="303.5"></text>
|
618
|
+
</g>
|
619
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
620
|
+
<title>javax/swing/AbstractButton.init (11 samples, 0.84%)</title><rect x="31.6" y="725" width="9.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
|
621
|
+
<text x="34.57" y="735.5"></text>
|
622
|
+
</g>
|
623
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
624
|
+
<title>sun/awt/X11/XBaseWindow.dispatchEvent (27 samples, 2.06%)</title><rect x="551.9" y="821" width="24.3" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
|
625
|
+
<text x="554.92" y="831.5">s..</text>
|
626
|
+
</g>
|
627
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
628
|
+
<title>Monitor::IWait(Thread*, long) (8 samples, 0.61%)</title><rect x="1061.5" y="789" width="7.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
|
629
|
+
<text x="1064.49" y="799.5"></text>
|
630
|
+
</g>
|
631
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
632
|
+
<title>InterpreterRuntime::_new(JavaThread*, ConstantPool*, int) (10 samples, 0.76%)</title><rect x="361.4" y="597" width="9.0" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
|
633
|
+
<text x="364.39" y="607.5"></text>
|
634
|
+
</g>
|
635
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
636
|
+
<title>SwingSet2.createLafMenuItem (31 samples, 2.36%)</title><rect x="181.7" y="837" width="27.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
|
637
|
+
<text x="184.65" y="847.5">S..</text>
|
638
|
+
</g>
|
639
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
640
|
+
<title>sun/java2d/xr/XRSurfaceData.createData (10 samples, 0.76%)</title><rect x="378.5" y="341" width="9.0" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
|
641
|
+
<text x="381.47" y="351.5"></text>
|
642
|
+
</g>
|
643
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
644
|
+
<title>jvmti_GetClassMethods (9 samples, 0.69%)</title><rect x="186.1" y="485" width="8.1" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
|
645
|
+
<text x="189.15" y="495.5"></text>
|
646
|
+
</g>
|
647
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
648
|
+
<title>javax/swing/plaf/basic/BasicTextUI.installUI (8 samples, 0.61%)</title><rect x="264.3" y="757" width="7.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
|
649
|
+
<text x="267.33" y="767.5"></text>
|
650
|
+
</g>
|
651
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
652
|
+
<title>java/awt/Component.updateCursorImmediately (10 samples, 0.76%)</title><rect x="484.5" y="565" width="9.0" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
653
|
+
<text x="487.52" y="575.5"></text>
|
654
|
+
</g>
|
655
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
656
|
+
<title>javax/swing/JComponent.paintToOffscreen (34 samples, 2.59%)</title><rect x="450.4" y="469" width="30.5" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
|
657
|
+
<text x="453.37" y="479.5">ja..</text>
|
658
|
+
</g>
|
659
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
660
|
+
<title>SwingSet2.<init> (169 samples, 12.87%)</title><rect x="177.2" y="885" width="151.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
661
|
+
<text x="180.16" y="895.5">SwingSet2.<init></text>
|
662
|
+
</g>
|
663
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
664
|
+
<title>TabbedPaneDemo.<init> (8 samples, 0.61%)</title><rect x="123.2" y="789" width="7.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
|
665
|
+
<text x="126.24" y="799.5"></text>
|
666
|
+
</g>
|
667
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
668
|
+
<title>javax/swing/JComponent.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="469" width="12.6" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
|
669
|
+
<text x="351.81" y="479.5"></text>
|
670
|
+
</g>
|
671
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
672
|
+
<title>Parse::do_all_blocks() (9 samples, 0.69%)</title><rect x="889.8" y="645" width="8.1" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
|
673
|
+
<text x="892.83" y="655.5"></text>
|
674
|
+
</g>
|
675
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
676
|
+
<title>javax/swing/RepaintManager$3.run (13 samples, 0.99%)</title><rect x="484.5" y="613" width="11.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
677
|
+
<text x="487.52" y="623.5"></text>
|
678
|
+
</g>
|
679
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
680
|
+
<title>javax/swing/JComboBox.setUI (8 samples, 0.61%)</title><rect x="56.7" y="693" width="7.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
|
681
|
+
<text x="59.73" y="703.5"></text>
|
682
|
+
</g>
|
683
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
684
|
+
<title>javax/swing/JComponent.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="405" width="12.6" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
|
685
|
+
<text x="351.81" y="415.5"></text>
|
686
|
+
</g>
|
687
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
688
|
+
<title>sock_write_iter (10 samples, 0.76%)</title><rect x="484.5" y="357" width="9.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
|
689
|
+
<text x="487.52" y="367.5"></text>
|
690
|
+
</g>
|
691
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
692
|
+
<title>javax/swing/JComponent.paintChildren (11 samples, 0.84%)</title><rect x="455.8" y="69" width="9.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
|
693
|
+
<text x="458.76" y="79.5"></text>
|
694
|
+
</g>
|
695
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
696
|
+
<title>sun/awt/image/GifImageDecoder.parseImage (13 samples, 0.99%)</title><rect x="1114.5" y="821" width="11.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
|
697
|
+
<text x="1117.51" y="831.5"></text>
|
698
|
+
</g>
|
699
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
700
|
+
<title>javax/swing/JButton.<init> (11 samples, 0.84%)</title><rect x="31.6" y="757" width="9.9" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
701
|
+
<text x="34.57" y="767.5"></text>
|
702
|
+
</g>
|
703
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
704
|
+
<title>sun/awt/image/ImageFetcher.run (88 samples, 6.70%)</title><rect x="1109.1" y="901" width="79.1" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
705
|
+
<text x="1112.12" y="911.5">sun/awt/i..</text>
|
706
|
+
</g>
|
707
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
708
|
+
<title>sun/awt/image/ImageFetcher.fetchloop (88 samples, 6.70%)</title><rect x="1109.1" y="885" width="79.1" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
|
709
|
+
<text x="1112.12" y="895.5">sun/awt/i..</text>
|
710
|
+
</g>
|
711
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
712
|
+
<title>[unknown] (10 samples, 0.76%)</title><rect x="484.5" y="453" width="9.0" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
|
713
|
+
<text x="487.52" y="463.5"></text>
|
714
|
+
</g>
|
715
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
716
|
+
<title>sun/font/CompositeStrike.getStrikeForSlot (8 samples, 0.61%)</title><rect x="298.5" y="549" width="7.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
|
717
|
+
<text x="301.48" y="559.5"></text>
|
718
|
+
</g>
|
719
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
720
|
+
<title>sun/awt/X11InputMethod.<init> (17 samples, 1.29%)</title><rect x="520.5" y="341" width="15.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
|
721
|
+
<text x="523.46" y="351.5"></text>
|
722
|
+
</g>
|
723
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
724
|
+
<title>javax/swing/JComponent.paintChildren (11 samples, 0.84%)</title><rect x="455.8" y="37" width="9.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
|
725
|
+
<text x="458.76" y="47.5"></text>
|
726
|
+
</g>
|
727
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
728
|
+
<title>java/awt/Container.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="421" width="12.6" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
|
729
|
+
<text x="351.81" y="431.5"></text>
|
730
|
+
</g>
|
731
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
732
|
+
<title>javax/swing/text/html/HTMLEditorKit.createDefaultDocument (15 samples, 1.14%)</title><rect x="228.4" y="805" width="13.5" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
|
733
|
+
<text x="231.39" y="815.5"></text>
|
734
|
+
</g>
|
735
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
736
|
+
<title>java/awt/EventQueue$4.run (48 samples, 3.66%)</title><rect x="497.1" y="757" width="43.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
737
|
+
<text x="500.10" y="767.5">java..</text>
|
738
|
+
</g>
|
739
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
740
|
+
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance0 (174 samples, 13.25%)</title><rect x="20.8" y="805" width="156.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
|
741
|
+
<text x="23.78" y="815.5">sun/reflect/NativeCo..</text>
|
742
|
+
</g>
|
743
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
744
|
+
<title>java/awt/Container.dispatchEventImpl (43 samples, 3.27%)</title><rect x="498.0" y="581" width="38.6" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
745
|
+
<text x="501.00" y="591.5">jav..</text>
|
746
|
+
</g>
|
747
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
748
|
+
<title>sun/awt/im/InputContext.getInputMethod (19 samples, 1.45%)</title><rect x="518.7" y="405" width="17.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
|
749
|
+
<text x="521.67" y="415.5"></text>
|
750
|
+
</g>
|
751
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
752
|
+
<title>javax/swing/BufferStrategyPaintManager.paint (8 samples, 0.61%)</title><rect x="433.3" y="421" width="7.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
753
|
+
<text x="436.29" y="431.5"></text>
|
754
|
+
</g>
|
755
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
756
|
+
<title>ip_local_out (10 samples, 0.76%)</title><rect x="484.5" y="213" width="9.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
|
757
|
+
<text x="487.52" y="223.5"></text>
|
758
|
+
</g>
|
759
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
760
|
+
<title>javax/swing/JComponent.paint (13 samples, 0.99%)</title><rect x="455.8" y="133" width="11.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
|
761
|
+
<text x="458.76" y="143.5"></text>
|
762
|
+
</g>
|
763
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
764
|
+
<title>java/awt/EventDispatchThread.run (235 samples, 17.90%)</title><rect x="333.5" y="901" width="211.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
|
765
|
+
<text x="336.53" y="911.5">java/awt/EventDispatchThrea..</text>
|
766
|
+
</g>
|
767
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
768
|
+
<title>CompileQueue::get() (15 samples, 1.14%)</title><rect x="1061.5" y="821" width="13.5" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
|
769
|
+
<text x="1064.49" y="831.5"></text>
|
770
|
+
</g>
|
771
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
772
|
+
<title>java/security/AccessController.doPrivileged (8 samples, 0.61%)</title><rect x="13.6" y="757" width="7.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
773
|
+
<text x="16.59" y="767.5"></text>
|
774
|
+
</g>
|
775
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
776
|
+
<title>sun/reflect/DelegatingConstructorAccessorImpl.newInstance (28 samples, 2.13%)</title><rect x="182.6" y="773" width="25.1" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
|
777
|
+
<text x="185.55" y="783.5">s..</text>
|
778
|
+
</g>
|
779
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
780
|
+
<title>sun/font/FontDesignMetrics.getMetrics (9 samples, 0.69%)</title><rect x="298.5" y="613" width="8.1" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
|
781
|
+
<text x="301.48" y="623.5"></text>
|
782
|
+
</g>
|
783
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
784
|
+
<title>javax/swing/JComponent.getFontMetrics (10 samples, 0.76%)</title><rect x="297.6" y="645" width="9.0" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
785
|
+
<text x="300.59" y="655.5"></text>
|
786
|
+
</g>
|
787
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
788
|
+
<title>javax/swing/RepaintManager$4.run (53 samples, 4.04%)</title><rect x="433.3" y="565" width="47.6" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
|
789
|
+
<text x="436.29" y="575.5">java..</text>
|
790
|
+
</g>
|
791
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
792
|
+
<title>java/awt/LightweightDispatcher.retargetMouseEnterExit (29 samples, 2.21%)</title><rect x="509.7" y="517" width="26.0" height="15.0" fill="rgb(75,222,75)" rx="2" ry="2" />
|
793
|
+
<text x="512.68" y="527.5">j..</text>
|
794
|
+
</g>
|
795
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
796
|
+
<title>PhaseIFG::SquareUp() (8 samples, 0.61%)</title><rect x="758.6" y="741" width="7.2" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
|
797
|
+
<text x="761.62" y="751.5"></text>
|
798
|
+
</g>
|
799
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
800
|
+
<title>writev (10 samples, 0.76%)</title><rect x="484.5" y="437" width="9.0" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
|
801
|
+
<text x="487.52" y="447.5"></text>
|
802
|
+
</g>
|
803
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
804
|
+
<title>javax/swing/JComponent.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="501" width="12.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
805
|
+
<text x="351.81" y="511.5"></text>
|
806
|
+
</g>
|
807
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
808
|
+
<title>java/awt/LightweightDispatcher.trackMouseEnterExit (30 samples, 2.28%)</title><rect x="509.7" y="533" width="26.9" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
|
809
|
+
<text x="512.68" y="543.5">j..</text>
|
810
|
+
</g>
|
811
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
812
|
+
<title>javax/swing/RepaintManager.prePaintDirtyRegions (58 samples, 4.42%)</title><rect x="431.5" y="645" width="52.1" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
813
|
+
<text x="434.49" y="655.5">javax..</text>
|
814
|
+
</g>
|
815
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
816
|
+
<title>javax/swing/JEditorPane.access$300 (15 samples, 1.14%)</title><rect x="418.0" y="661" width="13.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
817
|
+
<text x="421.01" y="671.5"></text>
|
818
|
+
</g>
|
819
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
820
|
+
<title>javax/swing/plaf/basic/BasicGraphicsUtils.getPreferredButtonSize (12 samples, 0.91%)</title><rect x="297.6" y="661" width="10.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
|
821
|
+
<text x="300.59" y="671.5"></text>
|
822
|
+
</g>
|
823
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
824
|
+
<title>java/net/URLConnection.getContentEncoding (14 samples, 1.07%)</title><rect x="418.0" y="629" width="12.6" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
|
825
|
+
<text x="421.01" y="639.5"></text>
|
826
|
+
</g>
|
827
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
828
|
+
<title>DemoModule.loadSourceCode (9 samples, 0.69%)</title><rect x="130.4" y="757" width="8.1" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
829
|
+
<text x="133.43" y="767.5"></text>
|
830
|
+
</g>
|
831
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
832
|
+
<title>sun/awt/image/GifImageDecoder.produceImage (26 samples, 1.98%)</title><rect x="1113.6" y="853" width="23.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
|
833
|
+
<text x="1116.61" y="863.5">s..</text>
|
834
|
+
</g>
|
835
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
836
|
+
<title>javax/swing/JEditorPane$3.run (15 samples, 1.14%)</title><rect x="418.0" y="677" width="13.5" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
|
837
|
+
<text x="421.01" y="687.5"></text>
|
838
|
+
</g>
|
839
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
840
|
+
<title>tcp_sendmsg (10 samples, 0.76%)</title><rect x="484.5" y="309" width="9.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
|
841
|
+
<text x="487.52" y="319.5"></text>
|
842
|
+
</g>
|
843
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
844
|
+
<title>java/awt/im/InputContext.getInstance (8 samples, 0.61%)</title><rect x="511.5" y="341" width="7.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
|
845
|
+
<text x="514.48" y="351.5"></text>
|
846
|
+
</g>
|
847
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
848
|
+
<title>Matcher::xform(Node*, int) (14 samples, 1.07%)</title><rect x="630.1" y="741" width="12.6" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
|
849
|
+
<text x="633.11" y="751.5"></text>
|
850
|
+
</g>
|
851
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
852
|
+
<title>java/awt/Container.addNotify (16 samples, 1.22%)</title><rect x="347.0" y="549" width="14.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
|
853
|
+
<text x="350.01" y="559.5"></text>
|
854
|
+
</g>
|
855
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
856
|
+
<title>java/awt/Container.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="245" width="10.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
857
|
+
<text x="353.61" y="255.5"></text>
|
858
|
+
</g>
|
859
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
860
|
+
<title>JavaThread::thread_main_inner() (533 samples, 40.59%)</title><rect x="610.3" y="853" width="479.0" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
|
861
|
+
<text x="613.34" y="863.5">JavaThread::thread_main_inner()</text>
|
862
|
+
</g>
|
863
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
864
|
+
<title>sun/awt/X11/XWindowPeer.<init> (31 samples, 2.36%)</title><rect x="371.3" y="565" width="27.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
|
865
|
+
<text x="374.28" y="575.5">s..</text>
|
866
|
+
</g>
|
867
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
868
|
+
<title>java/net/URLClassLoader.defineClass (8 samples, 0.61%)</title><rect x="13.6" y="693" width="7.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
|
869
|
+
<text x="16.59" y="703.5"></text>
|
870
|
+
</g>
|
871
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
872
|
+
<title>javax/swing/JComponent.paint (8 samples, 0.61%)</title><rect x="433.3" y="261" width="7.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
|
873
|
+
<text x="436.29" y="271.5"></text>
|
874
|
+
</g>
|
875
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
876
|
+
<title>javax/swing/JComponent.paintChildren (18 samples, 1.37%)</title><rect x="455.8" y="357" width="16.1" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
877
|
+
<text x="458.76" y="367.5"></text>
|
878
|
+
</g>
|
879
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
880
|
+
<title>IR::IR(Compilation*, ciMethod*, int) (43 samples, 3.27%)</title><rect x="919.5" y="725" width="38.6" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
|
881
|
+
<text x="922.49" y="735.5">IR:..</text>
|
882
|
+
</g>
|
883
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
884
|
+
<title>javax/swing/JComponent.paintChildren (8 samples, 0.61%)</title><rect x="433.3" y="309" width="7.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
|
885
|
+
<text x="436.29" y="319.5"></text>
|
886
|
+
</g>
|
887
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
888
|
+
<title>javax/swing/JTree.<init> (12 samples, 0.91%)</title><rect x="163.7" y="725" width="10.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
|
889
|
+
<text x="166.68" y="735.5"></text>
|
890
|
+
</g>
|
891
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
892
|
+
<title>sun/awt/X11/XComponentPeer.updateCursorImmediately (9 samples, 0.69%)</title><rect x="498.0" y="533" width="8.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
|
893
|
+
<text x="501.00" y="543.5"></text>
|
894
|
+
</g>
|
895
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
896
|
+
<title>java/awt/Container.validateUnconditionally (13 samples, 0.99%)</title><rect x="334.4" y="629" width="11.7" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
|
897
|
+
<text x="337.43" y="639.5"></text>
|
898
|
+
</g>
|
899
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
900
|
+
<title>sun/net/www/protocol/file/FileURLConnection.initializeHeaders (14 samples, 1.07%)</title><rect x="418.0" y="581" width="12.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
|
901
|
+
<text x="421.01" y="591.5"></text>
|
902
|
+
</g>
|
903
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
904
|
+
<title>java/awt/EventQueue.dispatchEvent (230 samples, 17.52%)</title><rect x="333.5" y="805" width="206.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
|
905
|
+
<text x="336.53" y="815.5">java/awt/EventQueue.dispatc..</text>
|
906
|
+
</g>
|
907
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
908
|
+
<title>Compilation::compile_method() (160 samples, 12.19%)</title><rect x="913.2" y="773" width="143.8" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
|
909
|
+
<text x="916.20" y="783.5">Compilation::compi..</text>
|
910
|
+
</g>
|
911
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
912
|
+
<title>SwingSet2.loadDemos (184 samples, 14.01%)</title><rect x="11.8" y="885" width="165.4" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
|
913
|
+
<text x="14.80" y="895.5">SwingSet2.loadDemos</text>
|
914
|
+
</g>
|
915
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
916
|
+
<title>VMThread::loop() (20 samples, 1.52%)</title><rect x="1089.3" y="853" width="18.0" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
|
917
|
+
<text x="1092.35" y="863.5"></text>
|
918
|
+
</g>
|
919
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
920
|
+
<title>sun/awt/X11/XDecoratedPeer.handleConfigureNotifyEvent (17 samples, 1.29%)</title><rect x="558.2" y="805" width="15.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
921
|
+
<text x="561.21" y="815.5"></text>
|
922
|
+
</g>
|
923
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
924
|
+
<title>PhaseLive::compute(unsigned int) (11 samples, 0.84%)</title><rect x="767.6" y="741" width="9.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
|
925
|
+
<text x="770.61" y="751.5"></text>
|
926
|
+
</g>
|
927
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
928
|
+
<title>javax/swing/JComponent.addNotify (16 samples, 1.22%)</title><rect x="347.0" y="565" width="14.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
|
929
|
+
<text x="350.01" y="575.5"></text>
|
930
|
+
</g>
|
931
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
932
|
+
<title>java/awt/EventQueue.access$500 (182 samples, 13.86%)</title><rect x="333.5" y="725" width="163.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
933
|
+
<text x="336.53" y="735.5">java/awt/EventQueue.a..</text>
|
934
|
+
</g>
|
935
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
936
|
+
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance (28 samples, 2.13%)</title><rect x="182.6" y="757" width="25.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
|
937
|
+
<text x="185.55" y="767.5">s..</text>
|
938
|
+
</g>
|
939
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
940
|
+
<title>Parse::do_call() (14 samples, 1.07%)</title><rect x="886.2" y="693" width="12.6" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
|
941
|
+
<text x="889.24" y="703.5"></text>
|
942
|
+
</g>
|
943
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
944
|
+
<title>javax/swing/JComponent.paintImmediately (45 samples, 3.43%)</title><rect x="440.5" y="533" width="40.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
|
945
|
+
<text x="443.48" y="543.5">jav..</text>
|
946
|
+
</g>
|
947
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
948
|
+
<title>Compilation::build_hir() (57 samples, 4.34%)</title><rect x="913.2" y="741" width="51.2" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
949
|
+
<text x="916.20" y="751.5">Compi..</text>
|
950
|
+
</g>
|
951
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
952
|
+
<title>javax/swing/JTable.<init> (8 samples, 0.61%)</title><rect x="146.6" y="757" width="7.2" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
|
953
|
+
<text x="149.60" y="767.5"></text>
|
954
|
+
</g>
|
955
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
956
|
+
<title>InstanceKlass::initialize_impl(instanceKlassHandle, Thread*) (11 samples, 0.84%)</title><rect x="185.2" y="533" width="9.9" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
|
957
|
+
<text x="188.25" y="543.5"></text>
|
958
|
+
</g>
|
959
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
960
|
+
<title>PhaseChaitin::Split(unsigned int, ResourceArea*) (17 samples, 1.29%)</title><rect x="681.3" y="741" width="15.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
|
961
|
+
<text x="684.33" y="751.5"></text>
|
962
|
+
</g>
|
963
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
964
|
+
<title>sun/awt/X11/XFramePeer.<init> (31 samples, 2.36%)</title><rect x="371.3" y="597" width="27.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
|
965
|
+
<text x="374.28" y="607.5">s..</text>
|
966
|
+
</g>
|
967
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
968
|
+
<title>javax/swing/plaf/nimbus/NimbusDefaults$LazyStyle.<init> (23 samples, 1.75%)</title><rect x="184.3" y="677" width="20.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
|
969
|
+
<text x="187.35" y="687.5"></text>
|
970
|
+
</g>
|
971
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
972
|
+
<title>sun/awt/image/URLImageSource.getDecoder (21 samples, 1.60%)</title><rect x="1169.3" y="853" width="18.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
973
|
+
<text x="1172.33" y="863.5"></text>
|
974
|
+
</g>
|
975
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
976
|
+
<title>sun/awt/X11/XInputMethod.<init> (17 samples, 1.29%)</title><rect x="520.5" y="357" width="15.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
977
|
+
<text x="523.46" y="367.5"></text>
|
978
|
+
</g>
|
979
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
980
|
+
<title>TableDemo.<init> (33 samples, 2.51%)</title><rect x="130.4" y="789" width="29.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
|
981
|
+
<text x="133.43" y="799.5">Ta..</text>
|
982
|
+
</g>
|
983
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
984
|
+
<title>java/security/AccessController.doPrivileged (230 samples, 17.52%)</title><rect x="333.5" y="773" width="206.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
|
985
|
+
<text x="336.53" y="783.5">java/security/AccessControl..</text>
|
986
|
+
</g>
|
987
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
988
|
+
<title>javax/swing/BufferStrategyPaintManager.paint (43 samples, 3.27%)</title><rect x="442.3" y="485" width="38.6" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
989
|
+
<text x="445.28" y="495.5">jav..</text>
|
990
|
+
</g>
|
991
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
992
|
+
<title>SwingSet2.createMenus (37 samples, 2.82%)</title><rect x="179.9" y="853" width="33.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
|
993
|
+
<text x="182.86" y="863.5">Sw..</text>
|
994
|
+
</g>
|
995
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
996
|
+
<title>CompileBroker::invoke_compiler_on_method(CompileTask*) (501 samples, 38.16%)</title><rect x="611.2" y="821" width="450.3" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
997
|
+
<text x="614.23" y="831.5">CompileBroker::invoke_compiler_on_method(CompileTask*)</text>
|
998
|
+
</g>
|
999
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1000
|
+
<title>sun/awt/X11/XComponentPeer.addDropTarget (11 samples, 0.84%)</title><rect x="351.5" y="69" width="9.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
|
1001
|
+
<text x="354.51" y="79.5"></text>
|
1002
|
+
</g>
|
1003
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1004
|
+
<title>java/awt/EventDispatchThread.pumpEvents (235 samples, 17.90%)</title><rect x="333.5" y="885" width="211.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
|
1005
|
+
<text x="336.53" y="895.5">java/awt/EventDispatchThrea..</text>
|
1006
|
+
</g>
|
1007
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1008
|
+
<title>java/awt/LightweightDispatcher.processMouseEvent (34 samples, 2.59%)</title><rect x="506.1" y="549" width="30.5" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
1009
|
+
<text x="509.09" y="559.5">ja..</text>
|
1010
|
+
</g>
|
1011
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1012
|
+
<title>ciEnv::register_method(ciMethod*, int, CodeOffsets*, int, CodeBuffer*, int, OopMapSet*, ExceptionHandlerTable*, ImplicitExceptionTable*, AbstractCompiler*, int, bool, bool, RTMState) (15 samples, 1.14%)</title><rect x="1042.6" y="741" width="13.5" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
|
1013
|
+
<text x="1045.61" y="751.5"></text>
|
1014
|
+
</g>
|
1015
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1016
|
+
<title>JVM_FindClassFromCaller (11 samples, 0.84%)</title><rect x="185.2" y="581" width="9.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
|
1017
|
+
<text x="188.25" y="591.5"></text>
|
1018
|
+
</g>
|
1019
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1020
|
+
<title>javax/swing/JInternalFrame.<init> (11 samples, 0.84%)</title><rect x="282.3" y="821" width="9.9" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
|
1021
|
+
<text x="285.31" y="831.5"></text>
|
1022
|
+
</g>
|
1023
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1024
|
+
<title>Compile::Compile(ciEnv*, C2Compiler*, ciMethod*, int, bool, bool, bool) (332 samples, 25.29%)</title><rect x="611.2" y="789" width="298.4" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
|
1025
|
+
<text x="614.23" y="799.5">Compile::Compile(ciEnv*, C2Compiler*, ci..</text>
|
1026
|
+
</g>
|
1027
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1028
|
+
<title>Matcher::match_tree(Node const*) (8 samples, 0.61%)</title><rect x="633.7" y="725" width="7.2" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
|
1029
|
+
<text x="636.70" y="735.5"></text>
|
1030
|
+
</g>
|
1031
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1032
|
+
<title>ButtonDemo.<init> (34 samples, 2.59%)</title><rect x="20.8" y="789" width="30.5" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
|
1033
|
+
<text x="23.78" y="799.5">Bu..</text>
|
1034
|
+
</g>
|
1035
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1036
|
+
<title>java/awt/Container.validateTree (12 samples, 0.91%)</title><rect x="335.3" y="549" width="10.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
|
1037
|
+
<text x="338.33" y="559.5"></text>
|
1038
|
+
</g>
|
1039
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1040
|
+
<title>java/lang/Class.newInstance (28 samples, 2.13%)</title><rect x="182.6" y="805" width="25.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
|
1041
|
+
<text x="185.55" y="815.5">j..</text>
|
1042
|
+
</g>
|
1043
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1044
|
+
<title>javax/swing/JEditorPane.handleConnectionProperties (15 samples, 1.14%)</title><rect x="418.0" y="645" width="13.5" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
|
1045
|
+
<text x="421.01" y="655.5"></text>
|
1046
|
+
</g>
|
1047
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1048
|
+
<title>sun/awt/image/InputStreamImageSource.doFetch (83 samples, 6.32%)</title><rect x="1113.6" y="869" width="74.6" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
|
1049
|
+
<text x="1116.61" y="879.5">sun/awt/..</text>
|
1050
|
+
</g>
|
1051
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1052
|
+
<title>javax/swing/JComponent.setUI (14 samples, 1.07%)</title><rect x="297.6" y="741" width="12.6" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
1053
|
+
<text x="300.59" y="751.5"></text>
|
1054
|
+
</g>
|
1055
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1056
|
+
<title>javax/swing/plaf/basic/BasicComboBoxUI.installUI (8 samples, 0.61%)</title><rect x="56.7" y="661" width="7.2" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
|
1057
|
+
<text x="59.73" y="671.5"></text>
|
1058
|
+
</g>
|
1059
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1060
|
+
<title>java/awt/Container.validateTree (12 samples, 0.91%)</title><rect x="335.3" y="597" width="10.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
1061
|
+
<text x="338.33" y="607.5"></text>
|
1062
|
+
</g>
|
1063
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1064
|
+
<title>java/awt/Container.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="149" width="10.8" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
|
1065
|
+
<text x="353.61" y="159.5"></text>
|
1066
|
+
</g>
|
1067
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1068
|
+
<title>java/security/ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege (48 samples, 3.66%)</title><rect x="497.1" y="709" width="43.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
1069
|
+
<text x="500.10" y="719.5">java..</text>
|
1070
|
+
</g>
|
1071
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1072
|
+
<title>sun/awt/X11/XWindowPeer.updateIconImages (8 samples, 0.61%)</title><rect x="387.5" y="405" width="7.1" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
|
1073
|
+
<text x="390.46" y="415.5"></text>
|
1074
|
+
</g>
|
1075
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1076
|
+
<title>LinearScan::allocate_registers() (12 samples, 0.91%)</title><rect x="996.8" y="709" width="10.8" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
|
1077
|
+
<text x="999.78" y="719.5"></text>
|
1078
|
+
</g>
|
1079
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1080
|
+
<title>sun/awt/X11/XWindowPeer.recursivelySetIcon (8 samples, 0.61%)</title><rect x="387.5" y="389" width="7.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
|
1081
|
+
<text x="390.46" y="399.5"></text>
|
1082
|
+
</g>
|
1083
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1084
|
+
<title>[unknown] (22 samples, 1.68%)</title><rect x="1142.4" y="821" width="19.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
|
1085
|
+
<text x="1145.37" y="831.5"></text>
|
1086
|
+
</g>
|
1087
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1088
|
+
<title>e1000_xmit_frame [e1000] (10 samples, 0.76%)</title><rect x="484.5" y="85" width="9.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
|
1089
|
+
<text x="487.52" y="95.5"></text>
|
1090
|
+
</g>
|
1091
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1092
|
+
<title>PhaseIdealLoop::build_loop_late(VectorSet&, Node_List&, Node_Stack&) (56 samples, 4.27%)</title><rect x="809.8" y="741" width="50.4" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
|
1093
|
+
<text x="812.85" y="751.5">Phase..</text>
|
1094
|
+
</g>
|
1095
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1096
|
+
<title>Monitor::wait(bool, long, bool) (10 samples, 0.76%)</title><rect x="1061.5" y="805" width="9.0" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
|
1097
|
+
<text x="1064.49" y="815.5"></text>
|
1098
|
+
</g>
|
1099
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1100
|
+
<title>VM::loadMethodIDs(_jvmtiEnv*, _jclass*) (9 samples, 0.69%)</title><rect x="186.1" y="501" width="8.1" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
|
1101
|
+
<text x="189.15" y="511.5"></text>
|
1102
|
+
</g>
|
1103
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1104
|
+
<title>SafepointSynchronize::begin() (10 samples, 0.76%)</title><rect x="1091.1" y="837" width="9.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
|
1105
|
+
<text x="1094.14" y="847.5"></text>
|
1106
|
+
</g>
|
1107
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1108
|
+
<title>GraphBuilder::iterate_all_blocks(bool) (10 samples, 0.76%)</title><rect x="933.0" y="597" width="9.0" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
|
1109
|
+
<text x="935.97" y="607.5"></text>
|
1110
|
+
</g>
|
1111
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1112
|
+
<title>InstanceKlass::initialize(Thread*) (10 samples, 0.76%)</title><rect x="361.4" y="581" width="9.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
|
1113
|
+
<text x="364.39" y="591.5"></text>
|
1114
|
+
</g>
|
1115
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1116
|
+
<title>javax/swing/JComboBox.<init> (10 samples, 0.76%)</title><rect x="55.8" y="741" width="9.0" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
1117
|
+
<text x="58.83" y="751.5"></text>
|
1118
|
+
</g>
|
1119
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1120
|
+
<title>java/awt/Component.dispatchEvent (28 samples, 2.13%)</title><rect x="510.6" y="485" width="25.1" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
|
1121
|
+
<text x="513.58" y="495.5">j..</text>
|
1122
|
+
</g>
|
1123
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1124
|
+
<title>javax/swing/JComponent.addNotify (13 samples, 0.99%)</title><rect x="349.7" y="309" width="11.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
|
1125
|
+
<text x="352.71" y="319.5"></text>
|
1126
|
+
</g>
|
1127
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1128
|
+
<title>sun/awt/im/InputMethodContext.dispatchEvent (19 samples, 1.45%)</title><rect x="518.7" y="437" width="17.0" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
|
1129
|
+
<text x="521.67" y="447.5"></text>
|
1130
|
+
</g>
|
1131
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1132
|
+
<title>javax/swing/JComponent.paintChildren (8 samples, 0.61%)</title><rect x="433.3" y="341" width="7.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
1133
|
+
<text x="436.29" y="351.5"></text>
|
1134
|
+
</g>
|
1135
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1136
|
+
<title>java/awt/Container.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="357" width="12.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1137
|
+
<text x="351.81" y="367.5"></text>
|
1138
|
+
</g>
|
1139
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1140
|
+
<title>sun/awt/GlobalCursorManager.updateCursorImmediately (9 samples, 0.69%)</title><rect x="498.0" y="517" width="8.1" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
1141
|
+
<text x="501.00" y="527.5"></text>
|
1142
|
+
</g>
|
1143
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1144
|
+
<title>sun/awt/SunGraphicsCallback.runOneComponent (8 samples, 0.61%)</title><rect x="433.3" y="485" width="7.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
|
1145
|
+
<text x="436.29" y="495.5"></text>
|
1146
|
+
</g>
|
1147
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1148
|
+
<title>PhaseIdealLoop::build_loop_late_post(Node*) (48 samples, 3.66%)</title><rect x="816.1" y="725" width="43.2" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
|
1149
|
+
<text x="819.14" y="735.5">Phas..</text>
|
1150
|
+
</g>
|
1151
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1152
|
+
<title>javax/swing/RepaintManager$3.run (13 samples, 0.99%)</title><rect x="484.5" y="597" width="11.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
|
1153
|
+
<text x="487.52" y="607.5"></text>
|
1154
|
+
</g>
|
1155
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1156
|
+
<title>dev_queue_xmit (10 samples, 0.76%)</title><rect x="484.5" y="149" width="9.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
|
1157
|
+
<text x="487.52" y="159.5"></text>
|
1158
|
+
</g>
|
1159
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1160
|
+
<title>LinearScan::build_intervals() (10 samples, 0.76%)</title><rect x="1017.4" y="709" width="9.0" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
|
1161
|
+
<text x="1020.45" y="719.5"></text>
|
1162
|
+
</g>
|
1163
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1164
|
+
<title>java/awt/LightweightDispatcher.dispatchEvent (43 samples, 3.27%)</title><rect x="498.0" y="565" width="38.6" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
|
1165
|
+
<text x="501.00" y="575.5">jav..</text>
|
1166
|
+
</g>
|
1167
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1168
|
+
<title>javax/swing/plaf/nimbus/NimbusDefaults$LazyStyle.<init> (23 samples, 1.75%)</title><rect x="184.3" y="661" width="20.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
|
1169
|
+
<text x="187.35" y="671.5"></text>
|
1170
|
+
</g>
|
1171
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1172
|
+
<title>java/awt/Container.dispatchEventImpl (28 samples, 2.13%)</title><rect x="510.6" y="469" width="25.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
|
1173
|
+
<text x="513.58" y="479.5">j..</text>
|
1174
|
+
</g>
|
1175
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1176
|
+
<title>java/lang/reflect/Constructor.newInstance (28 samples, 2.13%)</title><rect x="182.6" y="789" width="25.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
|
1177
|
+
<text x="185.55" y="799.5">j..</text>
|
1178
|
+
</g>
|
1179
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1180
|
+
<title>sun/font/CompositeStrike.getFontMetrics (8 samples, 0.61%)</title><rect x="298.5" y="565" width="7.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
|
1181
|
+
<text x="301.48" y="575.5"></text>
|
1182
|
+
</g>
|
1183
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1184
|
+
<title>java_start(Thread*) (581 samples, 44.25%)</title><rect x="587.0" y="885" width="522.1" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
|
1185
|
+
<text x="589.97" y="895.5">java_start(Thread*)</text>
|
1186
|
+
</g>
|
1187
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1188
|
+
<title>sun/java2d/xr/XRGraphicsConfig.createSurfaceData (10 samples, 0.76%)</title><rect x="378.5" y="357" width="9.0" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
|
1189
|
+
<text x="381.47" y="367.5"></text>
|
1190
|
+
</g>
|
1191
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1192
|
+
<title>javax/swing/JComponent.paintChildren (15 samples, 1.14%)</title><rect x="455.8" y="325" width="13.4" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
|
1193
|
+
<text x="458.76" y="335.5"></text>
|
1194
|
+
</g>
|
1195
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1196
|
+
<title>sun/awt/GlobalCursorManager._updateCursor (9 samples, 0.69%)</title><rect x="498.0" y="501" width="8.1" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
|
1197
|
+
<text x="501.00" y="511.5"></text>
|
1198
|
+
</g>
|
1199
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1200
|
+
<title>start_thread (581 samples, 44.25%)</title><rect x="587.0" y="901" width="522.1" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
|
1201
|
+
<text x="589.97" y="911.5">start_thread</text>
|
1202
|
+
</g>
|
1203
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1204
|
+
<title>javax/swing/JComponent.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="197" width="10.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
|
1205
|
+
<text x="353.61" y="207.5"></text>
|
1206
|
+
</g>
|
1207
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1208
|
+
<title>sun/awt/image/GifImageDecoder.sendPixels (11 samples, 0.84%)</title><rect x="1116.3" y="805" width="9.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
|
1209
|
+
<text x="1119.31" y="815.5"></text>
|
1210
|
+
</g>
|
1211
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1212
|
+
<title>Compile::Code_Gen() (188 samples, 14.32%)</title><rect x="612.1" y="773" width="169.0" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
|
1213
|
+
<text x="615.13" y="783.5">Compile::Code_Gen()</text>
|
1214
|
+
</g>
|
1215
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1216
|
+
<title>[unknown] (18 samples, 1.37%)</title><rect x="1144.2" y="773" width="16.1" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
|
1217
|
+
<text x="1147.17" y="783.5"></text>
|
1218
|
+
</g>
|
1219
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1220
|
+
<title>ListDemo.<init> (10 samples, 0.76%)</title><rect x="84.6" y="789" width="9.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
|
1221
|
+
<text x="87.59" y="799.5"></text>
|
1222
|
+
</g>
|
1223
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1224
|
+
<title>javax/swing/JComponent.paint (8 samples, 0.61%)</title><rect x="433.3" y="325" width="7.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
|
1225
|
+
<text x="436.29" y="335.5"></text>
|
1226
|
+
</g>
|
1227
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1228
|
+
<title>java/awt/EventQueue.dispatchEventImpl (48 samples, 3.66%)</title><rect x="497.1" y="629" width="43.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
1229
|
+
<text x="500.10" y="639.5">java..</text>
|
1230
|
+
</g>
|
1231
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1232
|
+
<title>javax/swing/JButton.<init> (11 samples, 0.84%)</title><rect x="31.6" y="741" width="9.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
|
1233
|
+
<text x="34.57" y="751.5"></text>
|
1234
|
+
</g>
|
1235
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1236
|
+
<title>JavaThread::run() (533 samples, 40.59%)</title><rect x="610.3" y="869" width="479.0" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
|
1237
|
+
<text x="613.34" y="879.5">JavaThread::run()</text>
|
1238
|
+
</g>
|
1239
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1240
|
+
<title>javax/swing/text/JTextComponent.<init> (12 samples, 0.91%)</title><rect x="260.7" y="821" width="10.8" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
1241
|
+
<text x="263.74" y="831.5"></text>
|
1242
|
+
</g>
|
1243
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1244
|
+
<title>javax/swing/JComponent.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="133" width="10.8" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
|
1245
|
+
<text x="353.61" y="143.5"></text>
|
1246
|
+
</g>
|
1247
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1248
|
+
<title>javax/swing/JLayeredPane.paint (13 samples, 0.99%)</title><rect x="455.8" y="213" width="11.6" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
|
1249
|
+
<text x="458.76" y="223.5"></text>
|
1250
|
+
</g>
|
1251
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1252
|
+
<title>javax/swing/JComponent.paint (18 samples, 1.37%)</title><rect x="455.8" y="341" width="16.1" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
|
1253
|
+
<text x="458.76" y="351.5"></text>
|
1254
|
+
</g>
|
1255
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1256
|
+
<title>sun/awt/X11/XGlobalCursorManager.setCursor (10 samples, 0.76%)</title><rect x="484.5" y="501" width="9.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
|
1257
|
+
<text x="487.52" y="511.5"></text>
|
1258
|
+
</g>
|
1259
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1260
|
+
<title>Parse::Parse(JVMState*, ciMethod*, float) (9 samples, 0.69%)</title><rect x="889.8" y="661" width="8.1" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
|
1261
|
+
<text x="892.83" y="671.5"></text>
|
1262
|
+
</g>
|
1263
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1264
|
+
<title>java/net/URLClassLoader.findClass (8 samples, 0.61%)</title><rect x="13.6" y="773" width="7.2" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
|
1265
|
+
<text x="16.59" y="783.5"></text>
|
1266
|
+
</g>
|
1267
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1268
|
+
<title>java/awt/LightweightDispatcher.retargetMouseEvent (29 samples, 2.21%)</title><rect x="509.7" y="501" width="26.0" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
1269
|
+
<text x="512.68" y="511.5">j..</text>
|
1270
|
+
</g>
|
1271
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1272
|
+
<title>Parse::do_all_blocks() (18 samples, 1.37%)</title><rect x="886.2" y="741" width="16.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
|
1273
|
+
<text x="889.24" y="751.5"></text>
|
1274
|
+
</g>
|
1275
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1276
|
+
<title>javax/swing/AbstractButton.setUI (10 samples, 0.76%)</title><rect x="31.6" y="693" width="9.0" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
1277
|
+
<text x="34.57" y="703.5"></text>
|
1278
|
+
</g>
|
1279
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1280
|
+
<title>javax/swing/plaf/basic/BasicDesktopIconUI.installUI (14 samples, 1.07%)</title><rect x="297.6" y="725" width="12.6" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
1281
|
+
<text x="300.59" y="735.5"></text>
|
1282
|
+
</g>
|
1283
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1284
|
+
<title>javax/swing/RepaintManager.paint (8 samples, 0.61%)</title><rect x="433.3" y="437" width="7.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
|
1285
|
+
<text x="436.29" y="447.5"></text>
|
1286
|
+
</g>
|
1287
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1288
|
+
<title>java/awt/Container.validate (13 samples, 0.99%)</title><rect x="484.5" y="581" width="11.7" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
|
1289
|
+
<text x="487.52" y="591.5"></text>
|
1290
|
+
</g>
|
1291
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1292
|
+
<title>ip_finish_output (10 samples, 0.76%)</title><rect x="484.5" y="181" width="9.0" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
|
1293
|
+
<text x="487.52" y="191.5"></text>
|
1294
|
+
</g>
|
1295
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1296
|
+
<title>sun/awt/X11/XComponentPeer.updateCursorImmediately (10 samples, 0.76%)</title><rect x="484.5" y="549" width="9.0" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
|
1297
|
+
<text x="487.52" y="559.5"></text>
|
1298
|
+
</g>
|
1299
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1300
|
+
<title>Compiler::compile_method(ciEnv*, ciMethod*, int) (160 samples, 12.19%)</title><rect x="913.2" y="805" width="143.8" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
|
1301
|
+
<text x="916.20" y="815.5">Compiler::compile_..</text>
|
1302
|
+
</g>
|
1303
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1304
|
+
<title>javax/swing/JLayeredPane.paint (8 samples, 0.61%)</title><rect x="433.3" y="373" width="7.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
1305
|
+
<text x="436.29" y="383.5"></text>
|
1306
|
+
</g>
|
1307
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1308
|
+
<title>sun/awt/X11/XBaseWindow.dispatchToWindow (29 samples, 2.21%)</title><rect x="551.9" y="837" width="26.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
|
1309
|
+
<text x="554.92" y="847.5">s..</text>
|
1310
|
+
</g>
|
1311
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1312
|
+
<title>javax/swing/JComponent.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="165" width="10.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
|
1313
|
+
<text x="353.61" y="175.5"></text>
|
1314
|
+
</g>
|
1315
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1316
|
+
<title>java/net/URLClassLoader.access$100 (8 samples, 0.61%)</title><rect x="13.6" y="709" width="7.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
|
1317
|
+
<text x="16.59" y="719.5"></text>
|
1318
|
+
</g>
|
1319
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1320
|
+
<title>java/awt/EventDispatchThread.pumpEventsForHierarchy (235 samples, 17.90%)</title><rect x="333.5" y="853" width="211.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
|
1321
|
+
<text x="336.53" y="863.5">java/awt/EventDispatchThrea..</text>
|
1322
|
+
</g>
|
1323
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1324
|
+
<title>sun/awt/X11/XWindow.<init> (31 samples, 2.36%)</title><rect x="371.3" y="501" width="27.8" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
1325
|
+
<text x="374.28" y="511.5">s..</text>
|
1326
|
+
</g>
|
1327
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1328
|
+
<title>java/awt/EventQueue$3.run (182 samples, 13.86%)</title><rect x="333.5" y="741" width="163.6" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
1329
|
+
<text x="336.53" y="751.5">java/awt/EventQueue$3..</text>
|
1330
|
+
</g>
|
1331
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1332
|
+
<title>java/awt/EventQueue.dispatchEventImpl (182 samples, 13.86%)</title><rect x="333.5" y="709" width="163.6" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
|
1333
|
+
<text x="336.53" y="719.5">java/awt/EventQueue.d..</text>
|
1334
|
+
</g>
|
1335
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1336
|
+
<title>SwingSet2.setDemo (9 samples, 0.69%)</title><rect x="320.1" y="853" width="8.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
1337
|
+
<text x="323.05" y="863.5"></text>
|
1338
|
+
</g>
|
1339
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1340
|
+
<title>PhaseChaitin::Select() (8 samples, 0.61%)</title><rect x="662.5" y="741" width="7.1" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
|
1341
|
+
<text x="665.46" y="751.5"></text>
|
1342
|
+
</g>
|
1343
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1344
|
+
<title>javax/swing/JComponent.paintComponent (8 samples, 0.61%)</title><rect x="473.7" y="437" width="7.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
|
1345
|
+
<text x="476.73" y="447.5"></text>
|
1346
|
+
</g>
|
1347
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1348
|
+
<title>sun/awt/X11/XDropTargetRegistry.registerDropSite (10 samples, 0.76%)</title><rect x="352.4" y="37" width="9.0" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
|
1349
|
+
<text x="355.41" y="47.5"></text>
|
1350
|
+
</g>
|
1351
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1352
|
+
<title>JvmtiDeferredEvent::post() (8 samples, 0.61%)</title><rect x="1075.9" y="821" width="7.2" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
|
1353
|
+
<text x="1078.86" y="831.5"></text>
|
1354
|
+
</g>
|
1355
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1356
|
+
<title>java/awt/Component.getInputContext (9 samples, 0.69%)</title><rect x="510.6" y="405" width="8.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
|
1357
|
+
<text x="513.58" y="415.5"></text>
|
1358
|
+
</g>
|
1359
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1360
|
+
<title>LinearScan::assign_reg_num() (11 samples, 0.84%)</title><rect x="1007.6" y="709" width="9.8" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
|
1361
|
+
<text x="1010.56" y="719.5"></text>
|
1362
|
+
</g>
|
1363
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1364
|
+
<title>entry_SYSCALL_64_fastpath (10 samples, 0.76%)</title><rect x="484.5" y="421" width="9.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
|
1365
|
+
<text x="487.52" y="431.5"></text>
|
1366
|
+
</g>
|
1367
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1368
|
+
<title>[unknown] (19 samples, 1.45%)</title><rect x="1144.2" y="805" width="17.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
|
1369
|
+
<text x="1147.17" y="815.5"></text>
|
1370
|
+
</g>
|
1371
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1372
|
+
<title>javax/swing/RepaintManager.access$1200 (58 samples, 4.42%)</title><rect x="431.5" y="661" width="52.1" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
|
1373
|
+
<text x="434.49" y="671.5">javax..</text>
|
1374
|
+
</g>
|
1375
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1376
|
+
<title>java/security/AccessController.doPrivileged (14 samples, 1.07%)</title><rect x="483.6" y="629" width="12.6" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
|
1377
|
+
<text x="486.62" y="639.5"></text>
|
1378
|
+
</g>
|
1379
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1380
|
+
<title>sun/net/www/protocol/file/FileURLConnection.getHeaderField (14 samples, 1.07%)</title><rect x="418.0" y="597" width="12.6" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
|
1381
|
+
<text x="421.01" y="607.5"></text>
|
1382
|
+
</g>
|
1383
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1384
|
+
<title>sun/net/www/protocol/jar/JarURLConnection.getHeaderField (14 samples, 1.07%)</title><rect x="418.0" y="613" width="12.6" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
1385
|
+
<text x="421.01" y="623.5"></text>
|
1386
|
+
</g>
|
1387
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1388
|
+
<title>TreeDemo.<init> (17 samples, 1.29%)</title><rect x="161.9" y="789" width="15.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
1389
|
+
<text x="164.88" y="799.5"></text>
|
1390
|
+
</g>
|
1391
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1392
|
+
<title>PhaseCFG::do_global_code_motion() (9 samples, 0.69%)</title><rect x="645.4" y="757" width="8.1" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
|
1393
|
+
<text x="648.38" y="767.5"></text>
|
1394
|
+
</g>
|
1395
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1396
|
+
<title>InstanceKlass::initialize_impl(instanceKlassHandle, Thread*) (10 samples, 0.76%)</title><rect x="361.4" y="565" width="9.0" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
|
1397
|
+
<text x="364.39" y="575.5"></text>
|
1398
|
+
</g>
|
1399
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1400
|
+
<title>java/awt/Container.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="325" width="12.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
|
1401
|
+
<text x="351.81" y="335.5"></text>
|
1402
|
+
</g>
|
1403
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1404
|
+
<title>GraphBuilder::iterate_bytecodes_for_block(int) (33 samples, 2.51%)</title><rect x="927.6" y="661" width="29.6" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
|
1405
|
+
<text x="930.58" y="671.5">Gr..</text>
|
1406
|
+
</g>
|
1407
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1408
|
+
<title>LinearScan::assign_reg_num(LIR_OpList*, IntervalWalker*) (11 samples, 0.84%)</title><rect x="1007.6" y="693" width="9.8" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
|
1409
|
+
<text x="1010.56" y="703.5"></text>
|
1410
|
+
</g>
|
1411
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1412
|
+
<title>java/awt/Container.validateTree (12 samples, 0.91%)</title><rect x="335.3" y="533" width="10.8" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
|
1413
|
+
<text x="338.33" y="543.5"></text>
|
1414
|
+
</g>
|
1415
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1416
|
+
<title>javax/swing/plaf/nimbus/NimbusDefaults$LazyStyle$Part.<init> (21 samples, 1.60%)</title><rect x="185.2" y="645" width="18.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
|
1417
|
+
<text x="188.25" y="655.5"></text>
|
1418
|
+
</g>
|
1419
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1420
|
+
<title>javax/swing/JTree.<init> (11 samples, 0.84%)</title><rect x="164.6" y="709" width="9.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
|
1421
|
+
<text x="167.58" y="719.5"></text>
|
1422
|
+
</g>
|
1423
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1424
|
+
<title>sun/awt/X11/XToolkit.run (43 samples, 3.27%)</title><rect x="547.4" y="885" width="38.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
|
1425
|
+
<text x="550.43" y="895.5">sun..</text>
|
1426
|
+
</g>
|
1427
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1428
|
+
<title>java/awt/Container.addNotify (16 samples, 1.22%)</title><rect x="347.0" y="597" width="14.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
|
1429
|
+
<text x="350.01" y="607.5"></text>
|
1430
|
+
</g>
|
1431
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1432
|
+
<title>java/awt/Window.addNotify (16 samples, 1.22%)</title><rect x="347.0" y="613" width="14.4" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
|
1433
|
+
<text x="350.01" y="623.5"></text>
|
1434
|
+
</g>
|
1435
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1436
|
+
<title>java/lang/Class.forName0 (16 samples, 1.22%)</title><rect x="185.2" y="613" width="14.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
|
1437
|
+
<text x="188.25" y="623.5"></text>
|
1438
|
+
</g>
|
1439
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1440
|
+
<title>InstanceKlass::link_class_impl(instanceKlassHandle, bool, Thread*) (10 samples, 0.76%)</title><rect x="361.4" y="549" width="9.0" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
|
1441
|
+
<text x="364.39" y="559.5"></text>
|
1442
|
+
</g>
|
1443
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1444
|
+
<title>java/awt/Component.getInputContext (9 samples, 0.69%)</title><rect x="510.6" y="421" width="8.1" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
|
1445
|
+
<text x="513.58" y="431.5"></text>
|
1446
|
+
</g>
|
1447
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1448
|
+
<title>vfs_writev (10 samples, 0.76%)</title><rect x="484.5" y="389" width="9.0" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
|
1449
|
+
<text x="487.52" y="399.5"></text>
|
1450
|
+
</g>
|
1451
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1452
|
+
<title>sun/awt/X11/XBaseWindow.<init> (31 samples, 2.36%)</title><rect x="371.3" y="485" width="27.8" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
|
1453
|
+
<text x="374.28" y="495.5">s..</text>
|
1454
|
+
</g>
|
1455
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1456
|
+
<title>InternalFrameDemo.<init> (53 samples, 4.04%)</title><rect x="271.5" y="853" width="47.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
|
1457
|
+
<text x="274.52" y="863.5">Inte..</text>
|
1458
|
+
</g>
|
1459
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1460
|
+
<title>PhaseIterGVN::optimize() (9 samples, 0.69%)</title><rect x="871.9" y="757" width="8.0" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
|
1461
|
+
<text x="874.86" y="767.5"></text>
|
1462
|
+
</g>
|
1463
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1464
|
+
<title>InternalFrameDemo.createInternalFramePalette (29 samples, 2.21%)</title><rect x="292.2" y="837" width="26.1" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
|
1465
|
+
<text x="295.19" y="847.5">I..</text>
|
1466
|
+
</g>
|
1467
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1468
|
+
<title>GraphBuilder::iterate_bytecodes_for_block(int) (10 samples, 0.76%)</title><rect x="933.0" y="581" width="9.0" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
|
1469
|
+
<text x="935.97" y="591.5"></text>
|
1470
|
+
</g>
|
1471
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1472
|
+
<title>javax/swing/BufferStrategyPaintManager.prepare (9 samples, 0.69%)</title><rect x="442.3" y="469" width="8.1" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
|
1473
|
+
<text x="445.28" y="479.5"></text>
|
1474
|
+
</g>
|
1475
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1476
|
+
<title>javax/swing/text/JTextComponent.updateUI (12 samples, 0.91%)</title><rect x="260.7" y="805" width="10.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
|
1477
|
+
<text x="263.74" y="815.5"></text>
|
1478
|
+
</g>
|
1479
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1480
|
+
<title>sun/awt/X11/XCanvasPeer.<init> (31 samples, 2.36%)</title><rect x="371.3" y="533" width="27.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1481
|
+
<text x="374.28" y="543.5">s..</text>
|
1482
|
+
</g>
|
1483
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1484
|
+
<title>sun/awt/X11/XDecoratedPeer.setIconHints (8 samples, 0.61%)</title><rect x="387.5" y="373" width="7.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
|
1485
|
+
<text x="390.46" y="383.5"></text>
|
1486
|
+
</g>
|
1487
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1488
|
+
<title>SwingSet2$1.run (81 samples, 6.17%)</title><rect x="333.5" y="677" width="72.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
|
1489
|
+
<text x="336.53" y="687.5">SwingSet..</text>
|
1490
|
+
</g>
|
1491
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1492
|
+
<title>GraphBuilder::try_inline(ciMethod*, bool, Bytecodes::Code, Instruction*) (20 samples, 1.52%)</title><rect x="931.2" y="629" width="17.9" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
|
1493
|
+
<text x="934.17" y="639.5"></text>
|
1494
|
+
</g>
|
1495
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1496
|
+
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance (174 samples, 13.25%)</title><rect x="20.8" y="821" width="156.4" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
1497
|
+
<text x="23.78" y="831.5">sun/reflect/NativeCo..</text>
|
1498
|
+
</g>
|
1499
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1500
|
+
<title>javax/swing/JComponent.paintChildren (21 samples, 1.60%)</title><rect x="454.9" y="437" width="18.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
1501
|
+
<text x="457.86" y="447.5"></text>
|
1502
|
+
</g>
|
1503
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1504
|
+
<title>TreeDemo.createTree (17 samples, 1.29%)</title><rect x="161.9" y="773" width="15.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
1505
|
+
<text x="164.88" y="783.5"></text>
|
1506
|
+
</g>
|
1507
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1508
|
+
<title>VMThread::run() (20 samples, 1.52%)</title><rect x="1089.3" y="869" width="18.0" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
|
1509
|
+
<text x="1092.35" y="879.5"></text>
|
1510
|
+
</g>
|
1511
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1512
|
+
<title>[unknown] (17 samples, 1.29%)</title><rect x="1145.1" y="757" width="15.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
|
1513
|
+
<text x="1148.06" y="767.5"></text>
|
1514
|
+
</g>
|
1515
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1516
|
+
<title>Compilation::install_code(int) (15 samples, 1.14%)</title><rect x="1042.6" y="757" width="13.5" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
|
1517
|
+
<text x="1045.61" y="767.5"></text>
|
1518
|
+
</g>
|
1519
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1520
|
+
<title>javax/swing/RepaintManager.paintDirtyRegions (58 samples, 4.42%)</title><rect x="431.5" y="629" width="52.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
|
1521
|
+
<text x="434.49" y="639.5">javax..</text>
|
1522
|
+
</g>
|
1523
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1524
|
+
<title>sun/font/FontDesignMetrics.initMatrixAndMetrics (9 samples, 0.69%)</title><rect x="298.5" y="581" width="8.1" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
|
1525
|
+
<text x="301.48" y="591.5"></text>
|
1526
|
+
</g>
|
1527
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1528
|
+
<title>java/lang/Class.forName0 (10 samples, 0.76%)</title><rect x="11.8" y="837" width="9.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
|
1529
|
+
<text x="14.80" y="847.5"></text>
|
1530
|
+
</g>
|
1531
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1532
|
+
<title>java/awt/Container.validateTree (12 samples, 0.91%)</title><rect x="335.3" y="581" width="10.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1533
|
+
<text x="338.33" y="591.5"></text>
|
1534
|
+
</g>
|
1535
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1536
|
+
<title>javax/swing/JTextField.<init> (12 samples, 0.91%)</title><rect x="260.7" y="853" width="10.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
1537
|
+
<text x="263.74" y="863.5"></text>
|
1538
|
+
</g>
|
1539
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1540
|
+
<title>javax/swing/JLayeredPane.paint (11 samples, 0.84%)</title><rect x="455.8" y="101" width="9.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
|
1541
|
+
<text x="458.76" y="111.5"></text>
|
1542
|
+
</g>
|
1543
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1544
|
+
<title>sun/awt/X11/XFramePeer.postInit (27 samples, 2.06%)</title><rect x="371.3" y="453" width="24.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
|
1545
|
+
<text x="374.28" y="463.5">s..</text>
|
1546
|
+
</g>
|
1547
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1548
|
+
<title>java/awt/Window.dispatchEventImpl (44 samples, 3.35%)</title><rect x="498.0" y="597" width="39.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1549
|
+
<text x="501.00" y="607.5">jav..</text>
|
1550
|
+
</g>
|
1551
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1552
|
+
<title>Compilation::emit_code_body() (27 samples, 2.06%)</title><rect x="964.4" y="741" width="24.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
|
1553
|
+
<text x="967.42" y="751.5">C..</text>
|
1554
|
+
</g>
|
1555
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1556
|
+
<title>java/awt/EventQueue.access$500 (48 samples, 3.66%)</title><rect x="497.1" y="645" width="43.1" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
|
1557
|
+
<text x="500.10" y="655.5">java..</text>
|
1558
|
+
</g>
|
1559
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1560
|
+
<title>java/awt/Window.getInputContext (9 samples, 0.69%)</title><rect x="510.6" y="357" width="8.1" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
|
1561
|
+
<text x="513.58" y="367.5"></text>
|
1562
|
+
</g>
|
1563
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1564
|
+
<title>SwingSet2.initializeDemo (105 samples, 8.00%)</title><rect x="177.2" y="869" width="94.3" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
|
1565
|
+
<text x="180.16" y="879.5">SwingSet2.i..</text>
|
1566
|
+
</g>
|
1567
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1568
|
+
<title>java/awt/Component.getInputContext (9 samples, 0.69%)</title><rect x="510.6" y="389" width="8.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
|
1569
|
+
<text x="513.58" y="399.5"></text>
|
1570
|
+
</g>
|
1571
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1572
|
+
<title>javax/swing/JComponent.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="341" width="12.6" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
|
1573
|
+
<text x="351.81" y="351.5"></text>
|
1574
|
+
</g>
|
1575
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1576
|
+
<title>javax/swing/JInternalFrame.<init> (21 samples, 1.60%)</title><rect x="297.6" y="821" width="18.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
|
1577
|
+
<text x="300.59" y="831.5"></text>
|
1578
|
+
</g>
|
1579
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1580
|
+
<title>java/lang/ClassLoader.loadClass (9 samples, 0.69%)</title><rect x="12.7" y="821" width="8.1" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1581
|
+
<text x="15.70" y="831.5"></text>
|
1582
|
+
</g>
|
1583
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1584
|
+
<title>java/awt/Container.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="213" width="10.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
|
1585
|
+
<text x="353.61" y="223.5"></text>
|
1586
|
+
</g>
|
1587
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1588
|
+
<title>javax/swing/RepaintManager.paint (43 samples, 3.27%)</title><rect x="442.3" y="501" width="38.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1589
|
+
<text x="445.28" y="511.5">jav..</text>
|
1590
|
+
</g>
|
1591
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1592
|
+
<title>sys_writev (10 samples, 0.76%)</title><rect x="484.5" y="405" width="9.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
|
1593
|
+
<text x="487.52" y="415.5"></text>
|
1594
|
+
</g>
|
1595
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1596
|
+
<title>javax/swing/JLayeredPane.paint (20 samples, 1.52%)</title><rect x="455.8" y="421" width="17.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
1597
|
+
<text x="458.76" y="431.5"></text>
|
1598
|
+
</g>
|
1599
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1600
|
+
<title>sun/misc/Launcher$AppClassLoader.loadClass (9 samples, 0.69%)</title><rect x="12.7" y="805" width="8.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
|
1601
|
+
<text x="15.70" y="815.5"></text>
|
1602
|
+
</g>
|
1603
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1604
|
+
<title>sun/awt/X11/XWindowPeer.postInit (23 samples, 1.75%)</title><rect x="374.0" y="421" width="20.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1605
|
+
<text x="376.98" y="431.5"></text>
|
1606
|
+
</g>
|
1607
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1608
|
+
<title>sun/awt/X11/XComponentPeer.pSetCursor (10 samples, 0.76%)</title><rect x="484.5" y="485" width="9.0" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
|
1609
|
+
<text x="487.52" y="495.5"></text>
|
1610
|
+
</g>
|
1611
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1612
|
+
<title>javax/swing/JComponent.paint (8 samples, 0.61%)</title><rect x="433.3" y="453" width="7.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
|
1613
|
+
<text x="436.29" y="463.5"></text>
|
1614
|
+
</g>
|
1615
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1616
|
+
<title>SwingSet2.showSwingSet2 (81 samples, 6.17%)</title><rect x="333.5" y="661" width="72.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
|
1617
|
+
<text x="336.53" y="671.5">SwingSet..</text>
|
1618
|
+
</g>
|
1619
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1620
|
+
<title>GCTaskThread::run() (26 samples, 1.98%)</title><rect x="587.0" y="869" width="23.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
|
1621
|
+
<text x="589.97" y="879.5">G..</text>
|
1622
|
+
</g>
|
1623
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1624
|
+
<title>java/awt/Component.updateCursorImmediately (9 samples, 0.69%)</title><rect x="498.0" y="549" width="8.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
|
1625
|
+
<text x="501.00" y="559.5"></text>
|
1626
|
+
</g>
|
1627
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1628
|
+
<title>[unknown] (13 samples, 0.99%)</title><rect x="520.5" y="277" width="11.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
|
1629
|
+
<text x="523.46" y="287.5"></text>
|
1630
|
+
</g>
|
1631
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1632
|
+
<title>PhaseChaitin::build_ifg_physical(ResourceArea*) (34 samples, 2.59%)</title><rect x="696.6" y="741" width="30.6" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
|
1633
|
+
<text x="699.61" y="751.5">Ph..</text>
|
1634
|
+
</g>
|
1635
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1636
|
+
<title>javax/swing/JScrollPane.<init> (8 samples, 0.61%)</title><rect x="246.4" y="853" width="7.1" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
|
1637
|
+
<text x="249.36" y="863.5"></text>
|
1638
|
+
</g>
|
1639
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1640
|
+
<title>LinearScanWalker::activate_current() (10 samples, 0.76%)</title><rect x="996.8" y="677" width="9.0" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
|
1641
|
+
<text x="999.78" y="687.5"></text>
|
1642
|
+
</g>
|
1643
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1644
|
+
<title>java/net/URLClassLoader$1.run (8 samples, 0.61%)</title><rect x="13.6" y="741" width="7.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
|
1645
|
+
<text x="16.59" y="751.5"></text>
|
1646
|
+
</g>
|
1647
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1648
|
+
<title>LinearScan::do_linear_scan() (46 samples, 3.50%)</title><rect x="995.0" y="725" width="41.3" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
|
1649
|
+
<text x="997.98" y="735.5">Lin..</text>
|
1650
|
+
</g>
|
1651
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1652
|
+
<title>javax/swing/JTree.<init> (12 samples, 0.91%)</title><rect x="163.7" y="741" width="10.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
|
1653
|
+
<text x="166.68" y="751.5"></text>
|
1654
|
+
</g>
|
1655
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1656
|
+
<title>Matcher::match() (18 samples, 1.37%)</title><rect x="628.3" y="757" width="16.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
|
1657
|
+
<text x="631.31" y="767.5"></text>
|
1658
|
+
</g>
|
1659
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1660
|
+
<title>Parse::do_one_bytecode() (18 samples, 1.37%)</title><rect x="886.2" y="709" width="16.2" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
|
1661
|
+
<text x="889.24" y="719.5"></text>
|
1662
|
+
</g>
|
1663
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1664
|
+
<title>javax/swing/JComponent.paint (11 samples, 0.84%)</title><rect x="455.8" y="85" width="9.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
1665
|
+
<text x="458.76" y="95.5"></text>
|
1666
|
+
</g>
|
1667
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1668
|
+
<title>sun/net/www/protocol/jar/JarURLConnection.getContentType (11 samples, 0.84%)</title><rect x="1174.7" y="837" width="9.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
|
1669
|
+
<text x="1177.72" y="847.5"></text>
|
1670
|
+
</g>
|
1671
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1672
|
+
<title>java/awt/Container.doLayout (8 samples, 0.61%)</title><rect x="335.3" y="485" width="7.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
|
1673
|
+
<text x="338.33" y="495.5"></text>
|
1674
|
+
</g>
|
1675
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1676
|
+
<title>javax/swing/JComboBox.updateUI (9 samples, 0.69%)</title><rect x="56.7" y="709" width="8.1" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
|
1677
|
+
<text x="59.73" y="719.5"></text>
|
1678
|
+
</g>
|
1679
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1680
|
+
<title>java/awt/EventDispatchThread.pumpOneEventForFilters (235 samples, 17.90%)</title><rect x="333.5" y="821" width="211.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
|
1681
|
+
<text x="336.53" y="831.5">java/awt/EventDispatchThrea..</text>
|
1682
|
+
</g>
|
1683
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1684
|
+
<title>sun/reflect/DelegatingConstructorAccessorImpl.newInstance (174 samples, 13.25%)</title><rect x="20.8" y="837" width="156.4" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
|
1685
|
+
<text x="23.78" y="847.5">sun/reflect/Delegati..</text>
|
1686
|
+
</g>
|
1687
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1688
|
+
<title>sun/awt/X11/XlibWrapper.XFlush (10 samples, 0.76%)</title><rect x="484.5" y="469" width="9.0" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
1689
|
+
<text x="487.52" y="479.5"></text>
|
1690
|
+
</g>
|
1691
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1692
|
+
<title>sun/awt/X11/XWindowPeer.addDropTarget (11 samples, 0.84%)</title><rect x="351.5" y="53" width="9.9" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
|
1693
|
+
<text x="354.51" y="63.5"></text>
|
1694
|
+
</g>
|
1695
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1696
|
+
<title>javax/swing/JComponent.paintChildren (8 samples, 0.61%)</title><rect x="433.3" y="277" width="7.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
|
1697
|
+
<text x="436.29" y="287.5"></text>
|
1698
|
+
</g>
|
1699
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1700
|
+
<title>sun/awt/image/GifImageDecoder.readImage (18 samples, 1.37%)</title><rect x="1114.5" y="837" width="16.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
|
1701
|
+
<text x="1117.51" y="847.5"></text>
|
1702
|
+
</g>
|
1703
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1704
|
+
<title>sun/reflect/NativeConstructorAccessorImpl.newInstance0 (28 samples, 2.13%)</title><rect x="182.6" y="741" width="25.1" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
|
1705
|
+
<text x="185.55" y="751.5">s..</text>
|
1706
|
+
</g>
|
1707
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1708
|
+
<title>Java_java_lang_Class_forName0 (11 samples, 0.84%)</title><rect x="185.2" y="597" width="9.9" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
|
1709
|
+
<text x="188.25" y="607.5"></text>
|
1710
|
+
</g>
|
1711
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1712
|
+
<title>Compilation::emit_lir() (53 samples, 4.04%)</title><rect x="988.7" y="741" width="47.6" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
1713
|
+
<text x="991.69" y="751.5">Comp..</text>
|
1714
|
+
</g>
|
1715
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1716
|
+
<title>__dev_queue_xmit (10 samples, 0.76%)</title><rect x="484.5" y="133" width="9.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
|
1717
|
+
<text x="487.52" y="143.5"></text>
|
1718
|
+
</g>
|
1719
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1720
|
+
<title>all (1,313 samples, 100%)</title><rect x="10.0" y="917" width="1180.0" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
|
1721
|
+
<text x="13.00" y="927.5"></text>
|
1722
|
+
</g>
|
1723
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1724
|
+
<title>java/security/AccessController.doPrivileged (53 samples, 4.04%)</title><rect x="433.3" y="581" width="47.6" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
|
1725
|
+
<text x="436.29" y="591.5">java..</text>
|
1726
|
+
</g>
|
1727
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1728
|
+
<title>javax/swing/JEditorPane.<init> (32 samples, 2.44%)</title><rect x="217.6" y="853" width="28.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
1729
|
+
<text x="220.60" y="863.5">ja..</text>
|
1730
|
+
</g>
|
1731
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1732
|
+
<title>java/awt/Container.validateTree (12 samples, 0.91%)</title><rect x="335.3" y="501" width="10.8" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
|
1733
|
+
<text x="338.33" y="511.5"></text>
|
1734
|
+
</g>
|
1735
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1736
|
+
<title>javax/swing/JComponent.paintToOffscreen (8 samples, 0.61%)</title><rect x="433.3" y="405" width="7.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
|
1737
|
+
<text x="436.29" y="415.5"></text>
|
1738
|
+
</g>
|
1739
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1740
|
+
<title>SwingSet2.preloadFirstDemo (64 samples, 4.87%)</title><rect x="271.5" y="869" width="57.5" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
|
1741
|
+
<text x="274.52" y="879.5">SwingS..</text>
|
1742
|
+
</g>
|
1743
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1744
|
+
<title>InstanceKlass::link_class_impl(instanceKlassHandle, bool, Thread*) (9 samples, 0.69%)</title><rect x="361.4" y="517" width="8.1" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
|
1745
|
+
<text x="364.39" y="527.5"></text>
|
1746
|
+
</g>
|
1747
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1748
|
+
<title>java/security/ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege (48 samples, 3.66%)</title><rect x="497.1" y="725" width="43.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
|
1749
|
+
<text x="500.10" y="735.5">java..</text>
|
1750
|
+
</g>
|
1751
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1752
|
+
<title>java/lang/Class.forName (17 samples, 1.29%)</title><rect x="185.2" y="629" width="15.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1753
|
+
<text x="188.25" y="639.5"></text>
|
1754
|
+
</g>
|
1755
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1756
|
+
<title>sun/awt/im/InputContext.getInputMethodInstance (19 samples, 1.45%)</title><rect x="518.7" y="389" width="17.0" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
|
1757
|
+
<text x="521.67" y="399.5"></text>
|
1758
|
+
</g>
|
1759
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1760
|
+
<title>tcp_transmit_skb (10 samples, 0.76%)</title><rect x="484.5" y="245" width="9.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
|
1761
|
+
<text x="487.52" y="255.5"></text>
|
1762
|
+
</g>
|
1763
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1764
|
+
<title>java/awt/Container.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="389" width="12.6" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
|
1765
|
+
<text x="351.81" y="399.5"></text>
|
1766
|
+
</g>
|
1767
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1768
|
+
<title>java/awt/Container.layout (8 samples, 0.61%)</title><rect x="335.3" y="469" width="7.2" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
|
1769
|
+
<text x="338.33" y="479.5"></text>
|
1770
|
+
</g>
|
1771
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1772
|
+
<title>javax/swing/JComponent.paint (20 samples, 1.52%)</title><rect x="455.8" y="405" width="17.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
|
1773
|
+
<text x="458.76" y="415.5"></text>
|
1774
|
+
</g>
|
1775
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1776
|
+
<title>java/awt/Container.validateTree (12 samples, 0.91%)</title><rect x="335.3" y="517" width="10.8" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
|
1777
|
+
<text x="338.33" y="527.5"></text>
|
1778
|
+
</g>
|
1779
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1780
|
+
<title>dev_hard_start_xmit (10 samples, 0.76%)</title><rect x="484.5" y="101" width="9.0" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
|
1781
|
+
<text x="487.52" y="111.5"></text>
|
1782
|
+
</g>
|
1783
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1784
|
+
<title>sun/awt/X11/XDecoratedPeer.postInit (26 samples, 1.98%)</title><rect x="371.3" y="437" width="23.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
|
1785
|
+
<text x="374.28" y="447.5">s..</text>
|
1786
|
+
</g>
|
1787
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1788
|
+
<title>InstanceKlass::initialize(Thread*) (11 samples, 0.84%)</title><rect x="185.2" y="549" width="9.9" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
|
1789
|
+
<text x="188.25" y="559.5"></text>
|
1790
|
+
</g>
|
1791
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1792
|
+
<title>java/awt/EventQueue$3.run (182 samples, 13.86%)</title><rect x="333.5" y="757" width="163.6" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
|
1793
|
+
<text x="336.53" y="767.5">java/awt/EventQueue$3..</text>
|
1794
|
+
</g>
|
1795
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1796
|
+
<title>Compilation::compile_java_method() (142 samples, 10.81%)</title><rect x="913.2" y="757" width="127.6" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
|
1797
|
+
<text x="916.20" y="767.5">Compilation::com..</text>
|
1798
|
+
</g>
|
1799
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1800
|
+
<title>javax/swing/plaf/nimbus/NimbusLookAndFeel.<init> (28 samples, 2.13%)</title><rect x="182.6" y="725" width="25.1" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
|
1801
|
+
<text x="185.55" y="735.5">j..</text>
|
1802
|
+
</g>
|
1803
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1804
|
+
<title>javax/swing/JButton.updateUI (11 samples, 0.84%)</title><rect x="31.6" y="709" width="9.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
|
1805
|
+
<text x="34.57" y="719.5"></text>
|
1806
|
+
</g>
|
1807
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1808
|
+
<title>SplitPaneDemo.<init> (9 samples, 0.69%)</title><rect x="115.1" y="789" width="8.1" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
|
1809
|
+
<text x="118.15" y="799.5"></text>
|
1810
|
+
</g>
|
1811
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1812
|
+
<title>javax/swing/JComponent.setUI (8 samples, 0.61%)</title><rect x="56.7" y="677" width="7.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
|
1813
|
+
<text x="59.73" y="687.5"></text>
|
1814
|
+
</g>
|
1815
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1816
|
+
<title>InstanceKlass::get_jmethod_id(instanceKlassHandle, methodHandle) (9 samples, 0.69%)</title><rect x="186.1" y="453" width="8.1" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
|
1817
|
+
<text x="189.15" y="463.5"></text>
|
1818
|
+
</g>
|
1819
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1820
|
+
<title>sun/awt/X11/XComponentPeer.<init> (31 samples, 2.36%)</title><rect x="371.3" y="517" width="27.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
|
1821
|
+
<text x="374.28" y="527.5">s..</text>
|
1822
|
+
</g>
|
1823
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1824
|
+
<title>sun/awt/X11/XWindow.postInit (13 samples, 0.99%)</title><rect x="375.8" y="373" width="11.7" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
|
1825
|
+
<text x="378.77" y="383.5"></text>
|
1826
|
+
</g>
|
1827
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1828
|
+
<title>Compile::Optimize() (114 samples, 8.68%)</title><rect x="781.1" y="773" width="102.4" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
|
1829
|
+
<text x="784.09" y="783.5">Compile::Opt..</text>
|
1830
|
+
</g>
|
1831
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1832
|
+
<title>javax/swing/plaf/basic/BasicHTML.updateRenderer (10 samples, 0.76%)</title><rect x="31.6" y="645" width="9.0" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
|
1833
|
+
<text x="34.57" y="655.5"></text>
|
1834
|
+
</g>
|
1835
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1836
|
+
<title>javax/swing/JComponent.getPreferredSize (12 samples, 0.91%)</title><rect x="297.6" y="693" width="10.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
|
1837
|
+
<text x="300.59" y="703.5"></text>
|
1838
|
+
</g>
|
1839
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1840
|
+
<title>javax/swing/JComponent.paintChildren (11 samples, 0.84%)</title><rect x="455.8" y="117" width="9.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
1841
|
+
<text x="458.76" y="127.5"></text>
|
1842
|
+
</g>
|
1843
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1844
|
+
<title>sun/awt/X11/XInputMethod.openXIM (17 samples, 1.29%)</title><rect x="520.5" y="309" width="15.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
|
1845
|
+
<text x="523.46" y="319.5"></text>
|
1846
|
+
</g>
|
1847
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1848
|
+
<title>javax/swing/JInternalFrame$JDesktopIcon.setUI (14 samples, 1.07%)</title><rect x="297.6" y="757" width="12.6" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
|
1849
|
+
<text x="300.59" y="767.5"></text>
|
1850
|
+
</g>
|
1851
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1852
|
+
<title>java/awt/EventDispatchThread.pumpEvents (235 samples, 17.90%)</title><rect x="333.5" y="869" width="211.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
1853
|
+
<text x="336.53" y="879.5">java/awt/EventDispatchThrea..</text>
|
1854
|
+
</g>
|
1855
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1856
|
+
<title>java/text/SimpleDateFormat.<init> (10 samples, 0.76%)</title><rect x="420.7" y="565" width="9.0" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
|
1857
|
+
<text x="423.71" y="575.5"></text>
|
1858
|
+
</g>
|
1859
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1860
|
+
<title>sun/awt/X11InputMethod.initXIM (17 samples, 1.29%)</title><rect x="520.5" y="325" width="15.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
|
1861
|
+
<text x="523.46" y="335.5"></text>
|
1862
|
+
</g>
|
1863
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1864
|
+
<title>GraphBuilder::invoke(Bytecodes::Code) (28 samples, 2.13%)</title><rect x="931.2" y="645" width="25.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
|
1865
|
+
<text x="934.17" y="655.5">G..</text>
|
1866
|
+
</g>
|
1867
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1868
|
+
<title>javax/swing/JComponent.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="229" width="10.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
|
1869
|
+
<text x="353.61" y="239.5"></text>
|
1870
|
+
</g>
|
1871
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1872
|
+
<title>javax/swing/JEditorPane.setContentType (24 samples, 1.83%)</title><rect x="220.3" y="837" width="21.6" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
|
1873
|
+
<text x="223.30" y="847.5">j..</text>
|
1874
|
+
</g>
|
1875
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1876
|
+
<title>java/security/ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege (14 samples, 1.07%)</title><rect x="483.6" y="645" width="12.6" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
|
1877
|
+
<text x="486.62" y="655.5"></text>
|
1878
|
+
</g>
|
1879
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1880
|
+
<title>javax/swing/RepaintManager$ProcessingRunnable.run (72 samples, 5.48%)</title><rect x="431.5" y="677" width="64.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
|
1881
|
+
<text x="434.49" y="687.5">javax/s..</text>
|
1882
|
+
</g>
|
1883
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1884
|
+
<title>sock_sendmsg (10 samples, 0.76%)</title><rect x="484.5" y="341" width="9.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
|
1885
|
+
<text x="487.52" y="351.5"></text>
|
1886
|
+
</g>
|
1887
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1888
|
+
<title>sun/awt/X11/XToolkit.createFrame (42 samples, 3.20%)</title><rect x="361.4" y="613" width="37.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
|
1889
|
+
<text x="364.39" y="623.5">sun..</text>
|
1890
|
+
</g>
|
1891
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1892
|
+
<title>javax/swing/plaf/basic/BasicButtonUI.installUI (10 samples, 0.76%)</title><rect x="31.6" y="661" width="9.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
|
1893
|
+
<text x="34.57" y="671.5"></text>
|
1894
|
+
</g>
|
1895
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1896
|
+
<title>Method::make_jmethod_id(ClassLoaderData*, Method*) (9 samples, 0.69%)</title><rect x="186.1" y="437" width="8.1" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
|
1897
|
+
<text x="189.15" y="447.5"></text>
|
1898
|
+
</g>
|
1899
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1900
|
+
<title>sun/awt/X11/XComponentPeer.postInit (14 samples, 1.07%)</title><rect x="374.9" y="389" width="12.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
|
1901
|
+
<text x="377.87" y="399.5"></text>
|
1902
|
+
</g>
|
1903
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1904
|
+
<title>javax/swing/JInternalFrame.<init> (21 samples, 1.60%)</title><rect x="297.6" y="805" width="18.9" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
|
1905
|
+
<text x="300.59" y="815.5"></text>
|
1906
|
+
</g>
|
1907
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1908
|
+
<title>java/awt/Container.addNotify (14 samples, 1.07%)</title><rect x="348.8" y="517" width="12.6" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
|
1909
|
+
<text x="351.81" y="527.5"></text>
|
1910
|
+
</g>
|
1911
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1912
|
+
<title>javax/swing/JComponent.paint (20 samples, 1.52%)</title><rect x="455.8" y="373" width="17.9" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
|
1913
|
+
<text x="458.76" y="383.5"></text>
|
1914
|
+
</g>
|
1915
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1916
|
+
<title>sun/awt/X11/XInputMethodDescriptor.createInputMethod (19 samples, 1.45%)</title><rect x="518.7" y="373" width="17.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
1917
|
+
<text x="521.67" y="383.5"></text>
|
1918
|
+
</g>
|
1919
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1920
|
+
<title>java/awt/Component.getInputContext (9 samples, 0.69%)</title><rect x="510.6" y="437" width="8.1" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
|
1921
|
+
<text x="513.58" y="447.5"></text>
|
1922
|
+
</g>
|
1923
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1924
|
+
<title>sun/swing/SwingUtilities2.getFontMetrics (10 samples, 0.76%)</title><rect x="297.6" y="629" width="9.0" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
|
1925
|
+
<text x="300.59" y="639.5"></text>
|
1926
|
+
</g>
|
1927
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1928
|
+
<title>sun/awt/SunGraphicsCallback.runComponents (8 samples, 0.61%)</title><rect x="433.3" y="501" width="7.2" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
|
1929
|
+
<text x="436.29" y="511.5"></text>
|
1930
|
+
</g>
|
1931
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1932
|
+
<title>SwingSet2.isAvailableLookAndFeel (29 samples, 2.21%)</title><rect x="181.7" y="821" width="26.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
1933
|
+
<text x="184.65" y="831.5">S..</text>
|
1934
|
+
</g>
|
1935
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1936
|
+
<title>C2Compiler::compile_method(ciEnv*, ciMethod*, int) (332 samples, 25.29%)</title><rect x="611.2" y="805" width="298.4" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
|
1937
|
+
<text x="614.23" y="815.5">C2Compiler::compile_method(ciEnv*, ciMet..</text>
|
1938
|
+
</g>
|
1939
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1940
|
+
<title>javax/swing/JComponent.paintChildren (13 samples, 0.99%)</title><rect x="455.8" y="261" width="11.6" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
|
1941
|
+
<text x="458.76" y="271.5"></text>
|
1942
|
+
</g>
|
1943
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1944
|
+
<title>javax/swing/RepaintManager.validateInvalidComponents (14 samples, 1.07%)</title><rect x="483.6" y="661" width="12.6" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
|
1945
|
+
<text x="486.62" y="671.5"></text>
|
1946
|
+
</g>
|
1947
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1948
|
+
<title>PhaseChaitin::Simplify() (13 samples, 0.99%)</title><rect x="669.6" y="741" width="11.7" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
|
1949
|
+
<text x="672.65" y="751.5"></text>
|
1950
|
+
</g>
|
1951
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1952
|
+
<title>java/awt/EventDispatchThread.pumpEventsForFilter (235 samples, 17.90%)</title><rect x="333.5" y="837" width="211.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
|
1953
|
+
<text x="336.53" y="847.5">java/awt/EventDispatchThrea..</text>
|
1954
|
+
</g>
|
1955
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1956
|
+
<title>javax/swing/JComponent.addNotify (12 samples, 0.91%)</title><rect x="350.6" y="261" width="10.8" height="15.0" fill="rgb(84,232,84)" rx="2" ry="2" />
|
1957
|
+
<text x="353.61" y="271.5"></text>
|
1958
|
+
</g>
|
1959
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1960
|
+
<title>javax/swing/JRootPane.addNotify (16 samples, 1.22%)</title><rect x="347.0" y="581" width="14.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
|
1961
|
+
<text x="350.01" y="591.5"></text>
|
1962
|
+
</g>
|
1963
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1964
|
+
<title>javax/swing/JComponent.paint (11 samples, 0.84%)</title><rect x="455.8" y="53" width="9.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
|
1965
|
+
<text x="458.76" y="63.5"></text>
|
1966
|
+
</g>
|
1967
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1968
|
+
<title>Parse::Parse(JVMState*, ciMethod*, float) (19 samples, 1.45%)</title><rect x="885.3" y="757" width="17.1" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
|
1969
|
+
<text x="888.34" y="767.5"></text>
|
1970
|
+
</g>
|
1971
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1972
|
+
<title>java/lang/Thread.run (46 samples, 3.50%)</title><rect x="544.7" y="901" width="41.4" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
|
1973
|
+
<text x="547.73" y="911.5">jav..</text>
|
1974
|
+
</g>
|
1975
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1976
|
+
<title>[unknown] (18 samples, 1.37%)</title><rect x="1144.2" y="789" width="16.1" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
|
1977
|
+
<text x="1147.17" y="799.5"></text>
|
1978
|
+
</g>
|
1979
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1980
|
+
<title>sun/java2d/xr/XRSurfaceData$XRWindowSurfaceData.<init> (10 samples, 0.76%)</title><rect x="378.5" y="325" width="9.0" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
|
1981
|
+
<text x="381.47" y="335.5"></text>
|
1982
|
+
</g>
|
1983
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1984
|
+
<title>javax/swing/JComponent.paintChildren (8 samples, 0.61%)</title><rect x="433.3" y="389" width="7.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
|
1985
|
+
<text x="436.29" y="399.5"></text>
|
1986
|
+
</g>
|
1987
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1988
|
+
<title>sun/awt/X11/XPanelPeer.<init> (31 samples, 2.36%)</title><rect x="371.3" y="549" width="27.8" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
|
1989
|
+
<text x="374.28" y="559.5">s..</text>
|
1990
|
+
</g>
|
1991
|
+
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
1992
|
|