annotate src/share/vm/services/dtraceAttacher.cpp @ 5763:a3d71693e0ce

removed bytecode disassembly from CodeCacheRuntime into separate BytecodeDisassembler class removed VM call for doing bytecode disassembly added support for explicitly excluding classes from JaCoCo (put '// JaCoCo Exclude' somewhere in the source file) added node intrinsics to MaterializeNode added snippets for the UnsignedMath classes each file opened by CFGPrinter now includes a unique id in its name to avoid a race of multiple threads writing to the same file the IdealGraphPrinter uses the new BytecodeDisassembler mechanism teh UnsignedMath class is exclude from JaCoCo processing as it is used in snippets
author Doug Simon <doug.simon@oracle.com>
date Wed, 04 Jul 2012 21:57:49 +0200
parents f95d63e2154a
children 72b7e96c1922
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1324
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1324
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1324
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "code/codeCache.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/vmThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "services/dtraceAttacher.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 #ifdef SOLARIS
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class VM_DeoptimizeTheWorld : public VM_Operation {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
37 VMOp_Type type() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 return VMOp_DeoptimizeTheWorld;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 CodeCache::mark_all_nmethods_for_deoptimization();
a61af66fc99e Initial load
duke
parents:
diff changeset
42 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 DeoptimizationMarker dm;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Deoptimize all activations depending on marked methods
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Deoptimization::deoptimize_dependents();
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Mark the dependent methods non entrant
a61af66fc99e Initial load
duke
parents:
diff changeset
48 CodeCache::make_marked_nmethods_not_entrant();
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 };
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static void set_bool_flag(const char* flag, bool value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 CommandLineFlags::boolAtPut((char*)flag, strlen(flag), &value,
a61af66fc99e Initial load
duke
parents:
diff changeset
54 ATTACH_ON_DEMAND);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Enable only the "fine grained" flags. Do *not* touch
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // the overall "ExtendedDTraceProbes" flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void DTrace::enable_dprobes(int probes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 bool changed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 if (!DTraceAllocProbes && (probes & DTRACE_ALLOC_PROBES)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 set_bool_flag("DTraceAllocProbes", true);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 if (!DTraceMethodProbes && (probes & DTRACE_METHOD_PROBES)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 set_bool_flag("DTraceMethodProbes", true);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (!DTraceMonitorProbes && (probes & DTRACE_MONITOR_PROBES)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 set_bool_flag("DTraceMonitorProbes", true);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 if (changed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // one or more flags changed, need to deoptimize
a61af66fc99e Initial load
duke
parents:
diff changeset
76 VM_DeoptimizeTheWorld op;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Disable only the "fine grained" flags. Do *not* touch
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // the overall "ExtendedDTraceProbes" flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void DTrace::disable_dprobes(int probes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 bool changed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (DTraceAllocProbes && (probes & DTRACE_ALLOC_PROBES)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 set_bool_flag("DTraceAllocProbes", false);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (DTraceMethodProbes && (probes & DTRACE_METHOD_PROBES)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 set_bool_flag("DTraceMethodProbes", false);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (DTraceMonitorProbes && (probes & DTRACE_MONITOR_PROBES)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 set_bool_flag("DTraceMonitorProbes", false);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (changed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // one or more flags changed, need to deoptimize
a61af66fc99e Initial load
duke
parents:
diff changeset
99 VM_DeoptimizeTheWorld op;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Do clean-up on "all door clients detached" event.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void DTrace::detach_all_clients() {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
107 * We restore the state of the fine grained flags
a61af66fc99e Initial load
duke
parents:
diff changeset
108 * to be consistent with overall ExtendedDTraceProbes.
a61af66fc99e Initial load
duke
parents:
diff changeset
109 * This way, we will honour command line setting or the
a61af66fc99e Initial load
duke
parents:
diff changeset
110 * last explicit modification of ExtendedDTraceProbes by
a61af66fc99e Initial load
duke
parents:
diff changeset
111 * a call to set_extended_dprobes.
a61af66fc99e Initial load
duke
parents:
diff changeset
112 */
a61af66fc99e Initial load
duke
parents:
diff changeset
113 if (ExtendedDTraceProbes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 enable_dprobes(DTRACE_ALL_PROBES);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 disable_dprobes(DTRACE_ALL_PROBES);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void DTrace::set_extended_dprobes(bool flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // explicit setting of ExtendedDTraceProbes flag
a61af66fc99e Initial load
duke
parents:
diff changeset
122 set_bool_flag("ExtendedDTraceProbes", flag);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // make sure that the fine grained flags reflect the change.
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 enable_dprobes(DTRACE_ALL_PROBES);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
129 * FIXME: Revisit this: currently all-client-detach detection
a61af66fc99e Initial load
duke
parents:
diff changeset
130 * does not work and hence disabled. The following scheme does
a61af66fc99e Initial load
duke
parents:
diff changeset
131 * not work. So, we have to disable fine-grained flags here.
a61af66fc99e Initial load
duke
parents:
diff changeset
132 *
a61af66fc99e Initial load
duke
parents:
diff changeset
133 * disable_dprobes call has to be delayed till next "detach all "event.
a61af66fc99e Initial load
duke
parents:
diff changeset
134 * This is to be done so that concurrent DTrace clients that may
a61af66fc99e Initial load
duke
parents:
diff changeset
135 * have enabled one or more fine grained dprobes and may be running
a61af66fc99e Initial load
duke
parents:
diff changeset
136 * still. On "detach all" clients event, we would sync ExtendedDTraceProbes
a61af66fc99e Initial load
duke
parents:
diff changeset
137 * with fine grained flags which would take care of disabling fine grained flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
138 */
a61af66fc99e Initial load
duke
parents:
diff changeset
139 disable_dprobes(DTRACE_ALL_PROBES);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
1324
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 0
diff changeset
143 void DTrace::set_monitor_dprobes(bool flag) {
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 0
diff changeset
144 // explicit setting of DTraceMonitorProbes flag
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 0
diff changeset
145 set_bool_flag("DTraceMonitorProbes", flag);
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 0
diff changeset
146 }
e392695de029 6935224: Adding new DTrace probes to work with Palantir
fparain
parents: 0
diff changeset
147
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #endif /* SOLARIS */