comparison 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
comparison
equal deleted inserted replaced
17606:45d7b2c7029d 18041:52b4284cb496
86 86
87 public int bci() { 87 public int bci() {
88 return (int)bciField.getValue(getAddress()); 88 return (int)bciField.getValue(getAddress());
89 } 89 }
90 90
91 public int depth() {
92 return (int)depthField.getValue(getAddress());
93 }
94
91 public JVMState caller() { 95 public JVMState caller() {
92 return create(callerField.getValue(getAddress())); 96 return create(callerField.getValue(getAddress()));
93 } 97 }
94 98
95 public void dumpSpec(PrintStream out) { 99 public void dumpSpec(PrintStream out) {