< prev index next >

src/hotspot/share/ci/ciEnv.hpp

Print this page
rev 60137 : 8227745: Enable Escape Analysis for Better Performance in the Presence of JVMTI Agents
Reviewed-by: mdoerr, goetz

*** 71,80 **** --- 71,81 ---- bool _jvmti_can_hotswap_or_post_breakpoint; bool _jvmti_can_access_local_variables; bool _jvmti_can_post_on_exceptions; bool _jvmti_can_pop_frame; bool _jvmti_can_get_owned_monitor_info; // includes can_get_owned_monitor_stack_depth_info + bool _jvmti_can_walk_any_space; // Cache DTrace flags bool _dtrace_extended_probes; bool _dtrace_monitor_probes; bool _dtrace_method_probes;
*** 346,355 **** --- 347,357 ---- return _jvmti_can_access_local_variables || _jvmti_can_pop_frame; } bool jvmti_can_hotswap_or_post_breakpoint() const { return _jvmti_can_hotswap_or_post_breakpoint; } bool jvmti_can_post_on_exceptions() const { return _jvmti_can_post_on_exceptions; } bool jvmti_can_get_owned_monitor_info() const { return _jvmti_can_get_owned_monitor_info; } + bool jvmti_can_walk_any_space() const { return _jvmti_can_walk_any_space; } // 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; }
< prev index next >