< prev index next >

src/hotspot/share/classfile/javaClasses.cpp

Print this page

        

*** 1966,1976 **** CompiledMethod* nm = NULL; bool skip_fillInStackTrace_check = false; bool skip_throwableInit_check = false; bool skip_hidden = !ShowHiddenFrames; ! for (frame fr = thread->last_frame(); max_depth != total_count;) { Method* method = NULL; int bci = 0; // Compiled java method case. if (decode_offset != 0) { --- 1966,1976 ---- CompiledMethod* nm = NULL; bool skip_fillInStackTrace_check = false; bool skip_throwableInit_check = false; bool skip_hidden = !ShowHiddenFrames; ! for (frame fr = thread->last_frame(); max_depth > 0 ? max_depth != total_count : true;) { Method* method = NULL; int bci = 0; // Compiled java method case. if (decode_offset != 0) {
< prev index next >