src/share/vm/ci/ciEnv.hpp

Print this page
rev 1178 : merge with cd37471eaecc from http://hg.openjdk.java.net/jdk7/hotspot-comp/hotspot

*** 55,65 **** // Cache Jvmti state bool _jvmti_can_hotswap_or_post_breakpoint; bool _jvmti_can_examine_or_deopt_anywhere; bool _jvmti_can_access_local_variables; ! bool _jvmti_can_post_exceptions; // Cache DTrace flags bool _dtrace_extended_probes; bool _dtrace_monitor_probes; bool _dtrace_method_probes; --- 55,65 ---- // Cache Jvmti state bool _jvmti_can_hotswap_or_post_breakpoint; bool _jvmti_can_examine_or_deopt_anywhere; bool _jvmti_can_access_local_variables; ! bool _jvmti_can_post_on_exceptions; // Cache DTrace flags bool _dtrace_extended_probes; bool _dtrace_monitor_probes; bool _dtrace_method_probes;
*** 257,267 **** // Cache Jvmti state void cache_jvmti_state(); bool jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; } bool jvmti_can_examine_or_deopt_anywhere() const { return _jvmti_can_examine_or_deopt_anywhere; } bool jvmti_can_access_local_variables() const { return _jvmti_can_access_local_variables; } ! bool jvmti_can_post_exceptions() const { return _jvmti_can_post_exceptions; } // Cache DTrace flags void cache_dtrace_flags(); bool dtrace_extended_probes() const { return _dtrace_extended_probes; } bool dtrace_monitor_probes() const { return _dtrace_monitor_probes; } --- 257,267 ---- // Cache Jvmti state void cache_jvmti_state(); bool jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; } bool jvmti_can_examine_or_deopt_anywhere() const { return _jvmti_can_examine_or_deopt_anywhere; } bool jvmti_can_access_local_variables() const { return _jvmti_can_access_local_variables; } ! bool jvmti_can_post_on_exceptions() const { return _jvmti_can_post_on_exceptions; } // Cache DTrace flags void cache_dtrace_flags(); bool dtrace_extended_probes() const { return _dtrace_extended_probes; } bool dtrace_monitor_probes() const { return _dtrace_monitor_probes; }