Lines Matching defs:mdo
100 // That is why we must check both ProfileInterpreter and mdo != NULL.
101 methodDataOop mdo = last_frame(thread).interpreter_frame_method()->method_data();
102 if (mdo != NULL) {
104 last_frame(thread).interpreter_frame_set_mdp(mdo->bci_to_dp(last_frame(thread).interpreter_frame_bci()));
854 methodDataOop mdo = method->method_data();
855 if (mdo == NULL) return 0;
856 return mdo->bci_to_di(bci);
881 methodDataOop mdo = method->method_data();
882 assert(mdo != NULL, "must not be null");
886 address mdp2 = mdo->bci_to_dp(bci);
892 int current_di = mdo->dp_to_di(mdp);
893 int expected_di = mdo->dp_to_di(mdp2);
895 int expected_approx_bci = mdo->data_at(expected_di)->bci();
898 approx_bci = mdo->data_at(current_di)->bci();
901 mdo->print_on(tty);