Searched refs:is_osr_method (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp102 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,
109 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
H A DcompileBroker.cpp211 nm->compile_id(), nm->is_osr_method() ? "%" : "",
372 bool is_osr_method, int osr_bci, bool is_blocking,
391 const char compile_type = is_osr_method ? '%' : ' ';
410 if (is_osr_method) {
492 bool is_osr_method = osr_bci() != InvocationEntryBci; local
493 print_compilation_impl(st, method, compile_id(), comp_level(), is_osr_method, osr_bci(), is_blocking(), msg, short_form);
371 print_compilation_impl(outputStream* st, methodOop method, int compile_id, int comp_level, bool is_osr_method, int osr_bci, bool is_blocking, const char* msg, bool short_form) argument
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp336 bool is_osr_method() const { return _entry_bci != InvocationEntryBci; } function in class:nmethod
506 int osr_entry_bci() const { assert(is_osr_method(), "wrong kind of nmethod"); return _entry_bci; }
507 address osr_entry() const { assert(is_osr_method(), "wrong kind of nmethod"); return _osr_entry_point; }
H A Dnmethod.cpp452 if (is_osr_method()) return "osr";
1208 if (is_osr_method()) {
1290 if (is_osr_method()) {
1306 if (!is_osr_method() && !is_not_entrant()) {
1383 assert(is_zombie() || (is_osr_method() && is_unloaded()), "must be a zombie method");
1384 assert(is_marked_for_reclamation() || (is_osr_method() && is_unloaded()), "must be marked for reclamation");
2580 if (m.not_null() && !is_osr_method()) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsweeper.cpp442 if (nm->is_osr_method()) {
458 if ((nm->method()->code() != nm) && !(nm->is_locked_by_vm()) && !(nm->is_osr_method()) &&
547 if (nm->is_in_use() && (!nm->is_osr_method()) && (!nm->is_locked_by_vm()) &&
H A DadvancedThresholdPolicy.cpp477 if (nm->is_osr_method()) {
490 int osr_bci = nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci;
H A Ddeoptimization.cpp1571 CompilationPolicy::policy()->reprofile(trap_scope, nm->is_osr_method());
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp808 assert( ! saved_code->is_osr_method(), "should not get here for osr" );
823 return code == NULL || (code->method() == NULL) || (code->method() == (methodOop)this && !code->is_osr_method());
H A DinstanceKlass.cpp2231 assert(n->is_osr_method(), "wrong kind of nmethod");
2257 assert(n->is_osr_method(), "wrong kind of nmethod");
2301 assert(osr->is_osr_method(), "wrong kind of nmethod found in chain");

Completed in 61 milliseconds