annotate src/share/vm/prims/jvmtiExport.cpp @ 7969:1eae78177059

Merge
author jiangli
date Fri, 01 Feb 2013 15:25:37 -0500
parents 8b46b0196eb0
children 3c9bc17b9403
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 7469
diff changeset
2 * Copyright (c) 2003, 2013, 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: 1397
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1397
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: 1397
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: 1748
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
27 #include "code/nmethod.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
28 #include "code/pcDesc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
29 #include "code/scopeDesc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
30 #include "interpreter/interpreter.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
31 #include "jvmtifiles/jvmtiEnv.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
32 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
33 #include "oops/objArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
34 #include "oops/objArrayOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
35 #include "prims/jvmtiCodeBlobEvents.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
36 #include "prims/jvmtiEventController.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
37 #include "prims/jvmtiEventController.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
38 #include "prims/jvmtiExport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
39 #include "prims/jvmtiImpl.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
40 #include "prims/jvmtiManageCapabilities.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
41 #include "prims/jvmtiRawMonitor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
42 #include "prims/jvmtiTagMap.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
43 #include "prims/jvmtiThreadState.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
44 #include "runtime/arguments.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
45 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
46 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
47 #include "runtime/objectMonitor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
48 #include "runtime/objectMonitor.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
49 #include "runtime/thread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
50 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
51 #include "services/attachListener.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
52 #include "services/serviceUtil.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
53 #ifndef SERIALGC
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
54 #include "gc_implementation/parallelScavenge/psMarkSweep.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1748
diff changeset
55 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 #ifdef JVMTI_TRACE
a61af66fc99e Initial load
duke
parents:
diff changeset
58 #define EVT_TRACE(evt,out) if ((JvmtiTrace::event_trace_flags(evt) & JvmtiTrace::SHOW_EVENT_SENT) != 0) { SafeResourceMark rm; tty->print_cr out; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 #define EVT_TRIG_TRACE(evt,out) if ((JvmtiTrace::event_trace_flags(evt) & JvmtiTrace::SHOW_EVENT_TRIGGER) != 0) { SafeResourceMark rm; tty->print_cr out; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
61 #define EVT_TRIG_TRACE(evt,out)
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #define EVT_TRACE(evt,out)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
66 //
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // JvmtiEventTransition
a61af66fc99e Initial load
duke
parents:
diff changeset
68 //
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // TO DO --
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // more handle purging
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Use this for JavaThreads and state is _thread_in_vm.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 class JvmtiJavaThreadEventTransition : StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
74 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
75 ResourceMark _rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ThreadToNativeFromVM _transition;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 HandleMark _hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
80 JvmtiJavaThreadEventTransition(JavaThread *thread) :
a61af66fc99e Initial load
duke
parents:
diff changeset
81 _rm(),
a61af66fc99e Initial load
duke
parents:
diff changeset
82 _transition(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
83 _hm(thread) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
84 };
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // For JavaThreads which are not in _thread_in_vm state
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // and other system threads use this.
a61af66fc99e Initial load
duke
parents:
diff changeset
88 class JvmtiThreadEventTransition : StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
90 ResourceMark _rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 HandleMark _hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 JavaThreadState _saved_state;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 JavaThread *_jthread;
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
96 JvmtiThreadEventTransition(Thread *thread) : _rm(), _hm() {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 if (thread->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
98 _jthread = (JavaThread *)thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _saved_state = _jthread->thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (_saved_state == _thread_in_Java) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 ThreadStateTransition::transition_from_java(_jthread, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 ThreadStateTransition::transition(_jthread, _saved_state, _thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _jthread = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 ~JvmtiThreadEventTransition() {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if (_jthread != NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ThreadStateTransition::transition_from_native(_jthread, _saved_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 };
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
118 //
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // JvmtiEventMark
a61af66fc99e Initial load
duke
parents:
diff changeset
120 //
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 class JvmtiEventMark : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
123 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
124 JavaThread *_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 JNIEnv* _jni_env;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 bool _exception_detected;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 bool _exception_caught;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 JNIHandleBlock* _hblock;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
133 JvmtiEventMark(JavaThread *thread) : _thread(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _jni_env(thread->jni_environment()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 _hblock = thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 _hblock->clear_thoroughly(); // so we can be safe
a61af66fc99e Initial load
duke
parents:
diff changeset
138 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // we want to use the code above - but that needs the JNIHandle changes - later...
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // for now, steal JNI push local frame code
a61af66fc99e Initial load
duke
parents:
diff changeset
141 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // we are before an event.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Save current jvmti thread exception state.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _exception_detected = state->is_exception_detected();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 _exception_caught = state->is_exception_caught();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 _exception_detected = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 _exception_caught = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 }
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 JNIHandleBlock* old_handles = thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
153 JNIHandleBlock* new_handles = JNIHandleBlock::allocate_block(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 assert(new_handles != NULL, "should not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
155 new_handles->set_pop_frame_link(old_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 thread->set_active_handles(new_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
158 assert(thread == JavaThread::current(), "thread must be current!");
a61af66fc99e Initial load
duke
parents:
diff changeset
159 thread->frame_anchor()->make_walkable(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 };
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 ~JvmtiEventMark() {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _hblock->clear(); // for consistency with future correct behavior
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // we want to use the code above - but that needs the JNIHandle changes - later...
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // for now, steal JNI pop local frame code
a61af66fc99e Initial load
duke
parents:
diff changeset
168 JNIHandleBlock* old_handles = _thread->active_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 JNIHandleBlock* new_handles = old_handles->pop_frame_link();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 assert(new_handles != NULL, "should not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _thread->set_active_handles(new_handles);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // Note that we set the pop_frame_link to NULL explicitly, otherwise
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // the release_block call will release the blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 old_handles->set_pop_frame_link(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 JNIHandleBlock::release_block(old_handles, _thread); // may block
a61af66fc99e Initial load
duke
parents:
diff changeset
176 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 JvmtiThreadState* state = _thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // we are continuing after an event.
a61af66fc99e Initial load
duke
parents:
diff changeset
180 if (state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Restore the jvmti thread exception state.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 if (_exception_detected) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 state->set_exception_detected();
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (_exception_caught) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 state->set_exception_caught();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 jobject to_jobject(oop obj) { return obj == NULL? NULL : _hblock->allocate_handle_fast(obj); }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // we want to use the code above - but that needs the JNIHandle changes - later...
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // for now, use regular make_local
a61af66fc99e Initial load
duke
parents:
diff changeset
196 jobject to_jobject(oop obj) { return JNIHandles::make_local(_thread,obj); }
a61af66fc99e Initial load
duke
parents:
diff changeset
197 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
198
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
199 jclass to_jclass(Klass* klass) { return (klass == NULL ? NULL : (jclass)to_jobject(klass->java_mirror())); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 jmethodID to_jmethodID(methodHandle method) { return method->jmethod_id(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 JNIEnv* jni_env() { return _jni_env; }
a61af66fc99e Initial load
duke
parents:
diff changeset
204 };
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 class JvmtiThreadEventMark : public JvmtiEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
208 jthread _jt;
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
211 JvmtiThreadEventMark(JavaThread *thread) :
a61af66fc99e Initial load
duke
parents:
diff changeset
212 JvmtiEventMark(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 _jt = (jthread)(to_jobject(thread->threadObj()));
a61af66fc99e Initial load
duke
parents:
diff changeset
214 };
a61af66fc99e Initial load
duke
parents:
diff changeset
215 jthread jni_thread() { return _jt; }
a61af66fc99e Initial load
duke
parents:
diff changeset
216 };
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 class JvmtiClassEventMark : public JvmtiThreadEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
220 jclass _jc;
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 public:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
223 JvmtiClassEventMark(JavaThread *thread, Klass* klass) :
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 JvmtiThreadEventMark(thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 _jc = to_jclass(klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 };
a61af66fc99e Initial load
duke
parents:
diff changeset
227 jclass jni_class() { return _jc; }
a61af66fc99e Initial load
duke
parents:
diff changeset
228 };
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 class JvmtiMethodEventMark : public JvmtiThreadEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
232 jmethodID _mid;
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
235 JvmtiMethodEventMark(JavaThread *thread, methodHandle method) :
a61af66fc99e Initial load
duke
parents:
diff changeset
236 JvmtiThreadEventMark(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
237 _mid(to_jmethodID(method)) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
238 jmethodID jni_methodID() { return _mid; }
a61af66fc99e Initial load
duke
parents:
diff changeset
239 };
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 class JvmtiLocationEventMark : public JvmtiMethodEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
243 jlocation _loc;
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
246 JvmtiLocationEventMark(JavaThread *thread, methodHandle method, address location) :
a61af66fc99e Initial load
duke
parents:
diff changeset
247 JvmtiMethodEventMark(thread, method),
a61af66fc99e Initial load
duke
parents:
diff changeset
248 _loc(location - method->code_base()) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
249 jlocation location() { return _loc; }
a61af66fc99e Initial load
duke
parents:
diff changeset
250 };
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 class JvmtiExceptionEventMark : public JvmtiLocationEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
254 jobject _exc;
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
257 JvmtiExceptionEventMark(JavaThread *thread, methodHandle method, address location, Handle exception) :
a61af66fc99e Initial load
duke
parents:
diff changeset
258 JvmtiLocationEventMark(thread, method, location),
a61af66fc99e Initial load
duke
parents:
diff changeset
259 _exc(to_jobject(exception())) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
260 jobject exception() { return _exc; }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 };
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 class JvmtiClassFileLoadEventMark : public JvmtiThreadEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
265 const char *_class_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 jobject _jloader;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 jobject _protection_domain;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 jclass _class_being_redefined;
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
271 JvmtiClassFileLoadEventMark(JavaThread *thread, Symbol* name,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
272 Handle class_loader, Handle prot_domain, KlassHandle *class_being_redefined) : JvmtiThreadEventMark(thread) {
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
273 _class_name = name != NULL? name->as_utf8() : NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
274 _jloader = (jobject)to_jobject(class_loader());
a61af66fc99e Initial load
duke
parents:
diff changeset
275 _protection_domain = (jobject)to_jobject(prot_domain());
a61af66fc99e Initial load
duke
parents:
diff changeset
276 if (class_being_redefined == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
277 _class_being_redefined = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 _class_being_redefined = (jclass)to_jclass((*class_being_redefined)());
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281 };
a61af66fc99e Initial load
duke
parents:
diff changeset
282 const char *class_name() {
a61af66fc99e Initial load
duke
parents:
diff changeset
283 return _class_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
284 }
a61af66fc99e Initial load
duke
parents:
diff changeset
285 jobject jloader() {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 return _jloader;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 }
a61af66fc99e Initial load
duke
parents:
diff changeset
288 jobject protection_domain() {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 return _protection_domain;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 }
a61af66fc99e Initial load
duke
parents:
diff changeset
291 jclass class_being_redefined() {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 return _class_being_redefined;
a61af66fc99e Initial load
duke
parents:
diff changeset
293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
294 };
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 //////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
297
a61af66fc99e Initial load
duke
parents:
diff changeset
298 int JvmtiExport::_field_access_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 int JvmtiExport::_field_modification_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 bool JvmtiExport::_can_access_local_variables = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 bool JvmtiExport::_can_hotswap_or_post_breakpoint = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 bool JvmtiExport::_can_modify_any_class = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 bool JvmtiExport::_can_walk_any_space = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 bool JvmtiExport::_has_redefined_a_class = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 bool JvmtiExport::_all_dependencies_are_recorded = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 //
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // field access management
a61af66fc99e Initial load
duke
parents:
diff changeset
311 //
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // interpreter generator needs the address of the counter
a61af66fc99e Initial load
duke
parents:
diff changeset
314 address JvmtiExport::get_field_access_count_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // We don't grab a lock because we don't want to
a61af66fc99e Initial load
duke
parents:
diff changeset
316 // serialize field access between all threads. This means that a
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // thread on another processor can see the wrong count value and
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // may either miss making a needed call into post_field_access()
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // or will make an unneeded call into post_field_access(). We pay
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // this price to avoid slowing down the VM when we aren't watching
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // field accesses.
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // Other access/mutation safe by virtue of being in VM state.
a61af66fc99e Initial load
duke
parents:
diff changeset
323 return (address)(&_field_access_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 //
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // field modification management
a61af66fc99e Initial load
duke
parents:
diff changeset
328 //
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // interpreter generator needs the address of the counter
a61af66fc99e Initial load
duke
parents:
diff changeset
331 address JvmtiExport::get_field_modification_count_addr() {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // We don't grab a lock because we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // want to serialize field modification between all threads. This
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // means that a thread on another processor can see the wrong
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // count value and may either miss making a needed call into
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // post_field_modification() or will make an unneeded call into
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // post_field_modification(). We pay this price to avoid slowing
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // down the VM when we aren't watching field modifications.
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // Other access/mutation safe by virtue of being in VM state.
a61af66fc99e Initial load
duke
parents:
diff changeset
340 return (address)(&_field_modification_count);
a61af66fc99e Initial load
duke
parents:
diff changeset
341 }
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // Functions needed by java.lang.instrument for starting up javaagent.
a61af66fc99e Initial load
duke
parents:
diff changeset
346 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
347
a61af66fc99e Initial load
duke
parents:
diff changeset
348 jint
a61af66fc99e Initial load
duke
parents:
diff changeset
349 JvmtiExport::get_jvmti_interface(JavaVM *jvm, void **penv, jint version) {
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
350 // The JVMTI_VERSION_INTERFACE_JVMTI part of the version number
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
351 // has already been validated in JNI GetEnv().
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
352 int major, minor, micro;
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
353
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
354 // micro version doesn't matter here (yet?)
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
355 decode_version_values(version, &major, &minor, &micro);
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
356 switch (major) {
1988
684faacebf20 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 1980
diff changeset
357 case 1:
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
358 switch (minor) {
1988
684faacebf20 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 1980
diff changeset
359 case 0: // version 1.0.<micro> is recognized
684faacebf20 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 1980
diff changeset
360 case 1: // version 1.1.<micro> is recognized
684faacebf20 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 1980
diff changeset
361 case 2: // version 1.2.<micro> is recognized
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
362 break;
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
363
1988
684faacebf20 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 1980
diff changeset
364 default:
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
365 return JNI_EVERSION; // unsupported minor version number
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
366 }
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
367 break;
1988
684faacebf20 7003782: Update JVMTI version to 1.2 for jdk7
kamg
parents: 1980
diff changeset
368 default:
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
369 return JNI_EVERSION; // unsupported major version number
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
370 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (JvmtiEnv::get_phase() == JVMTI_PHASE_LIVE) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 JavaThread* current_thread = (JavaThread*) ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // transition code: native to VM
a61af66fc99e Initial load
duke
parents:
diff changeset
375 ThreadInVMfromNative __tiv(current_thread);
4045
a6eef545f1a2 7103224: collision between __LEAF define in interfaceSupport.hpp and /usr/include/sys/cdefs.h with gcc
never
parents: 3304
diff changeset
376 VM_ENTRY_BASE(jvmtiEnv*, JvmtiExport::get_jvmti_interface, current_thread)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
377 debug_only(VMNativeEntryWrapper __vew;)
a61af66fc99e Initial load
duke
parents:
diff changeset
378
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
379 JvmtiEnv *jvmti_env = JvmtiEnv::create_a_jvmti(version);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 *penv = jvmti_env->jvmti_external(); // actual type is jvmtiEnv* -- not to be confused with JvmtiEnv*
a61af66fc99e Initial load
duke
parents:
diff changeset
381 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
382
a61af66fc99e Initial load
duke
parents:
diff changeset
383 } else if (JvmtiEnv::get_phase() == JVMTI_PHASE_ONLOAD) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // not live, no thread to transition
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
385 JvmtiEnv *jvmti_env = JvmtiEnv::create_a_jvmti(version);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
386 *penv = jvmti_env->jvmti_external(); // actual type is jvmtiEnv* -- not to be confused with JvmtiEnv*
a61af66fc99e Initial load
duke
parents:
diff changeset
387 return JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // Called at the wrong time
a61af66fc99e Initial load
duke
parents:
diff changeset
391 *penv = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
392 return JNI_EDETACHED;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 }
a61af66fc99e Initial load
duke
parents:
diff changeset
394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
395
1121
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
396
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
397 void
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
398 JvmtiExport::decode_version_values(jint version, int * major, int * minor,
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
399 int * micro) {
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
400 *major = (version & JVMTI_VERSION_MASK_MAJOR) >> JVMTI_VERSION_SHIFT_MAJOR;
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
401 *minor = (version & JVMTI_VERSION_MASK_MINOR) >> JVMTI_VERSION_SHIFT_MINOR;
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
402 *micro = (version & JVMTI_VERSION_MASK_MICRO) >> JVMTI_VERSION_SHIFT_MICRO;
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
403 }
98cd9901c161 6849968: 3/2 JVMTI tests fails on jdk5.0 with hs14
dcubed
parents: 880
diff changeset
404
0
a61af66fc99e Initial load
duke
parents:
diff changeset
405 void JvmtiExport::enter_primordial_phase() {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 JvmtiEnvBase::set_phase(JVMTI_PHASE_PRIMORDIAL);
a61af66fc99e Initial load
duke
parents:
diff changeset
407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 void JvmtiExport::enter_start_phase() {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 JvmtiManageCapabilities::recompute_always_capabilities();
a61af66fc99e Initial load
duke
parents:
diff changeset
411 JvmtiEnvBase::set_phase(JVMTI_PHASE_START);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413
a61af66fc99e Initial load
duke
parents:
diff changeset
414 void JvmtiExport::enter_onload_phase() {
a61af66fc99e Initial load
duke
parents:
diff changeset
415 JvmtiEnvBase::set_phase(JVMTI_PHASE_ONLOAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
417
a61af66fc99e Initial load
duke
parents:
diff changeset
418 void JvmtiExport::enter_live_phase() {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 JvmtiEnvBase::set_phase(JVMTI_PHASE_LIVE);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 //
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // JVMTI events that the VM posts to the debugger and also startup agent
a61af66fc99e Initial load
duke
parents:
diff changeset
424 // and call the agent's premain() for java.lang.instrument.
a61af66fc99e Initial load
duke
parents:
diff changeset
425 //
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427 void JvmtiExport::post_vm_start() {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 EVT_TRIG_TRACE(JVMTI_EVENT_VM_START, ("JVMTI Trg VM start event triggered" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // can now enable some events
a61af66fc99e Initial load
duke
parents:
diff changeset
431 JvmtiEventController::vm_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
435 if (env->is_enabled(JVMTI_EVENT_VM_START)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
436 EVT_TRACE(JVMTI_EVENT_VM_START, ("JVMTI Evt VM start event sent" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 JavaThread *thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
439 JvmtiThreadEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
440 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
441 jvmtiEventVMStart callback = env->callbacks()->VMStart;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 (*callback)(env->jvmti_external(), jem.jni_env());
a61af66fc99e Initial load
duke
parents:
diff changeset
444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
445 }
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 void JvmtiExport::post_vm_initialized() {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 EVT_TRIG_TRACE(JVMTI_EVENT_VM_INIT, ("JVMTI Trg VM init event triggered" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
452
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // can now enable events
a61af66fc99e Initial load
duke
parents:
diff changeset
454 JvmtiEventController::vm_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
458 if (env->is_enabled(JVMTI_EVENT_VM_INIT)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
459 EVT_TRACE(JVMTI_EVENT_VM_INIT, ("JVMTI Evt VM init event sent" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 JavaThread *thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
462 JvmtiThreadEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
463 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
464 jvmtiEventVMInit callback = env->callbacks()->VMInit;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470 }
a61af66fc99e Initial load
duke
parents:
diff changeset
471
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 void JvmtiExport::post_vm_death() {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 EVT_TRIG_TRACE(JVMTI_EVENT_VM_DEATH, ("JVMTI Trg VM death event triggered" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
475
a61af66fc99e Initial load
duke
parents:
diff changeset
476 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 if (env->is_enabled(JVMTI_EVENT_VM_DEATH)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
479 EVT_TRACE(JVMTI_EVENT_VM_DEATH, ("JVMTI Evt VM death event sent" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 JavaThread *thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
482 JvmtiEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
483 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
484 jvmtiEventVMDeath callback = env->callbacks()->VMDeath;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 (*callback)(env->jvmti_external(), jem.jni_env());
a61af66fc99e Initial load
duke
parents:
diff changeset
487 }
a61af66fc99e Initial load
duke
parents:
diff changeset
488 }
a61af66fc99e Initial load
duke
parents:
diff changeset
489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 JvmtiEnvBase::set_phase(JVMTI_PHASE_DEAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
492 JvmtiEventController::vm_death();
a61af66fc99e Initial load
duke
parents:
diff changeset
493 }
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 char**
a61af66fc99e Initial load
duke
parents:
diff changeset
496 JvmtiExport::get_all_native_method_prefixes(int* count_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // Have to grab JVMTI thread state lock to be sure environment doesn't
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // go away while we iterate them. No locks during VM bring-up.
a61af66fc99e Initial load
duke
parents:
diff changeset
499 if (Threads::number_of_threads() == 0 || SafepointSynchronize::is_at_safepoint()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
500 return JvmtiEnvBase::get_all_native_method_prefixes(count_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
501 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
502 MutexLocker mu(JvmtiThreadState_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
503 return JvmtiEnvBase::get_all_native_method_prefixes(count_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
504 }
a61af66fc99e Initial load
duke
parents:
diff changeset
505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
506
a61af66fc99e Initial load
duke
parents:
diff changeset
507 class JvmtiClassFileLoadHookPoster : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
508 private:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
509 Symbol* _h_name;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
510 Handle _class_loader;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 Handle _h_protection_domain;
a61af66fc99e Initial load
duke
parents:
diff changeset
512 unsigned char ** _data_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
513 unsigned char ** _end_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
514 JavaThread * _thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
515 jint _curr_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
516 unsigned char * _curr_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
517 JvmtiEnv * _curr_env;
a61af66fc99e Initial load
duke
parents:
diff changeset
518 jint * _cached_length_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
519 unsigned char ** _cached_data_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
520 JvmtiThreadState * _state;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 KlassHandle * _h_class_being_redefined;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 JvmtiClassLoadKind _load_kind;
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 public:
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
525 inline JvmtiClassFileLoadHookPoster(Symbol* h_name, Handle class_loader,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 Handle h_protection_domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
527 unsigned char **data_ptr, unsigned char **end_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
528 unsigned char **cached_data_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
529 jint *cached_length_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
530 _h_name = h_name;
a61af66fc99e Initial load
duke
parents:
diff changeset
531 _class_loader = class_loader;
a61af66fc99e Initial load
duke
parents:
diff changeset
532 _h_protection_domain = h_protection_domain;
a61af66fc99e Initial load
duke
parents:
diff changeset
533 _data_ptr = data_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
534 _end_ptr = end_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 _thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
536 _curr_len = *end_ptr - *data_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
537 _curr_data = *data_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
538 _curr_env = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 _cached_length_ptr = cached_length_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
540 _cached_data_ptr = cached_data_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 _state = _thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
543 if (_state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
544 _h_class_being_redefined = _state->get_class_being_redefined();
a61af66fc99e Initial load
duke
parents:
diff changeset
545 _load_kind = _state->get_class_load_kind();
a61af66fc99e Initial load
duke
parents:
diff changeset
546 // Clear class_being_redefined flag here. The action
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // from agent handler could generate a new class file load
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // hook event and if it is not cleared the new event generated
a61af66fc99e Initial load
duke
parents:
diff changeset
549 // from regular class file load could have this stale redefined
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // class handle info.
a61af66fc99e Initial load
duke
parents:
diff changeset
551 _state->clear_class_being_redefined();
a61af66fc99e Initial load
duke
parents:
diff changeset
552 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // redefine and retransform will always set the thread state
a61af66fc99e Initial load
duke
parents:
diff changeset
554 _h_class_being_redefined = (KlassHandle *) NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
555 _load_kind = jvmti_class_load_kind_load;
a61af66fc99e Initial load
duke
parents:
diff changeset
556 }
a61af66fc99e Initial load
duke
parents:
diff changeset
557 }
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 void post() {
a61af66fc99e Initial load
duke
parents:
diff changeset
560 // EVT_TRIG_TRACE(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK,
a61af66fc99e Initial load
duke
parents:
diff changeset
561 // ("JVMTI [%s] class file load hook event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // JvmtiTrace::safe_get_thread_name(_thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
563 post_all_envs();
a61af66fc99e Initial load
duke
parents:
diff changeset
564 copy_modified_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566
a61af66fc99e Initial load
duke
parents:
diff changeset
567 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
568 void post_all_envs() {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 if (_load_kind != jvmti_class_load_kind_retransform) {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // for class load and redefine,
a61af66fc99e Initial load
duke
parents:
diff changeset
571 // call the non-retransformable agents
a61af66fc99e Initial load
duke
parents:
diff changeset
572 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
573 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
574 if (!env->is_retransformable() && env->is_enabled(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 // non-retransformable agents cannot retransform back,
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // so no need to cache the original class file bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
577 post_to_env(env, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580 }
a61af66fc99e Initial load
duke
parents:
diff changeset
581 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 // retransformable agents get all events
a61af66fc99e Initial load
duke
parents:
diff changeset
584 if (env->is_retransformable() && env->is_enabled(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 // retransformable agents need to cache the original class file
a61af66fc99e Initial load
duke
parents:
diff changeset
586 // bytes if changes are made via the ClassFileLoadHook
a61af66fc99e Initial load
duke
parents:
diff changeset
587 post_to_env(env, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 void post_to_env(JvmtiEnv* env, bool caching_needed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 unsigned char *new_data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
594 jint new_len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // EVT_TRACE(JVMTI_EVENT_CLASS_FILE_LOAD_HOOK,
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // ("JVMTI [%s] class file load hook event sent %s data_ptr = %d, data_len = %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
597 // JvmtiTrace::safe_get_thread_name(_thread),
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
598 // _h_name == NULL ? "NULL" : _h_name->as_utf8(),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
599 // _curr_data, _curr_len ));
a61af66fc99e Initial load
duke
parents:
diff changeset
600 JvmtiClassFileLoadEventMark jem(_thread, _h_name, _class_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
601 _h_protection_domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
602 _h_class_being_redefined);
a61af66fc99e Initial load
duke
parents:
diff changeset
603 JvmtiJavaThreadEventTransition jet(_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
604 JNIEnv* jni_env = (JvmtiEnv::get_phase() == JVMTI_PHASE_PRIMORDIAL)?
a61af66fc99e Initial load
duke
parents:
diff changeset
605 NULL : jem.jni_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
606 jvmtiEventClassFileLoadHook callback = env->callbacks()->ClassFileLoadHook;
a61af66fc99e Initial load
duke
parents:
diff changeset
607 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
608 (*callback)(env->jvmti_external(), jni_env,
a61af66fc99e Initial load
duke
parents:
diff changeset
609 jem.class_being_redefined(),
a61af66fc99e Initial load
duke
parents:
diff changeset
610 jem.jloader(), jem.class_name(),
a61af66fc99e Initial load
duke
parents:
diff changeset
611 jem.protection_domain(),
a61af66fc99e Initial load
duke
parents:
diff changeset
612 _curr_len, _curr_data,
a61af66fc99e Initial load
duke
parents:
diff changeset
613 &new_len, &new_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615 if (new_data != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // this agent has modified class data.
a61af66fc99e Initial load
duke
parents:
diff changeset
617 if (caching_needed && *_cached_data_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // data has been changed by the new retransformable agent
a61af66fc99e Initial load
duke
parents:
diff changeset
619 // and it hasn't already been cached, cache it
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4731
diff changeset
620 *_cached_data_ptr = (unsigned char *)os::malloc(_curr_len, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
621 memcpy(*_cached_data_ptr, _curr_data, _curr_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
622 *_cached_length_ptr = _curr_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
623 }
a61af66fc99e Initial load
duke
parents:
diff changeset
624
a61af66fc99e Initial load
duke
parents:
diff changeset
625 if (_curr_data != *_data_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 // curr_data is previous agent modified class data.
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // And this has been changed by the new agent so
a61af66fc99e Initial load
duke
parents:
diff changeset
628 // we can delete it now.
a61af66fc99e Initial load
duke
parents:
diff changeset
629 _curr_env->Deallocate(_curr_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // Class file data has changed by the current agent.
a61af66fc99e Initial load
duke
parents:
diff changeset
633 _curr_data = new_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 _curr_len = new_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // Save the current agent env we need this to deallocate the
a61af66fc99e Initial load
duke
parents:
diff changeset
636 // memory allocated by this agent.
a61af66fc99e Initial load
duke
parents:
diff changeset
637 _curr_env = env;
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639 }
a61af66fc99e Initial load
duke
parents:
diff changeset
640
a61af66fc99e Initial load
duke
parents:
diff changeset
641 void copy_modified_data() {
a61af66fc99e Initial load
duke
parents:
diff changeset
642 // if one of the agent has modified class file data.
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // Copy modified class data to new resources array.
a61af66fc99e Initial load
duke
parents:
diff changeset
644 if (_curr_data != *_data_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
645 *_data_ptr = NEW_RESOURCE_ARRAY(u1, _curr_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
646 memcpy(*_data_ptr, _curr_data, _curr_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
647 *_end_ptr = *_data_ptr + _curr_len;
a61af66fc99e Initial load
duke
parents:
diff changeset
648 _curr_env->Deallocate(_curr_data);
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650 }
a61af66fc99e Initial load
duke
parents:
diff changeset
651 };
a61af66fc99e Initial load
duke
parents:
diff changeset
652
a61af66fc99e Initial load
duke
parents:
diff changeset
653 bool JvmtiExport::_should_post_class_file_load_hook = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // this entry is for class file load hook on class load, redefine and retransform
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
656 void JvmtiExport::post_class_file_load_hook(Symbol* h_name,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
657 Handle class_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
658 Handle h_protection_domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
659 unsigned char **data_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
660 unsigned char **end_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
661 unsigned char **cached_data_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
662 jint *cached_length_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
663 JvmtiClassFileLoadHookPoster poster(h_name, class_loader,
a61af66fc99e Initial load
duke
parents:
diff changeset
664 h_protection_domain,
a61af66fc99e Initial load
duke
parents:
diff changeset
665 data_ptr, end_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
666 cached_data_ptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
667 cached_length_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 poster.post();
a61af66fc99e Initial load
duke
parents:
diff changeset
669 }
a61af66fc99e Initial load
duke
parents:
diff changeset
670
a61af66fc99e Initial load
duke
parents:
diff changeset
671 void JvmtiExport::report_unsupported(bool on) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // If any JVMTI service is turned on, we need to exit before native code
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // tries to access nonexistant services.
a61af66fc99e Initial load
duke
parents:
diff changeset
674 if (on) {
a61af66fc99e Initial load
duke
parents:
diff changeset
675 vm_exit_during_initialization("Java Kernel does not support JVMTI.");
a61af66fc99e Initial load
duke
parents:
diff changeset
676 }
a61af66fc99e Initial load
duke
parents:
diff changeset
677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
678
a61af66fc99e Initial load
duke
parents:
diff changeset
679
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
680 static inline Klass* oop_to_klass(oop obj) {
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
681 Klass* k = obj->klass();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
682
a61af66fc99e Initial load
duke
parents:
diff changeset
683 // if the object is a java.lang.Class then return the java mirror
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 881
diff changeset
684 if (k == SystemDictionary::Class_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
685 if (!java_lang_Class::is_primitive(obj)) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
686 k = java_lang_Class::as_Klass(obj);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
687 assert(k != NULL, "class for non-primitive mirror must exist");
a61af66fc99e Initial load
duke
parents:
diff changeset
688 }
a61af66fc99e Initial load
duke
parents:
diff changeset
689 }
a61af66fc99e Initial load
duke
parents:
diff changeset
690 return k;
a61af66fc99e Initial load
duke
parents:
diff changeset
691 }
a61af66fc99e Initial load
duke
parents:
diff changeset
692
a61af66fc99e Initial load
duke
parents:
diff changeset
693 class JvmtiVMObjectAllocEventMark : public JvmtiClassEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
694 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
695 jobject _jobj;
a61af66fc99e Initial load
duke
parents:
diff changeset
696 jlong _size;
a61af66fc99e Initial load
duke
parents:
diff changeset
697 public:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
698 JvmtiVMObjectAllocEventMark(JavaThread *thread, oop obj) : JvmtiClassEventMark(thread, oop_to_klass(obj)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
699 _jobj = (jobject)to_jobject(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
700 _size = obj->size() * wordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
701 };
a61af66fc99e Initial load
duke
parents:
diff changeset
702 jobject jni_jobject() { return _jobj; }
a61af66fc99e Initial load
duke
parents:
diff changeset
703 jlong size() { return _size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
704 };
a61af66fc99e Initial load
duke
parents:
diff changeset
705
a61af66fc99e Initial load
duke
parents:
diff changeset
706 class JvmtiCompiledMethodLoadEventMark : public JvmtiMethodEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
707 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
708 jint _code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
709 const void *_code_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
710 jint _map_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
711 jvmtiAddrLocationMap *_map;
a61af66fc99e Initial load
duke
parents:
diff changeset
712 const void *_compile_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
713 public:
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
714 JvmtiCompiledMethodLoadEventMark(JavaThread *thread, nmethod *nm, void* compile_info_ptr = NULL)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
715 : JvmtiMethodEventMark(thread,methodHandle(thread, nm->method())) {
1748
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
716 _code_data = nm->insts_begin();
3e8fbc61cee8 6978355: renaming for 6961697
twisti
parents: 1579
diff changeset
717 _code_size = nm->insts_size();
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
718 _compile_info = compile_info_ptr; // Set void pointer of compiledMethodLoad Event. Default value is NULL.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
719 JvmtiCodeBlobEvents::build_jvmti_addr_location_map(nm, &_map, &_map_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721 ~JvmtiCompiledMethodLoadEventMark() {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4731
diff changeset
722 FREE_C_HEAP_ARRAY(jvmtiAddrLocationMap, _map, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
723 }
a61af66fc99e Initial load
duke
parents:
diff changeset
724
a61af66fc99e Initial load
duke
parents:
diff changeset
725 jint code_size() { return _code_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
726 const void *code_data() { return _code_data; }
a61af66fc99e Initial load
duke
parents:
diff changeset
727 jint map_length() { return _map_length; }
a61af66fc99e Initial load
duke
parents:
diff changeset
728 const jvmtiAddrLocationMap* map() { return _map; }
a61af66fc99e Initial load
duke
parents:
diff changeset
729 const void *compile_info() { return _compile_info; }
a61af66fc99e Initial load
duke
parents:
diff changeset
730 };
a61af66fc99e Initial load
duke
parents:
diff changeset
731
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733
a61af66fc99e Initial load
duke
parents:
diff changeset
734 class JvmtiMonitorEventMark : public JvmtiThreadEventMark {
a61af66fc99e Initial load
duke
parents:
diff changeset
735 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
736 jobject _jobj;
a61af66fc99e Initial load
duke
parents:
diff changeset
737 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
738 JvmtiMonitorEventMark(JavaThread *thread, oop object)
a61af66fc99e Initial load
duke
parents:
diff changeset
739 : JvmtiThreadEventMark(thread){
a61af66fc99e Initial load
duke
parents:
diff changeset
740 _jobj = to_jobject(object);
a61af66fc99e Initial load
duke
parents:
diff changeset
741 }
a61af66fc99e Initial load
duke
parents:
diff changeset
742 jobject jni_object() { return _jobj; }
a61af66fc99e Initial load
duke
parents:
diff changeset
743 };
a61af66fc99e Initial load
duke
parents:
diff changeset
744
a61af66fc99e Initial load
duke
parents:
diff changeset
745 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
746 //
a61af66fc99e Initial load
duke
parents:
diff changeset
747 // pending CompiledMethodUnload support
a61af66fc99e Initial load
duke
parents:
diff changeset
748 //
a61af66fc99e Initial load
duke
parents:
diff changeset
749
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
750 void JvmtiExport::post_compiled_method_unload(
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
751 jmethodID method, const void *code_begin) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
752 JavaThread* thread = JavaThread::current();
1577
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
753 EVT_TRIG_TRACE(JVMTI_EVENT_COMPILED_METHOD_UNLOAD,
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
754 ("JVMTI [%s] method compile unload event triggered",
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
755 JvmtiTrace::safe_get_thread_name(thread)));
1577
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
756
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
757 // post the event for each environment that has this event enabled.
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
758 JvmtiEnvIterator it;
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
759 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
760 if (env->is_enabled(JVMTI_EVENT_COMPILED_METHOD_UNLOAD)) {
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
761
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
762 EVT_TRACE(JVMTI_EVENT_COMPILED_METHOD_UNLOAD,
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
763 ("JVMTI [%s] class compile method unload event sent jmethodID " PTR_FORMAT,
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
764 JvmtiTrace::safe_get_thread_name(thread), method));
1577
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
765
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
766 ResourceMark rm(thread);
1577
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
767
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
768 JvmtiEventMark jem(thread);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
769 JvmtiJavaThreadEventTransition jet(thread);
1577
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
770 jvmtiEventCompiledMethodUnload callback = env->callbacks()->CompiledMethodUnload;
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
771 if (callback != NULL) {
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
772 (*callback)(env->jvmti_external(), method, code_begin);
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
773 }
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
774 }
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
775 }
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
776 }
852d0157c696 6956931: assert(SafepointSynchronize::is_at_safepoint()) failed: must be executed at a safepoint
never
parents: 1397
diff changeset
777
0
a61af66fc99e Initial load
duke
parents:
diff changeset
778 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
779 //
a61af66fc99e Initial load
duke
parents:
diff changeset
780 // JvmtiExport
a61af66fc99e Initial load
duke
parents:
diff changeset
781 //
a61af66fc99e Initial load
duke
parents:
diff changeset
782
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
783 void JvmtiExport::post_raw_breakpoint(JavaThread *thread, Method* method, address location) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
784 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
785 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
786
a61af66fc99e Initial load
duke
parents:
diff changeset
787 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
788 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
789 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791 EVT_TRIG_TRACE(JVMTI_EVENT_BREAKPOINT, ("JVMTI [%s] Trg Breakpoint triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
792 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
793 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
794 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
795 ets->compare_and_set_current_location(mh(), location, JVMTI_EVENT_BREAKPOINT);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 if (!ets->breakpoint_posted() && ets->is_enabled(JVMTI_EVENT_BREAKPOINT)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
797 ThreadState old_os_state = thread->osthread()->get_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
798 thread->osthread()->set_state(BREAKPOINTED);
a61af66fc99e Initial load
duke
parents:
diff changeset
799 EVT_TRACE(JVMTI_EVENT_BREAKPOINT, ("JVMTI [%s] Evt Breakpoint sent %s.%s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
800 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
801 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
802 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
803 location - mh()->code_base() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
804
a61af66fc99e Initial load
duke
parents:
diff changeset
805 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
806 JvmtiLocationEventMark jem(thread, mh, location);
a61af66fc99e Initial load
duke
parents:
diff changeset
807 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
808 jvmtiEventBreakpoint callback = env->callbacks()->Breakpoint;
a61af66fc99e Initial load
duke
parents:
diff changeset
809 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
810 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
811 jem.jni_methodID(), jem.location());
a61af66fc99e Initial load
duke
parents:
diff changeset
812 }
a61af66fc99e Initial load
duke
parents:
diff changeset
813
a61af66fc99e Initial load
duke
parents:
diff changeset
814 ets->set_breakpoint_posted();
a61af66fc99e Initial load
duke
parents:
diff changeset
815 thread->osthread()->set_state(old_os_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
816 }
a61af66fc99e Initial load
duke
parents:
diff changeset
817 }
a61af66fc99e Initial load
duke
parents:
diff changeset
818 }
a61af66fc99e Initial load
duke
parents:
diff changeset
819
a61af66fc99e Initial load
duke
parents:
diff changeset
820 //////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 bool JvmtiExport::_can_get_source_debug_extension = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
823 bool JvmtiExport::_can_maintain_original_method_order = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
824 bool JvmtiExport::_can_post_interpreter_events = false;
1213
6deeaebad47a 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 1185
diff changeset
825 bool JvmtiExport::_can_post_on_exceptions = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
826 bool JvmtiExport::_can_post_breakpoint = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
827 bool JvmtiExport::_can_post_field_access = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
828 bool JvmtiExport::_can_post_field_modification = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
829 bool JvmtiExport::_can_post_method_entry = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
830 bool JvmtiExport::_can_post_method_exit = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
831 bool JvmtiExport::_can_pop_frame = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
832 bool JvmtiExport::_can_force_early_return = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834 bool JvmtiExport::_should_post_single_step = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
835 bool JvmtiExport::_should_post_field_access = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
836 bool JvmtiExport::_should_post_field_modification = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
837 bool JvmtiExport::_should_post_class_load = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
838 bool JvmtiExport::_should_post_class_prepare = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
839 bool JvmtiExport::_should_post_class_unload = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
840 bool JvmtiExport::_should_post_thread_life = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
841 bool JvmtiExport::_should_clean_up_heap_objects = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
842 bool JvmtiExport::_should_post_native_method_bind = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
843 bool JvmtiExport::_should_post_dynamic_code_generated = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
844 bool JvmtiExport::_should_post_data_dump = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
845 bool JvmtiExport::_should_post_compiled_method_load = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
846 bool JvmtiExport::_should_post_compiled_method_unload = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
847 bool JvmtiExport::_should_post_monitor_contended_enter = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
848 bool JvmtiExport::_should_post_monitor_contended_entered = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
849 bool JvmtiExport::_should_post_monitor_wait = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
850 bool JvmtiExport::_should_post_monitor_waited = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
851 bool JvmtiExport::_should_post_garbage_collection_start = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
852 bool JvmtiExport::_should_post_garbage_collection_finish = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
853 bool JvmtiExport::_should_post_object_free = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
854 bool JvmtiExport::_should_post_resource_exhausted = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
855 bool JvmtiExport::_should_post_vm_object_alloc = false;
1213
6deeaebad47a 6902182: 4/4 Starting with jdwp agent should not incur performance penalty
dcubed
parents: 1185
diff changeset
856 bool JvmtiExport::_should_post_on_exceptions = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 ////////////////////////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
859
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 //
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // JVMTI single step management
a61af66fc99e Initial load
duke
parents:
diff changeset
863 //
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
864 void JvmtiExport::at_single_stepping_point(JavaThread *thread, Method* method, address location) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
865 assert(JvmtiExport::should_post_single_step(), "must be single stepping");
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
868 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
869
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // update information about current location and post a step event
a61af66fc99e Initial load
duke
parents:
diff changeset
871 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
872 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
873 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
875 EVT_TRIG_TRACE(JVMTI_EVENT_SINGLE_STEP, ("JVMTI [%s] Trg Single Step triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
876 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
877 if (!state->hide_single_stepping()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
878 if (state->is_pending_step_for_popframe()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
879 state->process_pending_step_for_popframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
880 }
a61af66fc99e Initial load
duke
parents:
diff changeset
881 if (state->is_pending_step_for_earlyret()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
882 state->process_pending_step_for_earlyret();
a61af66fc99e Initial load
duke
parents:
diff changeset
883 }
a61af66fc99e Initial load
duke
parents:
diff changeset
884 JvmtiExport::post_single_step(thread, mh(), location);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
886 }
a61af66fc99e Initial load
duke
parents:
diff changeset
887
a61af66fc99e Initial load
duke
parents:
diff changeset
888
a61af66fc99e Initial load
duke
parents:
diff changeset
889 void JvmtiExport::expose_single_stepping(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
890 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
891 if (state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
892 state->clear_hide_single_stepping();
a61af66fc99e Initial load
duke
parents:
diff changeset
893 }
a61af66fc99e Initial load
duke
parents:
diff changeset
894 }
a61af66fc99e Initial load
duke
parents:
diff changeset
895
a61af66fc99e Initial load
duke
parents:
diff changeset
896
a61af66fc99e Initial load
duke
parents:
diff changeset
897 bool JvmtiExport::hide_single_stepping(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
898 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
899 if (state != NULL && state->is_enabled(JVMTI_EVENT_SINGLE_STEP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
900 state->set_hide_single_stepping();
a61af66fc99e Initial load
duke
parents:
diff changeset
901 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
902 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
903 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
904 }
a61af66fc99e Initial load
duke
parents:
diff changeset
905 }
a61af66fc99e Initial load
duke
parents:
diff changeset
906
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
907 void JvmtiExport::post_class_load(JavaThread *thread, Klass* klass) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
908 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
909 KlassHandle kh(thread, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
910
a61af66fc99e Initial load
duke
parents:
diff changeset
911 EVT_TRIG_TRACE(JVMTI_EVENT_CLASS_LOAD, ("JVMTI [%s] Trg Class Load triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
912 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
913 JvmtiThreadState* state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
914 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
915 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
916 }
a61af66fc99e Initial load
duke
parents:
diff changeset
917 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
918 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
919 if (ets->is_enabled(JVMTI_EVENT_CLASS_LOAD)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
920 EVT_TRACE(JVMTI_EVENT_CLASS_LOAD, ("JVMTI [%s] Evt Class Load sent %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
921 JvmtiTrace::safe_get_thread_name(thread),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
922 kh()==NULL? "NULL" : kh()->external_name() ));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
923
a61af66fc99e Initial load
duke
parents:
diff changeset
924 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
925 JvmtiClassEventMark jem(thread, kh());
a61af66fc99e Initial load
duke
parents:
diff changeset
926 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
927 jvmtiEventClassLoad callback = env->callbacks()->ClassLoad;
a61af66fc99e Initial load
duke
parents:
diff changeset
928 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
929 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_class());
a61af66fc99e Initial load
duke
parents:
diff changeset
930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
932 }
a61af66fc99e Initial load
duke
parents:
diff changeset
933 }
a61af66fc99e Initial load
duke
parents:
diff changeset
934
a61af66fc99e Initial load
duke
parents:
diff changeset
935
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
936 void JvmtiExport::post_class_prepare(JavaThread *thread, Klass* klass) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
937 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
938 KlassHandle kh(thread, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
939
a61af66fc99e Initial load
duke
parents:
diff changeset
940 EVT_TRIG_TRACE(JVMTI_EVENT_CLASS_PREPARE, ("JVMTI [%s] Trg Class Prepare triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
941 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
942 JvmtiThreadState* state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
943 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
944 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
945 }
a61af66fc99e Initial load
duke
parents:
diff changeset
946 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
947 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
948 if (ets->is_enabled(JVMTI_EVENT_CLASS_PREPARE)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
949 EVT_TRACE(JVMTI_EVENT_CLASS_PREPARE, ("JVMTI [%s] Evt Class Prepare sent %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
950 JvmtiTrace::safe_get_thread_name(thread),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
951 kh()==NULL? "NULL" : kh()->external_name() ));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
952
a61af66fc99e Initial load
duke
parents:
diff changeset
953 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
954 JvmtiClassEventMark jem(thread, kh());
a61af66fc99e Initial load
duke
parents:
diff changeset
955 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
956 jvmtiEventClassPrepare callback = env->callbacks()->ClassPrepare;
a61af66fc99e Initial load
duke
parents:
diff changeset
957 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
958 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_class());
a61af66fc99e Initial load
duke
parents:
diff changeset
959 }
a61af66fc99e Initial load
duke
parents:
diff changeset
960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
961 }
a61af66fc99e Initial load
duke
parents:
diff changeset
962 }
a61af66fc99e Initial load
duke
parents:
diff changeset
963
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
964 void JvmtiExport::post_class_unload(Klass* klass) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
965 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
966 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
967 KlassHandle kh(thread, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
968
a61af66fc99e Initial load
duke
parents:
diff changeset
969 EVT_TRIG_TRACE(EXT_EVENT_CLASS_UNLOAD, ("JVMTI [?] Trg Class Unload triggered" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
970 if (JvmtiEventController::is_enabled((jvmtiEvent)EXT_EVENT_CLASS_UNLOAD)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
971 assert(thread->is_VM_thread(), "wrong thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
972
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // get JavaThread for whom we are proxy
a61af66fc99e Initial load
duke
parents:
diff changeset
974 JavaThread *real_thread =
a61af66fc99e Initial load
duke
parents:
diff changeset
975 (JavaThread *)((VMThread *)thread)->vm_operation()->calling_thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
976
a61af66fc99e Initial load
duke
parents:
diff changeset
977 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
978 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
979 if (env->is_enabled((jvmtiEvent)EXT_EVENT_CLASS_UNLOAD)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
980 EVT_TRACE(EXT_EVENT_CLASS_UNLOAD, ("JVMTI [?] Evt Class Unload sent %s",
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
981 kh()==NULL? "NULL" : kh()->external_name() ));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983 // do everything manually, since this is a proxy - needs special care
a61af66fc99e Initial load
duke
parents:
diff changeset
984 JNIEnv* jni_env = real_thread->jni_environment();
a61af66fc99e Initial load
duke
parents:
diff changeset
985 jthread jt = (jthread)JNIHandles::make_local(real_thread, real_thread->threadObj());
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
986 jclass jk = (jclass)JNIHandles::make_local(real_thread, kh()->java_mirror());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
987
a61af66fc99e Initial load
duke
parents:
diff changeset
988 // Before we call the JVMTI agent, we have to set the state in the
a61af66fc99e Initial load
duke
parents:
diff changeset
989 // thread for which we are proxying.
a61af66fc99e Initial load
duke
parents:
diff changeset
990 JavaThreadState prev_state = real_thread->thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
991 assert(prev_state == _thread_blocked, "JavaThread should be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
992 real_thread->set_thread_state(_thread_in_native);
a61af66fc99e Initial load
duke
parents:
diff changeset
993
a61af66fc99e Initial load
duke
parents:
diff changeset
994 jvmtiExtensionEvent callback = env->ext_callbacks()->ClassUnload;
a61af66fc99e Initial load
duke
parents:
diff changeset
995 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
996 (*callback)(env->jvmti_external(), jni_env, jt, jk);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 }
a61af66fc99e Initial load
duke
parents:
diff changeset
998
a61af66fc99e Initial load
duke
parents:
diff changeset
999 assert(real_thread->thread_state() == _thread_in_native,
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 "JavaThread should be in native");
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 real_thread->set_thread_state(prev_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 JNIHandles::destroy_local(jk);
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 JNIHandles::destroy_local(jt);
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1009
a61af66fc99e Initial load
duke
parents:
diff changeset
1010
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 void JvmtiExport::post_thread_start(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 assert(thread->thread_state() == _thread_in_vm, "must be in vm state");
a61af66fc99e Initial load
duke
parents:
diff changeset
1013
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 EVT_TRIG_TRACE(JVMTI_EVENT_THREAD_START, ("JVMTI [%s] Trg Thread Start event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1016
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 // do JVMTI thread initialization (if needed)
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 JvmtiEventController::thread_started(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1019
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 // Do not post thread start event for hidden java thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 if (JvmtiEventController::is_enabled(JVMTI_EVENT_THREAD_START) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 !thread->is_hidden_from_external_view()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 if (env->is_enabled(JVMTI_EVENT_THREAD_START)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 EVT_TRACE(JVMTI_EVENT_THREAD_START, ("JVMTI [%s] Evt Thread Start event sent",
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 JvmtiTrace::safe_get_thread_name(thread) ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1028
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 JvmtiThreadEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 jvmtiEventThreadStart callback = env->callbacks()->ThreadStart;
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1039
a61af66fc99e Initial load
duke
parents:
diff changeset
1040
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 void JvmtiExport::post_thread_end(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 EVT_TRIG_TRACE(JVMTI_EVENT_THREAD_END, ("JVMTI [%s] Trg Thread End event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1044
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1049
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 // Do not post thread end event for hidden java thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 if (state->is_enabled(JVMTI_EVENT_THREAD_END) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 !thread->is_hidden_from_external_view()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1053
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 if (ets->is_enabled(JVMTI_EVENT_THREAD_END)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 EVT_TRACE(JVMTI_EVENT_THREAD_END, ("JVMTI [%s] Evt Thread End event sent",
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 JvmtiTrace::safe_get_thread_name(thread) ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1059
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 JvmtiThreadEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 jvmtiEventThreadEnd callback = env->callbacks()->ThreadEnd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1071
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 void JvmtiExport::post_object_free(JvmtiEnv* env, jlong tag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 assert(SafepointSynchronize::is_at_safepoint(), "must be executed at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 assert(env->is_enabled(JVMTI_EVENT_OBJECT_FREE), "checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 EVT_TRIG_TRACE(JVMTI_EVENT_OBJECT_FREE, ("JVMTI [?] Trg Object Free triggered" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 EVT_TRACE(JVMTI_EVENT_OBJECT_FREE, ("JVMTI [?] Evt Object Free sent"));
a61af66fc99e Initial load
duke
parents:
diff changeset
1078
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 jvmtiEventObjectFree callback = env->callbacks()->ObjectFree;
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 (*callback)(env->jvmti_external(), tag);
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1084
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 void JvmtiExport::post_resource_exhausted(jint resource_exhausted_flags, const char* description) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 EVT_TRIG_TRACE(JVMTI_EVENT_RESOURCE_EXHAUSTED, ("JVMTI Trg resource exhausted event triggered" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1087
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 if (env->is_enabled(JVMTI_EVENT_RESOURCE_EXHAUSTED)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 EVT_TRACE(JVMTI_EVENT_RESOURCE_EXHAUSTED, ("JVMTI Evt resource exhausted event sent" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1092
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 JavaThread *thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 JvmtiThreadEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 jvmtiEventResourceExhausted callback = env->callbacks()->ResourceExhausted;
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 (*callback)(env->jvmti_external(), jem.jni_env(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 resource_exhausted_flags, NULL, description);
a61af66fc99e Initial load
duke
parents:
diff changeset
1100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1104
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1105 void JvmtiExport::post_method_entry(JavaThread *thread, Method* method, frame current_frame) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1108
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 EVT_TRIG_TRACE(JVMTI_EVENT_METHOD_ENTRY, ("JVMTI [%s] Trg Method Entry triggered %s.%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1113
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 JvmtiThreadState* state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 if (state == NULL || !state->is_interp_only_mode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 // for any thread that actually wants method entry, interp_only_mode is set
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1119
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 state->incr_cur_stack_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
1121
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 if (state->is_enabled(JVMTI_EVENT_METHOD_ENTRY)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 if (ets->is_enabled(JVMTI_EVENT_METHOD_ENTRY)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 EVT_TRACE(JVMTI_EVENT_METHOD_ENTRY, ("JVMTI [%s] Evt Method Entry sent %s.%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1130
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 JvmtiMethodEventMark jem(thread, mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 jvmtiEventMethodEntry callback = env->callbacks()->MethodEntry;
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_methodID());
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1142
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1143 void JvmtiExport::post_method_exit(JavaThread *thread, Method* method, frame current_frame) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1146
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 EVT_TRIG_TRACE(JVMTI_EVENT_METHOD_EXIT, ("JVMTI [%s] Trg Method Exit triggered %s.%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1150 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1151
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 if (state == NULL || !state->is_interp_only_mode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // for any thread that actually wants method exit, interp_only_mode is set
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1157
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // return a flag when a method terminates by throwing an exception
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 // i.e. if an exception is thrown and it's not caught by the current method
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 bool exception_exit = state->is_exception_detected() && !state->is_exception_caught();
a61af66fc99e Initial load
duke
parents:
diff changeset
1161
a61af66fc99e Initial load
duke
parents:
diff changeset
1162
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 if (state->is_enabled(JVMTI_EVENT_METHOD_EXIT)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 Handle result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 jvalue value;
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 value.j = 0L;
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 // if the method hasn't been popped because of an exception then we populate
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 // the return_value parameter for the callback. At this point we only have
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 // the address of a "raw result" and we just call into the interpreter to
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 // convert this into a jvalue.
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 if (!exception_exit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 oop oop_result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 BasicType type = current_frame.interpreter_frame_result(&oop_result, &value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 if (type == T_OBJECT || type == T_ARRAY) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 result = Handle(thread, oop_result);
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1179
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 if (ets->is_enabled(JVMTI_EVENT_METHOD_EXIT)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 EVT_TRACE(JVMTI_EVENT_METHOD_EXIT, ("JVMTI [%s] Evt Method Exit sent %s.%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1187
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 JvmtiMethodEventMark jem(thread, mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 if (result.not_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 value.l = JNIHandles::make_local(thread, result());
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 jvmtiEventMethodExit callback = env->callbacks()->MethodExit;
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 jem.jni_methodID(), exception_exit, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1202
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 if (state->is_enabled(JVMTI_EVENT_FRAME_POP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 int cur_frame_number = state->cur_stack_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
1207
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 if (ets->is_frame_pop(cur_frame_number)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 // we have a NotifyFramePop entry for this frame.
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 // now check that this env/thread wants this event
a61af66fc99e Initial load
duke
parents:
diff changeset
1211 if (ets->is_enabled(JVMTI_EVENT_FRAME_POP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 EVT_TRACE(JVMTI_EVENT_FRAME_POP, ("JVMTI [%s] Evt Frame Pop sent %s.%s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1216
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // we also need to issue a frame pop event for this frame
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 JvmtiMethodEventMark jem(thread, mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 jvmtiEventFramePop callback = env->callbacks()->FramePop;
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 jem.jni_methodID(), exception_exit);
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 // remove the frame's entry
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 ets->clear_frame_pop(cur_frame_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1232
a61af66fc99e Initial load
duke
parents:
diff changeset
1233 state->decr_cur_stack_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1235
a61af66fc99e Initial load
duke
parents:
diff changeset
1236
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 // Todo: inline this for optimization
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1238 void JvmtiExport::post_single_step(JavaThread *thread, Method* method, address location) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1239 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1241
a61af66fc99e Initial load
duke
parents:
diff changeset
1242 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 ets->compare_and_set_current_location(mh(), location, JVMTI_EVENT_SINGLE_STEP);
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 if (!ets->single_stepping_posted() && ets->is_enabled(JVMTI_EVENT_SINGLE_STEP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 EVT_TRACE(JVMTI_EVENT_SINGLE_STEP, ("JVMTI [%s] Evt Single Step sent %s.%s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 location - mh()->code_base() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1255
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 JvmtiLocationEventMark jem(thread, mh, location);
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 jvmtiEventSingleStep callback = env->callbacks()->SingleStep;
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 jem.jni_methodID(), jem.location());
a61af66fc99e Initial load
duke
parents:
diff changeset
1263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1264
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 ets->set_single_stepping_posted();
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1269
a61af66fc99e Initial load
duke
parents:
diff changeset
1270
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1271 void JvmtiExport::post_exception_throw(JavaThread *thread, Method* method, address location, oop exception) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 Handle exception_handle(thread, exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
1275
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1280
a61af66fc99e Initial load
duke
parents:
diff changeset
1281 EVT_TRIG_TRACE(JVMTI_EVENT_EXCEPTION, ("JVMTI [%s] Trg Exception thrown triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 if (!state->is_exception_detected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 state->set_exception_detected();
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 if (ets->is_enabled(JVMTI_EVENT_EXCEPTION) && (exception != NULL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1288
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 EVT_TRACE(JVMTI_EVENT_EXCEPTION,
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 ("JVMTI [%s] Evt Exception thrown sent %s.%s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 location - mh()->code_base() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1295
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1297 JvmtiExceptionEventMark jem(thread, mh, location, exception_handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
1298
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 // It's okay to clear these exceptions here because we duplicate
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 // this lookup in InterpreterRuntime::exception_handler_for_exception.
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
1302
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 bool should_repeat;
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 vframeStream st(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 assert(!st.at_end(), "cannot be at end");
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1306 Method* current_method = NULL;
7469
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1307 // A GC may occur during the Method::fast_exception_handler_bci_for()
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1308 // call below if it needs to load the constraint class. Using a
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1309 // methodHandle to keep the 'current_method' from being deallocated
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1310 // if GC happens.
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1311 methodHandle current_mh = methodHandle(thread, current_method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1312 int current_bci = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1313 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
1314 current_method = st.method();
7469
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1315 current_mh = methodHandle(thread, current_method);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1316 current_bci = st.bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
1317 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
1318 should_repeat = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1319 KlassHandle eh_klass(thread, exception_handle()->klass());
7469
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1320 current_bci = Method::fast_exception_handler_bci_for(
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1321 current_mh, eh_klass, current_bci, THREAD);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1322 if (HAS_PENDING_EXCEPTION) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1323 exception_handle = Handle(thread, PENDING_EXCEPTION);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1324 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
1325 should_repeat = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1327 } while (should_repeat && (current_bci != -1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1328 st.next();
a61af66fc99e Initial load
duke
parents:
diff changeset
1329 } while ((current_bci < 0) && (!st.at_end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1330
a61af66fc99e Initial load
duke
parents:
diff changeset
1331 jmethodID catch_jmethodID;
a61af66fc99e Initial load
duke
parents:
diff changeset
1332 if (current_bci < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1333 catch_jmethodID = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1334 current_bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1335 } else {
7469
0c8717a92b2d 8001341: SIGSEGV in methodOopDesc::fast_exception_handler_bci_for(KlassHandle,int,Thread*)+0x3e9.
jiangli
parents: 6985
diff changeset
1336 catch_jmethodID = jem.to_jmethodID(current_mh);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1338
a61af66fc99e Initial load
duke
parents:
diff changeset
1339 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1340 jvmtiEventException callback = env->callbacks()->Exception;
a61af66fc99e Initial load
duke
parents:
diff changeset
1341 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1342 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1343 jem.jni_methodID(), jem.location(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1344 jem.exception(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1345 catch_jmethodID, current_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
1346 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1348 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1350
a61af66fc99e Initial load
duke
parents:
diff changeset
1351 // frames may get popped because of this throw, be safe - invalidate cached depth
a61af66fc99e Initial load
duke
parents:
diff changeset
1352 state->invalidate_cur_stack_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
1353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1354
a61af66fc99e Initial load
duke
parents:
diff changeset
1355
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1356 void JvmtiExport::notice_unwind_due_to_exception(JavaThread *thread, Method* method, address location, oop exception, bool in_handler_frame) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1357 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1358 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1359 Handle exception_handle(thread, exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
1360
a61af66fc99e Initial load
duke
parents:
diff changeset
1361 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1362 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1363 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1364 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1365 EVT_TRIG_TRACE(JVMTI_EVENT_EXCEPTION_CATCH,
a61af66fc99e Initial load
duke
parents:
diff changeset
1366 ("JVMTI [%s] Trg unwind_due_to_exception triggered %s.%s @ %s%d - %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1367 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1368 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1369 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1370 location==0? "no location:" : "",
a61af66fc99e Initial load
duke
parents:
diff changeset
1371 location==0? 0 : location - mh()->code_base(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1372 in_handler_frame? "in handler frame" : "not handler frame" ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1373
a61af66fc99e Initial load
duke
parents:
diff changeset
1374 if (state->is_exception_detected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1375
a61af66fc99e Initial load
duke
parents:
diff changeset
1376 state->invalidate_cur_stack_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
1377 if (!in_handler_frame) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1378 // Not in exception handler.
a61af66fc99e Initial load
duke
parents:
diff changeset
1379 if(state->is_interp_only_mode()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1380 // method exit and frame pop events are posted only in interp mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
1381 // When these events are enabled code should be in running in interp mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
1382 JvmtiExport::post_method_exit(thread, method, thread->last_frame());
a61af66fc99e Initial load
duke
parents:
diff changeset
1383 // The cached cur_stack_depth might have changed from the
a61af66fc99e Initial load
duke
parents:
diff changeset
1384 // operations of frame pop or method exit. We are not 100% sure
a61af66fc99e Initial load
duke
parents:
diff changeset
1385 // the cached cur_stack_depth is still valid depth so invalidate
a61af66fc99e Initial load
duke
parents:
diff changeset
1386 // it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1387 state->invalidate_cur_stack_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
1388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1389 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1390 // In exception handler frame. Report exception catch.
a61af66fc99e Initial load
duke
parents:
diff changeset
1391 assert(location != NULL, "must be a known location");
a61af66fc99e Initial load
duke
parents:
diff changeset
1392 // Update cur_stack_depth - the frames above the current frame
a61af66fc99e Initial load
duke
parents:
diff changeset
1393 // have been unwound due to this exception:
a61af66fc99e Initial load
duke
parents:
diff changeset
1394 assert(!state->is_exception_caught(), "exception must not be caught yet.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1395 state->set_exception_caught();
a61af66fc99e Initial load
duke
parents:
diff changeset
1396
a61af66fc99e Initial load
duke
parents:
diff changeset
1397 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1398 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1399 if (ets->is_enabled(JVMTI_EVENT_EXCEPTION_CATCH) && (exception_handle() != NULL)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1400 EVT_TRACE(JVMTI_EVENT_EXCEPTION_CATCH,
a61af66fc99e Initial load
duke
parents:
diff changeset
1401 ("JVMTI [%s] Evt ExceptionCatch sent %s.%s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1402 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1403 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1404 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1405 location - mh()->code_base() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1406
a61af66fc99e Initial load
duke
parents:
diff changeset
1407 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1408 JvmtiExceptionEventMark jem(thread, mh, location, exception_handle);
a61af66fc99e Initial load
duke
parents:
diff changeset
1409 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1410 jvmtiEventExceptionCatch callback = env->callbacks()->ExceptionCatch;
a61af66fc99e Initial load
duke
parents:
diff changeset
1411 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1412 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1413 jem.jni_methodID(), jem.location(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1414 jem.exception());
a61af66fc99e Initial load
duke
parents:
diff changeset
1415 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1416 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1421
a61af66fc99e Initial load
duke
parents:
diff changeset
1422 oop JvmtiExport::jni_GetField_probe(JavaThread *thread, jobject jobj, oop obj,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1423 Klass* klass, jfieldID fieldID, bool is_static) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1424 if (*((int *)get_field_access_count_addr()) > 0 && thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1425 // At least one field access watch is set so we have more work
a61af66fc99e Initial load
duke
parents:
diff changeset
1426 // to do. This wrapper is used by entry points that allow us
a61af66fc99e Initial load
duke
parents:
diff changeset
1427 // to create handles in post_field_access_by_jni().
a61af66fc99e Initial load
duke
parents:
diff changeset
1428 post_field_access_by_jni(thread, obj, klass, fieldID, is_static);
a61af66fc99e Initial load
duke
parents:
diff changeset
1429 // event posting can block so refetch oop if we were passed a jobj
a61af66fc99e Initial load
duke
parents:
diff changeset
1430 if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1432 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1434
a61af66fc99e Initial load
duke
parents:
diff changeset
1435 oop JvmtiExport::jni_GetField_probe_nh(JavaThread *thread, jobject jobj, oop obj,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1436 Klass* klass, jfieldID fieldID, bool is_static) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1437 if (*((int *)get_field_access_count_addr()) > 0 && thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1438 // At least one field access watch is set so we have more work
a61af66fc99e Initial load
duke
parents:
diff changeset
1439 // to do. This wrapper is used by "quick" entry points that don't
a61af66fc99e Initial load
duke
parents:
diff changeset
1440 // allow us to create handles in post_field_access_by_jni(). We
a61af66fc99e Initial load
duke
parents:
diff changeset
1441 // override that with a ResetNoHandleMark.
a61af66fc99e Initial load
duke
parents:
diff changeset
1442 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1443 post_field_access_by_jni(thread, obj, klass, fieldID, is_static);
a61af66fc99e Initial load
duke
parents:
diff changeset
1444 // event posting can block so refetch oop if we were passed a jobj
a61af66fc99e Initial load
duke
parents:
diff changeset
1445 if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1447 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1449
a61af66fc99e Initial load
duke
parents:
diff changeset
1450 void JvmtiExport::post_field_access_by_jni(JavaThread *thread, oop obj,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1451 Klass* klass, jfieldID fieldID, bool is_static) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1452 // We must be called with a Java context in order to provide reasonable
a61af66fc99e Initial load
duke
parents:
diff changeset
1453 // values for the klazz, method, and location fields. The callers of this
a61af66fc99e Initial load
duke
parents:
diff changeset
1454 // function don't make the call unless there is a Java context.
a61af66fc99e Initial load
duke
parents:
diff changeset
1455 assert(thread->has_last_Java_frame(), "must be called with a Java context");
a61af66fc99e Initial load
duke
parents:
diff changeset
1456
a61af66fc99e Initial load
duke
parents:
diff changeset
1457 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1458 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1459 // if get_field_descriptor finds fieldID to be invalid, then we just bail
a61af66fc99e Initial load
duke
parents:
diff changeset
1460 bool valid_fieldID = JvmtiEnv::get_field_descriptor(klass, fieldID, &fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
1461 assert(valid_fieldID == true,"post_field_access_by_jni called with invalid fieldID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1462 if (!valid_fieldID) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1463 // field accesses are not watched so bail
a61af66fc99e Initial load
duke
parents:
diff changeset
1464 if (!fd.is_field_access_watched()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1465
a61af66fc99e Initial load
duke
parents:
diff changeset
1466 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1467 KlassHandle h_klass(thread, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
1468 Handle h_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1469 if (!is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1470 // non-static field accessors have an object, but we need a handle
a61af66fc99e Initial load
duke
parents:
diff changeset
1471 assert(obj != NULL, "non-static needs an object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1472 h_obj = Handle(thread, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1473 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1474 post_field_access(thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
1475 thread->last_frame().interpreter_frame_method(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1476 thread->last_frame().interpreter_frame_bcp(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1477 h_klass, h_obj, fieldID);
a61af66fc99e Initial load
duke
parents:
diff changeset
1478 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1479
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1480 void JvmtiExport::post_field_access(JavaThread *thread, Method* method,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1481 address location, KlassHandle field_klass, Handle object, jfieldID field) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1482
a61af66fc99e Initial load
duke
parents:
diff changeset
1483 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1484 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1485
a61af66fc99e Initial load
duke
parents:
diff changeset
1486 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1487 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1488 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1490 EVT_TRIG_TRACE(JVMTI_EVENT_FIELD_ACCESS, ("JVMTI [%s] Trg Field Access event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1491 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1492 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1493 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1494 if (ets->is_enabled(JVMTI_EVENT_FIELD_ACCESS)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1495 EVT_TRACE(JVMTI_EVENT_FIELD_ACCESS, ("JVMTI [%s] Evt Field Access event sent %s.%s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1496 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1497 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1498 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1499 location - mh()->code_base() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1500
a61af66fc99e Initial load
duke
parents:
diff changeset
1501 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1502 JvmtiLocationEventMark jem(thread, mh, location);
a61af66fc99e Initial load
duke
parents:
diff changeset
1503 jclass field_jclass = jem.to_jclass(field_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1504 jobject field_jobject = jem.to_jobject(object());
a61af66fc99e Initial load
duke
parents:
diff changeset
1505 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1506 jvmtiEventFieldAccess callback = env->callbacks()->FieldAccess;
a61af66fc99e Initial load
duke
parents:
diff changeset
1507 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1508 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1509 jem.jni_methodID(), jem.location(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1510 field_jclass, field_jobject, field);
a61af66fc99e Initial load
duke
parents:
diff changeset
1511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1514 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1515
a61af66fc99e Initial load
duke
parents:
diff changeset
1516 oop JvmtiExport::jni_SetField_probe(JavaThread *thread, jobject jobj, oop obj,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1517 Klass* klass, jfieldID fieldID, bool is_static,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1518 char sig_type, jvalue *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1519 if (*((int *)get_field_modification_count_addr()) > 0 && thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1520 // At least one field modification watch is set so we have more work
a61af66fc99e Initial load
duke
parents:
diff changeset
1521 // to do. This wrapper is used by entry points that allow us
a61af66fc99e Initial load
duke
parents:
diff changeset
1522 // to create handles in post_field_modification_by_jni().
a61af66fc99e Initial load
duke
parents:
diff changeset
1523 post_field_modification_by_jni(thread, obj, klass, fieldID, is_static, sig_type, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1524 // event posting can block so refetch oop if we were passed a jobj
a61af66fc99e Initial load
duke
parents:
diff changeset
1525 if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1526 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1527 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1529
a61af66fc99e Initial load
duke
parents:
diff changeset
1530 oop JvmtiExport::jni_SetField_probe_nh(JavaThread *thread, jobject jobj, oop obj,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1531 Klass* klass, jfieldID fieldID, bool is_static,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1532 char sig_type, jvalue *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1533 if (*((int *)get_field_modification_count_addr()) > 0 && thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1534 // At least one field modification watch is set so we have more work
a61af66fc99e Initial load
duke
parents:
diff changeset
1535 // to do. This wrapper is used by "quick" entry points that don't
a61af66fc99e Initial load
duke
parents:
diff changeset
1536 // allow us to create handles in post_field_modification_by_jni(). We
a61af66fc99e Initial load
duke
parents:
diff changeset
1537 // override that with a ResetNoHandleMark.
a61af66fc99e Initial load
duke
parents:
diff changeset
1538 ResetNoHandleMark rnhm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1539 post_field_modification_by_jni(thread, obj, klass, fieldID, is_static, sig_type, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1540 // event posting can block so refetch oop if we were passed a jobj
a61af66fc99e Initial load
duke
parents:
diff changeset
1541 if (jobj != NULL) return JNIHandles::resolve_non_null(jobj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1542 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1543 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1545
a61af66fc99e Initial load
duke
parents:
diff changeset
1546 void JvmtiExport::post_field_modification_by_jni(JavaThread *thread, oop obj,
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1547 Klass* klass, jfieldID fieldID, bool is_static,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1548 char sig_type, jvalue *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1549 // We must be called with a Java context in order to provide reasonable
a61af66fc99e Initial load
duke
parents:
diff changeset
1550 // values for the klazz, method, and location fields. The callers of this
a61af66fc99e Initial load
duke
parents:
diff changeset
1551 // function don't make the call unless there is a Java context.
a61af66fc99e Initial load
duke
parents:
diff changeset
1552 assert(thread->has_last_Java_frame(), "must be called with Java context");
a61af66fc99e Initial load
duke
parents:
diff changeset
1553
a61af66fc99e Initial load
duke
parents:
diff changeset
1554 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
1555 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1556 // if get_field_descriptor finds fieldID to be invalid, then we just bail
a61af66fc99e Initial load
duke
parents:
diff changeset
1557 bool valid_fieldID = JvmtiEnv::get_field_descriptor(klass, fieldID, &fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
1558 assert(valid_fieldID == true,"post_field_modification_by_jni called with invalid fieldID");
a61af66fc99e Initial load
duke
parents:
diff changeset
1559 if (!valid_fieldID) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1560 // field modifications are not watched so bail
a61af66fc99e Initial load
duke
parents:
diff changeset
1561 if (!fd.is_field_modification_watched()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1562
a61af66fc99e Initial load
duke
parents:
diff changeset
1563 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1564
a61af66fc99e Initial load
duke
parents:
diff changeset
1565 Handle h_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1566 if (!is_static) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1567 // non-static field accessors have an object, but we need a handle
a61af66fc99e Initial load
duke
parents:
diff changeset
1568 assert(obj != NULL, "non-static needs an object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1569 h_obj = Handle(thread, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1571 KlassHandle h_klass(thread, klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
1572 post_field_modification(thread,
a61af66fc99e Initial load
duke
parents:
diff changeset
1573 thread->last_frame().interpreter_frame_method(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1574 thread->last_frame().interpreter_frame_bcp(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1575 h_klass, h_obj, fieldID, sig_type, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1577
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1578 void JvmtiExport::post_raw_field_modification(JavaThread *thread, Method* method,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1579 address location, KlassHandle field_klass, Handle object, jfieldID field,
a61af66fc99e Initial load
duke
parents:
diff changeset
1580 char sig_type, jvalue *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1581
a61af66fc99e Initial load
duke
parents:
diff changeset
1582 if (sig_type == 'I' || sig_type == 'Z' || sig_type == 'C' || sig_type == 'S') {
a61af66fc99e Initial load
duke
parents:
diff changeset
1583 // 'I' instructions are used for byte, char, short and int.
a61af66fc99e Initial load
duke
parents:
diff changeset
1584 // determine which it really is, and convert
a61af66fc99e Initial load
duke
parents:
diff changeset
1585 fieldDescriptor fd;
a61af66fc99e Initial load
duke
parents:
diff changeset
1586 bool found = JvmtiEnv::get_field_descriptor(field_klass(), field, &fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
1587 // should be found (if not, leave as is)
a61af66fc99e Initial load
duke
parents:
diff changeset
1588 if (found) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1589 jint ival = value->i;
a61af66fc99e Initial load
duke
parents:
diff changeset
1590 // convert value from int to appropriate type
a61af66fc99e Initial load
duke
parents:
diff changeset
1591 switch (fd.field_type()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1592 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
1593 sig_type = 'Z';
a61af66fc99e Initial load
duke
parents:
diff changeset
1594 value->i = 0; // clear it
a61af66fc99e Initial load
duke
parents:
diff changeset
1595 value->z = (jboolean)ival;
a61af66fc99e Initial load
duke
parents:
diff changeset
1596 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1597 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
1598 sig_type = 'B';
a61af66fc99e Initial load
duke
parents:
diff changeset
1599 value->i = 0; // clear it
a61af66fc99e Initial load
duke
parents:
diff changeset
1600 value->b = (jbyte)ival;
a61af66fc99e Initial load
duke
parents:
diff changeset
1601 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1602 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
1603 sig_type = 'C';
a61af66fc99e Initial load
duke
parents:
diff changeset
1604 value->i = 0; // clear it
a61af66fc99e Initial load
duke
parents:
diff changeset
1605 value->c = (jchar)ival;
a61af66fc99e Initial load
duke
parents:
diff changeset
1606 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1607 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1608 sig_type = 'S';
a61af66fc99e Initial load
duke
parents:
diff changeset
1609 value->i = 0; // clear it
a61af66fc99e Initial load
duke
parents:
diff changeset
1610 value->s = (jshort)ival;
a61af66fc99e Initial load
duke
parents:
diff changeset
1611 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1612 case T_INT:
a61af66fc99e Initial load
duke
parents:
diff changeset
1613 // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
1614 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1615 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
1616 // this is an integer instruction, should be one of above
a61af66fc99e Initial load
duke
parents:
diff changeset
1617 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
1618 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1619 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1620 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1621 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1622
a61af66fc99e Initial load
duke
parents:
diff changeset
1623 // convert oop to JNI handle.
a61af66fc99e Initial load
duke
parents:
diff changeset
1624 if (sig_type == 'L' || sig_type == '[') {
a61af66fc99e Initial load
duke
parents:
diff changeset
1625 value->l = (jobject)JNIHandles::make_local(thread, (oop)value->l);
a61af66fc99e Initial load
duke
parents:
diff changeset
1626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1627
a61af66fc99e Initial load
duke
parents:
diff changeset
1628 post_field_modification(thread, method, location, field_klass, object, field, sig_type, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1629
a61af66fc99e Initial load
duke
parents:
diff changeset
1630 // Destroy the JNI handle allocated above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1631 if (sig_type == 'L') {
a61af66fc99e Initial load
duke
parents:
diff changeset
1632 JNIHandles::destroy_local(value->l);
a61af66fc99e Initial load
duke
parents:
diff changeset
1633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1635
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1636 void JvmtiExport::post_field_modification(JavaThread *thread, Method* method,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1637 address location, KlassHandle field_klass, Handle object, jfieldID field,
a61af66fc99e Initial load
duke
parents:
diff changeset
1638 char sig_type, jvalue *value_ptr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1639
a61af66fc99e Initial load
duke
parents:
diff changeset
1640 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1641 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1642
a61af66fc99e Initial load
duke
parents:
diff changeset
1643 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1644 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1645 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1646 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1647 EVT_TRIG_TRACE(JVMTI_EVENT_FIELD_MODIFICATION,
a61af66fc99e Initial load
duke
parents:
diff changeset
1648 ("JVMTI [%s] Trg Field Modification event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1649 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1650
a61af66fc99e Initial load
duke
parents:
diff changeset
1651 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1652 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1653 if (ets->is_enabled(JVMTI_EVENT_FIELD_MODIFICATION)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1654 EVT_TRACE(JVMTI_EVENT_FIELD_MODIFICATION,
a61af66fc99e Initial load
duke
parents:
diff changeset
1655 ("JVMTI [%s] Evt Field Modification event sent %s.%s @ %d",
a61af66fc99e Initial load
duke
parents:
diff changeset
1656 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1657 (mh() == NULL) ? "NULL" : mh()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1658 (mh() == NULL) ? "NULL" : mh()->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1659 location - mh()->code_base() ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1660
a61af66fc99e Initial load
duke
parents:
diff changeset
1661 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1662 JvmtiLocationEventMark jem(thread, mh, location);
a61af66fc99e Initial load
duke
parents:
diff changeset
1663 jclass field_jclass = jem.to_jclass(field_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1664 jobject field_jobject = jem.to_jobject(object());
a61af66fc99e Initial load
duke
parents:
diff changeset
1665 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1666 jvmtiEventFieldModification callback = env->callbacks()->FieldModification;
a61af66fc99e Initial load
duke
parents:
diff changeset
1667 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1668 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1669 jem.jni_methodID(), jem.location(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1670 field_jclass, field_jobject, field, sig_type, *value_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1671 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1672 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1673 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1675
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1676 void JvmtiExport::post_native_method_bind(Method* method, address* function_ptr) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1677 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1678 assert(thread->thread_state() == _thread_in_vm, "must be in vm state");
a61af66fc99e Initial load
duke
parents:
diff changeset
1679
a61af66fc99e Initial load
duke
parents:
diff changeset
1680 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1681 methodHandle mh(thread, method);
a61af66fc99e Initial load
duke
parents:
diff changeset
1682
a61af66fc99e Initial load
duke
parents:
diff changeset
1683 EVT_TRIG_TRACE(JVMTI_EVENT_NATIVE_METHOD_BIND, ("JVMTI [%s] Trg Native Method Bind event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1684 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1685
a61af66fc99e Initial load
duke
parents:
diff changeset
1686 if (JvmtiEventController::is_enabled(JVMTI_EVENT_NATIVE_METHOD_BIND)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1687 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1688 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1689 if (env->is_enabled(JVMTI_EVENT_NATIVE_METHOD_BIND)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1690 EVT_TRACE(JVMTI_EVENT_NATIVE_METHOD_BIND, ("JVMTI [%s] Evt Native Method Bind event sent",
a61af66fc99e Initial load
duke
parents:
diff changeset
1691 JvmtiTrace::safe_get_thread_name(thread) ));
a61af66fc99e Initial load
duke
parents:
diff changeset
1692
a61af66fc99e Initial load
duke
parents:
diff changeset
1693 JvmtiMethodEventMark jem(thread, mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
1694 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1695 JNIEnv* jni_env = JvmtiEnv::get_phase() == JVMTI_PHASE_PRIMORDIAL? NULL : jem.jni_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
1696 jvmtiEventNativeMethodBind callback = env->callbacks()->NativeMethodBind;
a61af66fc99e Initial load
duke
parents:
diff changeset
1697 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1698 (*callback)(env->jvmti_external(), jni_env, jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1699 jem.jni_methodID(), (void*)(*function_ptr), (void**)function_ptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
1700 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1701 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1702 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1704 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1705
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1706 // Returns a record containing inlining information for the given nmethod
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1707 jvmtiCompiledMethodLoadInlineRecord* create_inline_record(nmethod* nm) {
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1708 jint numstackframes = 0;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1709 jvmtiCompiledMethodLoadInlineRecord* record = (jvmtiCompiledMethodLoadInlineRecord*)NEW_RESOURCE_OBJ(jvmtiCompiledMethodLoadInlineRecord);
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1710 record->header.kind = JVMTI_CMLR_INLINE_INFO;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1711 record->header.next = NULL;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1712 record->header.majorinfoversion = JVMTI_CMLR_MAJOR_VERSION_1;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1713 record->header.minorinfoversion = JVMTI_CMLR_MINOR_VERSION_0;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1714 record->numpcs = 0;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1715 for(PcDesc* p = nm->scopes_pcs_begin(); p < nm->scopes_pcs_end(); p++) {
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1716 if(p->scope_decode_offset() == DebugInformationRecorder::serialized_null) continue;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1717 record->numpcs++;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1718 }
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1719 record->pcinfo = (PCStackInfo*)(NEW_RESOURCE_ARRAY(PCStackInfo, record->numpcs));
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1720 int scope = 0;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1721 for(PcDesc* p = nm->scopes_pcs_begin(); p < nm->scopes_pcs_end(); p++) {
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1722 if(p->scope_decode_offset() == DebugInformationRecorder::serialized_null) continue;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1723 void* pc_address = (void*)p->real_pc(nm);
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1724 assert(pc_address != NULL, "pc_address must be non-null");
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1725 record->pcinfo[scope].pc = pc_address;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1726 numstackframes=0;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1727 for(ScopeDesc* sd = nm->scope_desc_at(p->real_pc(nm));sd != NULL;sd = sd->sender()) {
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1728 numstackframes++;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1729 }
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1730 assert(numstackframes != 0, "numstackframes must be nonzero.");
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1731 record->pcinfo[scope].methods = (jmethodID *)NEW_RESOURCE_ARRAY(jmethodID, numstackframes);
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1732 record->pcinfo[scope].bcis = (jint *)NEW_RESOURCE_ARRAY(jint, numstackframes);
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1733 record->pcinfo[scope].numstackframes = numstackframes;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1734 int stackframe = 0;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1735 for(ScopeDesc* sd = nm->scope_desc_at(p->real_pc(nm));sd != NULL;sd = sd->sender()) {
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1736 // sd->method() can be NULL for stubs but not for nmethods. To be completely robust, include an assert that we should never see a null sd->method()
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
1737 assert(sd->method() != NULL, "sd->method() cannot be null.");
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1738 record->pcinfo[scope].methods[stackframe] = sd->method()->jmethod_id();
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1739 record->pcinfo[scope].bcis[stackframe] = sd->bci();
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1740 stackframe++;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1741 }
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1742 scope++;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1743 }
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1744 return record;
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1745 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1746
a61af66fc99e Initial load
duke
parents:
diff changeset
1747 void JvmtiExport::post_compiled_method_load(nmethod *nm) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1748 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1749
a61af66fc99e Initial load
duke
parents:
diff changeset
1750 EVT_TRIG_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1751 ("JVMTI [%s] method compile load event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1752 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1753
a61af66fc99e Initial load
duke
parents:
diff changeset
1754 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1755 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1756 if (env->is_enabled(JVMTI_EVENT_COMPILED_METHOD_LOAD)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1757
a61af66fc99e Initial load
duke
parents:
diff changeset
1758 EVT_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1759 ("JVMTI [%s] class compile method load event sent %s.%s ",
a61af66fc99e Initial load
duke
parents:
diff changeset
1760 JvmtiTrace::safe_get_thread_name(thread),
a61af66fc99e Initial load
duke
parents:
diff changeset
1761 (nm->method() == NULL) ? "NULL" : nm->method()->klass_name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1762 (nm->method() == NULL) ? "NULL" : nm->method()->name()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
1763 ResourceMark rm(thread);
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1764 HandleMark hm(thread);
1184
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1765
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1766 // Add inlining information
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1767 jvmtiCompiledMethodLoadInlineRecord* inlinerecord = create_inline_record(nm);
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1768 // Pass inlining information through the void pointer
7fbf850d87b7 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1121
diff changeset
1769 JvmtiCompiledMethodLoadEventMark jem(thread, nm, inlinerecord);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1770 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1771 jvmtiEventCompiledMethodLoad callback = env->callbacks()->CompiledMethodLoad;
a61af66fc99e Initial load
duke
parents:
diff changeset
1772 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1773 (*callback)(env->jvmti_external(), jem.jni_methodID(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1774 jem.code_size(), jem.code_data(), jem.map_length(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1775 jem.map(), jem.compile_info());
a61af66fc99e Initial load
duke
parents:
diff changeset
1776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1777 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1778 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1780
a61af66fc99e Initial load
duke
parents:
diff changeset
1781
a61af66fc99e Initial load
duke
parents:
diff changeset
1782 // post a COMPILED_METHOD_LOAD event for a given environment
a61af66fc99e Initial load
duke
parents:
diff changeset
1783 void JvmtiExport::post_compiled_method_load(JvmtiEnv* env, const jmethodID method, const jint length,
a61af66fc99e Initial load
duke
parents:
diff changeset
1784 const void *code_begin, const jint map_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
1785 const jvmtiAddrLocationMap* map)
a61af66fc99e Initial load
duke
parents:
diff changeset
1786 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1787 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1788 EVT_TRIG_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1789 ("JVMTI [%s] method compile load event triggered (by GenerateEvents)",
a61af66fc99e Initial load
duke
parents:
diff changeset
1790 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1791 if (env->is_enabled(JVMTI_EVENT_COMPILED_METHOD_LOAD)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1792
a61af66fc99e Initial load
duke
parents:
diff changeset
1793 EVT_TRACE(JVMTI_EVENT_COMPILED_METHOD_LOAD,
a61af66fc99e Initial load
duke
parents:
diff changeset
1794 ("JVMTI [%s] class compile method load event sent (by GenerateEvents), jmethodID=" PTR_FORMAT,
a61af66fc99e Initial load
duke
parents:
diff changeset
1795 JvmtiTrace::safe_get_thread_name(thread), method));
a61af66fc99e Initial load
duke
parents:
diff changeset
1796
a61af66fc99e Initial load
duke
parents:
diff changeset
1797 JvmtiEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1798 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1799 jvmtiEventCompiledMethodLoad callback = env->callbacks()->CompiledMethodLoad;
a61af66fc99e Initial load
duke
parents:
diff changeset
1800 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1801 (*callback)(env->jvmti_external(), method,
a61af66fc99e Initial load
duke
parents:
diff changeset
1802 length, code_begin, map_length,
a61af66fc99e Initial load
duke
parents:
diff changeset
1803 map, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1804 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1805 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1806 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1807
a61af66fc99e Initial load
duke
parents:
diff changeset
1808 void JvmtiExport::post_dynamic_code_generated_internal(const char *name, const void *code_begin, const void *code_end) {
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2301
diff changeset
1809 assert(name != NULL && name[0] != '\0', "sanity check");
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2301
diff changeset
1810
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1811 JavaThread* thread = JavaThread::current();
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1812 // In theory everyone coming thru here is in_vm but we need to be certain
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1813 // because a callee will do a vm->native transition
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1814 ThreadInVMfromUnknown __tiv;
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1815
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1816 EVT_TRIG_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
a61af66fc99e Initial load
duke
parents:
diff changeset
1817 ("JVMTI [%s] method dynamic code generated event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1818 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1819 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1820 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1821 if (env->is_enabled(JVMTI_EVENT_DYNAMIC_CODE_GENERATED)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1822 EVT_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
a61af66fc99e Initial load
duke
parents:
diff changeset
1823 ("JVMTI [%s] dynamic code generated event sent for %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1824 JvmtiTrace::safe_get_thread_name(thread), name));
a61af66fc99e Initial load
duke
parents:
diff changeset
1825 JvmtiEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1826 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1827 jint length = (jint)pointer_delta(code_end, code_begin, sizeof(char));
a61af66fc99e Initial load
duke
parents:
diff changeset
1828 jvmtiEventDynamicCodeGenerated callback = env->callbacks()->DynamicCodeGenerated;
a61af66fc99e Initial load
duke
parents:
diff changeset
1829 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1830 (*callback)(env->jvmti_external(), name, (void*)code_begin, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1832 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1833 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1834 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1835
a61af66fc99e Initial load
duke
parents:
diff changeset
1836 void JvmtiExport::post_dynamic_code_generated(const char *name, const void *code_begin, const void *code_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1837 jvmtiPhase phase = JvmtiEnv::get_phase();
a61af66fc99e Initial load
duke
parents:
diff changeset
1838 if (phase == JVMTI_PHASE_PRIMORDIAL || phase == JVMTI_PHASE_START) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1839 post_dynamic_code_generated_internal(name, code_begin, code_end);
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1840 } else {
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1841 // It may not be safe to post the event from this thread. Defer all
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1842 // postings to the service thread so that it can perform them in a safe
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1843 // context and in-order.
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1844 MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1845 JvmtiDeferredEvent event = JvmtiDeferredEvent::dynamic_code_generated_event(
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1846 name, code_begin, code_end);
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
1847 JvmtiDeferredEventQueue::enqueue(event);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1848 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1849 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1850
a61af66fc99e Initial load
duke
parents:
diff changeset
1851
a61af66fc99e Initial load
duke
parents:
diff changeset
1852 // post a DYNAMIC_CODE_GENERATED event for a given environment
a61af66fc99e Initial load
duke
parents:
diff changeset
1853 // used by GenerateEvents
a61af66fc99e Initial load
duke
parents:
diff changeset
1854 void JvmtiExport::post_dynamic_code_generated(JvmtiEnv* env, const char *name,
a61af66fc99e Initial load
duke
parents:
diff changeset
1855 const void *code_begin, const void *code_end)
a61af66fc99e Initial load
duke
parents:
diff changeset
1856 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1857 JavaThread* thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1858 EVT_TRIG_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
a61af66fc99e Initial load
duke
parents:
diff changeset
1859 ("JVMTI [%s] dynamic code generated event triggered (by GenerateEvents)",
a61af66fc99e Initial load
duke
parents:
diff changeset
1860 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1861 if (env->is_enabled(JVMTI_EVENT_DYNAMIC_CODE_GENERATED)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1862 EVT_TRACE(JVMTI_EVENT_DYNAMIC_CODE_GENERATED,
a61af66fc99e Initial load
duke
parents:
diff changeset
1863 ("JVMTI [%s] dynamic code generated event sent for %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
1864 JvmtiTrace::safe_get_thread_name(thread), name));
a61af66fc99e Initial load
duke
parents:
diff changeset
1865 JvmtiEventMark jem(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1866 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1867 jint length = (jint)pointer_delta(code_end, code_begin, sizeof(char));
a61af66fc99e Initial load
duke
parents:
diff changeset
1868 jvmtiEventDynamicCodeGenerated callback = env->callbacks()->DynamicCodeGenerated;
a61af66fc99e Initial load
duke
parents:
diff changeset
1869 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1870 (*callback)(env->jvmti_external(), name, (void*)code_begin, length);
a61af66fc99e Initial load
duke
parents:
diff changeset
1871 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1872 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1873 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1874
a61af66fc99e Initial load
duke
parents:
diff changeset
1875 // post a DynamicCodeGenerated event while holding locks in the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
1876 void JvmtiExport::post_dynamic_code_generated_while_holding_locks(const char* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
1877 address code_begin, address code_end)
a61af66fc99e Initial load
duke
parents:
diff changeset
1878 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1879 // register the stub with the current dynamic code event collector
a61af66fc99e Initial load
duke
parents:
diff changeset
1880 JvmtiThreadState* state = JvmtiThreadState::state_for(JavaThread::current());
609
ea20d7ce26b0 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 342
diff changeset
1881 // state can only be NULL if the current thread is exiting which
ea20d7ce26b0 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 342
diff changeset
1882 // should not happen since we're trying to post an event
ea20d7ce26b0 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 342
diff changeset
1883 guarantee(state != NULL, "attempt to register stub via an exiting thread");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1884 JvmtiDynamicCodeEventCollector* collector = state->get_dynamic_code_event_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
1885 guarantee(collector != NULL, "attempt to register stub without event collector");
a61af66fc99e Initial load
duke
parents:
diff changeset
1886 collector->register_stub(name, code_begin, code_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
1887 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1888
a61af66fc99e Initial load
duke
parents:
diff changeset
1889 // Collect all the vm internally allocated objects which are visible to java world
a61af66fc99e Initial load
duke
parents:
diff changeset
1890 void JvmtiExport::record_vm_internal_object_allocation(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1891 Thread* thread = ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
1892 if (thread != NULL && thread->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1893 // Can not take safepoint here.
a61af66fc99e Initial load
duke
parents:
diff changeset
1894 No_Safepoint_Verifier no_sfpt;
a61af66fc99e Initial load
duke
parents:
diff changeset
1895 // Can not take safepoint here so can not use state_for to get
a61af66fc99e Initial load
duke
parents:
diff changeset
1896 // jvmti thread state.
a61af66fc99e Initial load
duke
parents:
diff changeset
1897 JvmtiThreadState *state = ((JavaThread*)thread)->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1898 if (state != NULL ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1899 // state is non NULL when VMObjectAllocEventCollector is enabled.
a61af66fc99e Initial load
duke
parents:
diff changeset
1900 JvmtiVMObjectAllocEventCollector *collector;
a61af66fc99e Initial load
duke
parents:
diff changeset
1901 collector = state->get_vm_object_alloc_event_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
1902 if (collector != NULL && collector->is_enabled()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1903 // Don't record classes as these will be notified via the ClassLoad
a61af66fc99e Initial load
duke
parents:
diff changeset
1904 // event.
1142
4ce7240d622c 6914300: ciEnv should export all well known classes
never
parents: 881
diff changeset
1905 if (obj->klass() != SystemDictionary::Class_klass()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1906 collector->record_allocation(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1908 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1909 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1910 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1911 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1912
a61af66fc99e Initial load
duke
parents:
diff changeset
1913 void JvmtiExport::post_garbage_collection_finish() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1914 Thread *thread = Thread::current(); // this event is posted from VM-Thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
1915 EVT_TRIG_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_FINISH,
a61af66fc99e Initial load
duke
parents:
diff changeset
1916 ("JVMTI [%s] garbage collection finish event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1917 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1918 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1919 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1920 if (env->is_enabled(JVMTI_EVENT_GARBAGE_COLLECTION_FINISH)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1921 EVT_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_FINISH,
a61af66fc99e Initial load
duke
parents:
diff changeset
1922 ("JVMTI [%s] garbage collection finish event sent ",
a61af66fc99e Initial load
duke
parents:
diff changeset
1923 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1924 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1925 // JNIEnv is NULL here because this event is posted from VM Thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1926 jvmtiEventGarbageCollectionFinish callback = env->callbacks()->GarbageCollectionFinish;
a61af66fc99e Initial load
duke
parents:
diff changeset
1927 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1928 (*callback)(env->jvmti_external());
a61af66fc99e Initial load
duke
parents:
diff changeset
1929 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1930 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1931 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1932 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1933
a61af66fc99e Initial load
duke
parents:
diff changeset
1934 void JvmtiExport::post_garbage_collection_start() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1935 Thread* thread = Thread::current(); // this event is posted from vm-thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
1936 EVT_TRIG_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_START,
a61af66fc99e Initial load
duke
parents:
diff changeset
1937 ("JVMTI [%s] garbage collection start event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1938 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1939 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1940 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1941 if (env->is_enabled(JVMTI_EVENT_GARBAGE_COLLECTION_START)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1942 EVT_TRACE(JVMTI_EVENT_GARBAGE_COLLECTION_START,
a61af66fc99e Initial load
duke
parents:
diff changeset
1943 ("JVMTI [%s] garbage collection start event sent ",
a61af66fc99e Initial load
duke
parents:
diff changeset
1944 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1945 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1946 // JNIEnv is NULL here because this event is posted from VM Thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1947 jvmtiEventGarbageCollectionStart callback = env->callbacks()->GarbageCollectionStart;
a61af66fc99e Initial load
duke
parents:
diff changeset
1948 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1949 (*callback)(env->jvmti_external());
a61af66fc99e Initial load
duke
parents:
diff changeset
1950 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1951 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1952 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1953 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1954
a61af66fc99e Initial load
duke
parents:
diff changeset
1955 void JvmtiExport::post_data_dump() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1956 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
1957 EVT_TRIG_TRACE(JVMTI_EVENT_DATA_DUMP_REQUEST,
a61af66fc99e Initial load
duke
parents:
diff changeset
1958 ("JVMTI [%s] data dump request event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1959 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1960 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
1961 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1962 if (env->is_enabled(JVMTI_EVENT_DATA_DUMP_REQUEST)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1963 EVT_TRACE(JVMTI_EVENT_DATA_DUMP_REQUEST,
a61af66fc99e Initial load
duke
parents:
diff changeset
1964 ("JVMTI [%s] data dump request event sent ",
a61af66fc99e Initial load
duke
parents:
diff changeset
1965 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1966 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1967 // JNIEnv is NULL here because this event is posted from VM Thread
a61af66fc99e Initial load
duke
parents:
diff changeset
1968 jvmtiEventDataDumpRequest callback = env->callbacks()->DataDumpRequest;
a61af66fc99e Initial load
duke
parents:
diff changeset
1969 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1970 (*callback)(env->jvmti_external());
a61af66fc99e Initial load
duke
parents:
diff changeset
1971 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1972 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1973 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1974 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1975
a61af66fc99e Initial load
duke
parents:
diff changeset
1976 void JvmtiExport::post_monitor_contended_enter(JavaThread *thread, ObjectMonitor *obj_mntr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1977 oop object = (oop)obj_mntr->object();
a61af66fc99e Initial load
duke
parents:
diff changeset
1978 if (!ServiceUtil::visible_oop(object)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1979 // Ignore monitor contended enter for vm internal object.
a61af66fc99e Initial load
duke
parents:
diff changeset
1980 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1981 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1982 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
1983 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1984 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
1985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1986
a61af66fc99e Initial load
duke
parents:
diff changeset
1987 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
1988 Handle h(thread, object);
a61af66fc99e Initial load
duke
parents:
diff changeset
1989
a61af66fc99e Initial load
duke
parents:
diff changeset
1990 EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTER,
a61af66fc99e Initial load
duke
parents:
diff changeset
1991 ("JVMTI [%s] montior contended enter event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
1992 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
1993
a61af66fc99e Initial load
duke
parents:
diff changeset
1994 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
1995 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1996 if (ets->is_enabled(JVMTI_EVENT_MONITOR_CONTENDED_ENTER)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1997 EVT_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTER,
a61af66fc99e Initial load
duke
parents:
diff changeset
1998 ("JVMTI [%s] monitor contended enter event sent",
a61af66fc99e Initial load
duke
parents:
diff changeset
1999 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2000 JvmtiMonitorEventMark jem(thread, h());
a61af66fc99e Initial load
duke
parents:
diff changeset
2001 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
2002 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2003 jvmtiEventMonitorContendedEnter callback = env->callbacks()->MonitorContendedEnter;
a61af66fc99e Initial load
duke
parents:
diff changeset
2004 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2005 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_object());
a61af66fc99e Initial load
duke
parents:
diff changeset
2006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2007 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2008 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2009 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2010
a61af66fc99e Initial load
duke
parents:
diff changeset
2011 void JvmtiExport::post_monitor_contended_entered(JavaThread *thread, ObjectMonitor *obj_mntr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2012 oop object = (oop)obj_mntr->object();
a61af66fc99e Initial load
duke
parents:
diff changeset
2013 if (!ServiceUtil::visible_oop(object)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2014 // Ignore monitor contended entered for vm internal object.
a61af66fc99e Initial load
duke
parents:
diff changeset
2015 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2017 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2018 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2019 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2020 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2021
a61af66fc99e Initial load
duke
parents:
diff changeset
2022 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2023 Handle h(thread, object);
a61af66fc99e Initial load
duke
parents:
diff changeset
2024
a61af66fc99e Initial load
duke
parents:
diff changeset
2025 EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTERED,
a61af66fc99e Initial load
duke
parents:
diff changeset
2026 ("JVMTI [%s] montior contended entered event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
2027 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2028
a61af66fc99e Initial load
duke
parents:
diff changeset
2029 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2030 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2031 if (ets->is_enabled(JVMTI_EVENT_MONITOR_CONTENDED_ENTERED)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2032 EVT_TRACE(JVMTI_EVENT_MONITOR_CONTENDED_ENTERED,
a61af66fc99e Initial load
duke
parents:
diff changeset
2033 ("JVMTI [%s] monitor contended enter event sent",
a61af66fc99e Initial load
duke
parents:
diff changeset
2034 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2035 JvmtiMonitorEventMark jem(thread, h());
a61af66fc99e Initial load
duke
parents:
diff changeset
2036 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
2037 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2038 jvmtiEventMonitorContendedEntered callback = env->callbacks()->MonitorContendedEntered;
a61af66fc99e Initial load
duke
parents:
diff changeset
2039 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2040 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(), jem.jni_object());
a61af66fc99e Initial load
duke
parents:
diff changeset
2041 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2042 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2043 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2044 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2045
a61af66fc99e Initial load
duke
parents:
diff changeset
2046 void JvmtiExport::post_monitor_wait(JavaThread *thread, oop object,
a61af66fc99e Initial load
duke
parents:
diff changeset
2047 jlong timeout) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2048 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2049 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2050 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2051 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2052
a61af66fc99e Initial load
duke
parents:
diff changeset
2053 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2054 Handle h(thread, object);
a61af66fc99e Initial load
duke
parents:
diff changeset
2055
a61af66fc99e Initial load
duke
parents:
diff changeset
2056 EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_WAIT,
a61af66fc99e Initial load
duke
parents:
diff changeset
2057 ("JVMTI [%s] montior wait event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
2058 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2059
a61af66fc99e Initial load
duke
parents:
diff changeset
2060 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2061 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2062 if (ets->is_enabled(JVMTI_EVENT_MONITOR_WAIT)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2063 EVT_TRACE(JVMTI_EVENT_MONITOR_WAIT,
a61af66fc99e Initial load
duke
parents:
diff changeset
2064 ("JVMTI [%s] monitor wait event sent ",
a61af66fc99e Initial load
duke
parents:
diff changeset
2065 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2066 JvmtiMonitorEventMark jem(thread, h());
a61af66fc99e Initial load
duke
parents:
diff changeset
2067 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
2068 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2069 jvmtiEventMonitorWait callback = env->callbacks()->MonitorWait;
a61af66fc99e Initial load
duke
parents:
diff changeset
2070 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2071 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2072 jem.jni_object(), timeout);
a61af66fc99e Initial load
duke
parents:
diff changeset
2073 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2074 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2075 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2076 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2077
a61af66fc99e Initial load
duke
parents:
diff changeset
2078 void JvmtiExport::post_monitor_waited(JavaThread *thread, ObjectMonitor *obj_mntr, jboolean timed_out) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2079 oop object = (oop)obj_mntr->object();
a61af66fc99e Initial load
duke
parents:
diff changeset
2080 if (!ServiceUtil::visible_oop(object)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2081 // Ignore monitor waited for vm internal object.
a61af66fc99e Initial load
duke
parents:
diff changeset
2082 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2083 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2084 JvmtiThreadState *state = thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2085 if (state == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2086 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2087 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2088
a61af66fc99e Initial load
duke
parents:
diff changeset
2089 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2090 Handle h(thread, object);
a61af66fc99e Initial load
duke
parents:
diff changeset
2091
a61af66fc99e Initial load
duke
parents:
diff changeset
2092 EVT_TRIG_TRACE(JVMTI_EVENT_MONITOR_WAITED,
a61af66fc99e Initial load
duke
parents:
diff changeset
2093 ("JVMTI [%s] montior waited event triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
2094 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2095
a61af66fc99e Initial load
duke
parents:
diff changeset
2096 JvmtiEnvThreadStateIterator it(state);
a61af66fc99e Initial load
duke
parents:
diff changeset
2097 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2098 if (ets->is_enabled(JVMTI_EVENT_MONITOR_WAITED)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2099 EVT_TRACE(JVMTI_EVENT_MONITOR_WAITED,
a61af66fc99e Initial load
duke
parents:
diff changeset
2100 ("JVMTI [%s] monitor waited event sent ",
a61af66fc99e Initial load
duke
parents:
diff changeset
2101 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2102 JvmtiMonitorEventMark jem(thread, h());
a61af66fc99e Initial load
duke
parents:
diff changeset
2103 JvmtiEnv *env = ets->get_env();
a61af66fc99e Initial load
duke
parents:
diff changeset
2104 JvmtiThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2105 jvmtiEventMonitorWaited callback = env->callbacks()->MonitorWaited;
a61af66fc99e Initial load
duke
parents:
diff changeset
2106 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2107 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2108 jem.jni_object(), timed_out);
a61af66fc99e Initial load
duke
parents:
diff changeset
2109 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2113
a61af66fc99e Initial load
duke
parents:
diff changeset
2114
a61af66fc99e Initial load
duke
parents:
diff changeset
2115 void JvmtiExport::post_vm_object_alloc(JavaThread *thread, oop object) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2116 EVT_TRIG_TRACE(JVMTI_EVENT_VM_OBJECT_ALLOC, ("JVMTI [%s] Trg vm object alloc triggered",
a61af66fc99e Initial load
duke
parents:
diff changeset
2117 JvmtiTrace::safe_get_thread_name(thread)));
a61af66fc99e Initial load
duke
parents:
diff changeset
2118 if (object == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2119 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2121 HandleMark hm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2122 Handle h(thread, object);
a61af66fc99e Initial load
duke
parents:
diff changeset
2123 JvmtiEnvIterator it;
a61af66fc99e Initial load
duke
parents:
diff changeset
2124 for (JvmtiEnv* env = it.first(); env != NULL; env = it.next(env)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2125 if (env->is_enabled(JVMTI_EVENT_VM_OBJECT_ALLOC)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2126 EVT_TRACE(JVMTI_EVENT_VM_OBJECT_ALLOC, ("JVMTI [%s] Evt vmobject alloc sent %s",
a61af66fc99e Initial load
duke
parents:
diff changeset
2127 JvmtiTrace::safe_get_thread_name(thread),
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
2128 object==NULL? "NULL" : java_lang_Class::as_Klass(object)->external_name()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2129
a61af66fc99e Initial load
duke
parents:
diff changeset
2130 JvmtiVMObjectAllocEventMark jem(thread, h());
a61af66fc99e Initial load
duke
parents:
diff changeset
2131 JvmtiJavaThreadEventTransition jet(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
2132 jvmtiEventVMObjectAlloc callback = env->callbacks()->VMObjectAlloc;
a61af66fc99e Initial load
duke
parents:
diff changeset
2133 if (callback != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2134 (*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread(),
a61af66fc99e Initial load
duke
parents:
diff changeset
2135 jem.jni_jobject(), jem.jni_class(), jem.size());
a61af66fc99e Initial load
duke
parents:
diff changeset
2136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2140
a61af66fc99e Initial load
duke
parents:
diff changeset
2141 ////////////////////////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
2142
a61af66fc99e Initial load
duke
parents:
diff changeset
2143 void JvmtiExport::cleanup_thread(JavaThread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2144 assert(JavaThread::current() == thread, "thread is not current");
2126
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2145 MutexLocker mu(JvmtiThreadState_lock);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2146
2126
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2147 if (thread->jvmti_thread_state() != NULL) {
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2148 // This has to happen after the thread state is removed, which is
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2149 // why it is not in post_thread_end_event like its complement
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2150 // Maybe both these functions should be rolled into the posts?
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2151 JvmtiEventController::thread_ended(thread);
db2b0f8c1cef 6814943: getcpool001 catches more than one JvmtiThreadState problem
kamg
parents: 2125
diff changeset
2152 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2154
a61af66fc99e Initial load
duke
parents:
diff changeset
2155 void JvmtiExport::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2156 JvmtiCurrentBreakpoints::oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
2157 JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
2158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2159
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2160 void JvmtiExport::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2161 JvmtiTagMap::weak_oops_do(is_alive, f);
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2162 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2163
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2164 void JvmtiExport::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2165 JvmtiCurrentBreakpoints::gc_epilogue();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2166 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2126
diff changeset
2167
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2168 // Onload raw monitor transition.
a61af66fc99e Initial load
duke
parents:
diff changeset
2169 void JvmtiExport::transition_pending_onload_raw_monitors() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2170 JvmtiPendingMonitors::transition_raw_monitors();
a61af66fc99e Initial load
duke
parents:
diff changeset
2171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2172
a61af66fc99e Initial load
duke
parents:
diff changeset
2173 ////////////////////////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
2174
a61af66fc99e Initial load
duke
parents:
diff changeset
2175 // type for the Agent_OnAttach entry point
a61af66fc99e Initial load
duke
parents:
diff changeset
2176 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
2177 typedef jint (JNICALL *OnAttachEntry_t)(JavaVM*, char *, void *);
a61af66fc99e Initial load
duke
parents:
diff changeset
2178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2179
a61af66fc99e Initial load
duke
parents:
diff changeset
2180 jint JvmtiExport::load_agent_library(AttachOperation* op, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2181 char ebuf[1024];
a61af66fc99e Initial load
duke
parents:
diff changeset
2182 char buffer[JVM_MAXPATHLEN];
6966
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2183 void* library = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2184 jint result = JNI_ERR;
a61af66fc99e Initial load
duke
parents:
diff changeset
2185
a61af66fc99e Initial load
duke
parents:
diff changeset
2186 // get agent name and options
a61af66fc99e Initial load
duke
parents:
diff changeset
2187 const char* agent = op->arg(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2188 const char* absParam = op->arg(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
2189 const char* options = op->arg(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
2190
a61af66fc99e Initial load
duke
parents:
diff changeset
2191 // The abs paramter should be "true" or "false"
a61af66fc99e Initial load
duke
parents:
diff changeset
2192 bool is_absolute_path = (absParam != NULL) && (strcmp(absParam,"true")==0);
a61af66fc99e Initial load
duke
parents:
diff changeset
2193
a61af66fc99e Initial load
duke
parents:
diff changeset
2194
a61af66fc99e Initial load
duke
parents:
diff changeset
2195 // If the path is absolute we attempt to load the library. Otherwise we try to
a61af66fc99e Initial load
duke
parents:
diff changeset
2196 // load it from the standard dll directory.
a61af66fc99e Initial load
duke
parents:
diff changeset
2197
a61af66fc99e Initial load
duke
parents:
diff changeset
2198 if (is_absolute_path) {
1980
828eafbd85cc 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 1972
diff changeset
2199 library = os::dll_load(agent, ebuf, sizeof ebuf);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2200 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2201 // Try to load the agent from the standard dll directory
6966
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2202 if (os::dll_build_name(buffer, sizeof(buffer), Arguments::get_dll_dir(),
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2203 agent)) {
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2204 library = os::dll_load(buffer, ebuf, sizeof ebuf);
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2205 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2206 if (library == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2207 // not found - try local path
a61af66fc99e Initial load
duke
parents:
diff changeset
2208 char ns[1] = {0};
6966
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2209 if (os::dll_build_name(buffer, sizeof(buffer), ns, agent)) {
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2210 library = os::dll_load(buffer, ebuf, sizeof ebuf);
6cb0d32b828b 8001185: parsing of sun.boot.library.path in os::dll_build_name somewhat broken
bpittore
parents: 6725
diff changeset
2211 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2214
a61af66fc99e Initial load
duke
parents:
diff changeset
2215 // If the library was loaded then we attempt to invoke the Agent_OnAttach
a61af66fc99e Initial load
duke
parents:
diff changeset
2216 // function
a61af66fc99e Initial load
duke
parents:
diff changeset
2217 if (library != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2218
a61af66fc99e Initial load
duke
parents:
diff changeset
2219 // Lookup the Agent_OnAttach function
a61af66fc99e Initial load
duke
parents:
diff changeset
2220 OnAttachEntry_t on_attach_entry = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
2221 const char *on_attach_symbols[] = AGENT_ONATTACH_SYMBOLS;
a61af66fc99e Initial load
duke
parents:
diff changeset
2222 for (uint symbol_index = 0; symbol_index < ARRAY_SIZE(on_attach_symbols); symbol_index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2223 on_attach_entry =
1980
828eafbd85cc 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 1972
diff changeset
2224 CAST_TO_FN_PTR(OnAttachEntry_t, os::dll_lookup(library, on_attach_symbols[symbol_index]));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2225 if (on_attach_entry != NULL) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
2226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2227
a61af66fc99e Initial load
duke
parents:
diff changeset
2228 if (on_attach_entry == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2229 // Agent_OnAttach missing - unload library
1980
828eafbd85cc 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 1972
diff changeset
2230 os::dll_unload(library);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2231 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2232 // Invoke the Agent_OnAttach function
a61af66fc99e Initial load
duke
parents:
diff changeset
2233 JavaThread* THREAD = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
2234 {
a61af66fc99e Initial load
duke
parents:
diff changeset
2235 extern struct JavaVM_ main_vm;
a61af66fc99e Initial load
duke
parents:
diff changeset
2236 JvmtiThreadEventMark jem(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2237 JvmtiJavaThreadEventTransition jet(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
2238
a61af66fc99e Initial load
duke
parents:
diff changeset
2239 result = (*on_attach_entry)(&main_vm, (char*)options, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
2240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2241
a61af66fc99e Initial load
duke
parents:
diff changeset
2242 // Agent_OnAttach may have used JNI
a61af66fc99e Initial load
duke
parents:
diff changeset
2243 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2244 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
2245 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2246
a61af66fc99e Initial load
duke
parents:
diff changeset
2247 // If OnAttach returns JNI_OK then we add it to the list of
a61af66fc99e Initial load
duke
parents:
diff changeset
2248 // agent libraries so that we can call Agent_OnUnload later.
a61af66fc99e Initial load
duke
parents:
diff changeset
2249 if (result == JNI_OK) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2250 Arguments::add_loaded_agent(agent, (char*)options, is_absolute_path, library);
a61af66fc99e Initial load
duke
parents:
diff changeset
2251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2252
a61af66fc99e Initial load
duke
parents:
diff changeset
2253 // Agent_OnAttach executed so completion status is JNI_OK
a61af66fc99e Initial load
duke
parents:
diff changeset
2254 st->print_cr("%d", result);
a61af66fc99e Initial load
duke
parents:
diff changeset
2255 result = JNI_OK;
a61af66fc99e Initial load
duke
parents:
diff changeset
2256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2258 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
2259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2260
a61af66fc99e Initial load
duke
parents:
diff changeset
2261 ////////////////////////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
2262
a61af66fc99e Initial load
duke
parents:
diff changeset
2263 // Setup current current thread for event collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
2264 void JvmtiEventCollector::setup_jvmti_thread_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2265 // set this event collector to be the current one.
a61af66fc99e Initial load
duke
parents:
diff changeset
2266 JvmtiThreadState* state = JvmtiThreadState::state_for(JavaThread::current());
609
ea20d7ce26b0 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 342
diff changeset
2267 // state can only be NULL if the current thread is exiting which
ea20d7ce26b0 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 342
diff changeset
2268 // should not happen since we're trying to configure for event collection
ea20d7ce26b0 6800721: 3/4 JavaThread::jvmti_thread_state() and JvmtiThreadState::state_for() robustness
dcubed
parents: 342
diff changeset
2269 guarantee(state != NULL, "exiting thread called setup_jvmti_thread_state");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2270 if (is_vm_object_alloc_event()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2271 _prev = state->get_vm_object_alloc_event_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
2272 state->set_vm_object_alloc_event_collector((JvmtiVMObjectAllocEventCollector *)this);
a61af66fc99e Initial load
duke
parents:
diff changeset
2273 } else if (is_dynamic_code_event()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2274 _prev = state->get_dynamic_code_event_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
2275 state->set_dynamic_code_event_collector((JvmtiDynamicCodeEventCollector *)this);
a61af66fc99e Initial load
duke
parents:
diff changeset
2276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2278
a61af66fc99e Initial load
duke
parents:
diff changeset
2279 // Unset current event collection in this thread and reset it with previous
a61af66fc99e Initial load
duke
parents:
diff changeset
2280 // collector.
a61af66fc99e Initial load
duke
parents:
diff changeset
2281 void JvmtiEventCollector::unset_jvmti_thread_state() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2282 JvmtiThreadState* state = JavaThread::current()->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2283 if (state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2284 // restore the previous event collector (if any)
a61af66fc99e Initial load
duke
parents:
diff changeset
2285 if (is_vm_object_alloc_event()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2286 if (state->get_vm_object_alloc_event_collector() == this) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2287 state->set_vm_object_alloc_event_collector((JvmtiVMObjectAllocEventCollector *)_prev);
a61af66fc99e Initial load
duke
parents:
diff changeset
2288 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2289 // this thread's jvmti state was created during the scope of
a61af66fc99e Initial load
duke
parents:
diff changeset
2290 // the event collector.
a61af66fc99e Initial load
duke
parents:
diff changeset
2291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2292 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2293 if (is_dynamic_code_event()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2294 if (state->get_dynamic_code_event_collector() == this) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2295 state->set_dynamic_code_event_collector((JvmtiDynamicCodeEventCollector *)_prev);
a61af66fc99e Initial load
duke
parents:
diff changeset
2296 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2297 // this thread's jvmti state was created during the scope of
a61af66fc99e Initial load
duke
parents:
diff changeset
2298 // the event collector.
a61af66fc99e Initial load
duke
parents:
diff changeset
2299 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2303 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2304
a61af66fc99e Initial load
duke
parents:
diff changeset
2305 // create the dynamic code event collector
a61af66fc99e Initial load
duke
parents:
diff changeset
2306 JvmtiDynamicCodeEventCollector::JvmtiDynamicCodeEventCollector() : _code_blobs(NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2307 if (JvmtiExport::should_post_dynamic_code_generated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2308 setup_jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2310 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2311
a61af66fc99e Initial load
duke
parents:
diff changeset
2312 // iterate over any code blob descriptors collected and post a
a61af66fc99e Initial load
duke
parents:
diff changeset
2313 // DYNAMIC_CODE_GENERATED event to the profiler.
a61af66fc99e Initial load
duke
parents:
diff changeset
2314 JvmtiDynamicCodeEventCollector::~JvmtiDynamicCodeEventCollector() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2315 assert(!JavaThread::current()->owns_locks(), "all locks must be released to post deferred events");
a61af66fc99e Initial load
duke
parents:
diff changeset
2316 // iterate over any code blob descriptors that we collected
a61af66fc99e Initial load
duke
parents:
diff changeset
2317 if (_code_blobs != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2318 for (int i=0; i<_code_blobs->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2319 JvmtiCodeBlobDesc* blob = _code_blobs->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2320 JvmtiExport::post_dynamic_code_generated(blob->name(), blob->code_begin(), blob->code_end());
a61af66fc99e Initial load
duke
parents:
diff changeset
2321 FreeHeap(blob);
a61af66fc99e Initial load
duke
parents:
diff changeset
2322 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2323 delete _code_blobs;
a61af66fc99e Initial load
duke
parents:
diff changeset
2324 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2325 unset_jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2327
a61af66fc99e Initial load
duke
parents:
diff changeset
2328 // register a stub
a61af66fc99e Initial load
duke
parents:
diff changeset
2329 void JvmtiDynamicCodeEventCollector::register_stub(const char* name, address start, address end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2330 if (_code_blobs == NULL) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4731
diff changeset
2331 _code_blobs = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<JvmtiCodeBlobDesc*>(1,true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2333 _code_blobs->append(new JvmtiCodeBlobDesc(name, start, end));
a61af66fc99e Initial load
duke
parents:
diff changeset
2334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2335
a61af66fc99e Initial load
duke
parents:
diff changeset
2336 // Setup current thread to record vm allocated objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
2337 JvmtiVMObjectAllocEventCollector::JvmtiVMObjectAllocEventCollector() : _allocated(NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2338 if (JvmtiExport::should_post_vm_object_alloc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2339 _enable = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
2340 setup_jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2341 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
2342 _enable = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
2343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2345
a61af66fc99e Initial load
duke
parents:
diff changeset
2346 // Post vm_object_alloc event for vm allocated objects visible to java
a61af66fc99e Initial load
duke
parents:
diff changeset
2347 // world.
a61af66fc99e Initial load
duke
parents:
diff changeset
2348 JvmtiVMObjectAllocEventCollector::~JvmtiVMObjectAllocEventCollector() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2349 if (_allocated != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2350 set_enabled(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2351 for (int i = 0; i < _allocated->length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2352 oop obj = _allocated->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
2353 if (ServiceUtil::visible_oop(obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2354 JvmtiExport::post_vm_object_alloc(JavaThread::current(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2355 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2357 delete _allocated;
a61af66fc99e Initial load
duke
parents:
diff changeset
2358 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2359 unset_jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2360 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2361
a61af66fc99e Initial load
duke
parents:
diff changeset
2362 void JvmtiVMObjectAllocEventCollector::record_allocation(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2363 assert(is_enabled(), "VM object alloc event collector is not enabled");
a61af66fc99e Initial load
duke
parents:
diff changeset
2364 if (_allocated == NULL) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4731
diff changeset
2365 _allocated = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<oop>(1, true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2367 _allocated->push(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
2368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2369
a61af66fc99e Initial load
duke
parents:
diff changeset
2370 // GC support.
a61af66fc99e Initial load
duke
parents:
diff changeset
2371 void JvmtiVMObjectAllocEventCollector::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2372 if (_allocated != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2373 for(int i=_allocated->length() - 1; i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2374 if (_allocated->at(i) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2375 f->do_oop(_allocated->adr_at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
2376 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2378 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2380
a61af66fc99e Initial load
duke
parents:
diff changeset
2381 void JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2382 // no-op if jvmti not enabled
a61af66fc99e Initial load
duke
parents:
diff changeset
2383 if (!JvmtiEnv::environments_might_exist()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2384 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2386
a61af66fc99e Initial load
duke
parents:
diff changeset
2387 // Runs at safepoint. So no need to acquire Threads_lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
2388 for (JavaThread *jthr = Threads::first(); jthr != NULL; jthr = jthr->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2389 JvmtiThreadState *state = jthr->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2390 if (state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2391 JvmtiVMObjectAllocEventCollector *collector;
a61af66fc99e Initial load
duke
parents:
diff changeset
2392 collector = state->get_vm_object_alloc_event_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
2393 while (collector != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2394 collector->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
2395 collector = (JvmtiVMObjectAllocEventCollector *)collector->get_prev();
a61af66fc99e Initial load
duke
parents:
diff changeset
2396 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2399 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2400
a61af66fc99e Initial load
duke
parents:
diff changeset
2401
a61af66fc99e Initial load
duke
parents:
diff changeset
2402 // Disable collection of VMObjectAlloc events
a61af66fc99e Initial load
duke
parents:
diff changeset
2403 NoJvmtiVMObjectAllocMark::NoJvmtiVMObjectAllocMark() : _collector(NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2404 // a no-op if VMObjectAlloc event is not enabled
a61af66fc99e Initial load
duke
parents:
diff changeset
2405 if (!JvmtiExport::should_post_vm_object_alloc()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2406 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2407 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2408 Thread* thread = ThreadLocalStorage::thread();
a61af66fc99e Initial load
duke
parents:
diff changeset
2409 if (thread != NULL && thread->is_Java_thread()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2410 JavaThread* current_thread = (JavaThread*)thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
2411 JvmtiThreadState *state = current_thread->jvmti_thread_state();
a61af66fc99e Initial load
duke
parents:
diff changeset
2412 if (state != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2413 JvmtiVMObjectAllocEventCollector *collector;
a61af66fc99e Initial load
duke
parents:
diff changeset
2414 collector = state->get_vm_object_alloc_event_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
2415 if (collector != NULL && collector->is_enabled()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2416 _collector = collector;
a61af66fc99e Initial load
duke
parents:
diff changeset
2417 _collector->set_enabled(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
2418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2422
a61af66fc99e Initial load
duke
parents:
diff changeset
2423 // Re-Enable collection of VMObjectAlloc events (if previously enabled)
a61af66fc99e Initial load
duke
parents:
diff changeset
2424 NoJvmtiVMObjectAllocMark::~NoJvmtiVMObjectAllocMark() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2425 if (was_enabled()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2426 _collector->set_enabled(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
2427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2428 };
a61af66fc99e Initial load
duke
parents:
diff changeset
2429
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1988
diff changeset
2430 JvmtiGCMarker::JvmtiGCMarker() {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2431 // if there aren't any JVMTI environments then nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
2432 if (!JvmtiEnv::environments_might_exist()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2433 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2435
a61af66fc99e Initial load
duke
parents:
diff changeset
2436 if (JvmtiExport::should_post_garbage_collection_start()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2437 JvmtiExport::post_garbage_collection_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
2438 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2439
2125
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1988
diff changeset
2440 if (SafepointSynchronize::is_at_safepoint()) {
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1988
diff changeset
2441 // Do clean up tasks that need to be done at a safepoint
7246a374a9f2 6458402: 3 jvmti tests fail with CMS and +ExplicitGCInvokesConcurrent
kamg
parents: 1988
diff changeset
2442 JvmtiEnvBase::check_for_periodic_clean_up();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
2443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2444 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2445
a61af66fc99e Initial load
duke
parents:
diff changeset
2446 JvmtiGCMarker::~JvmtiGCMarker() {
a61af66fc99e Initial load
duke
parents:
diff changeset
2447 // if there aren't any JVMTI environments then nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
2448 if (!JvmtiEnv::environments_might_exist()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2449 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
2450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2451
a61af66fc99e Initial load
duke
parents:
diff changeset
2452 // JVMTI notify gc finish
a61af66fc99e Initial load
duke
parents:
diff changeset
2453 if (JvmtiExport::should_post_garbage_collection_finish()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
2454 JvmtiExport::post_garbage_collection_finish();
a61af66fc99e Initial load
duke
parents:
diff changeset
2455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
2456 }