diff agent/src/share/classes/sun/jvm/hotspot/opto/JVMState.java @ 18041:52b4284cb496

Merge with jdk8u20-b26
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 15 Oct 2014 16:02:50 +0200
parents 4ca6dc0799b6
children
line wrap: on
line diff
--- a/agent/src/share/classes/sun/jvm/hotspot/opto/JVMState.java	Thu Oct 16 10:21:29 2014 +0200
+++ b/agent/src/share/classes/sun/jvm/hotspot/opto/JVMState.java	Wed Oct 15 16:02:50 2014 +0200
@@ -88,6 +88,10 @@
     return (int)bciField.getValue(getAddress());
   }
 
+  public int depth() {
+    return (int)depthField.getValue(getAddress());
+  }
+
   public JVMState caller() {
     return create(callerField.getValue(getAddress()));
   }