Lines Matching defs:vf

755 line_number_from_bci(jvm_agent_t* J, Vframe_t *vf)
769 err = name_for_methodOop(J, vf->methodOop, name, 256);
772 name, vf->bci);
775 err = read_pointer(J, vf->methodOop + OFFSET_methodOopDesc_constMethod, &constMethod);
778 vf->line = 0;
801 vf->methodOop, (access_flags & AccessFlags_NATIVE));
807 if (stream_bci == vf->bci) {
810 fprintf(stderr, "\t line_number_from_bci: END: exact line: %ld \n\n", vf->line);
811 vf->line = stream_line;
815 if (stream_bci < vf->bci && stream_bci >= best_bci) {
817 vf->line = stream_line;
820 best_bci, vf->line);
826 fprintf(stderr, "\t line_number_from_bci: END: line: %ld \n\n", vf->line);
909 scope_desc_at(Nmethod_t *N, int32_t decode_offset, Vframe_t *vf)
920 err = raw_read_int(N->J, &buffer, &vf->sender_decode_offset);
923 err = raw_read_int(N->J, &buffer, &vf->methodIdx);
926 err = raw_read_int(N->J, &buffer, &vf->bci);
931 vf->sender_decode_offset);
932 fprintf(stderr, "\t\t scope_desc_at: methodIdx: %d\n", vf->methodIdx);
933 fprintf(stderr, "\t\t scope_desc_at: bci: %d\n", vf->bci);
956 Vframe_t *vf = &N->vframes[N->vf_cnt];
962 err = scope_desc_at(N, decode_offset, vf);
965 if (vf->methodIdx > ((N->oops_end - N->oops_beg) / POINTER_SIZE)) {
969 err = read_pointer(N->J, N->nm + N->oops_beg + (vf->methodIdx-1)*POINTER_SIZE,
970 &vf->methodOop);
973 if (vf->methodOop) {
975 err = line_number_from_bci(N->J, vf);
979 vf->methodOop, vf->line);
982 decode_offset = vf->sender_decode_offset;
1007 Vframe_t *vf;
1060 vf = &N->vframes[0];
1063 jframe->bci = vf->bci;
1064 jframe->line = vf->line;
1108 Vframe_t *vf = &vframe;
1125 vf->methodOop = methodOop;
1126 vf->bci = bci;
1127 err = line_number_from_bci(J, vf);
1130 jframe->bci = vf->bci;
1131 jframe->line = vf->line;
1136 vf->bci, vf->line);
1309 Vframe_t *vf;
1316 vf = N->vframes + vframe_no;
1318 err = name_for_methodOop(J, vf->methodOop, name + 1, size);
1321 jframe->bci = vf->bci;
1322 jframe->line = vf->line;
1325 name, vf->line);