annotate src/share/vm/prims/jvmtiImpl.cpp @ 23961:0cdf9eb633c4

8159515: Improve indy validation Reviewed-by: jrose, hseigel, vlivanov, bmoloden, ctornqvi, mschoene
author coleenp
date Wed, 29 Jun 2016 11:52:27 -0400
parents 9cfc607cb03e
children dd9cc155639c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13038
diff changeset
2 * Copyright (c) 2003, 2014, 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: 611
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 611
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: 611
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: 1922
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
26 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
27 #include "interpreter/interpreter.hpp"
22918
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
28 #include "interpreter/oopMapCache.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
29 #include "jvmtifiles/jvmtiEnv.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
30 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
31 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
32 #include "prims/jvmtiAgentThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
33 #include "prims/jvmtiEventController.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
34 #include "prims/jvmtiImpl.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
35 #include "prims/jvmtiRedefineClasses.hpp"
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
36 #include "runtime/atomic.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
37 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
38 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
39 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
40 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
41 #include "runtime/javaCalls.hpp"
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
42 #include "runtime/os.hpp"
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
43 #include "runtime/serviceThread.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
44 #include "runtime/signature.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 6983
diff changeset
45 #include "runtime/thread.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
46 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
47 #include "runtime/vframe_hp.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
48 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
49 #include "utilities/exceptions.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 //
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // class JvmtiAgentThread
a61af66fc99e Initial load
duke
parents:
diff changeset
53 //
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // JavaThread used to wrap a thread started by an agent
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // using the JVMTI method RunAgentThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 //
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 JvmtiAgentThread::JvmtiAgentThread(JvmtiEnv* env, jvmtiStartFunction start_fn, const void *start_arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
59 : JavaThread(start_function_wrapper) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _env = env;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 _start_fn = start_fn;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _start_arg = start_arg;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void
a61af66fc99e Initial load
duke
parents:
diff changeset
66 JvmtiAgentThread::start_function_wrapper(JavaThread *thread, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // It is expected that any Agent threads will be created as
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Java Threads. If this is the case, notification of the creation
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // of the thread is given in JavaThread::thread_main().
a61af66fc99e Initial load
duke
parents:
diff changeset
70 assert(thread->is_Java_thread(), "debugger thread should be a Java Thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
71 assert(thread == JavaThread::current(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 JvmtiAgentThread *dthread = (JvmtiAgentThread *)thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 dthread->call_start_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 }
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 void
a61af66fc99e Initial load
duke
parents:
diff changeset
78 JvmtiAgentThread::call_start_function() {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ThreadToNativeFromVM transition(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _start_fn(_env->jvmti_external(), jni_environment(), (void*)_start_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 //
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // class GrowableCache - private methods
a61af66fc99e Initial load
duke
parents:
diff changeset
86 //
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 void GrowableCache::recache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int len = _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
90
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3960
diff changeset
91 FREE_C_HEAP_ARRAY(address, _cache, mtInternal);
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3960
diff changeset
92 _cache = NEW_C_HEAP_ARRAY(address,len+1, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 _cache[i] = _elements->at(i)->getCacheValue();
a61af66fc99e Initial load
duke
parents:
diff changeset
96 //
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // The cache entry has gone bad. Without a valid frame pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // value, the entry is useless so we simply delete it in product
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // mode. The call to remove() will rebuild the cache again
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // without the bad entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 //
a61af66fc99e Initial load
duke
parents:
diff changeset
102 if (_cache[i] == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 assert(false, "cannot recache NULL elements");
a61af66fc99e Initial load
duke
parents:
diff changeset
104 remove(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 _cache[len] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 _listener_fun(_this_obj,_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bool GrowableCache::equals(void* v, GrowableElement *e2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 GrowableElement *e1 = (GrowableElement *) v;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 assert(e1 != NULL, "e1 != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
116 assert(e2 != NULL, "e2 != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return e1->equals(e2);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
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 GrowableCache - public methods
a61af66fc99e Initial load
duke
parents:
diff changeset
123 //
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 GrowableCache::GrowableCache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _this_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _listener_fun = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 _elements = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 _cache = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 GrowableCache::~GrowableCache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
134 delete _elements;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3960
diff changeset
135 FREE_C_HEAP_ARRAY(address, _cache, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 void GrowableCache::initialize(void *this_obj, void listener_fun(void *, address*) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _this_obj = this_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
140 _listener_fun = listener_fun;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 3960
diff changeset
141 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<GrowableElement*>(5,true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
142 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // number of elements in the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
146 int GrowableCache::length() {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // get the value of the index element in the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
151 GrowableElement* GrowableCache::at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 GrowableElement *e = (GrowableElement *) _elements->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 assert(e != NULL, "e != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
154 return e;
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 int GrowableCache::find(GrowableElement* e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 return _elements->find(e, GrowableCache::equals);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // append a copy of the element to the end of the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
162 void GrowableCache::append(GrowableElement* e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 GrowableElement *new_e = e->clone();
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _elements->append(new_e);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // insert a copy of the element using lessthan()
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void GrowableCache::insert(GrowableElement* e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 GrowableElement *new_e = e->clone();
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _elements->append(new_e);
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 int n = length()-2;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 for (int i=n; i>=0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 GrowableElement *e1 = _elements->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 GrowableElement *e2 = _elements->at(i+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (e2->lessThan(e1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 _elements->at_put(i+1, e1);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 _elements->at_put(i, e2);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // remove the element at index
a61af66fc99e Initial load
duke
parents:
diff changeset
187 void GrowableCache::remove (int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 GrowableElement *e = _elements->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 assert(e != NULL, "e != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
190 _elements->remove(e);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 delete e;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
193 }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // clear out all elements, release all heap space and
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // let our listener know that things have changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
197 void GrowableCache::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
198 int len = _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 delete _elements->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 }
a61af66fc99e Initial load
duke
parents:
diff changeset
202 _elements->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
203 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 void GrowableCache::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 int len = _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 GrowableElement *e = _elements->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 e->oops_do(f);
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
211 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
212 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
213
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
214 void GrowableCache::metadata_do(void f(Metadata*)) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
215 int len = _elements->length();
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
216 for (int i=0; i<len; i++) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
217 GrowableElement *e = _elements->at(i);
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
218 e->metadata_do(f);
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
219 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
220 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
221
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
222 void GrowableCache::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
223 int len = _elements->length();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
224 for (int i=0; i<len; i++) {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
225 _cache[i] = _elements->at(i)->getCacheValue();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
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 JvmtiBreakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
231 //
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 JvmtiBreakpoint::JvmtiBreakpoint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _method = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 _bci = 0;
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
236 _class_holder = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
239 JvmtiBreakpoint::JvmtiBreakpoint(Method* m_method, jlocation location) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
240 _method = m_method;
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
241 _class_holder = _method->method_holder()->klass_holder();
12983
2fab5b7e6140 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 12281
diff changeset
242 #ifdef CHECK_UNHANDLED_OOPS
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
243 // _class_holder can't be wrapped in a Handle, because JvmtiBreakpoints are
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
244 // sometimes allocated on the heap.
12983
2fab5b7e6140 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 12281
diff changeset
245 //
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
246 // The code handling JvmtiBreakpoints allocated on the stack can't be
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
247 // interrupted by a GC until _class_holder is reachable by the GC via the
12983
2fab5b7e6140 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 12281
diff changeset
248 // oops_do method.
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
249 Thread::current()->allow_unhandled_oop(&_class_holder);
12983
2fab5b7e6140 8025834: NPE in Parallel Scavenge with -XX:+CheckUnhandledOops
ehelin
parents: 12281
diff changeset
250 #endif // CHECK_UNHANDLED_OOPS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
251 assert(_method != NULL, "_method != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
252 _bci = (int) location;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 assert(_bci >= 0, "_bci >= 0");
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 void JvmtiBreakpoint::copy(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _method = bp._method;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 _bci = bp._bci;
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
259 _class_holder = bp._class_holder;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261
a61af66fc99e Initial load
duke
parents:
diff changeset
262 bool JvmtiBreakpoint::lessThan(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
264 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 bool JvmtiBreakpoint::equals(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 return _method == bp._method
a61af66fc99e Initial load
duke
parents:
diff changeset
269 && _bci == bp._bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 }
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 bool JvmtiBreakpoint::is_valid() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
273 // class loader can be NULL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
274 return _method != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
275 _bci >= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 address JvmtiBreakpoint::getBcp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 return _method->bcp_from(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 }
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 void JvmtiBreakpoint::each_method_version_do(method_action meth_act) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
283 ((Method*)_method->*meth_act)(_bci);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // add/remove breakpoint to/from versions of the method that
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // are EMCP. Directly or transitively obsolete methods are
12281
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
287 // not saved in the PreviousVersionNodes.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
289 instanceKlassHandle ikh = instanceKlassHandle(thread, _method->method_holder());
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
290 Symbol* m_name = _method->name();
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
291 Symbol* m_signature = _method->signature();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
292
12281
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
293 // search previous versions if they exist
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
294 PreviousVersionWalker pvw(thread, (InstanceKlass *)ikh());
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
295 for (PreviousVersionNode * pv_node = pvw.next_previous_version();
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
296 pv_node != NULL; pv_node = pvw.next_previous_version()) {
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
297 GrowableArray<Method*>* methods = pv_node->prev_EMCP_methods();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
298
12281
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
299 if (methods == NULL) {
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
300 // We have run into a PreviousVersion generation where
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
301 // all methods were made obsolete during that generation's
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
302 // RedefineClasses() operation. At the time of that
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
303 // operation, all EMCP methods were flushed so we don't
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
304 // have to go back any further.
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
305 //
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
306 // A NULL methods array is different than an empty methods
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
307 // array. We cannot infer any optimizations about older
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
308 // generations from an empty methods array for the current
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
309 // generation.
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
310 break;
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
311 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
312
12281
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
313 for (int i = methods->length() - 1; i >= 0; i--) {
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
314 Method* method = methods->at(i);
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
315 // obsolete methods that are running are not deleted from
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
316 // previous version array, but they are skipped here.
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
317 if (!method->is_obsolete() &&
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
318 method->name() == m_name &&
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
319 method->signature() == m_signature) {
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
320 RC_TRACE(0x00000800, ("%sing breakpoint in %s(%s)",
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
321 meth_act == &Method::set_breakpoint ? "sett" : "clear",
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
322 method->name()->as_C_string(),
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
323 method->signature()->as_C_string()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
324
12281
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
325 (method->*meth_act)(_bci);
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
326 break;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
327 }
12281
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
328 }
4f9a42c33738 8022887: Assertion hit while using class and redefining it with RedefineClasses simultaneously
coleenp
parents: 10405
diff changeset
329 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 void JvmtiBreakpoint::set() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
333 each_method_version_do(&Method::set_breakpoint);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
334 }
a61af66fc99e Initial load
duke
parents:
diff changeset
335
a61af66fc99e Initial load
duke
parents:
diff changeset
336 void JvmtiBreakpoint::clear() {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
337 each_method_version_do(&Method::clear_breakpoint);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339
a61af66fc99e Initial load
duke
parents:
diff changeset
340 void JvmtiBreakpoint::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
341 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
342 const char *class_name = (_method == NULL) ? "NULL" : _method->klass_name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
343 const char *method_name = (_method == NULL) ? "NULL" : _method->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 tty->print("Breakpoint(%s,%s,%d,%p)",class_name, method_name, _bci, getBcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
346 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
347 }
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 //
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // class VM_ChangeBreakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
352 //
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // Modify the Breakpoints data structure at a safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
354 //
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 void VM_ChangeBreakpoints::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
357 switch (_operation) {
a61af66fc99e Initial load
duke
parents:
diff changeset
358 case SET_BREAKPOINT:
a61af66fc99e Initial load
duke
parents:
diff changeset
359 _breakpoints->set_at_safepoint(*_bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 case CLEAR_BREAKPOINT:
a61af66fc99e Initial load
duke
parents:
diff changeset
362 _breakpoints->clear_at_safepoint(*_bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
363 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
365 assert(false, "Unknown operation");
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 void VM_ChangeBreakpoints::oops_do(OopClosure* f) {
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8721
diff changeset
370 // The JvmtiBreakpoints in _breakpoints will be visited via
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8721
diff changeset
371 // JvmtiExport::oops_do.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
372 if (_bp != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
373 _bp->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
377 void VM_ChangeBreakpoints::metadata_do(void f(Metadata*)) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
378 // Walk metadata in breakpoints to keep from being deallocated with RedefineClasses
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
379 if (_bp != NULL) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
380 _bp->metadata_do(f);
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
381 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
382 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
383
0
a61af66fc99e Initial load
duke
parents:
diff changeset
384 //
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // class JvmtiBreakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
386 //
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // a JVMTI internal collection of JvmtiBreakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
388 //
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 JvmtiBreakpoints::JvmtiBreakpoints(void listener_fun(void *,address *)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 _bps.initialize(this,listener_fun);
a61af66fc99e Initial load
duke
parents:
diff changeset
392 }
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 JvmtiBreakpoints:: ~JvmtiBreakpoints() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 void JvmtiBreakpoints::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 _bps.oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
398 }
a61af66fc99e Initial load
duke
parents:
diff changeset
399
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
400 void JvmtiBreakpoints::metadata_do(void f(Metadata*)) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
401 _bps.metadata_do(f);
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
402 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
403
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
404 void JvmtiBreakpoints::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
405 _bps.gc_epilogue();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
406 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
407
0
a61af66fc99e Initial load
duke
parents:
diff changeset
408 void JvmtiBreakpoints::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
409 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
410 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 int n = _bps.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
413 for (int i=0; i<n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
414 JvmtiBreakpoint& bp = _bps.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 tty->print("%d: ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 bp.print();
17937
78bbf4d43a14 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 13038
diff changeset
417 tty->cr();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
418 }
a61af66fc99e Initial load
duke
parents:
diff changeset
419 #endif
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 void JvmtiBreakpoints::set_at_safepoint(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
424 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 int i = _bps.find(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
427 if (i == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
428 _bps.append(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
429 bp.set();
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 void JvmtiBreakpoints::clear_at_safepoint(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 int i = _bps.find(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
437 if (i != -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 _bps.remove(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
439 bp.clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 }
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 int JvmtiBreakpoints::length() { return _bps.length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 int JvmtiBreakpoints::set(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 if ( _bps.find(bp) != -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 return JVMTI_ERROR_DUPLICATE;
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8721
diff changeset
449 VM_ChangeBreakpoints set_breakpoint(VM_ChangeBreakpoints::SET_BREAKPOINT, &bp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
450 VMThread::execute(&set_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
451 return JVMTI_ERROR_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 int JvmtiBreakpoints::clear(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
455 if ( _bps.find(bp) == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
456 return JVMTI_ERROR_NOT_FOUND;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
458
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8721
diff changeset
459 VM_ChangeBreakpoints clear_breakpoint(VM_ChangeBreakpoints::CLEAR_BREAKPOINT, &bp);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
460 VMThread::execute(&clear_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
461 return JVMTI_ERROR_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
464 void JvmtiBreakpoints::clearall_in_class_at_safepoint(Klass* klass) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
465 bool changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // We are going to run thru the list of bkpts
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // and delete some. This deletion probably alters
a61af66fc99e Initial load
duke
parents:
diff changeset
468 // the list in some implementation defined way such
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // that when we delete entry i, the next entry might
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // no longer be at i+1. To be safe, each time we delete
a61af66fc99e Initial load
duke
parents:
diff changeset
471 // an entry, we'll just start again from the beginning.
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // We'll stop when we make a pass thru the whole list without
a61af66fc99e Initial load
duke
parents:
diff changeset
473 // deleting anything.
a61af66fc99e Initial load
duke
parents:
diff changeset
474 while (changed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
475 int len = _bps.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
476 changed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
477 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 JvmtiBreakpoint& bp = _bps.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 if (bp.method()->method_holder() == klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
480 bp.clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
481 _bps.remove(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // This changed 'i' so we have to start over.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
484 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 }
a61af66fc99e Initial load
duke
parents:
diff changeset
486 }
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 // class JvmtiCurrentBreakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
492 //
a61af66fc99e Initial load
duke
parents:
diff changeset
493
a61af66fc99e Initial load
duke
parents:
diff changeset
494 JvmtiBreakpoints *JvmtiCurrentBreakpoints::_jvmti_breakpoints = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
495 address * JvmtiCurrentBreakpoints::_breakpoint_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497
a61af66fc99e Initial load
duke
parents:
diff changeset
498 JvmtiBreakpoints& JvmtiCurrentBreakpoints::get_jvmti_breakpoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
499 if (_jvmti_breakpoints != NULL) return (*_jvmti_breakpoints);
a61af66fc99e Initial load
duke
parents:
diff changeset
500 _jvmti_breakpoints = new JvmtiBreakpoints(listener_fun);
a61af66fc99e Initial load
duke
parents:
diff changeset
501 assert(_jvmti_breakpoints != NULL, "_jvmti_breakpoints != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
502 return (*_jvmti_breakpoints);
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 void JvmtiCurrentBreakpoints::listener_fun(void *this_obj, address *cache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
506 JvmtiBreakpoints *this_jvmti = (JvmtiBreakpoints *) this_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
507 assert(this_jvmti != NULL, "this_jvmti != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
508
a61af66fc99e Initial load
duke
parents:
diff changeset
509 debug_only(int n = this_jvmti->length(););
a61af66fc99e Initial load
duke
parents:
diff changeset
510 assert(cache[n] == NULL, "cache must be NULL terminated");
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 set_breakpoint_list(cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
513 }
a61af66fc99e Initial load
duke
parents:
diff changeset
514
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 void JvmtiCurrentBreakpoints::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 if (_jvmti_breakpoints != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
518 _jvmti_breakpoints->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
519 }
a61af66fc99e Initial load
duke
parents:
diff changeset
520 }
a61af66fc99e Initial load
duke
parents:
diff changeset
521
13038
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
522 void JvmtiCurrentBreakpoints::metadata_do(void f(Metadata*)) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
523 if (_jvmti_breakpoints != NULL) {
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
524 _jvmti_breakpoints->metadata_do(f);
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
525 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
526 }
910026b800b8 8026946: JvmtiEnv::SetBreakpoint and JvmtiEnv::ClearBreakpoint should use MethodHandle
coleenp
parents: 12983
diff changeset
527
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
528 void JvmtiCurrentBreakpoints::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
529 if (_jvmti_breakpoints != NULL) {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
530 _jvmti_breakpoints->gc_epilogue();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
531 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
532 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
533
0
a61af66fc99e Initial load
duke
parents:
diff changeset
534 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
535 //
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // class VM_GetOrSetLocal
a61af66fc99e Initial load
duke
parents:
diff changeset
537 //
a61af66fc99e Initial load
duke
parents:
diff changeset
538
a61af66fc99e Initial load
duke
parents:
diff changeset
539 // Constructor for non-object getter
a61af66fc99e Initial load
duke
parents:
diff changeset
540 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type)
a61af66fc99e Initial load
duke
parents:
diff changeset
541 : _thread(thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
542 , _calling_thread(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
543 , _depth(depth)
a61af66fc99e Initial load
duke
parents:
diff changeset
544 , _index(index)
a61af66fc99e Initial load
duke
parents:
diff changeset
545 , _type(type)
a61af66fc99e Initial load
duke
parents:
diff changeset
546 , _set(false)
a61af66fc99e Initial load
duke
parents:
diff changeset
547 , _jvf(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
548 , _result(JVMTI_ERROR_NONE)
a61af66fc99e Initial load
duke
parents:
diff changeset
549 {
a61af66fc99e Initial load
duke
parents:
diff changeset
550 }
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // Constructor for object or non-object setter
a61af66fc99e Initial load
duke
parents:
diff changeset
553 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value)
a61af66fc99e Initial load
duke
parents:
diff changeset
554 : _thread(thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
555 , _calling_thread(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
556 , _depth(depth)
a61af66fc99e Initial load
duke
parents:
diff changeset
557 , _index(index)
a61af66fc99e Initial load
duke
parents:
diff changeset
558 , _type(type)
a61af66fc99e Initial load
duke
parents:
diff changeset
559 , _value(value)
a61af66fc99e Initial load
duke
parents:
diff changeset
560 , _set(true)
a61af66fc99e Initial load
duke
parents:
diff changeset
561 , _jvf(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
562 , _result(JVMTI_ERROR_NONE)
a61af66fc99e Initial load
duke
parents:
diff changeset
563 {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // Constructor for object getter
a61af66fc99e Initial load
duke
parents:
diff changeset
567 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index)
a61af66fc99e Initial load
duke
parents:
diff changeset
568 : _thread(thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
569 , _calling_thread(calling_thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
570 , _depth(depth)
a61af66fc99e Initial load
duke
parents:
diff changeset
571 , _index(index)
a61af66fc99e Initial load
duke
parents:
diff changeset
572 , _type(T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
573 , _set(false)
a61af66fc99e Initial load
duke
parents:
diff changeset
574 , _jvf(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
575 , _result(JVMTI_ERROR_NONE)
a61af66fc99e Initial load
duke
parents:
diff changeset
576 {
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 vframe *VM_GetOrSetLocal::get_vframe() {
a61af66fc99e Initial load
duke
parents:
diff changeset
580 if (!_thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
581 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
582 }
a61af66fc99e Initial load
duke
parents:
diff changeset
583 RegisterMap reg_map(_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
584 vframe *vf = _thread->last_java_vframe(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 int d = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
586 while ((vf != NULL) && (d < _depth)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
587 vf = vf->java_sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
588 d++;
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 return vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
591 }
a61af66fc99e Initial load
duke
parents:
diff changeset
592
a61af66fc99e Initial load
duke
parents:
diff changeset
593 javaVFrame *VM_GetOrSetLocal::get_java_vframe() {
a61af66fc99e Initial load
duke
parents:
diff changeset
594 vframe* vf = get_vframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
595 if (vf == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
596 _result = JVMTI_ERROR_NO_MORE_FRAMES;
a61af66fc99e Initial load
duke
parents:
diff changeset
597 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599 javaVFrame *jvf = (javaVFrame*)vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
600
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
601 if (!vf->is_java_frame()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
602 _result = JVMTI_ERROR_OPAQUE_FRAME;
a61af66fc99e Initial load
duke
parents:
diff changeset
603 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 }
a61af66fc99e Initial load
duke
parents:
diff changeset
605 return jvf;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607
a61af66fc99e Initial load
duke
parents:
diff changeset
608 // Check that the klass is assignable to a type with the given signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // Another solution could be to use the function Klass::is_subtype_of(type).
a61af66fc99e Initial load
duke
parents:
diff changeset
610 // But the type class can be forced to load/initialize eagerly in such a case.
a61af66fc99e Initial load
duke
parents:
diff changeset
611 // This may cause unexpected consequences like CFLH or class-init JVMTI events.
a61af66fc99e Initial load
duke
parents:
diff changeset
612 // It is better to avoid such a behavior.
a61af66fc99e Initial load
duke
parents:
diff changeset
613 bool VM_GetOrSetLocal::is_assignable(const char* ty_sign, Klass* klass, Thread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
614 assert(ty_sign != NULL, "type signature must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
615 assert(thread != NULL, "thread must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
616 assert(klass != NULL, "klass must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
617
a61af66fc99e Initial load
duke
parents:
diff changeset
618 int len = (int) strlen(ty_sign);
a61af66fc99e Initial load
duke
parents:
diff changeset
619 if (ty_sign[0] == 'L' && ty_sign[len-1] == ';') { // Need pure class/interface name
a61af66fc99e Initial load
duke
parents:
diff changeset
620 ty_sign++;
a61af66fc99e Initial load
duke
parents:
diff changeset
621 len -= 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
623 TempNewSymbol ty_sym = SymbolTable::new_symbol(ty_sign, len, thread);
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
624 if (klass->name() == ty_sym) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
625 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
626 }
a61af66fc99e Initial load
duke
parents:
diff changeset
627 // Compare primary supers
a61af66fc99e Initial load
duke
parents:
diff changeset
628 int super_depth = klass->super_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
629 int idx;
a61af66fc99e Initial load
duke
parents:
diff changeset
630 for (idx = 0; idx < super_depth; idx++) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
631 if (klass->primary_super_of_depth(idx)->name() == ty_sym) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
632 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // Compare secondary supers
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
636 Array<Klass*>* sec_supers = klass->secondary_supers();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
637 for (idx = 0; idx < sec_supers->length(); idx++) {
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
638 if (((Klass*) sec_supers->at(idx))->name() == ty_sym) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
639 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
640 }
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
643 }
a61af66fc99e Initial load
duke
parents:
diff changeset
644
a61af66fc99e Initial load
duke
parents:
diff changeset
645 // Checks error conditions:
a61af66fc99e Initial load
duke
parents:
diff changeset
646 // JVMTI_ERROR_INVALID_SLOT
a61af66fc99e Initial load
duke
parents:
diff changeset
647 // JVMTI_ERROR_TYPE_MISMATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
648 // Returns: 'true' - everything is Ok, 'false' - error code
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 bool VM_GetOrSetLocal::check_slot_type(javaVFrame* jvf) {
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
651 Method* method_oop = jvf->method();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
652 if (!method_oop->has_localvariable_table()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // Just to check index boundaries
a61af66fc99e Initial load
duke
parents:
diff changeset
654 jint extra_slot = (_type == T_LONG || _type == T_DOUBLE) ? 1 : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
655 if (_index < 0 || _index + extra_slot >= method_oop->max_locals()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
656 _result = JVMTI_ERROR_INVALID_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
657 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 }
a61af66fc99e Initial load
duke
parents:
diff changeset
659 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
660 }
a61af66fc99e Initial load
duke
parents:
diff changeset
661
a61af66fc99e Initial load
duke
parents:
diff changeset
662 jint num_entries = method_oop->localvariable_table_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
663 if (num_entries == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 _result = JVMTI_ERROR_INVALID_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 return false; // There are no slots
a61af66fc99e Initial load
duke
parents:
diff changeset
666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
667 int signature_idx = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 int vf_bci = jvf->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
669 LocalVariableTableElement* table = method_oop->localvariable_table_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
670 for (int i = 0; i < num_entries; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
671 int start_bci = table[i].start_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
672 int end_bci = start_bci + table[i].length;
a61af66fc99e Initial load
duke
parents:
diff changeset
673
a61af66fc99e Initial load
duke
parents:
diff changeset
674 // Here we assume that locations of LVT entries
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // with the same slot number cannot be overlapped
a61af66fc99e Initial load
duke
parents:
diff changeset
676 if (_index == (jint) table[i].slot && start_bci <= vf_bci && vf_bci <= end_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
677 signature_idx = (int) table[i].descriptor_cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
678 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
679 }
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 if (signature_idx == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
682 _result = JVMTI_ERROR_INVALID_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
683 return false; // Incorrect slot index
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2147
diff changeset
685 Symbol* sign_sym = method_oop->constants()->symbol_at(signature_idx);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
686 const char* signature = (const char *) sign_sym->as_utf8();
a61af66fc99e Initial load
duke
parents:
diff changeset
687 BasicType slot_type = char2type(signature[0]);
a61af66fc99e Initial load
duke
parents:
diff changeset
688
a61af66fc99e Initial load
duke
parents:
diff changeset
689 switch (slot_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
690 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
691 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
692 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
693 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
694 slot_type = T_INT;
a61af66fc99e Initial load
duke
parents:
diff changeset
695 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
696 case T_ARRAY:
a61af66fc99e Initial load
duke
parents:
diff changeset
697 slot_type = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
698 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
699 };
a61af66fc99e Initial load
duke
parents:
diff changeset
700 if (_type != slot_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
701 _result = JVMTI_ERROR_TYPE_MISMATCH;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 }
a61af66fc99e Initial load
duke
parents:
diff changeset
704
a61af66fc99e Initial load
duke
parents:
diff changeset
705 jobject jobj = _value.l;
a61af66fc99e Initial load
duke
parents:
diff changeset
706 if (_set && slot_type == T_OBJECT && jobj != NULL) { // NULL reference is allowed
a61af66fc99e Initial load
duke
parents:
diff changeset
707 // Check that the jobject class matches the return type signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
708 JavaThread* cur_thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
709 HandleMark hm(cur_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
710
a61af66fc99e Initial load
duke
parents:
diff changeset
711 Handle obj = Handle(cur_thread, JNIHandles::resolve_external_guard(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
712 NULL_CHECK(obj, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
a61af66fc99e Initial load
duke
parents:
diff changeset
713 KlassHandle ob_kh = KlassHandle(cur_thread, obj->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
714 NULL_CHECK(ob_kh, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
a61af66fc99e Initial load
duke
parents:
diff changeset
715
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6725
diff changeset
716 if (!is_assignable(signature, ob_kh(), cur_thread)) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
717 _result = JVMTI_ERROR_TYPE_MISMATCH;
a61af66fc99e Initial load
duke
parents:
diff changeset
718 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
723
a61af66fc99e Initial load
duke
parents:
diff changeset
724 static bool can_be_deoptimized(vframe* vf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
725 return (vf->is_compiled_frame() && vf->fr().can_be_deoptimized());
a61af66fc99e Initial load
duke
parents:
diff changeset
726 }
a61af66fc99e Initial load
duke
parents:
diff changeset
727
a61af66fc99e Initial load
duke
parents:
diff changeset
728 bool VM_GetOrSetLocal::doit_prologue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
729 _jvf = get_java_vframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
730 NULL_CHECK(_jvf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
731
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
732 if (_jvf->method()->is_native()) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
733 if (getting_receiver() && !_jvf->method()->is_static()) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
734 return true;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
735 } else {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
736 _result = JVMTI_ERROR_OPAQUE_FRAME;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
737 return false;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
738 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
739 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
740
0
a61af66fc99e Initial load
duke
parents:
diff changeset
741 if (!check_slot_type(_jvf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
742 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
743 }
a61af66fc99e Initial load
duke
parents:
diff changeset
744 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
745 }
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 void VM_GetOrSetLocal::doit() {
22918
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
748 InterpreterOopMap oop_mask;
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
749 _jvf->method()->mask_for(_jvf->bci(), &oop_mask);
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
750 if (oop_mask.is_dead(_index)) {
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
751 // The local can be invalid and uninitialized in the scope of current bci
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
752 _result = JVMTI_ERROR_INVALID_SLOT;
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
753 return;
9cfc607cb03e 8013942: JSR 292: assert(type() == T_OBJECT) failed: type check
sspitsyn
parents: 17937
diff changeset
754 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
755 if (_set) {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 // Force deoptimization of frame if compiled because it's
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // possible the compiler emitted some locals as constant values,
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // meaning they are not mutable.
a61af66fc99e Initial load
duke
parents:
diff changeset
759 if (can_be_deoptimized(_jvf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
760
a61af66fc99e Initial load
duke
parents:
diff changeset
761 // Schedule deoptimization so that eventually the local
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // update will be written to an interpreter frame.
1905
ce6848d0666d 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 1552
diff changeset
763 Deoptimization::deoptimize_frame(_jvf->thread(), _jvf->fr().id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // Now store a new value for the local which will be applied
a61af66fc99e Initial load
duke
parents:
diff changeset
766 // once deoptimization occurs. Note however that while this
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // write is deferred until deoptimization actually happens
a61af66fc99e Initial load
duke
parents:
diff changeset
768 // can vframe created after this point will have its locals
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // reflecting this update so as far as anyone can see the
a61af66fc99e Initial load
duke
parents:
diff changeset
770 // write has already taken place.
a61af66fc99e Initial load
duke
parents:
diff changeset
771
a61af66fc99e Initial load
duke
parents:
diff changeset
772 // If we are updating an oop then get the oop from the handle
a61af66fc99e Initial load
duke
parents:
diff changeset
773 // since the handle will be long gone by the time the deopt
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // happens. The oop stored in the deferred local will be
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // gc'd on its own.
a61af66fc99e Initial load
duke
parents:
diff changeset
776 if (_type == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
777 _value.l = (jobject) (JNIHandles::resolve_external_guard(_value.l));
a61af66fc99e Initial load
duke
parents:
diff changeset
778 }
a61af66fc99e Initial load
duke
parents:
diff changeset
779 // Re-read the vframe so we can see that it is deoptimized
a61af66fc99e Initial load
duke
parents:
diff changeset
780 // [ Only need because of assert in update_local() ]
a61af66fc99e Initial load
duke
parents:
diff changeset
781 _jvf = get_java_vframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
782 ((compiledVFrame*)_jvf)->update_local(_type, _index, _value);
a61af66fc99e Initial load
duke
parents:
diff changeset
783 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
784 }
a61af66fc99e Initial load
duke
parents:
diff changeset
785 StackValueCollection *locals = _jvf->locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
786 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
787
a61af66fc99e Initial load
duke
parents:
diff changeset
788 switch (_type) {
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
789 case T_INT: locals->set_int_at (_index, _value.i); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
790 case T_LONG: locals->set_long_at (_index, _value.j); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
791 case T_FLOAT: locals->set_float_at (_index, _value.f); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
792 case T_DOUBLE: locals->set_double_at(_index, _value.d); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
793 case T_OBJECT: {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
794 Handle ob_h(JNIHandles::resolve_external_guard(_value.l));
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
795 locals->set_obj_at (_index, ob_h);
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
796 break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
797 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
798 default: ShouldNotReachHere();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
799 }
a61af66fc99e Initial load
duke
parents:
diff changeset
800 _jvf->set_locals(locals);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 } else {
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
802 if (_jvf->method()->is_native() && _jvf->is_compiled_frame()) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
803 assert(getting_receiver(), "Can only get here when getting receiver");
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
804 oop receiver = _jvf->fr().get_native_receiver();
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
805 _value.l = JNIHandles::make_local(_calling_thread, receiver);
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
806 } else {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
807 StackValueCollection *locals = _jvf->locals();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
808
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
809 if (locals->at(_index)->type() == T_CONFLICT) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
810 memset(&_value, 0, sizeof(_value));
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
811 _value.l = NULL;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
812 return;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
813 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
814
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
815 switch (_type) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
816 case T_INT: _value.i = locals->int_at (_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
817 case T_LONG: _value.j = locals->long_at (_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
818 case T_FLOAT: _value.f = locals->float_at (_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
819 case T_DOUBLE: _value.d = locals->double_at(_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
820 case T_OBJECT: {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
821 // Wrap the oop to be returned in a local JNI handle since
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
822 // oops_do() no longer applies after doit() is finished.
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
823 oop obj = locals->obj_at(_index)();
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
824 _value.l = JNIHandles::make_local(_calling_thread, obj);
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
825 break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
826 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
827 default: ShouldNotReachHere();
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
828 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
829 }
a61af66fc99e Initial load
duke
parents:
diff changeset
830 }
a61af66fc99e Initial load
duke
parents:
diff changeset
831 }
a61af66fc99e Initial load
duke
parents:
diff changeset
832
a61af66fc99e Initial load
duke
parents:
diff changeset
833
a61af66fc99e Initial load
duke
parents:
diff changeset
834 bool VM_GetOrSetLocal::allow_nested_vm_operations() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
835 return true; // May need to deoptimize
a61af66fc99e Initial load
duke
parents:
diff changeset
836 }
a61af66fc99e Initial load
duke
parents:
diff changeset
837
a61af66fc99e Initial load
duke
parents:
diff changeset
838
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
839 VM_GetReceiver::VM_GetReceiver(
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
840 JavaThread* thread, JavaThread* caller_thread, jint depth)
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
841 : VM_GetOrSetLocal(thread, caller_thread, depth, 0) {}
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
842
0
a61af66fc99e Initial load
duke
parents:
diff changeset
843 /////////////////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845 //
a61af66fc99e Initial load
duke
parents:
diff changeset
846 // class JvmtiSuspendControl - see comments in jvmtiImpl.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
847 //
a61af66fc99e Initial load
duke
parents:
diff changeset
848
a61af66fc99e Initial load
duke
parents:
diff changeset
849 bool JvmtiSuspendControl::suspend(JavaThread *java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
850 // external suspend should have caught suspending a thread twice
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 // Immediate suspension required for JPDA back-end so JVMTI agent threads do
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // not deadlock due to later suspension on transitions while holding
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // raw monitors. Passing true causes the immediate suspension.
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // java_suspend() will catch threads in the process of exiting
a61af66fc99e Initial load
duke
parents:
diff changeset
856 // and will ignore them.
a61af66fc99e Initial load
duke
parents:
diff changeset
857 java_thread->java_suspend();
a61af66fc99e Initial load
duke
parents:
diff changeset
858
a61af66fc99e Initial load
duke
parents:
diff changeset
859 // It would be nice to have the following assertion in all the time,
a61af66fc99e Initial load
duke
parents:
diff changeset
860 // but it is possible for a racing resume request to have resumed
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // this thread right after we suspended it. Temporarily enable this
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // assertion if you are chasing a different kind of bug.
a61af66fc99e Initial load
duke
parents:
diff changeset
863 //
a61af66fc99e Initial load
duke
parents:
diff changeset
864 // assert(java_lang_Thread::thread(java_thread->threadObj()) == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // java_thread->is_being_ext_suspended(), "thread is not suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 if (java_lang_Thread::thread(java_thread->threadObj()) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
868 // check again because we can get delayed in java_suspend():
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // the thread is in process of exiting.
a61af66fc99e Initial load
duke
parents:
diff changeset
870 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
871 }
a61af66fc99e Initial load
duke
parents:
diff changeset
872
a61af66fc99e Initial load
duke
parents:
diff changeset
873 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
874 }
a61af66fc99e Initial load
duke
parents:
diff changeset
875
a61af66fc99e Initial load
duke
parents:
diff changeset
876 bool JvmtiSuspendControl::resume(JavaThread *java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
877 // external suspend should have caught resuming a thread twice
a61af66fc99e Initial load
duke
parents:
diff changeset
878 assert(java_thread->is_being_ext_suspended(), "thread should be suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
879
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // resume thread
a61af66fc99e Initial load
duke
parents:
diff changeset
881 {
a61af66fc99e Initial load
duke
parents:
diff changeset
882 // must always grab Threads_lock, see JVM_SuspendThread
a61af66fc99e Initial load
duke
parents:
diff changeset
883 MutexLocker ml(Threads_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
884 java_thread->java_resume();
a61af66fc99e Initial load
duke
parents:
diff changeset
885 }
a61af66fc99e Initial load
duke
parents:
diff changeset
886
a61af66fc99e Initial load
duke
parents:
diff changeset
887 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
888 }
a61af66fc99e Initial load
duke
parents:
diff changeset
889
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891 void JvmtiSuspendControl::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
892 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
893 MutexLocker mu(Threads_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
894 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
895
a61af66fc99e Initial load
duke
parents:
diff changeset
896 tty->print("Suspended Threads: [");
a61af66fc99e Initial load
duke
parents:
diff changeset
897 for (JavaThread *thread = Threads::first(); thread != NULL; thread = thread->next()) {
8721
47bc9800972c 8006498: #if <symbol> is wrong in the code.
jprovino
parents: 7951
diff changeset
898 #ifdef JVMTI_TRACE
0
a61af66fc99e Initial load
duke
parents:
diff changeset
899 const char *name = JvmtiTrace::safe_get_thread_name(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
900 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
901 const char *name = "";
a61af66fc99e Initial load
duke
parents:
diff changeset
902 #endif /*JVMTI_TRACE */
a61af66fc99e Initial load
duke
parents:
diff changeset
903 tty->print("%s(%c ", name, thread->is_being_ext_suspended() ? 'S' : '_');
a61af66fc99e Initial load
duke
parents:
diff changeset
904 if (!thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
905 tty->print("no stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
907 tty->print(") ");
a61af66fc99e Initial load
duke
parents:
diff changeset
908 }
a61af66fc99e Initial load
duke
parents:
diff changeset
909 tty->print_cr("]");
a61af66fc99e Initial load
duke
parents:
diff changeset
910 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
911 }
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
912
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
913 JvmtiDeferredEvent JvmtiDeferredEvent::compiled_method_load_event(
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
914 nmethod* nm) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
915 JvmtiDeferredEvent event = JvmtiDeferredEvent(TYPE_COMPILED_METHOD_LOAD);
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
916 event._event_data.compiled_method_load = nm;
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
917 // Keep the nmethod alive until the ServiceThread can process
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
918 // this deferred event.
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
919 nmethodLocker::lock_nmethod(nm);
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
920 return event;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
921 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
922
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
923 JvmtiDeferredEvent JvmtiDeferredEvent::compiled_method_unload_event(
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
924 nmethod* nm, jmethodID id, const void* code) {
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
925 JvmtiDeferredEvent event = JvmtiDeferredEvent(TYPE_COMPILED_METHOD_UNLOAD);
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
926 event._event_data.compiled_method_unload.nm = nm;
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
927 event._event_data.compiled_method_unload.method_id = id;
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
928 event._event_data.compiled_method_unload.code_begin = code;
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
929 // Keep the nmethod alive until the ServiceThread can process
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
930 // this deferred event. This will keep the memory for the
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
931 // generated code from being reused too early. We pass
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
932 // zombie_ok == true here so that our nmethod that was just
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
933 // made into a zombie can be locked.
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
934 nmethodLocker::lock_nmethod(nm, true /* zombie_ok */);
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
935 return event;
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
936 }
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
937
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
938 JvmtiDeferredEvent JvmtiDeferredEvent::dynamic_code_generated_event(
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
939 const char* name, const void* code_begin, const void* code_end) {
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
940 JvmtiDeferredEvent event = JvmtiDeferredEvent(TYPE_DYNAMIC_CODE_GENERATED);
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
941 // Need to make a copy of the name since we don't know how long
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
942 // the event poster will keep it around after we enqueue the
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
943 // deferred event and return. strdup() failure is handled in
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
944 // the post() routine below.
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
945 event._event_data.dynamic_code_generated.name = os::strdup(name);
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
946 event._event_data.dynamic_code_generated.code_begin = code_begin;
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
947 event._event_data.dynamic_code_generated.code_end = code_end;
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
948 return event;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
949 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
950
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
951 void JvmtiDeferredEvent::post() {
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
952 assert(ServiceThread::is_service_thread(Thread::current()),
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
953 "Service thread must post enqueued events");
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
954 switch(_type) {
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
955 case TYPE_COMPILED_METHOD_LOAD: {
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
956 nmethod* nm = _event_data.compiled_method_load;
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
957 JvmtiExport::post_compiled_method_load(nm);
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
958 // done with the deferred event so unlock the nmethod
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
959 nmethodLocker::unlock_nmethod(nm);
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
960 break;
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
961 }
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
962 case TYPE_COMPILED_METHOD_UNLOAD: {
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
963 nmethod* nm = _event_data.compiled_method_unload.nm;
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
964 JvmtiExport::post_compiled_method_unload(
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
965 _event_data.compiled_method_unload.method_id,
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
966 _event_data.compiled_method_unload.code_begin);
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
967 // done with the deferred event so unlock the nmethod
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
968 nmethodLocker::unlock_nmethod(nm);
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
969 break;
2342
46a56fac55c7 7024970: 2/3 assert(ServiceThread::is_service_thread(Thread::current())) failed: Service thread must post enqueue
dcubed
parents: 2301
diff changeset
970 }
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
971 case TYPE_DYNAMIC_CODE_GENERATED: {
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
972 JvmtiExport::post_dynamic_code_generated_internal(
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
973 // if strdup failed give the event a default name
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
974 (_event_data.dynamic_code_generated.name == NULL)
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
975 ? "unknown_code" : _event_data.dynamic_code_generated.name,
2301
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
976 _event_data.dynamic_code_generated.code_begin,
f91db74a6810 7017640: Fix for 6766644 deadlocks on some NSK tests when running with -Xcomp
kamg
parents: 2195
diff changeset
977 _event_data.dynamic_code_generated.code_end);
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
978 if (_event_data.dynamic_code_generated.name != NULL) {
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
979 // release our copy
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
980 os::free((void *)_event_data.dynamic_code_generated.name);
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
981 }
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
982 break;
3304
0cddebc420d8 7039447: 2/1 java profiling is broken in build 139 (garbage in function name)
dcubed
parents: 2342
diff changeset
983 }
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
984 default:
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
985 ShouldNotReachHere();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
986 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
987 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
988
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
989 JvmtiDeferredEventQueue::QueueNode* JvmtiDeferredEventQueue::_queue_tail = NULL;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
990 JvmtiDeferredEventQueue::QueueNode* JvmtiDeferredEventQueue::_queue_head = NULL;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
991
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
992 volatile JvmtiDeferredEventQueue::QueueNode*
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
993 JvmtiDeferredEventQueue::_pending_list = NULL;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
994
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
995 bool JvmtiDeferredEventQueue::has_events() {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
996 assert(Service_lock->owned_by_self(), "Must own Service_lock");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
997 return _queue_head != NULL || _pending_list != NULL;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
998 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
999
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1000 void JvmtiDeferredEventQueue::enqueue(const JvmtiDeferredEvent& event) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1001 assert(Service_lock->owned_by_self(), "Must own Service_lock");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1002
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1003 process_pending_events();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1004
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1005 // Events get added to the end of the queue (and are pulled off the front).
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1006 QueueNode* node = new QueueNode(event);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1007 if (_queue_tail == NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1008 _queue_tail = _queue_head = node;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1009 } else {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1010 assert(_queue_tail->next() == NULL, "Must be the last element in the list");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1011 _queue_tail->set_next(node);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1012 _queue_tail = node;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1013 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1014
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1015 Service_lock->notify_all();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1016 assert((_queue_head == NULL) == (_queue_tail == NULL),
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1017 "Inconsistent queue markers");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1018 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1019
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1020 JvmtiDeferredEvent JvmtiDeferredEventQueue::dequeue() {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1021 assert(Service_lock->owned_by_self(), "Must own Service_lock");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1022
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1023 process_pending_events();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1024
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1025 assert(_queue_head != NULL, "Nothing to dequeue");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1026
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1027 if (_queue_head == NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1028 // Just in case this happens in product; it shouldn't but let's not crash
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1029 return JvmtiDeferredEvent();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1030 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1031
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1032 QueueNode* node = _queue_head;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1033 _queue_head = _queue_head->next();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1034 if (_queue_head == NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1035 _queue_tail = NULL;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1036 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1037
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1038 assert((_queue_head == NULL) == (_queue_tail == NULL),
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1039 "Inconsistent queue markers");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1040
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1041 JvmtiDeferredEvent event = node->event();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1042 delete node;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1043 return event;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1044 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1045
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1046 void JvmtiDeferredEventQueue::add_pending_event(
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1047 const JvmtiDeferredEvent& event) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1048
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1049 QueueNode* node = new QueueNode(event);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1050
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1051 bool success = false;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1052 QueueNode* prev_value = (QueueNode*)_pending_list;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1053 do {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1054 node->set_next(prev_value);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1055 prev_value = (QueueNode*)Atomic::cmpxchg_ptr(
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1056 (void*)node, (volatile void*)&_pending_list, (void*)node->next());
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1057 } while (prev_value != node->next());
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1058 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1059
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1060 // This method transfers any events that were added by someone NOT holding
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1061 // the lock into the mainline queue.
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1062 void JvmtiDeferredEventQueue::process_pending_events() {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1063 assert(Service_lock->owned_by_self(), "Must own Service_lock");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1064
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1065 if (_pending_list != NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1066 QueueNode* head =
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1067 (QueueNode*)Atomic::xchg_ptr(NULL, (volatile void*)&_pending_list);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1068
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1069 assert((_queue_head == NULL) == (_queue_tail == NULL),
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1070 "Inconsistent queue markers");
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1071
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1072 if (head != NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1073 // Since we've treated the pending list as a stack (with newer
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1074 // events at the beginning), we need to join the bottom of the stack
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1075 // with the 'tail' of the queue in order to get the events in the
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1076 // right order. We do this by reversing the pending list and appending
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1077 // it to the queue.
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1078
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1079 QueueNode* new_tail = head;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1080 QueueNode* new_head = NULL;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1081
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1082 // This reverses the list
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1083 QueueNode* prev = new_tail;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1084 QueueNode* node = new_tail->next();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1085 new_tail->set_next(NULL);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1086 while (node != NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1087 QueueNode* next = node->next();
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1088 node->set_next(prev);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1089 prev = node;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1090 node = next;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1091 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1092 new_head = prev;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1093
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1094 // Now append the new list to the queue
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1095 if (_queue_tail != NULL) {
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1096 _queue_tail->set_next(new_head);
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1097 } else { // _queue_head == NULL
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1098 _queue_head = new_head;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1099 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1100 _queue_tail = new_tail;
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1101 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1102 }
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2177
diff changeset
1103 }