Searched defs:osr (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DCompilation.java33 private boolean osr; field in class:Compilation
144 return osr;
147 public void setOsr(boolean osr) { argument
148 this.osr = osr;
/openjdk7/hotspot/src/share/vm/runtime/
H A DcompilationPolicy.cpp384 void NonTieredCompPolicy::trace_osr_request(methodHandle method, nmethod* osr, int bci) { argument
387 tty->print(osr != NULL ? "Reused OSR entry for " : "Requesting OSR entry for ");
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp2234 // Raise the highest osr level if necessary
2242 // Get rid of the osr methods for the same bci that have lower levels.
2298 nmethod* osr = osr_nmethods_head(); local
2300 while (osr != NULL) {
2301 assert(osr->is_osr_method(), "wrong kind of nmethod found in chain");
2302 // There can be a time when a c1 osr method exists but we are waiting
2303 // for a c2 version. When c2 completes its osr nmethod we will trash
2308 if (osr->method() == m &&
2309 (bci == InvocationEntryBci || osr->osr_entry_bci() == bci)) {
2311 if (osr
[all...]

Completed in 181 milliseconds