/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jniExport.hpp | 34 if (JvmtiExport::is_jvmti_version(version)) { 35 *iface = JvmtiExport::get_jvmti_interface(vm, penv, version);
|
H A D | jvmtiExport.cpp | 298 int JvmtiExport::_field_access_count = 0; 299 int JvmtiExport::_field_modification_count = 0; 301 bool JvmtiExport::_can_access_local_variables = false; 302 bool JvmtiExport::_can_hotswap_or_post_breakpoint = false; 303 bool JvmtiExport::_can_modify_any_class = false; 304 bool JvmtiExport::_can_walk_any_space = false; 306 bool JvmtiExport::_has_redefined_a_class = false; 307 bool JvmtiExport::_all_dependencies_are_recorded = false; 314 address JvmtiExport::get_field_access_count_addr() { 331 address JvmtiExport [all...] |
H A D | jvmtiManageCapabilities.cpp | 336 JvmtiExport::set_all_dependencies_are_recorded(true); 339 JvmtiExport::set_can_get_source_debug_extension(avail.can_get_source_debug_extension); 340 JvmtiExport::set_can_maintain_original_method_order(avail.can_maintain_original_method_order); 341 JvmtiExport::set_can_post_interpreter_events(interp_events); 342 JvmtiExport::set_can_hotswap_or_post_breakpoint( 346 JvmtiExport::set_can_modify_any_class( 349 JvmtiExport::set_can_walk_any_space( 354 JvmtiExport::set_can_access_local_variables( 358 JvmtiExport::set_can_post_on_exceptions( 362 JvmtiExport [all...] |
H A D | jvmtiEventController.cpp | 320 JvmtiExport::set_should_post_single_step(on); 455 if (*((int *)JvmtiExport::get_field_access_count_addr()) == 0) { 458 if (*((int *)JvmtiExport::get_field_modification_count_addr()) == 0) { 593 JvmtiExport::set_should_post_field_access((any_env_thread_enabled & FIELD_ACCESS_BIT) != 0); 594 JvmtiExport::set_should_post_field_modification((any_env_thread_enabled & FIELD_MODIFICATION_BIT) != 0); 595 JvmtiExport::set_should_post_class_load((any_env_thread_enabled & CLASS_LOAD_BIT) != 0); 596 JvmtiExport::set_should_post_class_file_load_hook((any_env_thread_enabled & CLASS_FILE_LOAD_HOOK_BIT) != 0); 597 JvmtiExport::set_should_post_native_method_bind((any_env_thread_enabled & NATIVE_METHOD_BIND_BIT) != 0); 598 JvmtiExport::set_should_post_dynamic_code_generated((any_env_thread_enabled & DYNAMIC_CODE_GENERATED_BIT) != 0); 599 JvmtiExport [all...] |
H A D | jvmtiExport.hpp | 59 class JvmtiExport : public AllStatic { class in inherits:AllStatic 370 // A JvmtiDynamicCodeEventCollector is a helper class for the JvmtiExport 382 // JvmtiExport::post_dynamic_code_generated_while_holding_locks(...) 391 friend class JvmtiExport; 420 friend class JvmtiExport; 447 // JvmtiExport::vm_object_alloc_event_collector(obj); 484 if (JvmtiExport::should_post_single_step()) { 485 _single_step_hidden = JvmtiExport::hide_single_stepping(_thread); 491 JvmtiExport::expose_single_stepping(_thread);
|
H A D | jvmtiCodeBlobEvents.cpp | 198 JvmtiExport::post_dynamic_code_generated(env, blob->name(), blob->code_begin(), blob->code_end()); 224 JvmtiExport::post_compiled_method_load(current);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/prims/ |
H A D | JvmtiExport.java | 33 public class JvmtiExport { class 43 Type type = db.lookupType("JvmtiExport");
|
/openjdk7/hotspot/src/share/vm/gc_interface/ |
H A D | collectedHeap.inline.hpp | 91 JvmtiExport::vm_object_alloc_event_collector(obj); 164 if (JvmtiExport::should_post_resource_exhausted()) { 165 JvmtiExport::post_resource_exhausted( 175 if (JvmtiExport::should_post_resource_exhausted()) { 176 JvmtiExport::post_resource_exhausted( 219 if (JvmtiExport::should_post_resource_exhausted()) { 220 JvmtiExport::post_resource_exhausted(
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/ |
H A D | ciEnv.java | 34 import sun.jvm.hotspot.prims.JvmtiExport;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/ |
H A D | CompileTask.java | 33 import sun.jvm.hotspot.prims.JvmtiExport;
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | stubCodeGenerator.cpp | 154 if (JvmtiExport::should_post_dynamic_code_generated()) { 155 JvmtiExport::post_dynamic_code_generated(_cdesc->name(), _cdesc->begin(), _cdesc->end());
|
H A D | java.cpp | 524 if (JvmtiExport::should_post_thread_life()) { 525 JvmtiExport::post_thread_end(thread); 537 JvmtiExport::post_vm_death();
|
H A D | vframeArray.cpp | 212 if (JvmtiExport::can_pop_frame() && 233 } else if (JvmtiExport::can_force_early_return() && state != NULL && state->is_earlyret_pending()) { 359 if (is_top_frame && JvmtiExport::can_pop_frame() && thread->popframe_forcing_deopt_reexecution()) {
|
/openjdk7/hotspot/src/share/vm/interpreter/ |
H A D | interpreterRuntime.cpp | 449 if (JvmtiExport::can_post_on_exceptions()) { 450 JvmtiExport::post_exception_throw(thread, h_method(), bcp(thread), h_exception()); 478 if (JvmtiExport::can_post_on_exceptions()) { 479 JvmtiExport::notice_unwind_due_to_exception(thread, h_method(), handler_pc, h_exception(), (handler_pc != NULL)); 656 JvmtiExport::post_raw_breakpoint(thread, method, bcp); 684 if (JvmtiExport::can_hotswap_or_post_breakpoint()) { 937 if (JvmtiExport::should_post_single_step()) { 941 JvmtiExport::at_single_stepping_point(thread, method(thread), bcp(thread)); 975 JvmtiExport::post_field_access(thread, method(thread), bcp(thread), h_cp_entry_f1, h_obj, fid); 1030 JvmtiExport [all...] |
H A D | cppInterpreter.cpp | 52 if (JvmtiExport::can_post_interpreter_events())
|
H A D | interpreter.cpp | 129 if (JvmtiExport::should_post_dynamic_code_generated()) { 130 JvmtiExport::post_dynamic_code_generated("Interpreter",
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | vtableStubs.cpp | 71 if (JvmtiExport::should_post_dynamic_code_generated()) { 72 JvmtiExport::post_dynamic_code_generated_while_holding_locks("vtable stub", _chunk, _chunk_end);
|
H A D | codeBlob.cpp | 171 if (JvmtiExport::should_post_dynamic_code_generated()) { 174 JvmtiExport::post_dynamic_code_generated(stub_name, stub->code_begin(), stub->code_end());
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | attachListener.cpp | 123 if (JvmtiExport::should_post_data_dump()) { 124 JvmtiExport::post_data_dump(); 384 { "load", JvmtiExport::load_agent_library },
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psTasks.cpp | 89 JvmtiExport::oops_do(&roots_closure);
|
H A D | psMarkSweep.cpp | 258 JvmtiExport::gc_epilogue(); 528 JvmtiExport::oops_do(mark_and_push_closure()); 634 JvmtiExport::oops_do(adjust_root_pointer_closure());
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | arrayKlass.cpp | 156 JvmtiExport::post_array_size_exhausted();
|
/openjdk7/hotspot/src/share/vm/shark/ |
H A D | sharkCompiler.cpp | 305 if (JvmtiExport::should_post_dynamic_code_generated()) 306 JvmtiExport::post_dynamic_code_generated(name, code_start, code_limit);
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciEnv.cpp | 214 _jvmti_can_hotswap_or_post_breakpoint = JvmtiExport::can_hotswap_or_post_breakpoint(); 215 _jvmti_can_access_local_variables = JvmtiExport::can_access_local_variables(); 216 _jvmti_can_post_on_exceptions = JvmtiExport::can_post_on_exceptions(); 967 JvmtiExport::can_hotswap_or_post_breakpoint()) || 969 JvmtiExport::can_access_local_variables()) || 971 JvmtiExport::can_post_on_exceptions()) )) {
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | filemap.cpp | 432 if (JvmtiExport::can_modify_any_class() || JvmtiExport::can_walk_any_space()) {
|