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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.inline.hpp70 inline bool frame::is_bci(intptr_t bcx) { function in class:frame
H A Dframe.cpp402 bool formerly_bci = is_bci(interpreter_frame_bcx());
403 bool is_now_bci = is_bci(bcx);
438 return is_bci(bcx) ? bcx : interpreter_frame_method()->bci_from((address)bcx);
443 assert(!is_bci(interpreter_frame_bcx()), "should not set bci during GC");
450 return is_bci(bcx) ? interpreter_frame_method()->bcp_from(bcx) : (address)bcx;
455 assert(!is_bci(interpreter_frame_bcx()), "should not set bcp during GC");
471 assert(!is_bci(bcx), "should not access mdp during GC");
482 assert(!is_bci(bcx), "should not set mdp during GC");
H A Dframe.hpp472 static bool is_bci(intptr_t bcx);
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dlibjvm_db.c1087 int is_bci(intptr_t bcx) { function
1114 bci = is_bci(bcx) ? bcx : bcx - (constMethod + (uint64_t) SIZE_constMethodOopDesc);
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.c1087 int is_bci(intptr_t bcx) { function
1114 bci = is_bci(bcx) ? bcx : bcx - (constMethod + (uint64_t) SIZE_constMethodOopDesc);
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp198 } else if (frame::is_bci(bcx)) {
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp1482 bci = fr.is_bci(bcx) ? bcx : method->bci_from((address)bcx);

Completed in 65 milliseconds