Searched refs:_entry_bci (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dparse.hpp323 int _entry_bci; // the osr bci or InvocationEntryBci member in class:Parse
381 bool is_normal_parse() const { return _entry_bci == InvocationEntryBci; }
382 bool is_osr_parse() const { return _entry_bci != InvocationEntryBci; }
383 int osr_bci() const { assert(is_osr_parse(),""); return _entry_bci; }
H A Dcompile.hpp252 int _entry_bci; // entry bci for osr methods. member in class:Compile
483 int entry_bci() const { return _entry_bci; }
484 bool is_osr_compilation() const { return _entry_bci != InvocationEntryBci; }
H A Dparse1.cpp393 _entry_bci = InvocationEntryBci;
488 _entry_bci = C->entry_bci();
494 tty->print_cr("OSR @%d type flow bailout: %s", _entry_bci, _flow->failure_reason());
793 jvms->set_bci(_entry_bci);
H A Dcompile.cpp613 _entry_bci(osr_bci),
864 env()->register_method(_method, _entry_bci,
900 _entry_bci(InvocationEntryBci),
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp116 int _entry_bci; // != InvocationEntryBci if this nmethod is an on-stack replacement method member in class:nmethod
336 bool is_osr_method() const { return _entry_bci != InvocationEntryBci; }
506 int osr_entry_bci() const { assert(is_osr_method(), "wrong kind of nmethod"); return _entry_bci; }
691 static int entry_bci_offset() { return offset_of(nmethod, _entry_bci); }
H A Dnmethod.cpp651 _entry_bci = InvocationEntryBci;
732 _entry_bci = InvocationEntryBci;
826 _entry_bci = entry_bci;
1245 assert(_entry_bci != InvocationEntryBci, "wrong kind of nmethod");
1250 _entry_bci = InvalidOSREntryBci;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp858 nonstatic_field(nmethod, _entry_bci, int) \
1098 c2_nonstatic_field(Compile, _entry_bci, int) \

Completed in 440 milliseconds