hotspot/src/share/vm/runtime/vframe.cpp
author vlivanov
Mon, 09 Jun 2014 11:49:02 +0000
changeset 24938 83d8425d85a3
parent 24832 26a834fb508d
child 25057 f38210f84f8c
permissions -rw-r--r--
8046226: assert(_thread == Thread::current()) failed: thread must be current w/ -XX:+TraceDeoptimization -XX:+Verbose Reviewed-by: twisti, dcubed, fparain
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23867
diff changeset
     2
 * Copyright (c) 1997, 2014, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "runtime/objectMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "runtime/objectMonitor.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    42
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    43
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    44
#include "runtime/synchronizer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    45
#include "runtime/vframe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    46
#include "runtime/vframeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    47
#include "runtime/vframe_hp.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23867
diff changeset
    49
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23867
diff changeset
    50
1
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) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      nmethod* nm = (nmethod*)cb;
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
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    if (!found_first_monitor && (obj == pending_obj || obj == waiting_obj)) {
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
static void print_locked_object_class_name(outputStream* st, Handle obj, const char* lock_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if (obj.not_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    st->print("\t- %s <" INTPTR_FORMAT "> ", lock_state, (address)obj());
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 3261
diff changeset
   150
    if (obj->klass() == SystemDictionary::Class_klass()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   151
      Klass* target_klass = java_lang_Class::as_Klass(obj());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   152
      st->print_cr("(a java.lang.Class for %s)", InstanceKlass::cast(target_klass)->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    } else {
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   154
      Klass* k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      st->print_cr("(a %s)", k->external_name());
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // If this is the first frame, and java.lang.Object.wait(...) then print out the receiver.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  if (frame_count == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
    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
   166
        method()->method_holder()->name() == vmSymbols::java_lang_Object()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
      StackValueCollection* locs = locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      if (!locs->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        StackValue* sv = locs->at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
        if (sv->type() == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
          Handle o = locs->at(0)->get_obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
          print_locked_object_class_name(st, o, "waiting on");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    } else if (thread()->current_park_blocker() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
      oop obj = thread()->current_park_blocker();
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   177
      Klass* k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      st->print_cr("\t- %s <" INTPTR_FORMAT "> (a %s)", "parking to wait for ", (address)obj, k->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // Print out all monitors that we have locked or are trying to lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  GrowableArray<MonitorInfo*>* mons = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  if (!mons->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    bool found_first_monitor = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    for (int index = (mons->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      MonitorInfo* monitor = mons->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   189
      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
   190
        if (monitor->owner_is_scalar_replaced()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   191
          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
   192
          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
   193
        } else {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   194
          oop obj = monitor->owner();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   195
          if (obj != NULL) {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   196
            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
   197
          }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   198
        }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   199
        continue;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   200
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      if (monitor->owner() != NULL) {
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   202
        // the monitor is associated with an object, i.e., it is locked
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
        // First, assume we have the monitor locked. If we haven't found an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
        // owned monitor before and this is the first frame, then we need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
        // see if we have completed the lock or we are blocked trying to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
        // acquire it - we can only be blocked if the monitor is inflated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        const char *lock_state = "locked"; // assume we have the monitor locked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
        if (!found_first_monitor && frame_count == 0) {
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   211
          markOop mark = monitor->owner()->mark();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   212
          if (mark->has_monitor() &&
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   213
              ( // we have marked ourself as pending on this monitor
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   214
                mark->monitor() == thread()->current_pending_monitor() ||
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   215
                // we are not the owner of this monitor
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   216
                !mark->monitor()->is_entered(thread())
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24456
diff changeset
   217
              )) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
            lock_state = "waiting to lock";
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   219
          }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
        found_first_monitor = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
        print_locked_object_class_name(st, monitor->owner(), lock_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
// ------------- interpretedVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
u_char* interpretedVFrame::bcp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return fr().interpreter_frame_bcp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
void interpretedVFrame::set_bcp(u_char* bcp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  fr().interpreter_frame_set_bcp(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
intptr_t* interpretedVFrame::locals_addr_at(int offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  assert(fr().is_interpreted_frame(), "frame should be an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  return fr().interpreter_frame_local_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
       current >= fr().interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
       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
   250
    result->push(new MonitorInfo(current->obj(), current->lock(), false, false));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
int interpretedVFrame::bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  return method()->bci_from(bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   259
Method* interpretedVFrame::method() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  return fr().interpreter_frame_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
StackValueCollection* interpretedVFrame::locals() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  int length = method()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  if (method()->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    // If the method is native, max_locals is not telling the truth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    // maxlocals then equals the size of parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    length = method()->size_of_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  StackValueCollection* result = new StackValueCollection(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // Get oopmap describing oops and int for current bci
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   275
  InterpreterOopMap oop_mask;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   276
  if (TraceDeoptimization && Verbose) {
24938
83d8425d85a3 8046226: assert(_thread == Thread::current()) failed: thread must be current w/ -XX:+TraceDeoptimization -XX:+Verbose
vlivanov
parents: 24832
diff changeset
   277
    // need the current JavaThread and not thread()
83d8425d85a3 8046226: assert(_thread == Thread::current()) failed: thread must be current w/ -XX:+TraceDeoptimization -XX:+Verbose
vlivanov
parents: 24832
diff changeset
   278
    methodHandle m_h(Thread::current(), method());
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   279
    OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  } else {
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   281
    method()->mask_for(bci(), &oop_mask);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   282
  }
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   283
  // handle locals
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   284
  for(int i=0; i < length; i++) {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   285
    // Find stack location
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   286
    intptr_t *addr = locals_addr_at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   288
    // Depending on oop/int put it in the right package
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   289
    StackValue *sv;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   290
    if (oop_mask.is_oop(i)) {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   291
      // oop value
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   292
      Handle h(*(oop *)addr);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   293
      sv = new StackValue(h);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   294
    } else {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   295
      // integer
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   296
      sv = new StackValue(*addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    }
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   298
    assert(sv != NULL, "sanity check");
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   299
    result->add(sv);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
void interpretedVFrame::set_locals(StackValueCollection* values) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (values == NULL || values->size() == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  int length = method()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  if (method()->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
    // If the method is native, max_locals is not telling the truth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    // maxlocals then equals the size of parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
    length = method()->size_of_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  assert(length == values->size(), "Mismatch between actual stack format and supplied data");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // handle locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    intptr_t *addr = locals_addr_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
    // Depending on oop/int put it in the right package
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    StackValue *sv = values->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
    if (sv->type() == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      *(oop *) addr = (sv->get_obj())();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    } else {                   // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      *addr = sv->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
23867
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   332
StackValueCollection* interpretedVFrame::expressions() const {
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   333
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   334
  InterpreterOopMap oop_mask;
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   335
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   336
  if (!method()->is_native()) {
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   337
    // Get oopmap describing oops and int for current bci
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   338
    if (TraceDeoptimization && Verbose) {
24938
83d8425d85a3 8046226: assert(_thread == Thread::current()) failed: thread must be current w/ -XX:+TraceDeoptimization -XX:+Verbose
vlivanov
parents: 24832
diff changeset
   339
      // need the current JavaThread and not thread()
83d8425d85a3 8046226: assert(_thread == Thread::current()) failed: thread must be current w/ -XX:+TraceDeoptimization -XX:+Verbose
vlivanov
parents: 24832
diff changeset
   340
      methodHandle m_h(Thread::current(), method());
23867
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   341
      OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   342
    } else {
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   343
      method()->mask_for(bci(), &oop_mask);
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   344
    }
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   345
  }
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   346
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   347
  // If the bci is a call instruction, i.e. any of the invoke* instructions,
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   348
  // the InterpreterOopMap does not include expression/operand stack liveness
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   349
  // info in the oop_mask/bit_mask. This can lead to a discrepancy of what
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   350
  // is actually on the expression stack compared to what is given by the
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   351
  // oop_map. We need to use the length reported in the oop_map.
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   352
  int length = oop_mask.expression_stack_size();
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   353
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   354
  assert(fr().interpreter_frame_expression_stack_size() >= length,
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   355
    "error in expression stack!");
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   356
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   357
  StackValueCollection* result = new StackValueCollection(length);
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   358
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   359
  if (0 == length) {
f144d430b1cf 8038624: interpretedVFrame::expressions() must respect InterpreterOopMap for liveness
mgronlun
parents: 22234
diff changeset
   360
    return result;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  int nof_locals = method()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   365
  // handle expressions
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   366
  for(int i=0; i < length; i++) {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   367
    // Find stack location
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   368
    intptr_t *addr = fr().interpreter_frame_expression_stack_at(i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   370
    // Depending on oop/int put it in the right package
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   371
    StackValue *sv;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   372
    if (oop_mask.is_oop(i + nof_locals)) {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   373
      // oop value
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   374
      Handle h(*(oop *)addr);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   375
      sv = new StackValue(h);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   376
    } else {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   377
      // integer
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   378
      sv = new StackValue(*addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    }
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   380
    assert(sv != NULL, "sanity check");
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4581
diff changeset
   381
    result->add(sv);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// ------------- cChunk --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
entryVFrame::entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
: externalVFrame(fr, reg_map, thread) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
void vframeStreamCommon::found_bad_method_frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // 6379830 Cut point for an assertion that occasionally fires when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // we are using the performance analyzer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  // Disable this assert when testing the analyzer with fastdebug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // -XX:SuppressErrorAt=vframe.cpp:XXX (XXX=following line number)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  assert(false, "invalid bci or invalid scope desc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
// top-frame will be skipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
vframeStream::vframeStream(JavaThread* thread, frame top_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  bool stop_at_java_call_stub) : vframeStreamCommon(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  _stop_at_java_call_stub = stop_at_java_call_stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // skip top frame, as it may not be at safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  _frame  = top_frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  while (!fill_from_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    _frame = _frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
// Step back n frames, skip any pseudo frames in between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
// This function is used in Class.forName, Class.newInstance, Method.Invoke,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
// AccessController.doPrivileged.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
void vframeStreamCommon::security_get_caller_frame(int depth) {
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   418
  assert(depth >= 0, err_msg("invalid depth: %d", depth));
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   419
  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
   420
    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
   421
      if (n == depth) {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   422
        // We have reached the desired depth; return.
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   423
        return;
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   424
      }
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   425
      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
   426
    }
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   427
  }
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   428
  // 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
   429
  // 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
   430
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   432
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   433
void vframeStreamCommon::security_next() {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   434
  if (method()->is_prefixed_native()) {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   435
    skip_prefixed_method_and_wrappers();  // calls next()
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   436
  } else {
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 14488
diff changeset
   437
    next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
void vframeStreamCommon::skip_prefixed_method_and_wrappers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  int    method_prefix_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  char** method_prefixes = JvmtiExport::get_all_native_method_prefixes(&method_prefix_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  KlassHandle prefixed_klass(method()->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  const char* prefixed_name = method()->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  size_t prefixed_name_len = strlen(prefixed_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  int prefix_index = method_prefix_count-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  while (!at_end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    if (method()->method_holder() != prefixed_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      break; // classes don't match, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    const char* name = method()->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    size_t name_len = strlen(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    size_t prefix_len = prefixed_name_len - name_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    if (prefix_len <= 0 || strcmp(name, prefixed_name + prefix_len) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      break; // prefixed name isn't prefixed version of method name, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    for (; prefix_index >= 0; --prefix_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      const char* possible_prefix = method_prefixes[prefix_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      size_t possible_prefix_len = strlen(possible_prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      if (possible_prefix_len == prefix_len &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
          strncmp(possible_prefix, prefixed_name, prefix_len) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
        break; // matching prefix found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    if (prefix_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
      break; // didn't find the prefix, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    prefixed_name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    prefixed_name_len = name_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
void vframeStreamCommon::skip_reflection_related_frames() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  while (!at_end() &&
24456
8c7933fa5a1f 8025580: Temporary flags: UseNewReflection and ReflectionWrapResolutionErrors
coleenp
parents: 24424
diff changeset
   483
         (JDK_Version::is_gte_jdk14x_version() &&
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   484
          (method()->method_holder()->is_subclass_of(SystemDictionary::reflect_MethodAccessorImpl_klass()) ||
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   485
           method()->method_holder()->is_subclass_of(SystemDictionary::reflect_ConstructorAccessorImpl_klass())))) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
void vframe::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  if (WizardMode) _fr.print_value_on(tty,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
void vframe::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
void entryVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  ((entryVFrame*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
void entryVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  vframe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  tty->print_cr("C Chunk inbetween Java");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  tty->print_cr("C     link " INTPTR_FORMAT, _fr.link());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
// ------------- javaVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
static void print_stack_values(const char* title, StackValueCollection* values) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  if (values->is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  tty->print_cr("\t%s:", title);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  values->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
void javaVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  vframe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  tty->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  method()->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  tty->print_cr("\tbci:    %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  print_stack_values("locals",      locals());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  print_stack_values("expressions", expressions());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  GrowableArray<MonitorInfo*>* list = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  if (list->is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  tty->print_cr("\tmonitor list:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  for (int index = (list->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    MonitorInfo* monitor = list->at(index);
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   538
    tty->print("\t  obj\t");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   539
    if (monitor->owner_is_scalar_replaced()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   540
      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
   541
      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
   542
    } else if (monitor->owner() == NULL) {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   543
      tty->print("( null )");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   544
    } else {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   545
      monitor->owner()->print_value();
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   546
      tty->print("(" INTPTR_FORMAT ")", (address)monitor->owner());
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   547
    }
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   548
    if (monitor->eliminated() && is_compiled_frame())
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 2880
diff changeset
   549
      tty->print(" ( lock is eliminated )");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    tty->print("\t  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    monitor->lock()->print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
void javaVFrame::print_value() const {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   559
  Method*    m = method();
14391
df0a1573d5bd 8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents: 13728
diff changeset
   560
  InstanceKlass*     k = m->method_holder();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  tty->print_cr("frame( sp=" INTPTR_FORMAT ", unextended_sp=" INTPTR_FORMAT ", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
                _fr.sp(),  _fr.unextended_sp(), _fr.fp(), _fr.pc());
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14391
diff changeset
   563
  tty->print("%s.%s", k->internal_name(), m->name()->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  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
   566
    Symbol*  source_name = k->source_file_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    int        line_number = m->line_number_from_bci(bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    if (source_name != NULL && (line_number != -1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
      tty->print("(%s:%d)", source_name->as_C_string(), line_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    tty->print("(Native Method)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  // Check frame size and print warning if it looks suspiciously large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  if (fr().sp() != NULL) {
2880
c2974244a496 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 670
diff changeset
   576
    RegisterMap map = *register_map();
c2974244a496 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 670
diff changeset
   577
    uint size = fr().frame_size(&map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    if (size > 4*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
bool javaVFrame::structural_compare(javaVFrame* other) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // Check static part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  if (method() != other->method()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  if (bci()    != other->bci())    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // Check locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  StackValueCollection *locs = locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  StackValueCollection *other_locs = other->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  assert(locs->size() == other_locs->size(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  for(i = 0; i < locs->size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
    // it might happen the compiler reports a conflict and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    // the interpreter reports a bogus int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    if (       is_compiled_frame() &&       locs->at(i)->type() == T_CONFLICT) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    if (!locs->at(i)->equal(other_locs->at(i)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  // Check expressions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  StackValueCollection* exprs = expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  StackValueCollection* other_exprs = other->expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  assert(exprs->size() == other_exprs->size(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  for(i = 0; i < exprs->size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    if (!exprs->at(i)->equal(other_exprs->at(i)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
void javaVFrame::print_activation(int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  // frame number and method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
  tty->print("%2d - ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  ((vframe*)this)->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
void javaVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
void interpretedVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
// ------------- externalVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
void externalVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  _fr.print_value_on(tty,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
void externalVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
#endif // PRODUCT