agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8048721 Cdiff agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java

agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java

Print this page

        

*** 105,115 **** private CodeCache codeCache; /** This is only present in a C1 build */ private Runtime1 runtime1; /** These constants come from globalDefinitions.hpp */ private int invocationEntryBCI; - private int invalidOSREntryBCI; private ReversePtrs revPtrs; private VMRegImpl vmregImpl; private int reserveForAllocationPrefetch; // System.getProperties from debuggee VM --- 105,114 ----
*** 293,303 **** checkVMVersion(vmRelease); stackBias = db.lookupIntConstant("STACK_BIAS").intValue(); invocationEntryBCI = db.lookupIntConstant("InvocationEntryBci").intValue(); - invalidOSREntryBCI = db.lookupIntConstant("InvalidOSREntryBci").intValue(); // We infer the presence of C1 or C2 from a couple of fields we // already have present in the type database { Type type = db.lookupType("Method"); --- 292,301 ----
*** 731,745 **** /** FIXME: figure out where to stick this */ public int getInvocationEntryBCI() { return invocationEntryBCI; } - /** FIXME: figure out where to stick this */ - public int getInvalidOSREntryBCI() { - return invalidOSREntryBCI; - } - // FIXME: figure out where to stick this public boolean wizardMode() { return true; } --- 729,738 ----
agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File