src/share/vm/prims/jvmtiImpl.hpp

Wed, 27 Aug 2014 08:19:12 -0400

author
zgu
date
Wed, 27 Aug 2014 08:19:12 -0400
changeset 7074
833b0f92429a
parent 6140
77b028ba548c
child 6876
710a3c8b516e
permissions
-rw-r--r--

8046598: Scalable Native memory tracking development
Summary: Enhance scalability of native memory tracking
Reviewed-by: coleenp, ctornqvi, gtriantafill

duke@435 1 /*
zgu@4492 2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_PRIMS_JVMTIIMPL_HPP
stefank@2314 26 #define SHARE_VM_PRIMS_JVMTIIMPL_HPP
stefank@2314 27
stefank@2314 28 #include "classfile/systemDictionary.hpp"
stefank@2314 29 #include "jvmtifiles/jvmti.h"
stefank@2314 30 #include "oops/objArrayOop.hpp"
stefank@2314 31 #include "prims/jvmtiEnvThreadState.hpp"
stefank@2314 32 #include "prims/jvmtiEventController.hpp"
stefank@2314 33 #include "prims/jvmtiTrace.hpp"
stefank@2314 34 #include "prims/jvmtiUtil.hpp"
stefank@2314 35 #include "runtime/stackValueCollection.hpp"
stefank@2314 36 #include "runtime/vm_operations.hpp"
stefank@2314 37
duke@435 38 //
duke@435 39 // Forward Declarations
duke@435 40 //
duke@435 41
duke@435 42 class JvmtiBreakpoint;
duke@435 43 class JvmtiBreakpoints;
duke@435 44
duke@435 45
duke@435 46 ///////////////////////////////////////////////////////////////
duke@435 47 //
duke@435 48 // class GrowableCache, GrowableElement
duke@435 49 // Used by : JvmtiBreakpointCache
duke@435 50 // Used by JVMTI methods: none directly.
duke@435 51 //
duke@435 52 // GrowableCache is a permanent CHeap growable array of <GrowableElement *>
duke@435 53 //
duke@435 54 // In addition, the GrowableCache maintains a NULL terminated cache array of type address
duke@435 55 // that's created from the element array using the function:
duke@435 56 // address GrowableElement::getCacheValue().
duke@435 57 //
duke@435 58 // Whenever the GrowableArray changes size, the cache array gets recomputed into a new C_HEAP allocated
duke@435 59 // block of memory. Additionally, every time the cache changes its position in memory, the
duke@435 60 // void (*_listener_fun)(void *this_obj, address* cache)
duke@435 61 // gets called with the cache's new address. This gives the user of the GrowableCache a callback
duke@435 62 // to update its pointer to the address cache.
duke@435 63 //
duke@435 64
zgu@3900 65 class GrowableElement : public CHeapObj<mtInternal> {
duke@435 66 public:
duke@435 67 virtual address getCacheValue() =0;
duke@435 68 virtual bool equals(GrowableElement* e) =0;
duke@435 69 virtual bool lessThan(GrowableElement *e)=0;
duke@435 70 virtual GrowableElement *clone() =0;
duke@435 71 virtual void oops_do(OopClosure* f) =0;
coleenp@6063 72 virtual void metadata_do(void f(Metadata*)) =0;
duke@435 73 };
duke@435 74
duke@435 75 class GrowableCache VALUE_OBJ_CLASS_SPEC {
duke@435 76
duke@435 77 private:
duke@435 78 // Object pointer passed into cache & listener functions.
duke@435 79 void *_this_obj;
duke@435 80
duke@435 81 // Array of elements in the collection
duke@435 82 GrowableArray<GrowableElement *> *_elements;
duke@435 83
duke@435 84 // Parallel array of cached values
duke@435 85 address *_cache;
duke@435 86
duke@435 87 // Listener for changes to the _cache field.
duke@435 88 // Called whenever the _cache field has it's value changed
duke@435 89 // (but NOT when cached elements are recomputed).
duke@435 90 void (*_listener_fun)(void *, address*);
duke@435 91
duke@435 92 static bool equals(void *, GrowableElement *);
duke@435 93
duke@435 94 // recache all elements after size change, notify listener
duke@435 95 void recache();
duke@435 96
duke@435 97 public:
duke@435 98 GrowableCache();
duke@435 99 ~GrowableCache();
duke@435 100
duke@435 101 void initialize(void *this_obj, void listener_fun(void *, address*) );
duke@435 102
duke@435 103 // number of elements in the collection
duke@435 104 int length();
duke@435 105 // get the value of the index element in the collection
duke@435 106 GrowableElement* at(int index);
duke@435 107 // find the index of the element, -1 if it doesn't exist
duke@435 108 int find(GrowableElement* e);
duke@435 109 // append a copy of the element to the end of the collection, notify listener
duke@435 110 void append(GrowableElement* e);
duke@435 111 // insert a copy of the element using lessthan(), notify listener
duke@435 112 void insert(GrowableElement* e);
duke@435 113 // remove the element at index, notify listener
duke@435 114 void remove (int index);
duke@435 115 // clear out all elements and release all heap space, notify listener
duke@435 116 void clear();
duke@435 117 // apply f to every element and update the cache
duke@435 118 void oops_do(OopClosure* f);
coleenp@6063 119 // walk metadata to preserve for RedefineClasses
coleenp@6063 120 void metadata_do(void f(Metadata*));
kamg@2467 121 // update the cache after a full gc
kamg@2467 122 void gc_epilogue();
duke@435 123 };
duke@435 124
duke@435 125
duke@435 126 ///////////////////////////////////////////////////////////////
duke@435 127 //
duke@435 128 // class JvmtiBreakpointCache
duke@435 129 // Used by : JvmtiBreakpoints
duke@435 130 // Used by JVMTI methods: none directly.
duke@435 131 // Note : typesafe wrapper for GrowableCache of JvmtiBreakpoint
duke@435 132 //
duke@435 133
zgu@3900 134 class JvmtiBreakpointCache : public CHeapObj<mtInternal> {
duke@435 135
duke@435 136 private:
duke@435 137 GrowableCache _cache;
duke@435 138
duke@435 139 public:
duke@435 140 JvmtiBreakpointCache() {}
duke@435 141 ~JvmtiBreakpointCache() {}
duke@435 142
duke@435 143 void initialize(void *this_obj, void listener_fun(void *, address*) ) {
duke@435 144 _cache.initialize(this_obj,listener_fun);
duke@435 145 }
duke@435 146
duke@435 147 int length() { return _cache.length(); }
duke@435 148 JvmtiBreakpoint& at(int index) { return (JvmtiBreakpoint&) *(_cache.at(index)); }
duke@435 149 int find(JvmtiBreakpoint& e) { return _cache.find((GrowableElement *) &e); }
duke@435 150 void append(JvmtiBreakpoint& e) { _cache.append((GrowableElement *) &e); }
duke@435 151 void remove (int index) { _cache.remove(index); }
duke@435 152 void clear() { _cache.clear(); }
duke@435 153 void oops_do(OopClosure* f) { _cache.oops_do(f); }
coleenp@6063 154 void metadata_do(void f(Metadata*)) { _cache.metadata_do(f); }
kamg@2467 155 void gc_epilogue() { _cache.gc_epilogue(); }
duke@435 156 };
duke@435 157
duke@435 158
duke@435 159 ///////////////////////////////////////////////////////////////
duke@435 160 //
duke@435 161 // class JvmtiBreakpoint
duke@435 162 // Used by : JvmtiBreakpoints
duke@435 163 // Used by JVMTI methods: SetBreakpoint, ClearBreakpoint, ClearAllBreakpoints
duke@435 164 // Note: Extends GrowableElement for use in a GrowableCache
duke@435 165 //
duke@435 166 // A JvmtiBreakpoint describes a location (class, method, bci) to break at.
duke@435 167 //
duke@435 168
coleenp@4037 169 typedef void (Method::*method_action)(int _bci);
duke@435 170
duke@435 171 class JvmtiBreakpoint : public GrowableElement {
duke@435 172 private:
coleenp@4037 173 Method* _method;
duke@435 174 int _bci;
duke@435 175 Bytecodes::Code _orig_bytecode;
coleenp@6063 176 oop _class_holder; // keeps _method memory from being deallocated
duke@435 177
duke@435 178 public:
duke@435 179 JvmtiBreakpoint();
coleenp@4037 180 JvmtiBreakpoint(Method* m_method, jlocation location);
duke@435 181 bool equals(JvmtiBreakpoint& bp);
duke@435 182 bool lessThan(JvmtiBreakpoint &bp);
duke@435 183 void copy(JvmtiBreakpoint& bp);
duke@435 184 bool is_valid();
duke@435 185 address getBcp();
duke@435 186 void each_method_version_do(method_action meth_act);
duke@435 187 void set();
duke@435 188 void clear();
duke@435 189 void print();
duke@435 190
coleenp@4037 191 Method* method() { return _method; }
duke@435 192
duke@435 193 // GrowableElement implementation
duke@435 194 address getCacheValue() { return getBcp(); }
duke@435 195 bool lessThan(GrowableElement* e) { Unimplemented(); return false; }
duke@435 196 bool equals(GrowableElement* e) { return equals((JvmtiBreakpoint&) *e); }
coleenp@4037 197 void oops_do(OopClosure* f) {
coleenp@6063 198 // Mark the method loader as live so the Method* class loader doesn't get
coleenp@6063 199 // unloaded and Method* memory reclaimed.
coleenp@6063 200 f->do_oop(&_class_holder);
coleenp@4037 201 }
coleenp@6063 202 void metadata_do(void f(Metadata*)) {
coleenp@6063 203 // walk metadata to preserve for RedefineClasses
coleenp@6063 204 f(_method);
coleenp@6063 205 }
coleenp@6063 206
duke@435 207 GrowableElement *clone() {
duke@435 208 JvmtiBreakpoint *bp = new JvmtiBreakpoint();
duke@435 209 bp->copy(*this);
duke@435 210 return bp;
duke@435 211 }
duke@435 212 };
duke@435 213
duke@435 214
duke@435 215 ///////////////////////////////////////////////////////////////
duke@435 216 //
duke@435 217 // class JvmtiBreakpoints
duke@435 218 // Used by : JvmtiCurrentBreakpoints
duke@435 219 // Used by JVMTI methods: none directly
duke@435 220 // Note: A Helper class
duke@435 221 //
duke@435 222 // JvmtiBreakpoints is a GrowableCache of JvmtiBreakpoint.
duke@435 223 // All changes to the GrowableCache occur at a safepoint using VM_ChangeBreakpoints.
duke@435 224 //
duke@435 225 // Because _bps is only modified at safepoints, its possible to always use the
duke@435 226 // cached byte code pointers from _bps without doing any synchronization (see JvmtiCurrentBreakpoints).
duke@435 227 //
duke@435 228 // It would be possible to make JvmtiBreakpoints a static class, but I've made it
duke@435 229 // CHeap allocated to emphasize its similarity to JvmtiFramePops.
duke@435 230 //
duke@435 231
zgu@3900 232 class JvmtiBreakpoints : public CHeapObj<mtInternal> {
duke@435 233 private:
duke@435 234
duke@435 235 JvmtiBreakpointCache _bps;
duke@435 236
duke@435 237 // These should only be used by VM_ChangeBreakpoints
duke@435 238 // to insure they only occur at safepoints.
duke@435 239 // Todo: add checks for safepoint
duke@435 240 friend class VM_ChangeBreakpoints;
duke@435 241 void set_at_safepoint(JvmtiBreakpoint& bp);
duke@435 242 void clear_at_safepoint(JvmtiBreakpoint& bp);
duke@435 243
duke@435 244 static void do_element(GrowableElement *e);
duke@435 245
duke@435 246 public:
duke@435 247 JvmtiBreakpoints(void listener_fun(void *, address *));
duke@435 248 ~JvmtiBreakpoints();
duke@435 249
duke@435 250 int length();
duke@435 251 void oops_do(OopClosure* f);
coleenp@6063 252 void metadata_do(void f(Metadata*));
duke@435 253 void print();
duke@435 254
duke@435 255 int set(JvmtiBreakpoint& bp);
duke@435 256 int clear(JvmtiBreakpoint& bp);
coleenp@4037 257 void clearall_in_class_at_safepoint(Klass* klass);
kamg@2467 258 void gc_epilogue();
duke@435 259 };
duke@435 260
duke@435 261
duke@435 262 ///////////////////////////////////////////////////////////////
duke@435 263 //
duke@435 264 // class JvmtiCurrentBreakpoints
duke@435 265 //
duke@435 266 // A static wrapper class for the JvmtiBreakpoints that provides:
duke@435 267 // 1. a fast inlined function to check if a byte code pointer is a breakpoint (is_breakpoint).
duke@435 268 // 2. a function for lazily creating the JvmtiBreakpoints class (this is not strictly necessary,
duke@435 269 // but I'm copying the code from JvmtiThreadState which needs to lazily initialize
duke@435 270 // JvmtiFramePops).
duke@435 271 // 3. An oops_do entry point for GC'ing the breakpoint array.
duke@435 272 //
duke@435 273
duke@435 274 class JvmtiCurrentBreakpoints : public AllStatic {
duke@435 275
duke@435 276 private:
duke@435 277
duke@435 278 // Current breakpoints, lazily initialized by get_jvmti_breakpoints();
duke@435 279 static JvmtiBreakpoints *_jvmti_breakpoints;
duke@435 280
duke@435 281 // NULL terminated cache of byte-code pointers corresponding to current breakpoints.
duke@435 282 // Updated only at safepoints (with listener_fun) when the cache is moved.
duke@435 283 // It exists only to make is_breakpoint fast.
duke@435 284 static address *_breakpoint_list;
duke@435 285 static inline void set_breakpoint_list(address *breakpoint_list) { _breakpoint_list = breakpoint_list; }
duke@435 286 static inline address *get_breakpoint_list() { return _breakpoint_list; }
duke@435 287
duke@435 288 // Listener for the GrowableCache in _jvmti_breakpoints, updates _breakpoint_list.
duke@435 289 static void listener_fun(void *this_obj, address *cache);
duke@435 290
duke@435 291 public:
duke@435 292 static void initialize();
duke@435 293 static void destroy();
duke@435 294
duke@435 295 // lazily create _jvmti_breakpoints and _breakpoint_list
duke@435 296 static JvmtiBreakpoints& get_jvmti_breakpoints();
duke@435 297
duke@435 298 // quickly test whether the bcp matches a cached breakpoint in the list
duke@435 299 static inline bool is_breakpoint(address bcp);
duke@435 300
duke@435 301 static void oops_do(OopClosure* f);
jprovino@6140 302 static void metadata_do(void f(Metadata*)) NOT_JVMTI_RETURN;
kamg@2467 303 static void gc_epilogue();
duke@435 304 };
duke@435 305
duke@435 306 // quickly test whether the bcp matches a cached breakpoint in the list
duke@435 307 bool JvmtiCurrentBreakpoints::is_breakpoint(address bcp) {
duke@435 308 address *bps = get_breakpoint_list();
duke@435 309 if (bps == NULL) return false;
duke@435 310 for ( ; (*bps) != NULL; bps++) {
duke@435 311 if ((*bps) == bcp) return true;
duke@435 312 }
duke@435 313 return false;
duke@435 314 }
duke@435 315
sla@5237 316
sla@5237 317 ///////////////////////////////////////////////////////////////
sla@5237 318 //
sla@5237 319 // class VM_ChangeBreakpoints
sla@5237 320 // Used by : JvmtiBreakpoints
sla@5237 321 // Used by JVMTI methods: none directly.
sla@5237 322 // Note: A Helper class.
sla@5237 323 //
sla@5237 324 // VM_ChangeBreakpoints implements a VM_Operation for ALL modifications to the JvmtiBreakpoints class.
sla@5237 325 //
sla@5237 326
sla@5237 327 class VM_ChangeBreakpoints : public VM_Operation {
sla@5237 328 private:
sla@5237 329 JvmtiBreakpoints* _breakpoints;
sla@5237 330 int _operation;
sla@5237 331 JvmtiBreakpoint* _bp;
sla@5237 332
sla@5237 333 public:
sla@5237 334 enum { SET_BREAKPOINT=0, CLEAR_BREAKPOINT=1 };
sla@5237 335
sla@5237 336 VM_ChangeBreakpoints(int operation, JvmtiBreakpoint *bp) {
sla@5237 337 JvmtiBreakpoints& current_bps = JvmtiCurrentBreakpoints::get_jvmti_breakpoints();
sla@5237 338 _breakpoints = &current_bps;
sla@5237 339 _bp = bp;
sla@5237 340 _operation = operation;
sla@5237 341 assert(bp != NULL, "bp != NULL");
sla@5237 342 }
sla@5237 343
sla@5237 344 VMOp_Type type() const { return VMOp_ChangeBreakpoints; }
sla@5237 345 void doit();
sla@5237 346 void oops_do(OopClosure* f);
coleenp@6063 347 void metadata_do(void f(Metadata*));
sla@5237 348 };
sla@5237 349
sla@5237 350
duke@435 351 ///////////////////////////////////////////////////////////////
duke@435 352 // The get/set local operations must only be done by the VM thread
duke@435 353 // because the interpreter version needs to access oop maps, which can
duke@435 354 // only safely be done by the VM thread
duke@435 355 //
duke@435 356 // I'm told that in 1.5 oop maps are now protected by a lock and
duke@435 357 // we could get rid of the VM op
duke@435 358 // However if the VM op is removed then the target thread must
duke@435 359 // be suspended AND a lock will be needed to prevent concurrent
duke@435 360 // setting of locals to the same java thread. This lock is needed
duke@435 361 // to prevent compiledVFrames from trying to add deferred updates
duke@435 362 // to the thread simultaneously.
duke@435 363 //
duke@435 364 class VM_GetOrSetLocal : public VM_Operation {
kamg@2361 365 protected:
duke@435 366 JavaThread* _thread;
duke@435 367 JavaThread* _calling_thread;
duke@435 368 jint _depth;
duke@435 369 jint _index;
duke@435 370 BasicType _type;
duke@435 371 jvalue _value;
duke@435 372 javaVFrame* _jvf;
duke@435 373 bool _set;
duke@435 374
kamg@2361 375 // It is possible to get the receiver out of a non-static native wrapper
kamg@2361 376 // frame. Use VM_GetReceiver to do this.
kamg@2361 377 virtual bool getting_receiver() const { return false; }
kamg@2361 378
duke@435 379 jvmtiError _result;
duke@435 380
duke@435 381 vframe* get_vframe();
duke@435 382 javaVFrame* get_java_vframe();
duke@435 383 bool check_slot_type(javaVFrame* vf);
duke@435 384
duke@435 385 public:
duke@435 386 // Constructor for non-object getter
duke@435 387 VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type);
duke@435 388
duke@435 389 // Constructor for object or non-object setter
duke@435 390 VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type, jvalue value);
duke@435 391
duke@435 392 // Constructor for object getter
duke@435 393 VM_GetOrSetLocal(JavaThread* thread, JavaThread* calling_thread, jint depth,
duke@435 394 int index);
duke@435 395
duke@435 396 VMOp_Type type() const { return VMOp_GetOrSetLocal; }
duke@435 397 jvalue value() { return _value; }
duke@435 398 jvmtiError result() { return _result; }
duke@435 399
duke@435 400 bool doit_prologue();
duke@435 401 void doit();
duke@435 402 bool allow_nested_vm_operations() const;
duke@435 403 const char* name() const { return "get/set locals"; }
duke@435 404
duke@435 405 // Check that the klass is assignable to a type with the given signature.
duke@435 406 static bool is_assignable(const char* ty_sign, Klass* klass, Thread* thread);
duke@435 407 };
duke@435 408
kamg@2361 409 class VM_GetReceiver : public VM_GetOrSetLocal {
kamg@2361 410 protected:
kamg@2361 411 virtual bool getting_receiver() const { return true; }
kamg@2361 412
kamg@2361 413 public:
kamg@2361 414 VM_GetReceiver(JavaThread* thread, JavaThread* calling_thread, jint depth);
kamg@2361 415 const char* name() const { return "get receiver"; }
kamg@2361 416 };
kamg@2361 417
duke@435 418
duke@435 419 ///////////////////////////////////////////////////////////////
duke@435 420 //
duke@435 421 // class JvmtiSuspendControl
duke@435 422 //
duke@435 423 // Convenience routines for suspending and resuming threads.
duke@435 424 //
duke@435 425 // All attempts by JVMTI to suspend and resume threads must go through the
duke@435 426 // JvmtiSuspendControl interface.
duke@435 427 //
duke@435 428 // methods return true if successful
duke@435 429 //
duke@435 430 class JvmtiSuspendControl : public AllStatic {
duke@435 431 public:
duke@435 432 // suspend the thread, taking it to a safepoint
duke@435 433 static bool suspend(JavaThread *java_thread);
duke@435 434 // resume the thread
duke@435 435 static bool resume(JavaThread *java_thread);
duke@435 436
duke@435 437 static void print();
duke@435 438 };
duke@435 439
stefank@2325 440
kamg@2511 441 /**
kamg@2511 442 * When a thread (such as the compiler thread or VM thread) cannot post a
kamg@2511 443 * JVMTI event itself because the event needs to be posted from a Java
kamg@2511 444 * thread, then it can defer the event to the Service thread for posting.
kamg@2511 445 * The information needed to post the event is encapsulated into this class
kamg@2511 446 * and then enqueued onto the JvmtiDeferredEventQueue, where the Service
kamg@2511 447 * thread will pick it up and post it.
kamg@2511 448 *
kamg@2511 449 * This is currently only used for posting compiled-method-load and unload
kamg@2511 450 * events, which we don't want posted from the compiler thread.
kamg@2511 451 */
kamg@2511 452 class JvmtiDeferredEvent VALUE_OBJ_CLASS_SPEC {
kamg@2511 453 friend class JvmtiDeferredEventQueue;
kamg@2511 454 private:
kamg@2511 455 typedef enum {
kamg@2511 456 TYPE_NONE,
kamg@2511 457 TYPE_COMPILED_METHOD_LOAD,
kamg@2511 458 TYPE_COMPILED_METHOD_UNLOAD,
kamg@2583 459 TYPE_DYNAMIC_CODE_GENERATED
kamg@2511 460 } Type;
kamg@2511 461
kamg@2511 462 Type _type;
kamg@2511 463 union {
kamg@2511 464 nmethod* compiled_method_load;
kamg@2511 465 struct {
dcubed@2624 466 nmethod* nm;
kamg@2511 467 jmethodID method_id;
kamg@2511 468 const void* code_begin;
kamg@2511 469 } compiled_method_unload;
kamg@2583 470 struct {
kamg@2583 471 const char* name;
kamg@2583 472 const void* code_begin;
kamg@2583 473 const void* code_end;
kamg@2583 474 } dynamic_code_generated;
kamg@2511 475 } _event_data;
kamg@2511 476
kamg@2511 477 JvmtiDeferredEvent(Type t) : _type(t) {}
kamg@2511 478
kamg@2511 479 public:
kamg@2511 480
kamg@2511 481 JvmtiDeferredEvent() : _type(TYPE_NONE) {}
kamg@2511 482
kamg@2511 483 // Factory methods
kamg@2511 484 static JvmtiDeferredEvent compiled_method_load_event(nmethod* nm)
jprovino@4165 485 NOT_JVMTI_RETURN_(JvmtiDeferredEvent());
dcubed@2624 486 static JvmtiDeferredEvent compiled_method_unload_event(nmethod* nm,
jprovino@4165 487 jmethodID id, const void* code) NOT_JVMTI_RETURN_(JvmtiDeferredEvent());
kamg@2583 488 static JvmtiDeferredEvent dynamic_code_generated_event(
kamg@2583 489 const char* name, const void* begin, const void* end)
jprovino@4165 490 NOT_JVMTI_RETURN_(JvmtiDeferredEvent());
kamg@2511 491
kamg@2511 492 // Actually posts the event.
jprovino@4165 493 void post() NOT_JVMTI_RETURN;
kamg@2511 494 };
kamg@2511 495
kamg@2511 496 /**
kamg@2511 497 * Events enqueued on this queue wake up the Service thread which dequeues
kamg@2511 498 * and posts the events. The Service_lock is required to be held
kamg@2511 499 * when operating on the queue (except for the "pending" events).
kamg@2511 500 */
kamg@2511 501 class JvmtiDeferredEventQueue : AllStatic {
kamg@2511 502 friend class JvmtiDeferredEvent;
kamg@2511 503 private:
zgu@3900 504 class QueueNode : public CHeapObj<mtInternal> {
kamg@2511 505 private:
kamg@2511 506 JvmtiDeferredEvent _event;
kamg@2511 507 QueueNode* _next;
kamg@2511 508
kamg@2511 509 public:
kamg@2511 510 QueueNode(const JvmtiDeferredEvent& event)
kamg@2511 511 : _event(event), _next(NULL) {}
kamg@2511 512
kamg@2511 513 const JvmtiDeferredEvent& event() const { return _event; }
kamg@2511 514 QueueNode* next() const { return _next; }
kamg@2511 515
kamg@2511 516 void set_next(QueueNode* next) { _next = next; }
kamg@2511 517 };
kamg@2511 518
kamg@2511 519 static QueueNode* _queue_head; // Hold Service_lock to access
kamg@2511 520 static QueueNode* _queue_tail; // Hold Service_lock to access
kamg@2511 521 static volatile QueueNode* _pending_list; // Uses CAS for read/update
kamg@2511 522
kamg@2511 523 // Transfers events from the _pending_list to the _queue.
jprovino@4165 524 static void process_pending_events() NOT_JVMTI_RETURN;
kamg@2511 525
kamg@2511 526 public:
kamg@2511 527 // Must be holding Service_lock when calling these
jprovino@4165 528 static bool has_events() NOT_JVMTI_RETURN_(false);
jprovino@4165 529 static void enqueue(const JvmtiDeferredEvent& event) NOT_JVMTI_RETURN;
jprovino@4165 530 static JvmtiDeferredEvent dequeue() NOT_JVMTI_RETURN_(JvmtiDeferredEvent());
kamg@2511 531
kamg@2511 532 // Used to enqueue events without using a lock, for times (such as during
kamg@2511 533 // safepoint) when we can't or don't want to lock the Service_lock.
kamg@2511 534 //
kamg@2511 535 // Events will be held off to the side until there's a call to
kamg@2511 536 // dequeue(), enqueue(), or process_pending_events() (all of which require
kamg@2511 537 // the holding of the Service_lock), and will be enqueued at that time.
jprovino@4165 538 static void add_pending_event(const JvmtiDeferredEvent&) NOT_JVMTI_RETURN;
kamg@2511 539 };
kamg@2511 540
duke@435 541 // Utility macro that checks for NULL pointers:
duke@435 542 #define NULL_CHECK(X, Y) if ((X) == NULL) { return (Y); }
stefank@2314 543
stefank@2314 544 #endif // SHARE_VM_PRIMS_JVMTIIMPL_HPP

mercurial