src/hotspot/share/classfile/javaClasses.cpp
changeset 48823 99c973b56994
parent 48814 f01f81fa1242
child 49036 bc92debe57e4
equal deleted inserted replaced
48822:8a9808a9dd6b 48823:99c973b56994
  1966   CompiledMethod* nm = NULL;
  1966   CompiledMethod* nm = NULL;
  1967   bool skip_fillInStackTrace_check = false;
  1967   bool skip_fillInStackTrace_check = false;
  1968   bool skip_throwableInit_check = false;
  1968   bool skip_throwableInit_check = false;
  1969   bool skip_hidden = !ShowHiddenFrames;
  1969   bool skip_hidden = !ShowHiddenFrames;
  1970 
  1970 
  1971   for (frame fr = thread->last_frame(); max_depth != total_count;) {
  1971   for (frame fr = thread->last_frame(); max_depth == 0 || max_depth != total_count;) {
  1972     Method* method = NULL;
  1972     Method* method = NULL;
  1973     int bci = 0;
  1973     int bci = 0;
  1974 
  1974 
  1975     // Compiled java method case.
  1975     // Compiled java method case.
  1976     if (decode_offset != 0) {
  1976     if (decode_offset != 0) {