hotspot/src/share/vm/ci/ciMethodData.hpp
changeset 23491 f690330b10b9
parent 22916 582da2ed4dfa
child 24476 912595db2e75
--- a/hotspot/src/share/vm/ci/ciMethodData.hpp	Wed Mar 19 11:37:58 2014 -0700
+++ b/hotspot/src/share/vm/ci/ciMethodData.hpp	Thu Mar 20 17:49:27 2014 -0700
@@ -478,6 +478,18 @@
 
   int invocation_count() { return _invocation_counter; }
   int backedge_count()   { return _backedge_counter;   }
+
+#if INCLUDE_RTM_OPT
+  // return cached value
+  int rtm_state() {
+    if (is_empty()) {
+      return NoRTM;
+    } else {
+      return get_MethodData()->rtm_state();
+    }
+  }
+#endif
+
   // Transfer information about the method to MethodData*.
   // would_profile means we would like to profile this method,
   // meaning it's not trivial.