annotate src/share/vm/prims/jvmtiEnvThreadState.cpp @ 1552:c18cbe5936b8

6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
author trims
date Thu, 27 May 2010 19:08:38 -0700
parents a61af66fc99e
children f95d63e2154a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2003, 2006, 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: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
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: 0
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
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_jvmtiEnvThreadState.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
30 //
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // class JvmtiFramePop
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
35 void JvmtiFramePop::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 tty->print_cr("_frame_number=%d", _frame_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // class JvmtiFramePops - private methods
a61af66fc99e Initial load
duke
parents:
diff changeset
44 //
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 void
a61af66fc99e Initial load
duke
parents:
diff changeset
47 JvmtiFramePops::set(JvmtiFramePop& fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
48 if (_pops->find(fp.frame_number()) < 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _pops->append(fp.frame_number());
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51 }
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void
a61af66fc99e Initial load
duke
parents:
diff changeset
55 JvmtiFramePops::clear(JvmtiFramePop& fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 assert(_pops->length() > 0, "No more frame pops");
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _pops->remove(fp.frame_number());
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int
a61af66fc99e Initial load
duke
parents:
diff changeset
63 JvmtiFramePops::clear_to(JvmtiFramePop& fp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 int cleared = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int index = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 while (index < _pops->length()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 JvmtiFramePop pop = JvmtiFramePop(_pops->at(index));
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (pop.above_on_stack(fp)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 _pops->remove_at(index);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ++cleared;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ++index;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return cleared;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // class JvmtiFramePops - public methods
a61af66fc99e Initial load
duke
parents:
diff changeset
82 //
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 JvmtiFramePops::JvmtiFramePops() {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 _pops = new (ResourceObj::C_HEAP) GrowableArray<int> (2, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 JvmtiFramePops::~JvmtiFramePops() {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // return memory to c_heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 delete _pops;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void JvmtiFramePops::print() {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 int n = _pops->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 for (int i=0; i<n; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 JvmtiFramePop fp = JvmtiFramePop(_pops->at(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
101 tty->print("%d: ", i);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 fp.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 tty->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ///////////////////////////////////////////////////////////////
a61af66fc99e Initial load
duke
parents:
diff changeset
109 //
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // class JvmtiEnvThreadState
a61af66fc99e Initial load
duke
parents:
diff changeset
111 //
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Instances of JvmtiEnvThreadState hang off of each JvmtiThreadState,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // one per JvmtiEnv.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 //
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 JvmtiEnvThreadState::JvmtiEnvThreadState(JavaThread *thread, JvmtiEnvBase *env) :
a61af66fc99e Initial load
duke
parents:
diff changeset
117 _event_enable() {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 _thread = thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _env = (JvmtiEnv*)env;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _frame_pops = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 _current_bci = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 _current_method_id = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _breakpoint_posted = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 _single_stepping_posted = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _agent_thread_local_storage_data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 }
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 JvmtiEnvThreadState::~JvmtiEnvThreadState() {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 delete _frame_pops;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 _frame_pops = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Given that a new (potential) event has come in,
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // maintain the current JVMTI location on a per-thread per-env basis
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // and use it to filter out duplicate events:
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // - instruction rewrites
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // - breakpoint followed by single step
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // - single step at a breakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void JvmtiEnvThreadState::compare_and_set_current_location(methodOop new_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
141 address new_location, jvmtiEvent event) {
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 int new_bci = new_location - new_method->code_base();
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // The method is identified and stored as a jmethodID which is safe in this
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // case because the class cannot be unloaded while a method is executing.
a61af66fc99e Initial load
duke
parents:
diff changeset
147 jmethodID new_method_id = new_method->jmethod_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // the last breakpoint or single step was at this same location
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (_current_bci == new_bci && _current_method_id == new_method_id) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 switch (event) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 case JVMTI_EVENT_BREAKPOINT:
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Repeat breakpoint is complicated. If we previously posted a breakpoint
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // event at this location and if we also single stepped at this location
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // then we skip the duplicate breakpoint.
a61af66fc99e Initial load
duke
parents:
diff changeset
156 _breakpoint_posted = _breakpoint_posted && _single_stepping_posted;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 case JVMTI_EVENT_SINGLE_STEP:
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // Repeat single step is easy: just don't post it again.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // If step is pending for popframe then it may not be
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // a repeat step. The new_bci and method_id is same as current_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // and current method_id after pop and step for recursive calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // This has been handled by clearing the location
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _single_stepping_posted = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
167 assert(false, "invalid event value passed");
a61af66fc99e Initial load
duke
parents:
diff changeset
168 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 set_current_location(new_method_id, new_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 _breakpoint_posted = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _single_stepping_posted = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 JvmtiFramePops* JvmtiEnvThreadState::get_frame_pops() {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
181 uint32_t debug_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
182 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
183 assert(get_thread() == Thread::current() || JvmtiEnv::is_thread_fully_suspended(get_thread(), false, &debug_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
184 "frame pop data only accessible from same thread or while suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
185
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if (_frame_pops == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 _frame_pops = new JvmtiFramePops();
a61af66fc99e Initial load
duke
parents:
diff changeset
188 assert(_frame_pops != NULL, "_frame_pops != NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return _frame_pops;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 bool JvmtiEnvThreadState::has_frame_pops() {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 return _frame_pops == NULL? false : (_frame_pops->length() > 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 void JvmtiEnvThreadState::set_frame_pop(int frame_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
200 uint32_t debug_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
201 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
202 assert(get_thread() == Thread::current() || JvmtiEnv::is_thread_fully_suspended(get_thread(), false, &debug_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
203 "frame pop data only accessible from same thread or while suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
204 JvmtiFramePop fpop(frame_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 JvmtiEventController::set_frame_pop(this, fpop);
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 void JvmtiEnvThreadState::clear_frame_pop(int frame_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
211 uint32_t debug_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
213 assert(get_thread() == Thread::current() || JvmtiEnv::is_thread_fully_suspended(get_thread(), false, &debug_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
214 "frame pop data only accessible from same thread or while suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
215 JvmtiFramePop fpop(frame_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 JvmtiEventController::clear_frame_pop(this, fpop);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 void JvmtiEnvThreadState::clear_to_frame_pop(int frame_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
222 uint32_t debug_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
224 assert(get_thread() == Thread::current() || JvmtiEnv::is_thread_fully_suspended(get_thread(), false, &debug_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
225 "frame pop data only accessible from same thread or while suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
226 JvmtiFramePop fpop(frame_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 JvmtiEventController::clear_to_frame_pop(this, fpop);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 bool JvmtiEnvThreadState::is_frame_pop(int cur_frame_number) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
233 uint32_t debug_bits = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
235 assert(get_thread() == Thread::current() || JvmtiEnv::is_thread_fully_suspended(get_thread(), false, &debug_bits),
a61af66fc99e Initial load
duke
parents:
diff changeset
236 "frame pop data only accessible from same thread or while suspended");
a61af66fc99e Initial load
duke
parents:
diff changeset
237 if (!get_thread()->is_interp_only_mode() || _frame_pops == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 JvmtiFramePop fp(cur_frame_number);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 return get_frame_pops()->contains(fp);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 class VM_GetCurrentLocation : public VM_Operation {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
247 JavaThread *_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
248 jmethodID _method_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 int _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
250
a61af66fc99e Initial load
duke
parents:
diff changeset
251 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
252 VM_GetCurrentLocation(JavaThread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 _thread = thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255 VMOp_Type type() const { return VMOp_GetCurrentLocation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 void doit() {
a61af66fc99e Initial load
duke
parents:
diff changeset
257 ResourceMark rmark; // _thread != Thread::current()
a61af66fc99e Initial load
duke
parents:
diff changeset
258 RegisterMap rm(_thread, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 javaVFrame* vf = _thread->last_java_vframe(&rm);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 assert(vf != NULL, "must have last java frame");
a61af66fc99e Initial load
duke
parents:
diff changeset
261 methodOop method = vf->method();
a61af66fc99e Initial load
duke
parents:
diff changeset
262 _method_id = method->jmethod_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
263 _bci = vf->bci();
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265 void get_current_location(jmethodID *method_id, int *bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
266 *method_id = _method_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 *bci = _bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269 };
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 void JvmtiEnvThreadState::reset_current_location(jvmtiEvent event_type, bool enabled) {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 assert(event_type == JVMTI_EVENT_SINGLE_STEP || event_type == JVMTI_EVENT_BREAKPOINT,
a61af66fc99e Initial load
duke
parents:
diff changeset
273 "must be single-step or breakpoint event");
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Current location is used to detect the following:
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // 1) a breakpoint event followed by single-stepping to the same bci
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // 2) single-step to a bytecode that will be transformed to a fast version
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // We skip to avoid posting the duplicate single-stepping event.
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // If single-stepping is disabled, clear current location so that
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // single-stepping to the same method and bcp at a later time will be
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // detected if single-stepping is enabled at that time (see 4388912).
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // If single-stepping is enabled, set the current location to the
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // current method and bcp. This covers the following type of case,
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // e.g., the debugger stepi command:
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // - bytecode single stepped
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // - SINGLE_STEP event posted and SINGLE_STEP event disabled
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // - SINGLE_STEP event reenabled
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // - bytecode rewritten to fast version
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // If breakpoint event is disabled, clear current location only if
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // single-stepping is not enabled. Otherwise, keep the thread location
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // to detect any duplicate events.
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 if (enabled) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // If enabling breakpoint, no need to reset.
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // Can't do anything if empty stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
299 if (event_type == JVMTI_EVENT_SINGLE_STEP && _thread->has_last_Java_frame()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 jmethodID method_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
301 int bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // The java thread stack may not be walkable for a running thread
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // so get current location at safepoint.
a61af66fc99e Initial load
duke
parents:
diff changeset
304 VM_GetCurrentLocation op(_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 VMThread::execute(&op);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 op.get_current_location(&method_id, &bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 set_current_location(method_id, bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309 } else if (event_type == JVMTI_EVENT_SINGLE_STEP || !is_enabled(JVMTI_EVENT_SINGLE_STEP)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // If this is to disable breakpoint, also check if single-step is not enabled
a61af66fc99e Initial load
duke
parents:
diff changeset
311 clear_current_location();
a61af66fc99e Initial load
duke
parents:
diff changeset
312 }
a61af66fc99e Initial load
duke
parents:
diff changeset
313 }