< prev index next >

src/hotspot/share/runtime/thread.inline.hpp

Print this page
rev 56101 : 8227745: Enable Escape Analysis for better performance when debugging
Reviewed-by: ???

@@ -63,10 +63,16 @@
   set_suspend_flag(_trace_flag);
 }
 inline void Thread::clear_trace_flag() {
   clear_suspend_flag(_trace_flag);
 }
+inline void Thread::set_ea_obj_deopt_flag() {
+  set_suspend_flag(_ea_obj_deopt);
+}
+inline void Thread::clear_ea_obj_deopt_flag() {
+  clear_suspend_flag(_ea_obj_deopt);
+}
 
 inline jlong Thread::cooked_allocated_bytes() {
   jlong allocated_bytes = OrderAccess::load_acquire(&_allocated_bytes);
   if (UseTLAB) {
     size_t used_bytes = tlab().used_bytes();
< prev index next >