Searched defs:JVMState (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DJVMState.java35 public class JVMState extends VMObject { class in inherits:VMObject
45 Type type = db.lookupType("JVMState");
74 public static JVMState create(Address addr) {
76 return new JVMState(addr);
79 public JVMState(Address addr) { method in class:JVMState
91 public JVMState caller() {
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp235 JVMState::JVMState(ciMethod* method, JVMState* caller) : function in class:JVMState
250 JVMState::JVMState(int stack_size) : function in class:JVMState
266 JVMState* JVMState::of_depth(int d) const {
267 const JVMState* jvmp = this;
273 return (JVMState*)jvmp;
277 bool JVMState
[all...]
H A Dcallnode.hpp54 class JVMState;
183 //-------------------------------JVMState-------------------------------------
184 // A linked list of JVMState nodes captures the whole interpreter state,
189 class JVMState : public ResourceObj { class in inherits:ResourceObj
199 JVMState* _caller; // List pointer for forming scope chains
215 // Because JVMState objects live over the entire lifetime of the
221 // Create a new JVMState, ready for abstract interpretation.
222 JVMState(ciMethod* method, JVMState* caller);
223 JVMState(in
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java449 JVMState jvm = new JVMState();
624 private class JVMState { class in class:Indify.Logic
674 JVMState jvm = new JVMState();

Completed in 64 milliseconds