Searched refs:_entry_bci (Results 1 - 7 of 7) sorted by relevance
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | parse.hpp | 323 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 D | compile.hpp | 252 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 D | parse1.cpp | 393 _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 D | compile.cpp | 613 _entry_bci(osr_bci), 864 env()->register_method(_method, _entry_bci, 900 _entry_bci(InvocationEntryBci),
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | nmethod.hpp | 116 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 D | nmethod.cpp | 651 _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 D | vmStructs.cpp | 858 nonstatic_field(nmethod, _entry_bci, int) \ 1098 c2_nonstatic_field(Compile, _entry_bci, int) \
|
Completed in 440 milliseconds