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

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

Print this page

        

*** 308,318 **** // Neither C1 nor C2 is present usingClientCompiler = false; usingServerCompiler = false; } else { // Determine whether C2 is present ! if (type.getField("_interpreter_invocation_count", false, false) != null) { usingServerCompiler = true; } else { usingClientCompiler = true; } } --- 308,318 ---- // Neither C1 nor C2 is present usingClientCompiler = false; usingServerCompiler = false; } else { // Determine whether C2 is present ! if (db.lookupType("Matcher", false) != null) { usingServerCompiler = true; } else { usingClientCompiler = true; } }
agent/src/share/classes/sun/jvm/hotspot/runtime/VM.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File