src/share/vm/prims/jvmtiExport.hpp

Wed, 23 Jan 2013 13:02:39 -0500

author
jprovino
date
Wed, 23 Jan 2013 13:02:39 -0500
changeset 4542
db9981fd3124
parent 4267
bd7a7ce2e264
child 5421
825e6cb66923
permissions
-rw-r--r--

8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS.
Reviewed-by: coleenp, stefank

duke@435 1 /*
sspitsyn@3638 2 * Copyright (c) 1998, 2012, 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_JVMTIEXPORT_HPP
stefank@2314 26 #define SHARE_VM_PRIMS_JVMTIEXPORT_HPP
stefank@2314 27
stefank@2314 28 #include "jvmtifiles/jvmti.h"
stefank@2314 29 #include "memory/allocation.hpp"
stefank@2314 30 #include "memory/iterator.hpp"
stefank@2314 31 #include "oops/oop.hpp"
stefank@2314 32 #include "oops/oopsHierarchy.hpp"
stefank@2314 33 #include "runtime/frame.hpp"
stefank@2314 34 #include "runtime/handles.hpp"
stefank@2314 35 #include "utilities/globalDefinitions.hpp"
stefank@2314 36 #include "utilities/growableArray.hpp"
jprovino@4542 37 #include "utilities/macros.hpp"
duke@435 38
stefank@2325 39 // Must be included after jvmti.h.
stefank@2325 40 #include "code/jvmticmlr.h"
stefank@2325 41
duke@435 42 // Forward declarations
duke@435 43
duke@435 44 class JvmtiEventControllerPrivate;
duke@435 45 class JvmtiManageCapabilities;
duke@435 46 class JvmtiEnv;
duke@435 47 class JvmtiThreadState;
duke@435 48 class AttachOperation;
duke@435 49
duke@435 50 #define JVMTI_SUPPORT_FLAG(key) \
duke@435 51 private: \
jprovino@4165 52 static bool _##key; \
duke@435 53 public: \
jprovino@4165 54 inline static void set_##key(bool on) { \
jprovino@4165 55 JVMTI_ONLY(_##key = (on != 0)); \
jprovino@4165 56 NOT_JVMTI(report_unsupported(on)); \
jprovino@4165 57 } \
jprovino@4165 58 inline static bool key() { \
jprovino@4165 59 JVMTI_ONLY(return _##key); \
jprovino@4165 60 NOT_JVMTI(return false); \
jprovino@4165 61 }
duke@435 62
duke@435 63
duke@435 64 // This class contains the JVMTI interface for the rest of hotspot.
duke@435 65 //
duke@435 66 class JvmtiExport : public AllStatic {
never@3138 67 friend class VMStructs;
minqi@4267 68 friend class CompileReplay;
minqi@4267 69
duke@435 70 private:
jprovino@4165 71
jprovino@4165 72 #if INCLUDE_JVMTI
duke@435 73 static int _field_access_count;
duke@435 74 static int _field_modification_count;
duke@435 75
duke@435 76 static bool _can_access_local_variables;
duke@435 77 static bool _can_hotswap_or_post_breakpoint;
duke@435 78 static bool _can_modify_any_class;
duke@435 79 static bool _can_walk_any_space;
jprovino@4165 80 #endif // INCLUDE_JVMTI
duke@435 81
duke@435 82 JVMTI_SUPPORT_FLAG(can_get_source_debug_extension)
duke@435 83 JVMTI_SUPPORT_FLAG(can_maintain_original_method_order)
duke@435 84 JVMTI_SUPPORT_FLAG(can_post_interpreter_events)
dcubed@1648 85 JVMTI_SUPPORT_FLAG(can_post_on_exceptions)
duke@435 86 JVMTI_SUPPORT_FLAG(can_post_breakpoint)
duke@435 87 JVMTI_SUPPORT_FLAG(can_post_field_access)
duke@435 88 JVMTI_SUPPORT_FLAG(can_post_field_modification)
duke@435 89 JVMTI_SUPPORT_FLAG(can_post_method_entry)
duke@435 90 JVMTI_SUPPORT_FLAG(can_post_method_exit)
duke@435 91 JVMTI_SUPPORT_FLAG(can_pop_frame)
duke@435 92 JVMTI_SUPPORT_FLAG(can_force_early_return)
duke@435 93
duke@435 94 friend class JvmtiEventControllerPrivate; // should only modify these flags
duke@435 95 JVMTI_SUPPORT_FLAG(should_post_single_step)
duke@435 96 JVMTI_SUPPORT_FLAG(should_post_field_access)
duke@435 97 JVMTI_SUPPORT_FLAG(should_post_field_modification)
duke@435 98 JVMTI_SUPPORT_FLAG(should_post_class_load)
duke@435 99 JVMTI_SUPPORT_FLAG(should_post_class_prepare)
duke@435 100 JVMTI_SUPPORT_FLAG(should_post_class_unload)
duke@435 101 JVMTI_SUPPORT_FLAG(should_post_native_method_bind)
duke@435 102 JVMTI_SUPPORT_FLAG(should_post_compiled_method_load)
duke@435 103 JVMTI_SUPPORT_FLAG(should_post_compiled_method_unload)
duke@435 104 JVMTI_SUPPORT_FLAG(should_post_dynamic_code_generated)
duke@435 105 JVMTI_SUPPORT_FLAG(should_post_monitor_contended_enter)
duke@435 106 JVMTI_SUPPORT_FLAG(should_post_monitor_contended_entered)
duke@435 107 JVMTI_SUPPORT_FLAG(should_post_monitor_wait)
duke@435 108 JVMTI_SUPPORT_FLAG(should_post_monitor_waited)
duke@435 109 JVMTI_SUPPORT_FLAG(should_post_data_dump)
duke@435 110 JVMTI_SUPPORT_FLAG(should_post_garbage_collection_start)
duke@435 111 JVMTI_SUPPORT_FLAG(should_post_garbage_collection_finish)
dcubed@1648 112 JVMTI_SUPPORT_FLAG(should_post_on_exceptions)
duke@435 113
duke@435 114 // ------ the below maybe don't have to be (but are for now)
duke@435 115 // fixed conditions here ------------
duke@435 116 // any events can be enabled
duke@435 117 JVMTI_SUPPORT_FLAG(should_post_thread_life)
duke@435 118 JVMTI_SUPPORT_FLAG(should_post_object_free)
duke@435 119 JVMTI_SUPPORT_FLAG(should_post_resource_exhausted)
duke@435 120
duke@435 121 // we are holding objects on the heap - need to talk to GC - e.g.
duke@435 122 // breakpoint info
duke@435 123 JVMTI_SUPPORT_FLAG(should_clean_up_heap_objects)
duke@435 124 JVMTI_SUPPORT_FLAG(should_post_vm_object_alloc)
duke@435 125
duke@435 126 // If flag cannot be implemented, give an error if on=true
duke@435 127 static void report_unsupported(bool on);
duke@435 128
duke@435 129 // these should only be called by the friend class
duke@435 130 friend class JvmtiManageCapabilities;
jprovino@4165 131 inline static void set_can_modify_any_class(bool on) {
jprovino@4165 132 JVMTI_ONLY(_can_modify_any_class = (on != 0);)
jprovino@4165 133 }
jprovino@4165 134 inline static void set_can_access_local_variables(bool on) {
jprovino@4165 135 JVMTI_ONLY(_can_access_local_variables = (on != 0);)
jprovino@4165 136 }
jprovino@4165 137 inline static void set_can_hotswap_or_post_breakpoint(bool on) {
jprovino@4165 138 JVMTI_ONLY(_can_hotswap_or_post_breakpoint = (on != 0);)
jprovino@4165 139 }
jprovino@4165 140 inline static void set_can_walk_any_space(bool on) {
jprovino@4165 141 JVMTI_ONLY(_can_walk_any_space = (on != 0);)
jprovino@4165 142 }
duke@435 143
duke@435 144 enum {
duke@435 145 JVMTI_VERSION_MASK = 0x70000000,
duke@435 146 JVMTI_VERSION_VALUE = 0x30000000,
duke@435 147 JVMDI_VERSION_VALUE = 0x20000000
duke@435 148 };
duke@435 149
coleenp@4037 150 static void post_field_modification(JavaThread *thread, Method* method, address location,
duke@435 151 KlassHandle field_klass, Handle object, jfieldID field,
duke@435 152 char sig_type, jvalue *value);
duke@435 153
duke@435 154
duke@435 155 // posts a DynamicCodeGenerated event (internal/private implementation).
duke@435 156 // The public post_dynamic_code_generated* functions make use of the
kamg@2583 157 // internal implementation. Also called from JvmtiDeferredEvent::post()
jprovino@4165 158 static void post_dynamic_code_generated_internal(const char *name, const void *code_begin, const void *code_end) NOT_JVMTI_RETURN;
duke@435 159
kamg@2583 160 private:
duke@435 161
duke@435 162 // GenerateEvents support to allow posting of CompiledMethodLoad and
duke@435 163 // DynamicCodeGenerated events for a given environment.
duke@435 164 friend class JvmtiCodeBlobEvents;
duke@435 165
duke@435 166 static void post_compiled_method_load(JvmtiEnv* env, const jmethodID method, const jint length,
duke@435 167 const void *code_begin, const jint map_length,
jprovino@4165 168 const jvmtiAddrLocationMap* map) NOT_JVMTI_RETURN;
duke@435 169 static void post_dynamic_code_generated(JvmtiEnv* env, const char *name, const void *code_begin,
jprovino@4165 170 const void *code_end) NOT_JVMTI_RETURN;
duke@435 171
duke@435 172 // The RedefineClasses() API breaks some invariants in the "regular"
duke@435 173 // system. For example, there are sanity checks when GC'ing nmethods
duke@435 174 // that require the containing class to be unloading. However, when a
duke@435 175 // method is redefined, the old method and nmethod can become GC'able
duke@435 176 // without the containing class unloading. The state of becoming
duke@435 177 // GC'able can be asynchronous to the RedefineClasses() call since
duke@435 178 // the old method may still be running and cannot be GC'ed until
duke@435 179 // after all old invocations have finished. Additionally, a method
duke@435 180 // that has not been redefined may have an nmethod that depends on
duke@435 181 // the redefined method. The dependent nmethod will get deopted in
duke@435 182 // this case and may also be GC'able without the containing class
duke@435 183 // being unloaded.
duke@435 184 //
duke@435 185 // This flag indicates whether RedefineClasses() has ever redefined
duke@435 186 // one or more classes during the lifetime of the VM. The flag should
duke@435 187 // only be set by the friend class and can be queried by other sub
duke@435 188 // systems as needed to relax invariant checks.
duke@435 189 static bool _has_redefined_a_class;
duke@435 190 friend class VM_RedefineClasses;
duke@435 191 inline static void set_has_redefined_a_class() {
jprovino@4165 192 JVMTI_ONLY(_has_redefined_a_class = true;)
duke@435 193 }
duke@435 194 // Flag to indicate if the compiler has recorded all dependencies. When the
duke@435 195 // can_redefine_classes capability is enabled in the OnLoad phase then the compiler
duke@435 196 // records all dependencies from startup. However if the capability is first
duke@435 197 // enabled some time later then the dependencies recorded by the compiler
duke@435 198 // are incomplete. This flag is used by RedefineClasses to know if the
duke@435 199 // dependency information is complete or not.
duke@435 200 static bool _all_dependencies_are_recorded;
duke@435 201
duke@435 202 public:
duke@435 203 inline static bool has_redefined_a_class() {
jprovino@4165 204 JVMTI_ONLY(return _has_redefined_a_class);
jprovino@4165 205 NOT_JVMTI(return false);
duke@435 206 }
duke@435 207
duke@435 208 inline static bool all_dependencies_are_recorded() {
duke@435 209 return _all_dependencies_are_recorded;
duke@435 210 }
duke@435 211
duke@435 212 inline static void set_all_dependencies_are_recorded(bool on) {
duke@435 213 _all_dependencies_are_recorded = (on != 0);
duke@435 214 }
duke@435 215
duke@435 216
duke@435 217 // let JVMTI know that the JVM_OnLoad code is running
jprovino@4165 218 static void enter_onload_phase() NOT_JVMTI_RETURN;
duke@435 219
duke@435 220 // let JVMTI know that the VM isn't up yet (and JVM_OnLoad code isn't running)
jprovino@4165 221 static void enter_primordial_phase() NOT_JVMTI_RETURN;
duke@435 222
duke@435 223 // let JVMTI know that the VM isn't up yet but JNI is live
jprovino@4165 224 static void enter_start_phase() NOT_JVMTI_RETURN;
duke@435 225
duke@435 226 // let JVMTI know that the VM is fully up and running now
jprovino@4165 227 static void enter_live_phase() NOT_JVMTI_RETURN;
duke@435 228
duke@435 229 // ------ can_* conditions (below) are set at OnLoad and never changed ------------
jprovino@4165 230 inline static bool can_modify_any_class() {
jprovino@4165 231 JVMTI_ONLY(return _can_modify_any_class);
jprovino@4165 232 NOT_JVMTI(return false);
jprovino@4165 233 }
jprovino@4165 234 inline static bool can_access_local_variables() {
jprovino@4165 235 JVMTI_ONLY(return _can_access_local_variables);
jprovino@4165 236 NOT_JVMTI(return false);
jprovino@4165 237 }
jprovino@4165 238 inline static bool can_hotswap_or_post_breakpoint() {
jprovino@4165 239 JVMTI_ONLY(return _can_hotswap_or_post_breakpoint);
jprovino@4165 240 NOT_JVMTI(return false);
jprovino@4165 241 }
jprovino@4165 242 inline static bool can_walk_any_space() {
jprovino@4165 243 JVMTI_ONLY(return _can_walk_any_space);
jprovino@4165 244 NOT_JVMTI(return false);
jprovino@4165 245 }
duke@435 246
duke@435 247 // field access management
jprovino@4165 248 static address get_field_access_count_addr() NOT_JVMTI_RETURN_(0);
duke@435 249
duke@435 250 // field modification management
jprovino@4165 251 static address get_field_modification_count_addr() NOT_JVMTI_RETURN_(0);
duke@435 252
duke@435 253 // -----------------
duke@435 254
jprovino@4165 255 static bool is_jvmti_version(jint version) {
jprovino@4165 256 JVMTI_ONLY(return (version & JVMTI_VERSION_MASK) == JVMTI_VERSION_VALUE);
jprovino@4165 257 NOT_JVMTI(return false);
jprovino@4165 258 }
jprovino@4165 259 static bool is_jvmdi_version(jint version) {
jprovino@4165 260 JVMTI_ONLY(return (version & JVMTI_VERSION_MASK) == JVMDI_VERSION_VALUE);
jprovino@4165 261 NOT_JVMTI(return false);
jprovino@4165 262 }
jprovino@4165 263 static jint get_jvmti_interface(JavaVM *jvm, void **penv, jint version) NOT_JVMTI_RETURN_(0);
dcubed@1556 264 static void decode_version_values(jint version, int * major, int * minor,
jprovino@4165 265 int * micro) NOT_JVMTI_RETURN;
duke@435 266
duke@435 267 // single stepping management methods
jprovino@4165 268 static void at_single_stepping_point(JavaThread *thread, Method* method, address location) NOT_JVMTI_RETURN;
jprovino@4165 269 static void expose_single_stepping(JavaThread *thread) NOT_JVMTI_RETURN;
jprovino@4165 270 static bool hide_single_stepping(JavaThread *thread) NOT_JVMTI_RETURN_(false);
duke@435 271
duke@435 272 // Methods that notify the debugger that something interesting has happened in the VM.
jprovino@4165 273 static void post_vm_start () NOT_JVMTI_RETURN;
jprovino@4165 274 static void post_vm_initialized () NOT_JVMTI_RETURN;
jprovino@4165 275 static void post_vm_death () NOT_JVMTI_RETURN;
duke@435 276
jprovino@4165 277 static void post_single_step (JavaThread *thread, Method* method, address location) NOT_JVMTI_RETURN;
jprovino@4165 278 static void post_raw_breakpoint (JavaThread *thread, Method* method, address location) NOT_JVMTI_RETURN;
duke@435 279
jprovino@4165 280 static void post_exception_throw (JavaThread *thread, Method* method, address location, oop exception) NOT_JVMTI_RETURN;
jprovino@4165 281 static void notice_unwind_due_to_exception (JavaThread *thread, Method* method, address location, oop exception, bool in_handler_frame) NOT_JVMTI_RETURN;
duke@435 282
duke@435 283 static oop jni_GetField_probe (JavaThread *thread, jobject jobj,
coleenp@4037 284 oop obj, Klass* klass, jfieldID fieldID, bool is_static)
jprovino@4165 285 NOT_JVMTI_RETURN_(NULL);
duke@435 286 static oop jni_GetField_probe_nh (JavaThread *thread, jobject jobj,
coleenp@4037 287 oop obj, Klass* klass, jfieldID fieldID, bool is_static)
jprovino@4165 288 NOT_JVMTI_RETURN_(NULL);
duke@435 289 static void post_field_access_by_jni (JavaThread *thread, oop obj,
jprovino@4165 290 Klass* klass, jfieldID fieldID, bool is_static) NOT_JVMTI_RETURN;
coleenp@4037 291 static void post_field_access (JavaThread *thread, Method* method,
jprovino@4165 292 address location, KlassHandle field_klass, Handle object, jfieldID field) NOT_JVMTI_RETURN;
duke@435 293 static oop jni_SetField_probe (JavaThread *thread, jobject jobj,
coleenp@4037 294 oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type,
jprovino@4165 295 jvalue *value) NOT_JVMTI_RETURN_(NULL);
duke@435 296 static oop jni_SetField_probe_nh (JavaThread *thread, jobject jobj,
coleenp@4037 297 oop obj, Klass* klass, jfieldID fieldID, bool is_static, char sig_type,
jprovino@4165 298 jvalue *value) NOT_JVMTI_RETURN_(NULL);
duke@435 299 static void post_field_modification_by_jni(JavaThread *thread, oop obj,
coleenp@4037 300 Klass* klass, jfieldID fieldID, bool is_static, char sig_type,
duke@435 301 jvalue *value);
coleenp@4037 302 static void post_raw_field_modification(JavaThread *thread, Method* method,
duke@435 303 address location, KlassHandle field_klass, Handle object, jfieldID field,
jprovino@4165 304 char sig_type, jvalue *value) NOT_JVMTI_RETURN;
duke@435 305
jprovino@4165 306 static void post_method_entry (JavaThread *thread, Method* method, frame current_frame) NOT_JVMTI_RETURN;
jprovino@4165 307 static void post_method_exit (JavaThread *thread, Method* method, frame current_frame) NOT_JVMTI_RETURN;
duke@435 308
jprovino@4165 309 static void post_class_load (JavaThread *thread, Klass* klass) NOT_JVMTI_RETURN;
jprovino@4165 310 static void post_class_unload (Klass* klass) NOT_JVMTI_RETURN;
jprovino@4165 311 static void post_class_prepare (JavaThread *thread, Klass* klass) NOT_JVMTI_RETURN;
duke@435 312
jprovino@4165 313 static void post_thread_start (JavaThread *thread) NOT_JVMTI_RETURN;
jprovino@4165 314 static void post_thread_end (JavaThread *thread) NOT_JVMTI_RETURN;
duke@435 315
duke@435 316 // Support for java.lang.instrument agent loading.
duke@435 317 static bool _should_post_class_file_load_hook;
duke@435 318 inline static void set_should_post_class_file_load_hook(bool on) { _should_post_class_file_load_hook = on; }
jprovino@4165 319 inline static bool should_post_class_file_load_hook() {
jprovino@4165 320 JVMTI_ONLY(return _should_post_class_file_load_hook);
jprovino@4165 321 NOT_JVMTI(return false;)
jprovino@4165 322 }
coleenp@2497 323 static void post_class_file_load_hook(Symbol* h_name, Handle class_loader,
duke@435 324 Handle h_protection_domain,
duke@435 325 unsigned char **data_ptr, unsigned char **end_ptr,
duke@435 326 unsigned char **cached_data_ptr,
jprovino@4165 327 jint *cached_length_ptr) NOT_JVMTI_RETURN;
jprovino@4165 328 static void post_native_method_bind(Method* method, address* function_ptr) NOT_JVMTI_RETURN;
jprovino@4165 329 static void post_compiled_method_load(nmethod *nm) NOT_JVMTI_RETURN;
jprovino@4165 330 static void post_dynamic_code_generated(const char *name, const void *code_begin, const void *code_end) NOT_JVMTI_RETURN;
duke@435 331
never@1932 332 // used to post a CompiledMethodUnload event
jprovino@4165 333 static void post_compiled_method_unload(jmethodID mid, const void *code_begin) NOT_JVMTI_RETURN;
duke@435 334
duke@435 335 // similiar to post_dynamic_code_generated except that it can be used to
duke@435 336 // post a DynamicCodeGenerated event while holding locks in the VM. Any event
duke@435 337 // posted using this function is recorded by the enclosing event collector
duke@435 338 // -- JvmtiDynamicCodeEventCollector.
jprovino@4165 339 static void post_dynamic_code_generated_while_holding_locks(const char* name, address code_begin, address code_end) NOT_JVMTI_RETURN;
duke@435 340
jprovino@4165 341 static void post_garbage_collection_finish() NOT_JVMTI_RETURN;
jprovino@4165 342 static void post_garbage_collection_start() NOT_JVMTI_RETURN;
jprovino@4165 343 static void post_data_dump() NOT_JVMTI_RETURN;
jprovino@4165 344 static void post_monitor_contended_enter(JavaThread *thread, ObjectMonitor *obj_mntr) NOT_JVMTI_RETURN;
jprovino@4165 345 static void post_monitor_contended_entered(JavaThread *thread, ObjectMonitor *obj_mntr) NOT_JVMTI_RETURN;
jprovino@4165 346 static void post_monitor_wait(JavaThread *thread, oop obj, jlong timeout) NOT_JVMTI_RETURN;
jprovino@4165 347 static void post_monitor_waited(JavaThread *thread, ObjectMonitor *obj_mntr, jboolean timed_out) NOT_JVMTI_RETURN;
jprovino@4165 348 static void post_object_free(JvmtiEnv* env, jlong tag) NOT_JVMTI_RETURN;
jprovino@4165 349 static void post_resource_exhausted(jint resource_exhausted_flags, const char* detail) NOT_JVMTI_RETURN;
jprovino@4165 350 static void record_vm_internal_object_allocation(oop object) NOT_JVMTI_RETURN;
duke@435 351 // Post objects collected by vm_object_alloc_event_collector.
jprovino@4165 352 static void post_vm_object_alloc(JavaThread *thread, oop object) NOT_JVMTI_RETURN;
duke@435 353 // Collects vm internal objects for later event posting.
duke@435 354 inline static void vm_object_alloc_event_collector(oop object) {
duke@435 355 if (should_post_vm_object_alloc()) {
duke@435 356 record_vm_internal_object_allocation(object);
duke@435 357 }
duke@435 358 }
sspitsyn@3638 359 inline static void post_array_size_exhausted() {
sspitsyn@3638 360 if (should_post_resource_exhausted()) {
sspitsyn@3638 361 post_resource_exhausted(JVMTI_RESOURCE_EXHAUSTED_OOM_ERROR,
sspitsyn@3638 362 "Requested array size exceeds VM limit");
sspitsyn@3638 363 }
sspitsyn@3638 364 }
duke@435 365
jprovino@4165 366 static void cleanup_thread (JavaThread* thread) NOT_JVMTI_RETURN;
duke@435 367
jprovino@4165 368 static void oops_do(OopClosure* f) NOT_JVMTI_RETURN;
jprovino@4165 369 static void weak_oops_do(BoolObjectClosure* b, OopClosure* f) NOT_JVMTI_RETURN;
jprovino@4165 370 static void gc_epilogue() NOT_JVMTI_RETURN;
duke@435 371
jprovino@4165 372 static void transition_pending_onload_raw_monitors() NOT_JVMTI_RETURN;
duke@435 373
duke@435 374 // attach support
jprovino@4165 375 static jint load_agent_library(AttachOperation* op, outputStream* out) NOT_JVMTI_RETURN_(JNI_ERR);
duke@435 376
duke@435 377 // SetNativeMethodPrefix support
jprovino@4165 378 static char** get_all_native_method_prefixes(int* count_ptr) NOT_JVMTI_RETURN_(NULL);
duke@435 379 };
duke@435 380
duke@435 381 // Support class used by JvmtiDynamicCodeEventCollector and others. It
duke@435 382 // describes a single code blob by name and address range.
zgu@3900 383 class JvmtiCodeBlobDesc : public CHeapObj<mtInternal> {
duke@435 384 private:
duke@435 385 char _name[64];
duke@435 386 address _code_begin;
duke@435 387 address _code_end;
duke@435 388
duke@435 389 public:
duke@435 390 JvmtiCodeBlobDesc(const char *name, address code_begin, address code_end) {
duke@435 391 assert(name != NULL, "all code blobs must be named");
duke@435 392 strncpy(_name, name, sizeof(_name));
duke@435 393 _name[sizeof(_name)-1] = '\0';
duke@435 394 _code_begin = code_begin;
duke@435 395 _code_end = code_end;
duke@435 396 }
duke@435 397 char* name() { return _name; }
duke@435 398 address code_begin() { return _code_begin; }
duke@435 399 address code_end() { return _code_end; }
duke@435 400 };
duke@435 401
duke@435 402 // JvmtiEventCollector is a helper class to setup thread for
duke@435 403 // event collection.
duke@435 404 class JvmtiEventCollector : public StackObj {
duke@435 405 private:
duke@435 406 JvmtiEventCollector* _prev; // Save previous one to support nested event collector.
duke@435 407
duke@435 408 public:
duke@435 409 void setup_jvmti_thread_state(); // Set this collector in current thread.
duke@435 410 void unset_jvmti_thread_state(); // Reset previous collector in current thread.
duke@435 411 virtual bool is_dynamic_code_event() { return false; }
duke@435 412 virtual bool is_vm_object_alloc_event(){ return false; }
duke@435 413 JvmtiEventCollector *get_prev() { return _prev; }
duke@435 414 };
duke@435 415
duke@435 416 // A JvmtiDynamicCodeEventCollector is a helper class for the JvmtiExport
duke@435 417 // interface. It collects "dynamic code generated" events that are posted
duke@435 418 // while holding locks. When the event collector goes out of scope the
duke@435 419 // events will be posted.
duke@435 420 //
duke@435 421 // Usage :-
duke@435 422 //
duke@435 423 // {
duke@435 424 // JvmtiDynamicCodeEventCollector event_collector;
duke@435 425 // :
duke@435 426 // { MutexLocker ml(...)
duke@435 427 // :
duke@435 428 // JvmtiExport::post_dynamic_code_generated_while_holding_locks(...)
duke@435 429 // }
duke@435 430 // // event collector goes out of scope => post events to profiler.
duke@435 431 // }
duke@435 432
duke@435 433 class JvmtiDynamicCodeEventCollector : public JvmtiEventCollector {
duke@435 434 private:
duke@435 435 GrowableArray<JvmtiCodeBlobDesc*>* _code_blobs; // collected code blob events
duke@435 436
duke@435 437 friend class JvmtiExport;
duke@435 438 void register_stub(const char* name, address start, address end);
duke@435 439
duke@435 440 public:
jprovino@4165 441 JvmtiDynamicCodeEventCollector() NOT_JVMTI_RETURN;
jprovino@4165 442 ~JvmtiDynamicCodeEventCollector() NOT_JVMTI_RETURN;
duke@435 443 bool is_dynamic_code_event() { return true; }
duke@435 444
duke@435 445 };
duke@435 446
duke@435 447 // Used to record vm internally allocated object oops and post
duke@435 448 // vm object alloc event for objects visible to java world.
duke@435 449 // Constructor enables JvmtiThreadState flag and all vm allocated
duke@435 450 // objects are recorded in a growable array. When destructor is
duke@435 451 // called the vm object alloc event is posted for each objects
duke@435 452 // visible to java world.
duke@435 453 // See jvm.cpp file for its usage.
duke@435 454 //
duke@435 455 class JvmtiVMObjectAllocEventCollector : public JvmtiEventCollector {
duke@435 456 private:
duke@435 457 GrowableArray<oop>* _allocated; // field to record vm internally allocated object oop.
duke@435 458 bool _enable; // This flag is enabled in constructor and disabled
duke@435 459 // in destructor before posting event. To avoid
duke@435 460 // collection of objects allocated while running java code inside
duke@435 461 // agent post_vm_object_alloc() event handler.
duke@435 462
duke@435 463 //GC support
duke@435 464 void oops_do(OopClosure* f);
duke@435 465
duke@435 466 friend class JvmtiExport;
duke@435 467 // Record vm allocated object oop.
duke@435 468 inline void record_allocation(oop obj);
duke@435 469
duke@435 470 //GC support
duke@435 471 static void oops_do_for_all_threads(OopClosure* f);
duke@435 472
duke@435 473 public:
jprovino@4165 474 JvmtiVMObjectAllocEventCollector() NOT_JVMTI_RETURN;
jprovino@4165 475 ~JvmtiVMObjectAllocEventCollector() NOT_JVMTI_RETURN;
duke@435 476 bool is_vm_object_alloc_event() { return true; }
duke@435 477
duke@435 478 bool is_enabled() { return _enable; }
duke@435 479 void set_enabled(bool on) { _enable = on; }
duke@435 480 };
duke@435 481
duke@435 482
duke@435 483
duke@435 484 // Marker class to disable the posting of VMObjectAlloc events
duke@435 485 // within its scope.
duke@435 486 //
duke@435 487 // Usage :-
duke@435 488 //
duke@435 489 // {
duke@435 490 // NoJvmtiVMObjectAllocMark njm;
duke@435 491 // :
duke@435 492 // // VMObjAlloc event will not be posted
duke@435 493 // JvmtiExport::vm_object_alloc_event_collector(obj);
duke@435 494 // :
duke@435 495 // }
duke@435 496
duke@435 497 class NoJvmtiVMObjectAllocMark : public StackObj {
duke@435 498 private:
duke@435 499 // enclosing collector if enabled, NULL otherwise
duke@435 500 JvmtiVMObjectAllocEventCollector *_collector;
duke@435 501
duke@435 502 bool was_enabled() { return _collector != NULL; }
duke@435 503
duke@435 504 public:
jprovino@4165 505 NoJvmtiVMObjectAllocMark() NOT_JVMTI_RETURN;
jprovino@4165 506 ~NoJvmtiVMObjectAllocMark() NOT_JVMTI_RETURN;
duke@435 507 };
duke@435 508
duke@435 509
duke@435 510 // Base class for reporting GC events to JVMTI.
duke@435 511 class JvmtiGCMarker : public StackObj {
kamg@2445 512 public:
jprovino@4165 513 JvmtiGCMarker() NOT_JVMTI_RETURN;
jprovino@4165 514 ~JvmtiGCMarker() NOT_JVMTI_RETURN;
duke@435 515 };
duke@435 516
duke@435 517 // JvmtiHideSingleStepping is a helper class for hiding
duke@435 518 // internal single step events.
duke@435 519 class JvmtiHideSingleStepping : public StackObj {
duke@435 520 private:
duke@435 521 bool _single_step_hidden;
duke@435 522 JavaThread * _thread;
duke@435 523
duke@435 524 public:
duke@435 525 JvmtiHideSingleStepping(JavaThread * thread) {
duke@435 526 assert(thread != NULL, "sanity check");
duke@435 527
duke@435 528 _single_step_hidden = false;
duke@435 529 _thread = thread;
duke@435 530 if (JvmtiExport::should_post_single_step()) {
duke@435 531 _single_step_hidden = JvmtiExport::hide_single_stepping(_thread);
duke@435 532 }
duke@435 533 }
duke@435 534
duke@435 535 ~JvmtiHideSingleStepping() {
duke@435 536 if (_single_step_hidden) {
duke@435 537 JvmtiExport::expose_single_stepping(_thread);
duke@435 538 }
duke@435 539 }
duke@435 540 };
duke@435 541
stefank@2314 542 #endif // SHARE_VM_PRIMS_JVMTIEXPORT_HPP

mercurial