annotate src/share/vm/prims/jvmtiImpl.cpp @ 2147:9afee0b9fc1d

7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220) Summary: Rebuild breakpoint cache at gc_epilogue instead of during oops_do Reviewed-by: dcubed, ysr, coleenp
author kamg
date Wed, 19 Jan 2011 13:51:53 -0800
parents 7246a374a9f2
children 3582bf76420e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
28 #include "jvmtifiles/jvmtiEnv.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
29 #include "memory/resourceArea.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
30 #include "oops/instanceKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
31 #include "prims/jvmtiAgentThread.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
32 #include "prims/jvmtiEventController.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
33 #include "prims/jvmtiImpl.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
34 #include "prims/jvmtiRedefineClasses.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
35 #include "runtime/deoptimization.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
36 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
37 #include "runtime/handles.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
38 #include "runtime/interfaceSupport.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
39 #include "runtime/javaCalls.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
40 #include "runtime/signature.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
41 #include "runtime/vframe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
42 #include "runtime/vframe_hp.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
43 #include "runtime/vm_operations.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
44 #include "utilities/exceptions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
45 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
46 # include "thread_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
47 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
48 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
49 # include "thread_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
50 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
51 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
52 # include "thread_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1922
diff changeset
53 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 //
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // class JvmtiAgentThread
a61af66fc99e Initial load
duke
parents:
diff changeset
57 //
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // JavaThread used to wrap a thread started by an agent
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // using the JVMTI method RunAgentThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 //
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 JvmtiAgentThread::JvmtiAgentThread(JvmtiEnv* env, jvmtiStartFunction start_fn, const void *start_arg)
a61af66fc99e Initial load
duke
parents:
diff changeset
63 : JavaThread(start_function_wrapper) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 _env = env;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 _start_fn = start_fn;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 _start_arg = start_arg;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 void
a61af66fc99e Initial load
duke
parents:
diff changeset
70 JvmtiAgentThread::start_function_wrapper(JavaThread *thread, TRAPS) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // It is expected that any Agent threads will be created as
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Java Threads. If this is the case, notification of the creation
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // of the thread is given in JavaThread::thread_main().
a61af66fc99e Initial load
duke
parents:
diff changeset
74 assert(thread->is_Java_thread(), "debugger thread should be a Java Thread");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 assert(thread == JavaThread::current(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77 JvmtiAgentThread *dthread = (JvmtiAgentThread *)thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 dthread->call_start_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void
a61af66fc99e Initial load
duke
parents:
diff changeset
82 JvmtiAgentThread::call_start_function() {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 ThreadToNativeFromVM transition(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 _start_fn(_env->jvmti_external(), jni_environment(), (void*)_start_arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 //
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // class GrowableCache - private methods
a61af66fc99e Initial load
duke
parents:
diff changeset
90 //
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 void GrowableCache::recache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 int len = _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 FREE_C_HEAP_ARRAY(address, _cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 _cache = NEW_C_HEAP_ARRAY(address,len+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _cache[i] = _elements->at(i)->getCacheValue();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 //
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // The cache entry has gone bad. Without a valid frame pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // value, the entry is useless so we simply delete it in product
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // mode. The call to remove() will rebuild the cache again
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // without the bad entry.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 //
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if (_cache[i] == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert(false, "cannot recache NULL elements");
a61af66fc99e Initial load
duke
parents:
diff changeset
108 remove(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _cache[len] = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 _listener_fun(_this_obj,_cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 bool GrowableCache::equals(void* v, GrowableElement *e2) {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 GrowableElement *e1 = (GrowableElement *) v;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 assert(e1 != NULL, "e1 != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
120 assert(e2 != NULL, "e2 != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 return e1->equals(e2);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 //
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // class GrowableCache - public methods
a61af66fc99e Initial load
duke
parents:
diff changeset
127 //
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 GrowableCache::GrowableCache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 _this_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _listener_fun = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 _elements = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 _cache = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 GrowableCache::~GrowableCache() {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
138 delete _elements;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 FREE_C_HEAP_ARRAY(address, _cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void GrowableCache::initialize(void *this_obj, void listener_fun(void *, address*) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 _this_obj = this_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 _listener_fun = listener_fun;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _elements = new (ResourceObj::C_HEAP) GrowableArray<GrowableElement*>(5,true);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // number of elements in the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
150 int GrowableCache::length() {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // get the value of the index element in the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
155 GrowableElement* GrowableCache::at(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 GrowableElement *e = (GrowableElement *) _elements->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 assert(e != NULL, "e != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
158 return e;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 int GrowableCache::find(GrowableElement* e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
162 return _elements->find(e, GrowableCache::equals);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // append a copy of the element to the end of the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
166 void GrowableCache::append(GrowableElement* e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 GrowableElement *new_e = e->clone();
a61af66fc99e Initial load
duke
parents:
diff changeset
168 _elements->append(new_e);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171
a61af66fc99e Initial load
duke
parents:
diff changeset
172 // insert a copy of the element using lessthan()
a61af66fc99e Initial load
duke
parents:
diff changeset
173 void GrowableCache::insert(GrowableElement* e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 GrowableElement *new_e = e->clone();
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _elements->append(new_e);
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 int n = length()-2;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 for (int i=n; i>=0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 GrowableElement *e1 = _elements->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 GrowableElement *e2 = _elements->at(i+1);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (e2->lessThan(e1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _elements->at_put(i+1, e1);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 _elements->at_put(i, e2);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 }
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // remove the element at index
a61af66fc99e Initial load
duke
parents:
diff changeset
191 void GrowableCache::remove (int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 GrowableElement *e = _elements->at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 assert(e != NULL, "e != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _elements->remove(e);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 delete e;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // clear out all elements, release all heap space and
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // let our listener know that things have changed.
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void GrowableCache::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 int len = _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
203 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 delete _elements->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206 _elements->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
207 recache();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 void GrowableCache::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 int len = _elements->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 GrowableElement *e = _elements->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 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
215 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
216 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
217
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
218 void GrowableCache::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
219 int len = _elements->length();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
220 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
221 _cache[i] = _elements->at(i)->getCacheValue();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 }
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 //
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // class JvmtiBreakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
227 //
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 JvmtiBreakpoint::JvmtiBreakpoint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 _method = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 _bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 #ifdef CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // This one is always allocated with new, but check it just in case.
a61af66fc99e Initial load
duke
parents:
diff changeset
234 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if (thread->is_in_stack((address)&_method)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 thread->allow_unhandled_oop((oop*)&_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238 #endif // CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 JvmtiBreakpoint::JvmtiBreakpoint(methodOop m_method, jlocation location) {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 _method = m_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 assert(_method != NULL, "_method != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
244 _bci = (int) location;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 #ifdef CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Could be allocated with new and wouldn't be on the unhandled oop list.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
248 if (thread->is_in_stack((address)&_method)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 thread->allow_unhandled_oop(&_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251 #endif // CHECK_UNHANDLED_OOPS
a61af66fc99e Initial load
duke
parents:
diff changeset
252
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;
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 bool JvmtiBreakpoint::lessThan(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 Unimplemented();
a61af66fc99e Initial load
duke
parents:
diff changeset
263 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 bool JvmtiBreakpoint::equals(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return _method == bp._method
a61af66fc99e Initial load
duke
parents:
diff changeset
268 && _bci == bp._bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 }
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 bool JvmtiBreakpoint::is_valid() {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 return _method != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
273 _bci >= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 address JvmtiBreakpoint::getBcp() {
a61af66fc99e Initial load
duke
parents:
diff changeset
277 return _method->bcp_from(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 void JvmtiBreakpoint::each_method_version_do(method_action meth_act) {
a61af66fc99e Initial load
duke
parents:
diff changeset
281 ((methodOopDesc*)_method->*meth_act)(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // add/remove breakpoint to/from versions of the method that
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // are EMCP. Directly or transitively obsolete methods are
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // not saved in the PreviousVersionInfo.
a61af66fc99e Initial load
duke
parents:
diff changeset
286 Thread *thread = Thread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
287 instanceKlassHandle ikh = instanceKlassHandle(thread, _method->method_holder());
a61af66fc99e Initial load
duke
parents:
diff changeset
288 symbolOop m_name = _method->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
289 symbolOop m_signature = _method->signature();
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 ResourceMark rm(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // PreviousVersionInfo objects returned via PreviousVersionWalker
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // contain a GrowableArray of handles. We have to clean up the
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // GrowableArray _after_ the PreviousVersionWalker destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // has destroyed the handles.
a61af66fc99e Initial load
duke
parents:
diff changeset
297 {
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // search previous versions if they exist
a61af66fc99e Initial load
duke
parents:
diff changeset
299 PreviousVersionWalker pvw((instanceKlass *)ikh()->klass_part());
a61af66fc99e Initial load
duke
parents:
diff changeset
300 for (PreviousVersionInfo * pv_info = pvw.next_previous_version();
a61af66fc99e Initial load
duke
parents:
diff changeset
301 pv_info != NULL; pv_info = pvw.next_previous_version()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
302 GrowableArray<methodHandle>* methods =
a61af66fc99e Initial load
duke
parents:
diff changeset
303 pv_info->prev_EMCP_method_handles();
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 if (methods == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // We have run into a PreviousVersion generation where
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // all methods were made obsolete during that generation's
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // RedefineClasses() operation. At the time of that
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // operation, all EMCP methods were flushed so we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // have to go back any further.
a61af66fc99e Initial load
duke
parents:
diff changeset
311 //
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // A NULL methods array is different than an empty methods
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // array. We cannot infer any optimizations about older
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // generations from an empty methods array for the current
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
316 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 for (int i = methods->length() - 1; i >= 0; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 methodHandle method = methods->at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 if (method->name() == m_name && method->signature() == m_signature) {
a61af66fc99e Initial load
duke
parents:
diff changeset
322 RC_TRACE(0x00000800, ("%sing breakpoint in %s(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
323 meth_act == &methodOopDesc::set_breakpoint ? "sett" : "clear",
a61af66fc99e Initial load
duke
parents:
diff changeset
324 method->name()->as_C_string(),
a61af66fc99e Initial load
duke
parents:
diff changeset
325 method->signature()->as_C_string()));
a61af66fc99e Initial load
duke
parents:
diff changeset
326 assert(!method->is_obsolete(), "only EMCP methods here");
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 ((methodOopDesc*)method()->*meth_act)(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 }
a61af66fc99e Initial load
duke
parents:
diff changeset
331 }
a61af66fc99e Initial load
duke
parents:
diff changeset
332 }
a61af66fc99e Initial load
duke
parents:
diff changeset
333 } // pvw is cleaned up
a61af66fc99e Initial load
duke
parents:
diff changeset
334 } // rm is cleaned up
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 void JvmtiBreakpoint::set() {
a61af66fc99e Initial load
duke
parents:
diff changeset
338 each_method_version_do(&methodOopDesc::set_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
339 }
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 void JvmtiBreakpoint::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
342 each_method_version_do(&methodOopDesc::clear_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 void JvmtiBreakpoint::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
346 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
347 const char *class_name = (_method == NULL) ? "NULL" : _method->klass_name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
348 const char *method_name = (_method == NULL) ? "NULL" : _method->name()->as_C_string();
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 tty->print("Breakpoint(%s,%s,%d,%p)",class_name, method_name, _bci, getBcp());
a61af66fc99e Initial load
duke
parents:
diff changeset
351 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 //
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // class VM_ChangeBreakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
357 //
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // Modify the Breakpoints data structure at a safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
359 //
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 void VM_ChangeBreakpoints::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 switch (_operation) {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 case SET_BREAKPOINT:
a61af66fc99e Initial load
duke
parents:
diff changeset
364 _breakpoints->set_at_safepoint(*_bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
365 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 case CLEAR_BREAKPOINT:
a61af66fc99e Initial load
duke
parents:
diff changeset
367 _breakpoints->clear_at_safepoint(*_bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 case CLEAR_ALL_BREAKPOINT:
a61af66fc99e Initial load
duke
parents:
diff changeset
370 _breakpoints->clearall_at_safepoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
371 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
372 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
373 assert(false, "Unknown operation");
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 void VM_ChangeBreakpoints::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // This operation keeps breakpoints alive
a61af66fc99e Initial load
duke
parents:
diff changeset
379 if (_breakpoints != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
380 _breakpoints->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
381 }
a61af66fc99e Initial load
duke
parents:
diff changeset
382 if (_bp != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
383 _bp->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 }
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 //
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // class JvmtiBreakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
389 //
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // a JVMTI internal collection of JvmtiBreakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
391 //
a61af66fc99e Initial load
duke
parents:
diff changeset
392
a61af66fc99e Initial load
duke
parents:
diff changeset
393 JvmtiBreakpoints::JvmtiBreakpoints(void listener_fun(void *,address *)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
394 _bps.initialize(this,listener_fun);
a61af66fc99e Initial load
duke
parents:
diff changeset
395 }
a61af66fc99e Initial load
duke
parents:
diff changeset
396
a61af66fc99e Initial load
duke
parents:
diff changeset
397 JvmtiBreakpoints:: ~JvmtiBreakpoints() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 void JvmtiBreakpoints::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
400 _bps.oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 }
a61af66fc99e Initial load
duke
parents:
diff changeset
402
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
403 void JvmtiBreakpoints::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
404 _bps.gc_epilogue();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
405 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
406
0
a61af66fc99e Initial load
duke
parents:
diff changeset
407 void JvmtiBreakpoints::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
409 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
410
a61af66fc99e Initial load
duke
parents:
diff changeset
411 int n = _bps.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
412 for (int i=0; i<n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
413 JvmtiBreakpoint& bp = _bps.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 tty->print("%d: ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
415 bp.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
416 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
417 }
a61af66fc99e Initial load
duke
parents:
diff changeset
418 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 void JvmtiBreakpoints::set_at_safepoint(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 int i = _bps.find(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (i == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 _bps.append(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
428 bp.set();
a61af66fc99e Initial load
duke
parents:
diff changeset
429 }
a61af66fc99e Initial load
duke
parents:
diff changeset
430 }
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 void JvmtiBreakpoints::clear_at_safepoint(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
433 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 int i = _bps.find(bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
436 if (i != -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
437 _bps.remove(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 bp.clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441
a61af66fc99e Initial load
duke
parents:
diff changeset
442 void JvmtiBreakpoints::clearall_at_safepoint() {
a61af66fc99e Initial load
duke
parents:
diff changeset
443 assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 int len = _bps.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
446 for (int i=0; i<len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 _bps.at(i).clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 _bps.clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451
a61af66fc99e Initial load
duke
parents:
diff changeset
452 int JvmtiBreakpoints::length() { return _bps.length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 int JvmtiBreakpoints::set(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_DUPLICATE;
a61af66fc99e Initial load
duke
parents:
diff changeset
457 }
a61af66fc99e Initial load
duke
parents:
diff changeset
458 VM_ChangeBreakpoints set_breakpoint(this,VM_ChangeBreakpoints::SET_BREAKPOINT, &bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
459 VMThread::execute(&set_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 return JVMTI_ERROR_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462
a61af66fc99e Initial load
duke
parents:
diff changeset
463 int JvmtiBreakpoints::clear(JvmtiBreakpoint& bp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
464 if ( _bps.find(bp) == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
465 return JVMTI_ERROR_NOT_FOUND;
a61af66fc99e Initial load
duke
parents:
diff changeset
466 }
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468 VM_ChangeBreakpoints clear_breakpoint(this,VM_ChangeBreakpoints::CLEAR_BREAKPOINT, &bp);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 VMThread::execute(&clear_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 return JVMTI_ERROR_NONE;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 }
a61af66fc99e Initial load
duke
parents:
diff changeset
472
a61af66fc99e Initial load
duke
parents:
diff changeset
473 void JvmtiBreakpoints::clearall_in_class_at_safepoint(klassOop klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 bool changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // We are going to run thru the list of bkpts
a61af66fc99e Initial load
duke
parents:
diff changeset
476 // and delete some. This deletion probably alters
a61af66fc99e Initial load
duke
parents:
diff changeset
477 // the list in some implementation defined way such
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // that when we delete entry i, the next entry might
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // no longer be at i+1. To be safe, each time we delete
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // an entry, we'll just start again from the beginning.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // We'll stop when we make a pass thru the whole list without
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // deleting anything.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 while (changed) {
a61af66fc99e Initial load
duke
parents:
diff changeset
484 int len = _bps.length();
a61af66fc99e Initial load
duke
parents:
diff changeset
485 changed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
486 for (int i = 0; i < len; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 JvmtiBreakpoint& bp = _bps.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (bp.method()->method_holder() == klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 bp.clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
490 _bps.remove(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
491 // This changed 'i' so we have to start over.
a61af66fc99e Initial load
duke
parents:
diff changeset
492 changed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
493 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
495 }
a61af66fc99e Initial load
duke
parents:
diff changeset
496 }
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498
a61af66fc99e Initial load
duke
parents:
diff changeset
499 void JvmtiBreakpoints::clearall() {
a61af66fc99e Initial load
duke
parents:
diff changeset
500 VM_ChangeBreakpoints clearall_breakpoint(this,VM_ChangeBreakpoints::CLEAR_ALL_BREAKPOINT);
a61af66fc99e Initial load
duke
parents:
diff changeset
501 VMThread::execute(&clearall_breakpoint);
a61af66fc99e Initial load
duke
parents:
diff changeset
502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
503
a61af66fc99e Initial load
duke
parents:
diff changeset
504 //
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // class JvmtiCurrentBreakpoints
a61af66fc99e Initial load
duke
parents:
diff changeset
506 //
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 JvmtiBreakpoints *JvmtiCurrentBreakpoints::_jvmti_breakpoints = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
509 address * JvmtiCurrentBreakpoints::_breakpoint_list = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
510
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 JvmtiBreakpoints& JvmtiCurrentBreakpoints::get_jvmti_breakpoints() {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 if (_jvmti_breakpoints != NULL) return (*_jvmti_breakpoints);
a61af66fc99e Initial load
duke
parents:
diff changeset
514 _jvmti_breakpoints = new JvmtiBreakpoints(listener_fun);
a61af66fc99e Initial load
duke
parents:
diff changeset
515 assert(_jvmti_breakpoints != NULL, "_jvmti_breakpoints != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
516 return (*_jvmti_breakpoints);
a61af66fc99e Initial load
duke
parents:
diff changeset
517 }
a61af66fc99e Initial load
duke
parents:
diff changeset
518
a61af66fc99e Initial load
duke
parents:
diff changeset
519 void JvmtiCurrentBreakpoints::listener_fun(void *this_obj, address *cache) {
a61af66fc99e Initial load
duke
parents:
diff changeset
520 JvmtiBreakpoints *this_jvmti = (JvmtiBreakpoints *) this_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
521 assert(this_jvmti != NULL, "this_jvmti != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 debug_only(int n = this_jvmti->length(););
a61af66fc99e Initial load
duke
parents:
diff changeset
524 assert(cache[n] == NULL, "cache must be NULL terminated");
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 set_breakpoint_list(cache);
a61af66fc99e Initial load
duke
parents:
diff changeset
527 }
a61af66fc99e Initial load
duke
parents:
diff changeset
528
a61af66fc99e Initial load
duke
parents:
diff changeset
529
a61af66fc99e Initial load
duke
parents:
diff changeset
530 void JvmtiCurrentBreakpoints::oops_do(OopClosure* f) {
a61af66fc99e Initial load
duke
parents:
diff changeset
531 if (_jvmti_breakpoints != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
532 _jvmti_breakpoints->oops_do(f);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 }
a61af66fc99e Initial load
duke
parents:
diff changeset
534 }
a61af66fc99e Initial load
duke
parents:
diff changeset
535
2147
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
536 void JvmtiCurrentBreakpoints::gc_epilogue() {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
537 if (_jvmti_breakpoints != NULL) {
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
538 _jvmti_breakpoints->gc_epilogue();
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
539 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
540 }
9afee0b9fc1d 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 2125
diff changeset
541
0
a61af66fc99e Initial load
duke
parents:
diff changeset
542 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
543 //
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // class VM_GetOrSetLocal
a61af66fc99e Initial load
duke
parents:
diff changeset
545 //
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547 // Constructor for non-object getter
a61af66fc99e Initial load
duke
parents:
diff changeset
548 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type)
a61af66fc99e Initial load
duke
parents:
diff changeset
549 : _thread(thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
550 , _calling_thread(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
551 , _depth(depth)
a61af66fc99e Initial load
duke
parents:
diff changeset
552 , _index(index)
a61af66fc99e Initial load
duke
parents:
diff changeset
553 , _type(type)
a61af66fc99e Initial load
duke
parents:
diff changeset
554 , _set(false)
a61af66fc99e Initial load
duke
parents:
diff changeset
555 , _jvf(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
556 , _result(JVMTI_ERROR_NONE)
a61af66fc99e Initial load
duke
parents:
diff changeset
557 {
a61af66fc99e Initial load
duke
parents:
diff changeset
558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
559
a61af66fc99e Initial load
duke
parents:
diff changeset
560 // Constructor for object or non-object setter
a61af66fc99e Initial load
duke
parents:
diff changeset
561 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value)
a61af66fc99e Initial load
duke
parents:
diff changeset
562 : _thread(thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
563 , _calling_thread(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
564 , _depth(depth)
a61af66fc99e Initial load
duke
parents:
diff changeset
565 , _index(index)
a61af66fc99e Initial load
duke
parents:
diff changeset
566 , _type(type)
a61af66fc99e Initial load
duke
parents:
diff changeset
567 , _value(value)
a61af66fc99e Initial load
duke
parents:
diff changeset
568 , _set(true)
a61af66fc99e Initial load
duke
parents:
diff changeset
569 , _jvf(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
570 , _result(JVMTI_ERROR_NONE)
a61af66fc99e Initial load
duke
parents:
diff changeset
571 {
a61af66fc99e Initial load
duke
parents:
diff changeset
572 }
a61af66fc99e Initial load
duke
parents:
diff changeset
573
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // Constructor for object getter
a61af66fc99e Initial load
duke
parents:
diff changeset
575 VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth, int index)
a61af66fc99e Initial load
duke
parents:
diff changeset
576 : _thread(thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
577 , _calling_thread(calling_thread)
a61af66fc99e Initial load
duke
parents:
diff changeset
578 , _depth(depth)
a61af66fc99e Initial load
duke
parents:
diff changeset
579 , _index(index)
a61af66fc99e Initial load
duke
parents:
diff changeset
580 , _type(T_OBJECT)
a61af66fc99e Initial load
duke
parents:
diff changeset
581 , _set(false)
a61af66fc99e Initial load
duke
parents:
diff changeset
582 , _jvf(NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
583 , _result(JVMTI_ERROR_NONE)
a61af66fc99e Initial load
duke
parents:
diff changeset
584 {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 vframe *VM_GetOrSetLocal::get_vframe() {
a61af66fc99e Initial load
duke
parents:
diff changeset
588 if (!_thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591 RegisterMap reg_map(_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
592 vframe *vf = _thread->last_java_vframe(&reg_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
593 int d = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
594 while ((vf != NULL) && (d < _depth)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
595 vf = vf->java_sender();
a61af66fc99e Initial load
duke
parents:
diff changeset
596 d++;
a61af66fc99e Initial load
duke
parents:
diff changeset
597 }
a61af66fc99e Initial load
duke
parents:
diff changeset
598 return vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 javaVFrame *VM_GetOrSetLocal::get_java_vframe() {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 vframe* vf = get_vframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
603 if (vf == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
604 _result = JVMTI_ERROR_NO_MORE_FRAMES;
a61af66fc99e Initial load
duke
parents:
diff changeset
605 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607 javaVFrame *jvf = (javaVFrame*)vf;
a61af66fc99e Initial load
duke
parents:
diff changeset
608
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
609 if (!vf->is_java_frame()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
610 _result = JVMTI_ERROR_OPAQUE_FRAME;
a61af66fc99e Initial load
duke
parents:
diff changeset
611 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
612 }
a61af66fc99e Initial load
duke
parents:
diff changeset
613 return jvf;
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // Check that the klass is assignable to a type with the given signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
617 // Another solution could be to use the function Klass::is_subtype_of(type).
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // But the type class can be forced to load/initialize eagerly in such a case.
a61af66fc99e Initial load
duke
parents:
diff changeset
619 // This may cause unexpected consequences like CFLH or class-init JVMTI events.
a61af66fc99e Initial load
duke
parents:
diff changeset
620 // It is better to avoid such a behavior.
a61af66fc99e Initial load
duke
parents:
diff changeset
621 bool VM_GetOrSetLocal::is_assignable(const char* ty_sign, Klass* klass, Thread* thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 assert(ty_sign != NULL, "type signature must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
623 assert(thread != NULL, "thread must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
624 assert(klass != NULL, "klass must not be NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
625
a61af66fc99e Initial load
duke
parents:
diff changeset
626 int len = (int) strlen(ty_sign);
a61af66fc99e Initial load
duke
parents:
diff changeset
627 if (ty_sign[0] == 'L' && ty_sign[len-1] == ';') { // Need pure class/interface name
a61af66fc99e Initial load
duke
parents:
diff changeset
628 ty_sign++;
a61af66fc99e Initial load
duke
parents:
diff changeset
629 len -= 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
630 }
a61af66fc99e Initial load
duke
parents:
diff changeset
631 symbolHandle ty_sym = oopFactory::new_symbol_handle(ty_sign, len, thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
632 if (klass->name() == ty_sym()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
633 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635 // Compare primary supers
a61af66fc99e Initial load
duke
parents:
diff changeset
636 int super_depth = klass->super_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
637 int idx;
a61af66fc99e Initial load
duke
parents:
diff changeset
638 for (idx = 0; idx < super_depth; idx++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 if (Klass::cast(klass->primary_super_of_depth(idx))->name() == ty_sym()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
640 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
641 }
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643 // Compare secondary supers
a61af66fc99e Initial load
duke
parents:
diff changeset
644 objArrayOop sec_supers = klass->secondary_supers();
a61af66fc99e Initial load
duke
parents:
diff changeset
645 for (idx = 0; idx < sec_supers->length(); idx++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
646 if (Klass::cast((klassOop) sec_supers->obj_at(idx))->name() == ty_sym()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
647 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
652
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // Checks error conditions:
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // JVMTI_ERROR_INVALID_SLOT
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // JVMTI_ERROR_TYPE_MISMATCH
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // Returns: 'true' - everything is Ok, 'false' - error code
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658 bool VM_GetOrSetLocal::check_slot_type(javaVFrame* jvf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
659 methodOop method_oop = jvf->method();
a61af66fc99e Initial load
duke
parents:
diff changeset
660 if (!method_oop->has_localvariable_table()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // Just to check index boundaries
a61af66fc99e Initial load
duke
parents:
diff changeset
662 jint extra_slot = (_type == T_LONG || _type == T_DOUBLE) ? 1 : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
663 if (_index < 0 || _index + extra_slot >= method_oop->max_locals()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 _result = JVMTI_ERROR_INVALID_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
666 }
a61af66fc99e Initial load
duke
parents:
diff changeset
667 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
669
a61af66fc99e Initial load
duke
parents:
diff changeset
670 jint num_entries = method_oop->localvariable_table_length();
a61af66fc99e Initial load
duke
parents:
diff changeset
671 if (num_entries == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
672 _result = JVMTI_ERROR_INVALID_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
673 return false; // There are no slots
a61af66fc99e Initial load
duke
parents:
diff changeset
674 }
a61af66fc99e Initial load
duke
parents:
diff changeset
675 int signature_idx = -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
676 int vf_bci = jvf->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
677 LocalVariableTableElement* table = method_oop->localvariable_table_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
678 for (int i = 0; i < num_entries; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
679 int start_bci = table[i].start_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 int end_bci = start_bci + table[i].length;
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // Here we assume that locations of LVT entries
a61af66fc99e Initial load
duke
parents:
diff changeset
683 // with the same slot number cannot be overlapped
a61af66fc99e Initial load
duke
parents:
diff changeset
684 if (_index == (jint) table[i].slot && start_bci <= vf_bci && vf_bci <= end_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
685 signature_idx = (int) table[i].descriptor_cp_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
686 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
687 }
a61af66fc99e Initial load
duke
parents:
diff changeset
688 }
a61af66fc99e Initial load
duke
parents:
diff changeset
689 if (signature_idx == -1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
690 _result = JVMTI_ERROR_INVALID_SLOT;
a61af66fc99e Initial load
duke
parents:
diff changeset
691 return false; // Incorrect slot index
a61af66fc99e Initial load
duke
parents:
diff changeset
692 }
a61af66fc99e Initial load
duke
parents:
diff changeset
693 symbolOop sign_sym = method_oop->constants()->symbol_at(signature_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 const char* signature = (const char *) sign_sym->as_utf8();
a61af66fc99e Initial load
duke
parents:
diff changeset
695 BasicType slot_type = char2type(signature[0]);
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 switch (slot_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
698 case T_BYTE:
a61af66fc99e Initial load
duke
parents:
diff changeset
699 case T_SHORT:
a61af66fc99e Initial load
duke
parents:
diff changeset
700 case T_CHAR:
a61af66fc99e Initial load
duke
parents:
diff changeset
701 case T_BOOLEAN:
a61af66fc99e Initial load
duke
parents:
diff changeset
702 slot_type = T_INT;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
704 case T_ARRAY:
a61af66fc99e Initial load
duke
parents:
diff changeset
705 slot_type = T_OBJECT;
a61af66fc99e Initial load
duke
parents:
diff changeset
706 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
707 };
a61af66fc99e Initial load
duke
parents:
diff changeset
708 if (_type != slot_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 _result = JVMTI_ERROR_TYPE_MISMATCH;
a61af66fc99e Initial load
duke
parents:
diff changeset
710 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
711 }
a61af66fc99e Initial load
duke
parents:
diff changeset
712
a61af66fc99e Initial load
duke
parents:
diff changeset
713 jobject jobj = _value.l;
a61af66fc99e Initial load
duke
parents:
diff changeset
714 if (_set && slot_type == T_OBJECT && jobj != NULL) { // NULL reference is allowed
a61af66fc99e Initial load
duke
parents:
diff changeset
715 // Check that the jobject class matches the return type signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
716 JavaThread* cur_thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
717 HandleMark hm(cur_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
718
a61af66fc99e Initial load
duke
parents:
diff changeset
719 Handle obj = Handle(cur_thread, JNIHandles::resolve_external_guard(jobj));
a61af66fc99e Initial load
duke
parents:
diff changeset
720 NULL_CHECK(obj, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
a61af66fc99e Initial load
duke
parents:
diff changeset
721 KlassHandle ob_kh = KlassHandle(cur_thread, obj->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
722 NULL_CHECK(ob_kh, (_result = JVMTI_ERROR_INVALID_OBJECT, false));
a61af66fc99e Initial load
duke
parents:
diff changeset
723
a61af66fc99e Initial load
duke
parents:
diff changeset
724 if (!is_assignable(signature, Klass::cast(ob_kh()), cur_thread)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
725 _result = JVMTI_ERROR_TYPE_MISMATCH;
a61af66fc99e Initial load
duke
parents:
diff changeset
726 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
729 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
730 }
a61af66fc99e Initial load
duke
parents:
diff changeset
731
a61af66fc99e Initial load
duke
parents:
diff changeset
732 static bool can_be_deoptimized(vframe* vf) {
a61af66fc99e Initial load
duke
parents:
diff changeset
733 return (vf->is_compiled_frame() && vf->fr().can_be_deoptimized());
a61af66fc99e Initial load
duke
parents:
diff changeset
734 }
a61af66fc99e Initial load
duke
parents:
diff changeset
735
a61af66fc99e Initial load
duke
parents:
diff changeset
736 bool VM_GetOrSetLocal::doit_prologue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 _jvf = get_java_vframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
738 NULL_CHECK(_jvf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
739
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
740 if (_jvf->method()->is_native()) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
741 if (getting_receiver() && !_jvf->method()->is_static()) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
742 return true;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
743 } else {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
744 _result = JVMTI_ERROR_OPAQUE_FRAME;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
745 return false;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
746 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
747 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
748
0
a61af66fc99e Initial load
duke
parents:
diff changeset
749 if (!check_slot_type(_jvf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
750 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
751 }
a61af66fc99e Initial load
duke
parents:
diff changeset
752 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 void VM_GetOrSetLocal::doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 if (_set) {
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // Force deoptimization of frame if compiled because it's
a61af66fc99e Initial load
duke
parents:
diff changeset
758 // possible the compiler emitted some locals as constant values,
a61af66fc99e Initial load
duke
parents:
diff changeset
759 // meaning they are not mutable.
a61af66fc99e Initial load
duke
parents:
diff changeset
760 if (can_be_deoptimized(_jvf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
761
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Schedule deoptimization so that eventually the local
a61af66fc99e Initial load
duke
parents:
diff changeset
763 // 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
764 Deoptimization::deoptimize_frame(_jvf->thread(), _jvf->fr().id());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 // Now store a new value for the local which will be applied
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // once deoptimization occurs. Note however that while this
a61af66fc99e Initial load
duke
parents:
diff changeset
768 // write is deferred until deoptimization actually happens
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // can vframe created after this point will have its locals
a61af66fc99e Initial load
duke
parents:
diff changeset
770 // reflecting this update so as far as anyone can see the
a61af66fc99e Initial load
duke
parents:
diff changeset
771 // write has already taken place.
a61af66fc99e Initial load
duke
parents:
diff changeset
772
a61af66fc99e Initial load
duke
parents:
diff changeset
773 // If we are updating an oop then get the oop from the handle
a61af66fc99e Initial load
duke
parents:
diff changeset
774 // since the handle will be long gone by the time the deopt
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // happens. The oop stored in the deferred local will be
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // gc'd on its own.
a61af66fc99e Initial load
duke
parents:
diff changeset
777 if (_type == T_OBJECT) {
a61af66fc99e Initial load
duke
parents:
diff changeset
778 _value.l = (jobject) (JNIHandles::resolve_external_guard(_value.l));
a61af66fc99e Initial load
duke
parents:
diff changeset
779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
780 // Re-read the vframe so we can see that it is deoptimized
a61af66fc99e Initial load
duke
parents:
diff changeset
781 // [ Only need because of assert in update_local() ]
a61af66fc99e Initial load
duke
parents:
diff changeset
782 _jvf = get_java_vframe();
a61af66fc99e Initial load
duke
parents:
diff changeset
783 ((compiledVFrame*)_jvf)->update_local(_type, _index, _value);
a61af66fc99e Initial load
duke
parents:
diff changeset
784 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
785 }
a61af66fc99e Initial load
duke
parents:
diff changeset
786 StackValueCollection *locals = _jvf->locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
787 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
788
a61af66fc99e Initial load
duke
parents:
diff changeset
789 switch (_type) {
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
790 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
791 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
792 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
793 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
794 case T_OBJECT: {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
795 Handle ob_h(JNIHandles::resolve_external_guard(_value.l));
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
796 locals->set_obj_at (_index, ob_h);
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
797 break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
798 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
799 default: ShouldNotReachHere();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
800 }
a61af66fc99e Initial load
duke
parents:
diff changeset
801 _jvf->set_locals(locals);
a61af66fc99e Initial load
duke
parents:
diff changeset
802 } else {
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
803 if (_jvf->method()->is_native() && _jvf->is_compiled_frame()) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
804 assert(getting_receiver(), "Can only get here when getting receiver");
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
805 oop receiver = _jvf->fr().get_native_receiver();
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
806 _value.l = JNIHandles::make_local(_calling_thread, receiver);
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
807 } else {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
808 StackValueCollection *locals = _jvf->locals();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
809
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
810 if (locals->at(_index)->type() == T_CONFLICT) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
811 memset(&_value, 0, sizeof(_value));
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
812 _value.l = NULL;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
813 return;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
814 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
815
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
816 switch (_type) {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
817 case T_INT: _value.i = locals->int_at (_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
818 case T_LONG: _value.j = locals->long_at (_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
819 case T_FLOAT: _value.f = locals->float_at (_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
820 case T_DOUBLE: _value.d = locals->double_at(_index); break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
821 case T_OBJECT: {
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
822 // 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
823 // oops_do() no longer applies after doit() is finished.
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
824 oop obj = locals->obj_at(_index)();
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
825 _value.l = JNIHandles::make_local(_calling_thread, obj);
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
826 break;
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
827 }
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
828 default: ShouldNotReachHere();
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
829 }
0
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
a61af66fc99e Initial load
duke
parents:
diff changeset
835 bool VM_GetOrSetLocal::allow_nested_vm_operations() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
836 return true; // May need to deoptimize
a61af66fc99e Initial load
duke
parents:
diff changeset
837 }
a61af66fc99e Initial load
duke
parents:
diff changeset
838
a61af66fc99e Initial load
duke
parents:
diff changeset
839
2019
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
840 VM_GetReceiver::VM_GetReceiver(
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
841 JavaThread* thread, JavaThread* caller_thread, jint depth)
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
842 : VM_GetOrSetLocal(thread, caller_thread, depth, 0) {}
09b4dd4f152b 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 1972
diff changeset
843
0
a61af66fc99e Initial load
duke
parents:
diff changeset
844 /////////////////////////////////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
845
a61af66fc99e Initial load
duke
parents:
diff changeset
846 //
a61af66fc99e Initial load
duke
parents:
diff changeset
847 // class JvmtiSuspendControl - see comments in jvmtiImpl.hpp
a61af66fc99e Initial load
duke
parents:
diff changeset
848 //
a61af66fc99e Initial load
duke
parents:
diff changeset
849
a61af66fc99e Initial load
duke
parents:
diff changeset
850 bool JvmtiSuspendControl::suspend(JavaThread *java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
851 // external suspend should have caught suspending a thread twice
a61af66fc99e Initial load
duke
parents:
diff changeset
852
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // Immediate suspension required for JPDA back-end so JVMTI agent threads do
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // not deadlock due to later suspension on transitions while holding
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // raw monitors. Passing true causes the immediate suspension.
a61af66fc99e Initial load
duke
parents:
diff changeset
856 // java_suspend() will catch threads in the process of exiting
a61af66fc99e Initial load
duke
parents:
diff changeset
857 // and will ignore them.
a61af66fc99e Initial load
duke
parents:
diff changeset
858 java_thread->java_suspend();
a61af66fc99e Initial load
duke
parents:
diff changeset
859
a61af66fc99e Initial load
duke
parents:
diff changeset
860 // It would be nice to have the following assertion in all the time,
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // but it is possible for a racing resume request to have resumed
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // this thread right after we suspended it. Temporarily enable this
a61af66fc99e Initial load
duke
parents:
diff changeset
863 // assertion if you are chasing a different kind of bug.
a61af66fc99e Initial load
duke
parents:
diff changeset
864 //
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // assert(java_lang_Thread::thread(java_thread->threadObj()) == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
866 // java_thread->is_being_ext_suspended(), "thread is not suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
867
a61af66fc99e Initial load
duke
parents:
diff changeset
868 if (java_lang_Thread::thread(java_thread->threadObj()) == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // check again because we can get delayed in java_suspend():
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // the thread is in process of exiting.
a61af66fc99e Initial load
duke
parents:
diff changeset
871 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
872 }
a61af66fc99e Initial load
duke
parents:
diff changeset
873
a61af66fc99e Initial load
duke
parents:
diff changeset
874 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
875 }
a61af66fc99e Initial load
duke
parents:
diff changeset
876
a61af66fc99e Initial load
duke
parents:
diff changeset
877 bool JvmtiSuspendControl::resume(JavaThread *java_thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // external suspend should have caught resuming a thread twice
a61af66fc99e Initial load
duke
parents:
diff changeset
879 assert(java_thread->is_being_ext_suspended(), "thread should be suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
880
a61af66fc99e Initial load
duke
parents:
diff changeset
881 // resume thread
a61af66fc99e Initial load
duke
parents:
diff changeset
882 {
a61af66fc99e Initial load
duke
parents:
diff changeset
883 // must always grab Threads_lock, see JVM_SuspendThread
a61af66fc99e Initial load
duke
parents:
diff changeset
884 MutexLocker ml(Threads_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
885 java_thread->java_resume();
a61af66fc99e Initial load
duke
parents:
diff changeset
886 }
a61af66fc99e Initial load
duke
parents:
diff changeset
887
a61af66fc99e Initial load
duke
parents:
diff changeset
888 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
889 }
a61af66fc99e Initial load
duke
parents:
diff changeset
890
a61af66fc99e Initial load
duke
parents:
diff changeset
891
a61af66fc99e Initial load
duke
parents:
diff changeset
892 void JvmtiSuspendControl::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
893 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
894 MutexLocker mu(Threads_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
895 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
896
a61af66fc99e Initial load
duke
parents:
diff changeset
897 tty->print("Suspended Threads: [");
a61af66fc99e Initial load
duke
parents:
diff changeset
898 for (JavaThread *thread = Threads::first(); thread != NULL; thread = thread->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
899 #if JVMTI_TRACE
a61af66fc99e Initial load
duke
parents:
diff changeset
900 const char *name = JvmtiTrace::safe_get_thread_name(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
901 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
902 const char *name = "";
a61af66fc99e Initial load
duke
parents:
diff changeset
903 #endif /*JVMTI_TRACE */
a61af66fc99e Initial load
duke
parents:
diff changeset
904 tty->print("%s(%c ", name, thread->is_being_ext_suspended() ? 'S' : '_');
a61af66fc99e Initial load
duke
parents:
diff changeset
905 if (!thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
906 tty->print("no stack");
a61af66fc99e Initial load
duke
parents:
diff changeset
907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
908 tty->print(") ");
a61af66fc99e Initial load
duke
parents:
diff changeset
909 }
a61af66fc99e Initial load
duke
parents:
diff changeset
910 tty->print_cr("]");
a61af66fc99e Initial load
duke
parents:
diff changeset
911 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
912 }