hotspot/src/share/vm/runtime/vframe.cpp
author xdono
Wed, 02 Jul 2008 12:55:16 -0700
changeset 670 ddf3e9583f2f
parent 256 70fdc3927a4e
child 2880 c2974244a496
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 256
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_vframe.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
vframe::vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
: _reg_map(reg_map), _thread(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  assert(fr != NULL, "must have frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  _fr = *fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
vframe::vframe(const frame* fr, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
: _reg_map(thread), _thread(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  assert(fr != NULL, "must have frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  _fr = *fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
vframe* vframe::new_vframe(const frame* f, const RegisterMap* reg_map, JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // Interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  if (f->is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    return new interpretedVFrame(f, reg_map, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // Compiled frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  CodeBlob* cb = f->cb();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  if (cb != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    if (cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
      nmethod* nm = (nmethod*)cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      return new compiledVFrame(f, reg_map, thread, nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    if (f->is_runtime_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      // Skip this frame and try again.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
      RegisterMap temp_map = *reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
      frame s = f->sender(&temp_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      return new_vframe(&s, &temp_map, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // External frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  return new externalVFrame(f, reg_map, thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
vframe* vframe::sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  RegisterMap temp_map = *register_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  assert(is_top(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  if (_fr.is_entry_frame() && _fr.is_first_frame()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  frame s = _fr.real_sender(&temp_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (s.is_first_frame()) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  return vframe::new_vframe(&s, &temp_map, thread());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
vframe* vframe::top() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  vframe* vf = (vframe*) this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  while (!vf->is_top()) vf = vf->sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  return vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
javaVFrame* vframe::java_sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  vframe* f = sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  while (f != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    if (f->is_java_frame()) return javaVFrame::cast(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    f = f->sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
// ------------- javaVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  assert(SafepointSynchronize::is_at_safepoint() || JavaThread::current() == thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
         "must be at safepoint or it's a java frame of the current thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  GrowableArray<MonitorInfo*>* mons = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(mons->length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  if (mons->is_empty()) return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool found_first_monitor = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  ObjectMonitor *pending_monitor = thread()->current_pending_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  ObjectMonitor *waiting_monitor = thread()->current_waiting_monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  for (int index = (mons->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    MonitorInfo* monitor = mons->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    oop obj = monitor->owner();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    if (obj == NULL) continue; // skip unowned monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    // Skip the monitor that the thread is blocked to enter or waiting on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    if (!found_first_monitor && (obj == pending_obj || obj == waiting_obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    found_first_monitor = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    result->append(monitor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
static void print_locked_object_class_name(outputStream* st, Handle obj, const char* lock_state) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if (obj.not_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    st->print("\t- %s <" INTPTR_FORMAT "> ", lock_state, (address)obj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    if (obj->klass() == SystemDictionary::class_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      klassOop target_klass = java_lang_Class::as_klassOop(obj());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      st->print_cr("(a java.lang.Class for %s)", instanceKlass::cast(target_klass)->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      Klass* k = Klass::cast(obj->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      st->print_cr("(a %s)", k->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
void javaVFrame::print_lock_info_on(outputStream* st, int frame_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // If this is the first frame, and java.lang.Object.wait(...) then print out the receiver.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  if (frame_count == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    if (method()->name() == vmSymbols::wait_name() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
        instanceKlass::cast(method()->method_holder())->name() == vmSymbols::java_lang_Object()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      StackValueCollection* locs = locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      if (!locs->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
        StackValue* sv = locs->at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
        if (sv->type() == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
          Handle o = locs->at(0)->get_obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
          print_locked_object_class_name(st, o, "waiting on");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    } else if (thread()->current_park_blocker() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      oop obj = thread()->current_park_blocker();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      Klass* k = Klass::cast(obj->klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      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
   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
  // Print out all monitors that we have locked or are trying to lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  GrowableArray<MonitorInfo*>* mons = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  if (!mons->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    bool found_first_monitor = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    for (int index = (mons->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      MonitorInfo* monitor = mons->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      if (monitor->owner() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
        // First, assume we have the monitor locked. If we haven't found an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
        // owned monitor before and this is the first frame, then we need to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        // see if we have completed the lock or we are blocked trying to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
        // acquire it - we can only be blocked if the monitor is inflated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
        const char *lock_state = "locked"; // assume we have the monitor locked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
        if (!found_first_monitor && frame_count == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
         markOop mark = monitor->owner()->mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
         if (mark->has_monitor() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
             mark->monitor() == thread()->current_pending_monitor()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
            lock_state = "waiting to lock";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
         }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
        found_first_monitor = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
        print_locked_object_class_name(st, monitor->owner(), lock_state);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// ------------- interpretedVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
u_char* interpretedVFrame::bcp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  return fr().interpreter_frame_bcp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
void interpretedVFrame::set_bcp(u_char* bcp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  fr().interpreter_frame_set_bcp(bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
intptr_t* interpretedVFrame::locals_addr_at(int offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  assert(fr().is_interpreted_frame(), "frame should be an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  return fr().interpreter_frame_local_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
GrowableArray<MonitorInfo*>* interpretedVFrame::monitors() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  GrowableArray<MonitorInfo*>* result = new GrowableArray<MonitorInfo*>(5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  for (BasicObjectLock* current = (fr().previous_monitor_in_interpreter_frame(fr().interpreter_frame_monitor_begin()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
       current >= fr().interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
       current = fr().previous_monitor_in_interpreter_frame(current)) {
256
70fdc3927a4e 6681646: Relocking of a scalar replaced object during deoptimization is broken
kvn
parents: 1
diff changeset
   209
    result->push(new MonitorInfo(current->obj(), current->lock(), false));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
int interpretedVFrame::bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  return method()->bci_from(bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
methodOop interpretedVFrame::method() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  return fr().interpreter_frame_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
StackValueCollection* interpretedVFrame::locals() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  int length = method()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  if (method()->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // If the method is native, max_locals is not telling the truth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // maxlocals then equals the size of parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    length = method()->size_of_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  StackValueCollection* result = new StackValueCollection(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // Get oopmap describing oops and int for current bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    for(int i=0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
      // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      intptr_t *addr = locals_addr_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      // Depending on oop/int put it in the right package
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
      StackValue *sv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
      frame::Tag tag = fr().interpreter_frame_local_tag(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
      if (tag == frame::TagReference) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
        // oop value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
        Handle h(*(oop *)addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
        sv = new StackValue(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
        // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
        sv = new StackValue(*addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      result->add(sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    InterpreterOopMap oop_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    if (TraceDeoptimization && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      methodHandle m_h(thread(), method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      method()->mask_for(bci(), &oop_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    // handle locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    for(int i=0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      intptr_t *addr = locals_addr_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      // Depending on oop/int put it in the right package
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      StackValue *sv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      if (oop_mask.is_oop(i)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
        // oop value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
        Handle h(*(oop *)addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
        sv = new StackValue(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
        // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
        sv = new StackValue(*addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      result->add(sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
void interpretedVFrame::set_locals(StackValueCollection* values) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  if (values == NULL || values->size() == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  int length = method()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  if (method()->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    // If the method is native, max_locals is not telling the truth.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    // maxlocals then equals the size of parameters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    length = method()->size_of_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  assert(length == values->size(), "Mismatch between actual stack format and supplied data");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // handle locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  for (int i = 0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    intptr_t *addr = locals_addr_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    // Depending on oop/int put it in the right package
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
    StackValue *sv = values->at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
    if (sv->type() == T_OBJECT) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
      *(oop *) addr = (sv->get_obj())();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
    } else {                   // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      *addr = sv->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
StackValueCollection*  interpretedVFrame::expressions() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  int length = fr().interpreter_frame_expression_stack_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  if (method()->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    // If the method is native, there is no expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    length = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  int nof_locals = method()->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  StackValueCollection* result = new StackValueCollection(length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    // handle expressions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    for(int i=0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      intptr_t *addr = fr().interpreter_frame_expression_stack_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      frame::Tag tag = fr().interpreter_frame_expression_stack_tag(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      // Depending on oop/int put it in the right package
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      StackValue *sv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      if (tag == frame::TagReference) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
        // oop value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
        Handle h(*(oop *)addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
        sv = new StackValue(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        // otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
        sv = new StackValue(*addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
      result->add(sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
    InterpreterOopMap oop_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    // Get oopmap describing oops and int for current bci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    if (TraceDeoptimization && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
      methodHandle m_h(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
      OopMapCache::compute_one_oop_map(m_h, bci(), &oop_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
      method()->mask_for(bci(), &oop_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    // handle expressions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    for(int i=0; i < length; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
      // Find stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
      intptr_t *addr = fr().interpreter_frame_expression_stack_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
      // Depending on oop/int put it in the right package
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
      StackValue *sv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      if (oop_mask.is_oop(i + nof_locals)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
        // oop value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
        Handle h(*(oop *)addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
        sv = new StackValue(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
        // integer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
        sv = new StackValue(*addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
      assert(sv != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      result->add(sv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
// ------------- cChunk --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
entryVFrame::entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
: externalVFrame(fr, reg_map, thread) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
void vframeStreamCommon::found_bad_method_frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // 6379830 Cut point for an assertion that occasionally fires when
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // we are using the performance analyzer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // Disable this assert when testing the analyzer with fastdebug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // -XX:SuppressErrorAt=vframe.cpp:XXX (XXX=following line number)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  assert(false, "invalid bci or invalid scope desc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
// top-frame will be skipped
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
vframeStream::vframeStream(JavaThread* thread, frame top_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  bool stop_at_java_call_stub) : vframeStreamCommon(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  _stop_at_java_call_stub = stop_at_java_call_stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // skip top frame, as it may not be at safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  _frame  = top_frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  while (!fill_from_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    _frame = _frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
// Step back n frames, skip any pseudo frames in between.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
// This function is used in Class.forName, Class.newInstance, Method.Invoke,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
// AccessController.doPrivileged.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
// NOTE that in JDK 1.4 this has been exposed to Java as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
// sun.reflect.Reflection.getCallerClass(), which can be inlined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
// Inlined versions must match this routine's logic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
// Native method prefixing logic does not need to match since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// the method names don't match and inlining will not occur.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
// See, for example,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
// Parse::inline_native_Reflection_getCallerClass in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
// opto/library_call.cpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
void vframeStreamCommon::security_get_caller_frame(int depth) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  bool use_new_reflection = JDK_Version::is_gte_jdk14x_version() && UseNewReflection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  while (!at_end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
    if (Universe::reflect_invoke_cache()->is_same_method(method())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
      // This is Method.invoke() -- skip it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    } else if (use_new_reflection &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
              Klass::cast(method()->method_holder())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
                 ->is_subclass_of(SystemDictionary::reflect_method_accessor_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      // This is an auxilary frame -- skip it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      // This is non-excluded frame, we need to count it against the depth
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      if (depth-- <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
        // we have reached the desired depth, we are done
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    if (method()->is_prefixed_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
      skip_prefixed_method_and_wrappers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
      next();
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
void vframeStreamCommon::skip_prefixed_method_and_wrappers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  int    method_prefix_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  char** method_prefixes = JvmtiExport::get_all_native_method_prefixes(&method_prefix_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  KlassHandle prefixed_klass(method()->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  const char* prefixed_name = method()->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  size_t prefixed_name_len = strlen(prefixed_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  int prefix_index = method_prefix_count-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  while (!at_end()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    if (method()->method_holder() != prefixed_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      break; // classes don't match, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    const char* name = method()->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    size_t name_len = strlen(name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    size_t prefix_len = prefixed_name_len - name_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    if (prefix_len <= 0 || strcmp(name, prefixed_name + prefix_len) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      break; // prefixed name isn't prefixed version of method name, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    for (; prefix_index >= 0; --prefix_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
      const char* possible_prefix = method_prefixes[prefix_index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      size_t possible_prefix_len = strlen(possible_prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      if (possible_prefix_len == prefix_len &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
          strncmp(possible_prefix, prefixed_name, prefix_len) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
        break; // matching prefix found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    if (prefix_index < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      break; // didn't find the prefix, can't be a wrapper
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    prefixed_name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    prefixed_name_len = name_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
void vframeStreamCommon::skip_reflection_related_frames() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  while (!at_end() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
         (JDK_Version::is_gte_jdk14x_version() && UseNewReflection &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
          (Klass::cast(method()->method_holder())->is_subclass_of(SystemDictionary::reflect_method_accessor_klass()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
           Klass::cast(method()->method_holder())->is_subclass_of(SystemDictionary::reflect_constructor_accessor_klass())))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
void vframe::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  if (WizardMode) _fr.print_value_on(tty,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
void vframe::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
void entryVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  ((entryVFrame*)this)->print();
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() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  vframe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  tty->print_cr("C Chunk inbetween Java");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  tty->print_cr("C     link " INTPTR_FORMAT, _fr.link());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
// ------------- javaVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
static void print_stack_values(const char* title, StackValueCollection* values) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (values->is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  tty->print_cr("\t%s:", title);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  values->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
void javaVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  vframe::print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  tty->print("\t");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  method()->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  tty->print_cr("\tbci:    %d", bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  print_stack_values("locals",      locals());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  print_stack_values("expressions", expressions());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  GrowableArray<MonitorInfo*>* list = monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  if (list->is_empty()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  tty->print_cr("\tmonitor list:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  for (int index = (list->length()-1); index >= 0; index--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    MonitorInfo* monitor = list->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    tty->print("\t  obj\t"); monitor->owner()->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    tty->print("(" INTPTR_FORMAT ")", (address)monitor->owner());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    tty->print("\t  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    monitor->lock()->print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
void javaVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  methodOop  m = method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  klassOop   k = m->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  tty->print_cr("frame( sp=" INTPTR_FORMAT ", unextended_sp=" INTPTR_FORMAT ", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT ")",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
                _fr.sp(),  _fr.unextended_sp(), _fr.fp(), _fr.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  tty->print("%s.%s", Klass::cast(k)->internal_name(), m->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  if (!m->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    symbolOop  source_name = instanceKlass::cast(k)->source_file_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    int        line_number = m->line_number_from_bci(bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
    if (source_name != NULL && (line_number != -1)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      tty->print("(%s:%d)", source_name->as_C_string(), line_number);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    tty->print("(Native Method)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  // Check frame size and print warning if it looks suspiciously large
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  if (fr().sp() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    uint size = fr().frame_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    if (size > 4*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
bool javaVFrame::structural_compare(javaVFrame* other) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  // Check static part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  if (method() != other->method()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  if (bci()    != other->bci())    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  // Check locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  StackValueCollection *locs = locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  StackValueCollection *other_locs = other->locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  assert(locs->size() == other_locs->size(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  for(i = 0; i < locs->size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    // it might happen the compiler reports a conflict and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    // the interpreter reports a bogus int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
    if (       is_compiled_frame() &&       locs->at(i)->type() == T_CONFLICT) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    if (other->is_compiled_frame() && other_locs->at(i)->type() == T_CONFLICT) continue;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    if (!locs->at(i)->equal(other_locs->at(i)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // Check expressions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  StackValueCollection* exprs = expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  StackValueCollection* other_exprs = other->expressions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  assert(exprs->size() == other_exprs->size(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  for(i = 0; i < exprs->size(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    if (!exprs->at(i)->equal(other_exprs->at(i)))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  return true;
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_activation(int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  // frame number and method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  tty->print("%2d - ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  ((vframe*)this)->print_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
void javaVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
void interpretedVFrame::verify() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
// ------------- externalVFrame --------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
void externalVFrame::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  _fr.print_value_on(tty,NULL);
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 externalVFrame::print_value() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  ((vframe*)this)->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
#endif // PRODUCT