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

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp510 int best_bci = 0; local
522 // update best_bci/line
523 if (stream.bci() < bci && stream.bci() >= best_bci) {
524 best_bci = stream.bci();
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dlibjvm_db.c762 int32_t best_bci = 0; local
814 /* update best_bci/line */
815 if (stream_bci < vf->bci && stream_bci >= best_bci) {
816 best_bci = stream_bci;
819 fprintf(stderr, "\t line_number_from_bci: best_bci: %ld, best_line: %ld\n",
820 best_bci, vf->line);
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.c762 int32_t best_bci = 0; local
814 /* update best_bci/line */
815 if (stream_bci < vf->bci && stream_bci >= best_bci) {
816 best_bci = stream_bci;
819 fprintf(stderr, "\t line_number_from_bci: best_bci: %ld, best_line: %ld\n",
820 best_bci, vf->line);

Completed in 44 milliseconds