src/hotspot/share/runtime/vframe.cpp
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58177 4932dce35882
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53305
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5542
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5542
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5542
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "code/nmethod.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "code/pcDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "code/scopeDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "interpreter/oopMapCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "oops/oop.inline.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 47216
diff changeset
    39
#include "runtime/frame.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/objectMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/objectMonitor.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#include "runtime/synchronizer.hpp"
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53305
diff changeset
    46
#include "runtime/thread.inline.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 47216
diff changeset
    47
#include "runtime/vframe.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    48
#include "runtime/vframeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    49
#include "runtime/vframe_hp.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
: _reg_map(reg_map), _thread(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  assert(fr != NULL, "must have frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  _fr = *fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
vframe::vframe(const frame* fr, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
: _reg_map(thread), _thread(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  assert(fr != NULL, "must have frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _fr = *fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  if (f->is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return new interpretedVFrame(f, reg_map, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Compiled frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  CodeBlob* cb = f->cb();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (cb != NULL) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 34643
diff changeset
    72
    if (cb->is_compiled()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 34643
diff changeset
    73
      CompiledMethod* nm = (CompiledMethod*)cb;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      return new compiledVFrame(f, reg_map, thread, nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    if (f->is_runtime_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      // Skip this frame and try again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      RegisterMap temp_map = *reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      frame s = f->sender(&temp_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      return new_vframe(&s, &temp_map, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // External frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  return new externalVFrame(f, reg_map, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
vframe* vframe::sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  RegisterMap temp_map = *register_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  assert(is_top(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  if (_fr.is_entry_frame() && _fr.is_first_frame()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  frame s = _fr.real_sender(&temp_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (s.is_first_frame()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  return vframe::new_vframe(&s, &temp_map, thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
vframe* vframe::top() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  vframe* vf = (vframe*) this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  while (!vf->is_top()) vf = vf->sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
javaVFrame* vframe::java_sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  vframe* f = sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  while (f != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    if (f->is_java_frame()) return javaVFrame::cast(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    f = f->sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// ------------- javaVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  assert(SafepointSynchronize::is_at_safepoint() || JavaThread::current() == thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
         "must be at safepoint or it's a java frame of the current thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  GrowableArray<MonitorInfo*>* mons = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(mons->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  if (mons->is_empty()) return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  bool found_first_monitor = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  ObjectMonitor *pending_monitor = thread()->current_pending_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  ObjectMonitor *waiting_monitor = thread()->current_waiting_monitor();
5542
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 5419
diff changeset
   127
  oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : (oop) NULL);
be05c5ffe905 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 5419
diff changeset
   128
  oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : (oop) NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  for (int index = (mons->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    MonitorInfo* monitor = mons->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   132
    if (monitor->eliminated() && is_compiled_frame()) continue; // skip eliminated monitor
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    oop obj = monitor->owner();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    if (obj == NULL) continue; // skip unowned monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    // Skip the monitor that the thread is blocked to enter or waiting on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    //
58177
4932dce35882 8230841: Remove oopDesc::equals()
pliden
parents: 57787
diff changeset
   138
    if (!found_first_monitor && (obj == pending_obj || obj == waiting_obj)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    found_first_monitor = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    result->append(monitor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   147
void javaVFrame::print_locked_object_class_name(outputStream* st, Handle obj, const char* lock_state) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if (obj.not_null()) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
   149
    st->print("\t- %s <" INTPTR_FORMAT "> ", lock_state, p2i(obj()));
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3261
diff changeset
   150
    if (obj->klass() == SystemDictionary::Class_klass()) {
31970
4bb8e8a13f6a 8048353: jstack -l crashes VM when a Java mirror for a primitive type is locked
vkempik
parents: 31792
diff changeset
   151
      st->print_cr("(a java.lang.Class for %s)", java_lang_Class::as_external_name(obj()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    } else {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   153
      Klass* k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      st->print_cr("(a %s)", k->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 38133
diff changeset
   160
  Thread* THREAD = Thread::current();
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 38133
diff changeset
   161
  ResourceMark rm(THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   163
  // If this is the first frame and it is java.lang.Object.wait(...)
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   164
  // then print out the receiver. Locals are not always available,
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   165
  // e.g., compiled native frames have no scope so there are no locals.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (frame_count == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    if (method()->name() == vmSymbols::wait_name() &&
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   168
        method()->method_holder()->name() == vmSymbols::java_lang_Object()) {
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   169
      const char *wait_state = "waiting on"; // assume we are waiting
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   170
      // If earlier in the output we reported java.lang.Thread.State ==
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   171
      // "WAITING (on object monitor)" and now we report "waiting on", then
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   172
      // we are still waiting for notification or timeout. Otherwise if
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   173
      // we earlier reported java.lang.Thread.State == "BLOCKED (on object
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   174
      // monitor)", then we are actually waiting to re-lock the monitor.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      StackValueCollection* locs = locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      if (!locs->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        StackValue* sv = locs->at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        if (sv->type() == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
          Handle o = locs->at(0)->get_obj();
52701
c724619944f1 8150689: Thread dump report "waiting to re-lock in wait()" shows incorrectly
pchilanomate
parents: 52107
diff changeset
   180
          if (java_lang_Thread::get_thread_status(thread()->threadObj()) ==
c724619944f1 8150689: Thread dump report "waiting to re-lock in wait()" shows incorrectly
pchilanomate
parents: 52107
diff changeset
   181
                                java_lang_Thread::BLOCKED_ON_MONITOR_ENTER) {
c724619944f1 8150689: Thread dump report "waiting to re-lock in wait()" shows incorrectly
pchilanomate
parents: 52107
diff changeset
   182
            wait_state = "waiting to re-lock in wait()";
c724619944f1 8150689: Thread dump report "waiting to re-lock in wait()" shows incorrectly
pchilanomate
parents: 52107
diff changeset
   183
          }
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   184
          print_locked_object_class_name(st, o, wait_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        }
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   186
      } else {
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   187
        st->print_cr("\t- %s <no object reference available>", wait_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    } else if (thread()->current_park_blocker() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      oop obj = thread()->current_park_blocker();
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   191
      Klass* k = obj->klass();
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
   192
      st->print_cr("\t- %s <" INTPTR_FORMAT "> (a %s)", "parking to wait for ", p2i(obj), k->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    }
53305
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   194
    else if (thread()->osthread()->get_state() == OBJECT_WAIT) {
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   195
      // We are waiting on an Object monitor but Object.wait() isn't the
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   196
      // top-frame, so we should be waiting on a Class initialization monitor.
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   197
      InstanceKlass* k = thread()->class_to_be_initialized();
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   198
      if (k != NULL) {
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   199
        st->print_cr("\t- waiting on the Class initialization monitor for %s", k->external_name());
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   200
      }
d193d58ae79d 8213397: Stack dump should show more clearly when a thread is blocked on a class initialization monitor
dholmes
parents: 53065
diff changeset
   201
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   204
  // Print out all monitors that we have locked, or are trying to lock,
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   205
  // including re-locking after being notified or timing out in a wait().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  GrowableArray<MonitorInfo*>* mons = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  if (!mons->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    bool found_first_monitor = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    for (int index = (mons->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
      MonitorInfo* monitor = mons->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   211
      if (monitor->eliminated() && is_compiled_frame()) { // Eliminated in compiled code
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   212
        if (monitor->owner_is_scalar_replaced()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   213
          Klass* k = java_lang_Class::as_Klass(monitor->owner_klass());
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   214
          st->print("\t- eliminated <owner is scalar replaced> (a %s)", k->external_name());
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   215
        } else {
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 38133
diff changeset
   216
          Handle obj(THREAD, monitor->owner());
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 38133
diff changeset
   217
          if (obj() != NULL) {
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   218
            print_locked_object_class_name(st, obj, "eliminated");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   219
          }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   220
        }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   221
        continue;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   222
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
      if (monitor->owner() != NULL) {
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   224
        // the monitor is associated with an object, i.e., it is locked
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
        const char *lock_state = "locked"; // assume we have the monitor locked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        if (!found_first_monitor && frame_count == 0) {
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   228
          // If this is the first frame and we haven't found an owned
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   229
          // monitor before, then we need to see if we have completed
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   230
          // the lock or if we are blocked trying to acquire it. Only
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   231
          // an inflated monitor that is first on the monitor list in
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   232
          // the first frame can block us on a monitor enter.
57787
094ef5a91b68 8229808: javaVFrame::print_lock_info_on fails to disable extra printing
dholmes
parents: 57777
diff changeset
   233
          markWord mark = monitor->owner()->mark();
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 53582
diff changeset
   234
          if (mark.has_monitor() &&
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   235
              ( // we have marked ourself as pending on this monitor
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 53582
diff changeset
   236
                mark.monitor() == thread()->current_pending_monitor() ||
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   237
                // we are not the owner of this monitor
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 53582
diff changeset
   238
                !mark.monitor()->is_entered(thread())
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   239
              )) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
            lock_state = "waiting to lock";
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 29086
diff changeset
   241
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
        }
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 38133
diff changeset
   243
        print_locked_object_class_name(st, Handle(THREAD, monitor->owner()), lock_state);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
        found_first_monitor = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
// ------------- interpretedVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
u_char* interpretedVFrame::bcp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  return fr().interpreter_frame_bcp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
void interpretedVFrame::set_bcp(u_char* bcp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  fr().interpreter_frame_set_bcp(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
intptr_t* interpretedVFrame::locals_addr_at(int offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  assert(fr().is_interpreted_frame(), "frame should be an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  return fr().interpreter_frame_local_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
       current >= fr().interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
       current = fr().previous_monitor_in_interpreter_frame(current)) {
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   272
    result->push(new MonitorInfo(current->obj(), current->lock(), false, false));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
int interpretedVFrame::bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  return method()->bci_from(bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   281
Method* interpretedVFrame::method() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  return fr().interpreter_frame_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   285
static StackValue* create_stack_value_from_oop_map(const InterpreterOopMap& oop_mask,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   286
                                                   int index,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   287
                                                   const intptr_t* const addr) {
25475
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   288
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   289
  assert(index >= 0 &&
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   290
         index < oop_mask.number_of_entries(), "invariant");
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   291
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   292
  // categorize using oop_mask
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   293
  if (oop_mask.is_oop(index)) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   294
    // reference (oop) "r"
46271
979ebd346ecf 8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents: 38133
diff changeset
   295
    Handle h(Thread::current(), addr != NULL ? (*(oop*)addr) : (oop)NULL);
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   296
    return new StackValue(h);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   297
  }
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   298
  // value (integer) "v"
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   299
  return new StackValue(addr != NULL ? *addr : 0);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   300
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   302
static bool is_in_expression_stack(const frame& fr, const intptr_t* const addr) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   303
  assert(addr != NULL, "invariant");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   304
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   305
  // Ensure to be 'inside' the expresion stack (i.e., addr >= sp for Intel).
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   306
  // In case of exceptions, the expression stack is invalid and the sp
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   307
  // will be reset to express this condition.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   308
  if (frame::interpreter_frame_expression_stack_direction() > 0) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   309
    return addr <= fr.interpreter_frame_tos_address();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   312
  return addr >= fr.interpreter_frame_tos_address();
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   313
}
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   314
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   315
static void stack_locals(StackValueCollection* result,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   316
                         int length,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   317
                         const InterpreterOopMap& oop_mask,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   318
                         const frame& fr) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   319
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   320
  assert(result != NULL, "invariant");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   321
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   322
  for (int i = 0; i < length; ++i) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   323
    const intptr_t* const addr = fr.interpreter_frame_local_at(i);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   324
    assert(addr != NULL, "invariant");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   325
    assert(addr >= fr.sp(), "must be inside the frame");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   326
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   327
    StackValue* const sv = create_stack_value_from_oop_map(oop_mask, i, addr);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   328
    assert(sv != NULL, "sanity check");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   329
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   330
    result->add(sv);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   331
  }
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   332
}
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   333
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   334
static void stack_expressions(StackValueCollection* result,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   335
                              int length,
25475
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   336
                              int max_locals,
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   337
                              const InterpreterOopMap& oop_mask,
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   338
                              const frame& fr) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   339
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   340
  assert(result != NULL, "invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   342
  for (int i = 0; i < length; ++i) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   343
    const intptr_t* addr = fr.interpreter_frame_expression_stack_at(i);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   344
    assert(addr != NULL, "invariant");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   345
    if (!is_in_expression_stack(fr, addr)) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   346
      // Need to ensure no bogus escapes.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   347
      addr = NULL;
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   348
    }
25475
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   349
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   350
    StackValue* const sv = create_stack_value_from_oop_map(oop_mask,
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   351
                                                           i + max_locals,
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   352
                                                           addr);
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   353
    assert(sv != NULL, "sanity check");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   354
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   355
    result->add(sv);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   356
  }
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   357
}
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   358
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   359
StackValueCollection* interpretedVFrame::locals() const {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   360
  return stack_data(false);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   361
}
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   362
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   363
StackValueCollection* interpretedVFrame::expressions() const {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   364
  return stack_data(true);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   365
}
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   366
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   367
/*
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   368
 * Worker routine for fetching references and/or values
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   369
 * for a particular bci in the interpretedVFrame.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   370
 *
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   371
 * Returns data for either "locals" or "expressions",
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   372
 * using bci relative oop_map (oop_mask) information.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   373
 *
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   374
 * @param expressions  bool switch controlling what data to return
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   375
                       (false == locals / true == expression)
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   376
 *
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   377
 */
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   378
StackValueCollection* interpretedVFrame::stack_data(bool expressions) const {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   379
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   380
  InterpreterOopMap oop_mask;
46996
9cbcd7082efe 8186042: Optimize OopMapCache lookup
coleenp
parents: 46329
diff changeset
   381
  method()->mask_for(bci(), &oop_mask);
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   382
  const int mask_len = oop_mask.number_of_entries();
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   383
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   384
  // If the method is native, method()->max_locals() is not telling the truth.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   385
  // For our purposes, max locals instead equals the size of parameters.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   386
  const int max_locals = method()->is_native() ?
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   387
    method()->size_of_parameters() : method()->max_locals();
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   388
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   389
  assert(mask_len >= max_locals, "invariant");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   390
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   391
  const int length = expressions ? mask_len - max_locals : max_locals;
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   392
  assert(length >= 0, "invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   394
  StackValueCollection* const result = new StackValueCollection(length);
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   395
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   396
  if (0 == length) {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   397
    return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   399
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   400
  if (expressions) {
25475
6adf1750b4f4 8049324: interpretedVFrame::expressions to index oopmap correctly
mgronlun
parents: 25473
diff changeset
   401
    stack_expressions(result, length, max_locals, oop_mask, fr());
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   402
  } else {
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   403
    stack_locals(result, length, oop_mask, fr());
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   404
  }
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   405
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   406
  assert(length == result->size(), "invariant");
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   407
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
void interpretedVFrame::set_locals(StackValueCollection* values) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  if (values == NULL || values->size() == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   414
  // If the method is native, max_locals is not telling the truth.
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   415
  // maxlocals then equals the size of parameters
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   416
  const int max_locals = method()->is_native() ?
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   417
    method()->size_of_parameters() : method()->max_locals();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   419
  assert(max_locals == values->size(), "Mismatch between actual stack format and supplied data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // handle locals
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   422
  for (int i = 0; i < max_locals; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    intptr_t *addr = locals_addr_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    // Depending on oop/int put it in the right package
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 25057
diff changeset
   427
    const StackValue* const sv = values->at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    if (sv->type() == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      *(oop *) addr = (sv->get_obj())();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    } else {                   // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
      *addr = sv->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
// ------------- cChunk --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
entryVFrame::entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
: externalVFrame(fr, reg_map, thread) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
43980
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 38133
diff changeset
   442
#ifdef ASSERT
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 38133
diff changeset
   443
void vframeStreamCommon::found_bad_method_frame() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  // 6379830 Cut point for an assertion that occasionally fires when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // we are using the performance analyzer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  // Disable this assert when testing the analyzer with fastdebug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // -XX:SuppressErrorAt=vframe.cpp:XXX (XXX=following line number)
43980
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 38133
diff changeset
   448
  fatal("invalid bci or invalid scope desc");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
}
43980
792a70d867f4 8175178: Stack traversal during OSR migration asserts with invalid bci or invalid scope desc on x86
mgronlun
parents: 38133
diff changeset
   450
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
// top-frame will be skipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
vframeStream::vframeStream(JavaThread* thread, frame top_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  bool stop_at_java_call_stub) : vframeStreamCommon(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  _stop_at_java_call_stub = stop_at_java_call_stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // skip top frame, as it may not be at safepoint
53065
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   458
  _prev_frame = top_frame;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  _frame  = top_frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  while (!fill_from_frame()) {
53065
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   461
    _prev_frame = _frame;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    _frame = _frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
// Step back n frames, skip any pseudo frames in between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
// This function is used in Class.forName, Class.newInstance, Method.Invoke,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
// AccessController.doPrivileged.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
void vframeStreamCommon::security_get_caller_frame(int depth) {
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31970
diff changeset
   471
  assert(depth >= 0, "invalid depth: %d", depth);
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   472
  for (int n = 0; !at_end(); security_next()) {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   473
    if (!method()->is_ignored_by_security_stack_walk()) {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   474
      if (n == depth) {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   475
        // We have reached the desired depth; return.
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   476
        return;
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   477
      }
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   478
      n++;  // this is a non-skipped frame; count it against the depth
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   479
    }
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   480
  }
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   481
  // NOTE: At this point there were not enough frames on the stack
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   482
  // to walk to depth.  Callers of this method have to check for at_end.
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   483
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   485
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   486
void vframeStreamCommon::security_next() {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   487
  if (method()->is_prefixed_native()) {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   488
    skip_prefixed_method_and_wrappers();  // calls next()
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   489
  } else {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   490
    next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
void vframeStreamCommon::skip_prefixed_method_and_wrappers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  int    method_prefix_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  char** method_prefixes = JvmtiExport::get_all_native_method_prefixes(&method_prefix_count);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   501
  Klass* prefixed_klass = method()->method_holder();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  const char* prefixed_name = method()->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  size_t prefixed_name_len = strlen(prefixed_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  int prefix_index = method_prefix_count-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  while (!at_end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    next();
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46327
diff changeset
   508
    if (method()->method_holder() != prefixed_klass) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
      break; // classes don't match, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    const char* name = method()->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    size_t name_len = strlen(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    size_t prefix_len = prefixed_name_len - name_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    if (prefix_len <= 0 || strcmp(name, prefixed_name + prefix_len) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      break; // prefixed name isn't prefixed version of method name, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    for (; prefix_index >= 0; --prefix_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
      const char* possible_prefix = method_prefixes[prefix_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
      size_t possible_prefix_len = strlen(possible_prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
      if (possible_prefix_len == prefix_len &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
          strncmp(possible_prefix, prefixed_name, prefix_len) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
        break; // matching prefix found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    if (prefix_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
      break; // didn't find the prefix, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
    prefixed_name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    prefixed_name_len = name_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
void vframeStreamCommon::skip_reflection_related_frames() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  while (!at_end() &&
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   536
          (method()->method_holder()->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass()) ||
25057
f38210f84f8c 8031819: Remove legacy jdk checks and code
hseigel
parents: 24938
diff changeset
   537
           method()->method_holder()->is_subclass_of(SystemDictionary::reflect_ConstructorAccessorImpl_klass()))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
53065
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   542
javaVFrame* vframeStreamCommon::asJavaVFrame() {
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   543
  javaVFrame* result = NULL;
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   544
  if (_mode == compiled_mode) {
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   545
    guarantee(_frame.is_compiled_frame(), "expected compiled Java frame");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   546
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   547
    // lazy update to register map
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   548
    bool update_map = true;
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   549
    RegisterMap map(_thread, update_map);
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   550
    frame f = _prev_frame.sender(&map);
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   551
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   552
    guarantee(f.is_compiled_frame(), "expected compiled Java frame");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   553
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   554
    compiledVFrame* cvf = compiledVFrame::cast(vframe::new_vframe(&f, &map, _thread));
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   555
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   556
    guarantee(cvf->cb() == cb(), "wrong code blob");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   557
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   558
    // get the same scope as this stream
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   559
    cvf = cvf->at_scope(_decode_offset, _vframe_id);
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   560
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   561
    guarantee(cvf->scope()->decode_offset() == _decode_offset, "wrong scope");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   562
    guarantee(cvf->scope()->sender_decode_offset() == _sender_decode_offset, "wrong scope");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   563
    guarantee(cvf->vframe_id() == _vframe_id, "wrong vframe");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   564
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   565
    result = cvf;
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   566
  } else {
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   567
    result = javaVFrame::cast(vframe::new_vframe(&_frame, &_reg_map, _thread));
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   568
  }
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   569
  guarantee(result->method() == method(), "wrong method");
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   570
  return result;
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   571
}
2f41e4935c34 8215205: javaVFrame much slower than vframeStream
dlong
parents: 52701
diff changeset
   572
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
void vframe::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  if (WizardMode) _fr.print_value_on(tty,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
void vframe::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
void entryVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  ((entryVFrame*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
void entryVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  vframe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  tty->print_cr("C Chunk inbetween Java");
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
   592
  tty->print_cr("C     link " INTPTR_FORMAT, p2i(_fr.link()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
// ------------- javaVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
static void print_stack_values(const char* title, StackValueCollection* values) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  if (values->is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  tty->print_cr("\t%s:", title);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  values->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
void javaVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  vframe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  tty->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  method()->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  tty->print_cr("\tbci:    %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  print_stack_values("locals",      locals());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  print_stack_values("expressions", expressions());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  GrowableArray<MonitorInfo*>* list = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  if (list->is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  tty->print_cr("\tmonitor list:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  for (int index = (list->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    MonitorInfo* monitor = list->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   621
    tty->print("\t  obj\t");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   622
    if (monitor->owner_is_scalar_replaced()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   623
      Klass* k = java_lang_Class::as_Klass(monitor->owner_klass());
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   624
      tty->print("( is scalar replaced %s)", k->external_name());
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   625
    } else if (monitor->owner() == NULL) {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   626
      tty->print("( null )");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   627
    } else {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   628
      monitor->owner()->print_value();
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
   629
      tty->print("(owner=" INTPTR_FORMAT ")", p2i(monitor->owner()));
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   630
    }
29086
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   631
    if (monitor->eliminated()) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   632
      if(is_compiled_frame()) {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   633
        tty->print(" ( lock is eliminated in compiled frame )");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   634
      } else {
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   635
        tty->print(" ( lock is eliminated, frame not compiled )");
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   636
      }
74100114a95a 8069412: Locks need better debug-printing support
drchase
parents: 25475
diff changeset
   637
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    tty->print("\t  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    monitor->lock()->print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
void javaVFrame::print_value() const {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   647
  Method*    m = method();
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   648
  InstanceKlass*     k = m->method_holder();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  tty->print_cr("frame( sp=" INTPTR_FORMAT ", unextended_sp=" INTPTR_FORMAT ", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT ")",
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33105
diff changeset
   650
                p2i(_fr.sp()),  p2i(_fr.unextended_sp()), p2i(_fr.fp()), p2i(_fr.pc()));
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   651
  tty->print("%s.%s", k->internal_name(), m->name()->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  if (!m->is_native()) {
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   654
    Symbol*  source_name = k->source_file_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    int        line_number = m->line_number_from_bci(bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    if (source_name != NULL && (line_number != -1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
      tty->print("(%s:%d)", source_name->as_C_string(), line_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    tty->print("(Native Method)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  // Check frame size and print warning if it looks suspiciously large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  if (fr().sp() != NULL) {
2880
c2974244a496 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 670
diff changeset
   664
    RegisterMap map = *register_map();
c2974244a496 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 670
diff changeset
   665
    uint size = fr().frame_size(&map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    if (size > 4*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
bool javaVFrame::structural_compare(javaVFrame* other) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  // Check static part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  if (method() != other->method()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  if (bci()    != other->bci())    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  // Check locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  StackValueCollection *locs = locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  StackValueCollection *other_locs = other->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  assert(locs->size() == other_locs->size(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  for(i = 0; i < locs->size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    // it might happen the compiler reports a conflict and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    // the interpreter reports a bogus int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    if (       is_compiled_frame() &&       locs->at(i)->type() == T_CONFLICT) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    if (!locs->at(i)->equal(other_locs->at(i)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  // Check expressions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  StackValueCollection* exprs = expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  StackValueCollection* other_exprs = other->expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  assert(exprs->size() == other_exprs->size(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  for(i = 0; i < exprs->size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    if (!exprs->at(i)->equal(other_exprs->at(i)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
void javaVFrame::print_activation(int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  // frame number and method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  tty->print("%2d - ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  ((vframe*)this)->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
void javaVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
void interpretedVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
// ------------- externalVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
void externalVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  _fr.print_value_on(tty,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
void externalVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
#endif // PRODUCT