hotspot/src/share/vm/runtime/frame.cpp
author jrose
Tue, 15 Sep 2009 21:53:47 -0700
changeset 3908 24b55ad4c228
parent 2131 98f9cef66a34
child 4567 7fc02fbe5c7a
child 4489 514173c9a0c2
permissions -rw-r--r--
6863023: need non-perm oops in code cache for JSR 292 Summary: Make a special root-list for those few nmethods which might contain non-perm oops. Reviewed-by: twisti, kvn, never, jmasa, ysr
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: 360
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/_frame.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
RegisterMap::RegisterMap(JavaThread *thread, bool update_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  _thread         = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  _update_map     = update_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  debug_only(_update_for_id = NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  for (int i = 0; i < reg_count ; i++ ) _location[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
RegisterMap::RegisterMap(const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  assert(map != this, "bad initialization parameter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  assert(map != NULL, "RegisterMap must be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _thread                = map->thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _update_map            = map->update_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _include_argument_oops = map->include_argument_oops();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  debug_only(_update_for_id = map->_update_for_id;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  pd_initialize_from(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  if (update_map()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    for(int i = 0; i < location_valid_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
      LocationValidType bits = !update_map() ? 0 : map->_location_valid[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      _location_valid[i] = bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
      // for whichever bits are set, pull in the corresponding map->_location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      int j = i*location_valid_type_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      while (bits != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
        if ((bits & 1) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
          assert(0 <= j && j < reg_count, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
          _location[j] = map->_location[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
        bits >>= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
        j += 1;
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
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
void RegisterMap::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  set_include_argument_oops(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (_update_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    for(int i = 0; i < location_valid_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      _location_valid[i] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    pd_clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    pd_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
void RegisterMap::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  st->print_cr("Register map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  for(int i = 0; i < reg_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    VMReg r = VMRegImpl::as_VMReg(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    intptr_t* src = (intptr_t*) location(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    if (src != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
1497
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
    86
      r->print_on(st);
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
    87
      st->print(" [" INTPTR_FORMAT "] = ", src);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      if (((uintptr_t)src & (sizeof(*src)-1)) != 0) {
1497
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
    89
        st->print_cr("<misaligned>");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      } else {
1497
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
    91
        st->print_cr(INTPTR_FORMAT, *src);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
void RegisterMap::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
// This returns the pc that if you were in the debugger you'd see. Not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
// the idealized value in the frame object. This undoes the magic conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// that happens for deoptimized frames. In addition it makes the value the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
// hardware would want to see in the native frame. The only user (at this point)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// is deoptimization. It likely no one else should ever use it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
address frame::raw_pc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (is_deoptimized_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    return ((nmethod*) cb())->deopt_handler_begin() - pc_return_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    return (pc() - pc_return_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// Change the pc in a frame object. This does not change the actual pc in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
// actual frame. To do that use patch_pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
void frame::set_pc(address   newpc ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  if (_cb != NULL && _cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant violation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // Unsafe to use the is_deoptimzed tester after changing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _deopt_state = unknown;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  _pc = newpc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  _cb = CodeCache::find_blob_unsafe(_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// type testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
bool frame::is_deoptimized_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  assert(_deopt_state != unknown, "not answerable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  return _deopt_state == is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
bool frame::is_native_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  return (_cb != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
          _cb->is_nmethod() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
          ((nmethod*)_cb)->is_native_method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
bool frame::is_java_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  if (is_interpreted_frame()) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  if (is_compiled_frame())    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
bool frame::is_compiled_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (_cb != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      _cb->is_nmethod() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      ((nmethod*)_cb)->is_java_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
bool frame::is_runtime_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  return (_cb != NULL && _cb->is_runtime_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
bool frame::is_safepoint_blob_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  return (_cb != NULL && _cb->is_safepoint_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
bool frame::is_first_java_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  RegisterMap map(JavaThread::current(), false); // No update
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  frame s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  return s.is_first_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
bool frame::entry_frame_is_first() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  return entry_frame_call_wrapper()->anchor()->last_Java_sp() == NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
bool frame::should_be_deoptimized() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  if (_deopt_state == is_deoptimized ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
      !is_compiled_frame() ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  assert(_cb != NULL && _cb->is_nmethod(), "must be an nmethod");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  nmethod* nm = (nmethod *)_cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  if (TraceDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    tty->print("checking (%s) ", nm->is_marked_for_deoptimization() ? "true" : "false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    nm->print_value_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  if( !nm->is_marked_for_deoptimization() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // If at the return point, then the frame has already been popped, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // only the return needs to be executed. Don't deoptimize here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  return !nm->is_at_poll_return(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
bool frame::can_be_deoptimized() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  if (!is_compiled_frame()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  nmethod* nm = (nmethod*)_cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  if( !nm->can_be_deoptimized() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  return !nm->is_at_poll_return(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
void frame::deoptimize(JavaThread* thread, bool thread_is_known_safe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// Schedule deoptimization of an nmethod activation with this frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Store the original pc before an patch (or request to self-deopt)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // in the published location of the frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  assert(_cb != NULL && _cb->is_nmethod(), "must be");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  nmethod* nm = (nmethod*)_cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // This is a fix for register window patching race
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (NeedsDeoptSuspend && !thread_is_known_safe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    // It is possible especially with DeoptimizeALot/DeoptimizeRandom that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // we could see the frame again and ask for it to be deoptimized since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // it might move for a long time. That is harmless and we just ignore it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    if (id() == thread->must_deopt_id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      assert(thread->is_deopt_suspend(), "lost suspension");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    // We are at a safepoint so the target thread can only be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    // in 4 states:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    //     blocked - no problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    //     blocked_trans - no problem (i.e. could have woken up from blocked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    //                                 during a safepoint).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    //     native - register window pc patching race
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    //     native_trans - momentary state
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    // We could just wait out a thread in native_trans to block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    // Then we'd have all the issues that the safepoint code has as to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    // whether to spin or block. It isn't worth it. Just treat it like
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    // native and be done with it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    JavaThreadState state = thread->thread_state();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    if (state == _thread_in_native || state == _thread_in_native_trans) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
      // Since we are at a safepoint the target thread will stop itself
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      // before it can return to java as long as we remain at the safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      // Therefore we can put an additional request for the thread to stop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
      // no matter what no (like a suspend). This will cause the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      // to notice it needs to do the deopt on its own once it leaves native.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      // The only reason we must do this is because on machine with register
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      // windows we have a race with patching the return address and the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      // window coming live as the thread returns to the Java code (but still
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      // in native mode) and then blocks. It is only this top most frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      // that is at risk. So in truth we could add an additional check to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      // see if this frame is one that is at risk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      frame at_risk =  thread->last_frame().sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      if (id() == at_risk.id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
        thread->set_must_deopt_id(id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
        thread->set_deopt_suspend();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
        return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  } // NeedsDeoptSuspend
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  address deopt = nm->deopt_handler_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // Save the original pc before we patch in the new one
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  nm->set_original_pc(this, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  patch_pc(thread, deopt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    frame check = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    while (id() != check.id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      check = check.sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    assert(check.is_deoptimized_frame(), "missed deopt");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
frame frame::java_sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  RegisterMap map(JavaThread::current(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  frame s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map)) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  guarantee(s.is_java_frame(), "tried to get caller of first java frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
frame frame::real_sender(RegisterMap* map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  frame result = sender(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  while (result.is_runtime_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    result = result.sender(map);
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
// Note: called by profiler - NOT for current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
frame frame::profile_find_Java_sender_frame(JavaThread *thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
// If we don't recognize this frame, walk back up the stack until we do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  frame first_java_frame = frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Find the first Java frame on the stack starting with input frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  if (is_java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    // top frame is compiled frame or deoptimized frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    first_java_frame = *this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  } else if (safe_for_sender(thread)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    for (frame sender_frame = sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      sender_frame.safe_for_sender(thread) && !sender_frame.is_first_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      sender_frame = sender_frame.sender(&map)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      if (sender_frame.is_java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
        first_java_frame = sender_frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  return first_java_frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
// Interpreter frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
void frame::interpreter_frame_set_locals(intptr_t* locs)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  *interpreter_frame_locals_addr() = locs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
methodOop frame::interpreter_frame_method() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  methodOop m = *interpreter_frame_method_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  assert(m->is_perm(), "bad methodOop in interpreter frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  assert(m->is_method(), "not a methodOop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  return m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
void frame::interpreter_frame_set_method(methodOop method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  *interpreter_frame_method_addr() = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
void frame::interpreter_frame_set_bcx(intptr_t bcx) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  if (ProfileInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    bool formerly_bci = is_bci(interpreter_frame_bcx());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    bool is_now_bci = is_bci(bcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    *interpreter_frame_bcx_addr() = bcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    intptr_t mdx = interpreter_frame_mdx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    if (mdx != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      if (formerly_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
        if (!is_now_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
          // The bcx was just converted from bci to bcp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
          // Convert the mdx in parallel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
          methodDataOop mdo = interpreter_frame_method()->method_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
          assert(mdo != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
          int mdi = mdx - 1; // We distinguish valid mdi from zero by adding one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
          address mdp = mdo->di_to_dp(mdi);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
          interpreter_frame_set_mdx((intptr_t)mdp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
        if (is_now_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
          // The bcx was just converted from bcp to bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
          // Convert the mdx in parallel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
          methodDataOop mdo = interpreter_frame_method()->method_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
          assert(mdo != NULL, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
          int mdi = mdo->dp_to_di((address)mdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
          interpreter_frame_set_mdx((intptr_t)mdi + 1); // distinguish valid from 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    *interpreter_frame_bcx_addr() = bcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
jint frame::interpreter_frame_bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  intptr_t bcx = interpreter_frame_bcx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  return is_bci(bcx) ? bcx : interpreter_frame_method()->bci_from((address)bcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
void frame::interpreter_frame_set_bci(jint bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  assert(!is_bci(interpreter_frame_bcx()), "should not set bci during GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  interpreter_frame_set_bcx((intptr_t)interpreter_frame_method()->bcp_from(bci));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
address frame::interpreter_frame_bcp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  intptr_t bcx = interpreter_frame_bcx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  return is_bci(bcx) ? interpreter_frame_method()->bcp_from(bcx) : (address)bcx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
void frame::interpreter_frame_set_bcp(address bcp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  assert(!is_bci(interpreter_frame_bcx()), "should not set bcp during GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  interpreter_frame_set_bcx((intptr_t)bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
void frame::interpreter_frame_set_mdx(intptr_t mdx) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  *interpreter_frame_mdx_addr() = mdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
address frame::interpreter_frame_mdp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  intptr_t bcx = interpreter_frame_bcx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  intptr_t mdx = interpreter_frame_mdx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  assert(!is_bci(bcx), "should not access mdp during GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  return (address)mdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
void frame::interpreter_frame_set_mdp(address mdp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  if (mdp == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    // Always allow the mdp to be cleared.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    interpreter_frame_set_mdx((intptr_t)mdp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  intptr_t bcx = interpreter_frame_bcx();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  assert(!is_bci(bcx), "should not set mdp during GC");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  interpreter_frame_set_mdx((intptr_t)mdp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
BasicObjectLock* frame::next_monitor_in_interpreter_frame(BasicObjectLock* current) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  interpreter_frame_verify_monitor(current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  BasicObjectLock* next = (BasicObjectLock*) (((intptr_t*) current) + interpreter_frame_monitor_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
BasicObjectLock* frame::previous_monitor_in_interpreter_frame(BasicObjectLock* current) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
//   // This verification needs to be checked before being enabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
//   interpreter_frame_verify_monitor(current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  BasicObjectLock* previous = (BasicObjectLock*) (((intptr_t*) current) - interpreter_frame_monitor_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  return previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
// Interpreter locals and expression stack locations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
intptr_t* frame::interpreter_frame_local_at(int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  const int n = Interpreter::local_offset_in_bytes(index)/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  return &((*interpreter_frame_locals_addr())[n]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
frame::Tag frame::interpreter_frame_local_tag(int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  const int n = Interpreter::local_tag_offset_in_bytes(index)/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  return (Tag)(*interpreter_frame_locals_addr()) [n];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
void frame::interpreter_frame_set_local_tag(int index, Tag tag) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  const int n = Interpreter::local_tag_offset_in_bytes(index)/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  (*interpreter_frame_locals_addr())[n] = (intptr_t)tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
intptr_t* frame::interpreter_frame_expression_stack_at(jint offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  const int i = offset * interpreter_frame_expression_stack_direction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  const int n = ((i * Interpreter::stackElementSize()) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
                 Interpreter::value_offset_in_bytes())/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  return &(interpreter_frame_expression_stack()[n]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
frame::Tag frame::interpreter_frame_expression_stack_tag(jint offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  const int i = offset * interpreter_frame_expression_stack_direction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  const int n = ((i * Interpreter::stackElementSize()) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
                 Interpreter::tag_offset_in_bytes())/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  return (Tag)(interpreter_frame_expression_stack()[n]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
void frame::interpreter_frame_set_expression_stack_tag(jint offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
                                                       Tag tag) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  const int i = offset * interpreter_frame_expression_stack_direction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  const int n = ((i * Interpreter::stackElementSize()) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
                 Interpreter::tag_offset_in_bytes())/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  interpreter_frame_expression_stack()[n] = (intptr_t)tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
jint frame::interpreter_frame_expression_stack_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  // Number of elements on the interpreter expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // Callers should span by stackElementWords
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  int element_size = Interpreter::stackElementWords();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  if (frame::interpreter_frame_expression_stack_direction() < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    return (interpreter_frame_expression_stack() -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
            interpreter_frame_tos_address() + 1)/element_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    return (interpreter_frame_tos_address() -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
            interpreter_frame_expression_stack() + 1)/element_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// (frame::interpreter_frame_sender_sp accessor is in frame_<arch>.cpp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
const char* frame::print_name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  if (is_native_frame())      return "Native";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  if (is_interpreted_frame()) return "Interpreted";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (is_compiled_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
    if (is_deoptimized_frame()) return "Deoptimized";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    return "Compiled";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  if (sp() == NULL)            return "Empty";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  return "C";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
void frame::print_value_on(outputStream* st, JavaThread *thread) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  NOT_PRODUCT(address begin = pc()-40;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  NOT_PRODUCT(address end   = NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  st->print("%s frame (sp=" INTPTR_FORMAT " unextended sp=" INTPTR_FORMAT, print_name(), sp(), unextended_sp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  if (sp() != NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
    st->print(", fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT, fp(), pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  if (StubRoutines::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    st->print_cr(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    st->print("(");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    st->print("~Stub::%s", desc->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    NOT_PRODUCT(begin = desc->begin(); end = desc->end();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  } else if (Interpreter::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    st->print_cr(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    st->print("(");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    InterpreterCodelet* desc = Interpreter::codelet_containing(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    if (desc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      st->print("~");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      desc->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
      NOT_PRODUCT(begin = desc->code_begin(); end = desc->code_end();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      st->print("~interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  st->print_cr(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  if (_cb != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    st->print("     ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    _cb->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
    if (end == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      begin = _cb->instructions_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      end = _cb->instructions_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  NOT_PRODUCT(if (WizardMode && Verbose) Disassembler::decode(begin, end);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
void frame::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  print_value_on(st,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  if (is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    interpreter_frame_print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
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
void frame::interpreter_frame_print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  jint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  for (i = 0; i < interpreter_frame_method()->max_locals(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    intptr_t x = *interpreter_frame_local_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    st->print(" - local  [" INTPTR_FORMAT "]", x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      Tag x = interpreter_frame_local_tag(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
      st->print(" - local tag [" INTPTR_FORMAT "]", x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
    st->print_cr("; #%d", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  for (i = interpreter_frame_expression_stack_size() - 1; i >= 0; --i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    intptr_t x = *interpreter_frame_expression_stack_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
    st->print(" - stack  [" INTPTR_FORMAT "]", x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
      Tag x = interpreter_frame_expression_stack_tag(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
      st->print(" - stack tag [" INTPTR_FORMAT "]", x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    st->print_cr("; #%d", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // locks for synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  for (BasicObjectLock* current = interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
       current < interpreter_frame_monitor_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
       current = next_monitor_in_interpreter_frame(current)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
    st->print_cr(" [ - obj ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    current->obj()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
    st->print_cr(" - lock ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    current->lock()->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  // monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  st->print_cr(" - monitor[" INTPTR_FORMAT "]", interpreter_frame_monitor_begin());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // bcp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  st->print(" - bcp    [" INTPTR_FORMAT "]", interpreter_frame_bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  st->print_cr("; @%d", interpreter_frame_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  // locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  st->print_cr(" - locals [" INTPTR_FORMAT "]", interpreter_frame_local_at(0));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  // method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  st->print(" - method [" INTPTR_FORMAT "]", (address)interpreter_frame_method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  st->print("; ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  interpreter_frame_method()->print_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
// Return whether the frame is in the VM or os indicating a Hotspot problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
// Otherwise, it's likely a bug in the native library that the Java code calls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
// hopefully indicating where to submit bugs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
static void print_C_frame(outputStream* st, char* buf, int buflen, address pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  // C/C++ frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  bool in_vm = os::address_is_in_vm(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  st->print(in_vm ? "V" : "C");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  int offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  bool found;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  // libname
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  found = os::dll_address_to_library_name(pc, buf, buflen, &offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  if (found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    // skip directory names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    const char *p1, *p2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
    p1 = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
    int len = (int)strlen(os::file_separator());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    while ((p2 = strstr(p1, os::file_separator())) != NULL) p1 = p2 + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    st->print("  [%s+0x%x]", p1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
    st->print("  " PTR_FORMAT, pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  // function name - os::dll_address_to_function_name() may return confusing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  // names if pc is within jvm.dll or libjvm.so, because JVM only has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  // JVM_xxxx and a few other symbols in the dynamic symbol table. Do this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  // only for native libraries.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  if (!in_vm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
    found = os::dll_address_to_function_name(pc, buf, buflen, &offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    if (found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
      st->print("  %s+0x%x", buf, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
// frame::print_on_error() is called by fatal error handler. Notice that we may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
// crash inside this function if stack frame is corrupted. The fatal error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
// handler can catch and handle the crash. Here we assume the frame is valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
// First letter indicates type of the frame:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
//    J: Java frame (compiled)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
//    j: Java frame (interpreted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
//    V: VM frame (C/C++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
//    v: Other frames running VM generated code (e.g. stubs, adapters, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
//    C: C/C++ frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
// We don't need detailed frame type as that in frame::print_name(). "C"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
// suggests the problem is in user lib; everything else is likely a VM bug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
void frame::print_on_error(outputStream* st, char* buf, int buflen, bool verbose) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  if (_cb != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    if (Interpreter::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      methodOop m = this->interpreter_frame_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      if (m != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
        m->name_and_sig_as_C_string(buf, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
        st->print("j  %s", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
        st->print("+%d", this->interpreter_frame_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
        st->print("j  " PTR_FORMAT, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    } else if (StubRoutines::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
      StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
      if (desc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
        st->print("v  ~StubRoutines::%s", desc->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
        st->print("v  ~StubRoutines::" PTR_FORMAT, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    } else if (_cb->is_buffer_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
      st->print("v  ~BufferBlob::%s", ((BufferBlob *)_cb)->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    } else if (_cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      methodOop m = ((nmethod *)_cb)->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
      if (m != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
        m->name_and_sig_as_C_string(buf, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
        st->print("J  %s", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
        st->print("J  " PTR_FORMAT, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    } else if (_cb->is_runtime_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      st->print("v  ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    } else if (_cb->is_deoptimization_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
      st->print("v  ~DeoptimizationBlob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    } else if (_cb->is_exception_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
      st->print("v  ~ExceptionBlob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    } else if (_cb->is_safepoint_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
      st->print("v  ~SafepointBlob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
      st->print("v  blob " PTR_FORMAT, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    print_C_frame(st, buf, buflen, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  The interpreter_frame_expression_stack_at method in the case of SPARC needs the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  max_stack value of the method in order to compute the expression stack address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  It uses the methodOop in order to get the max_stack value but during GC this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  methodOop value saved on the frame is changed by reverse_and_push and hence cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  be used. So we save the max_stack value in the FrameClosure object and pass it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  down to the interpreter_frame_expression_stack_at method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
class InterpreterFrameClosure : public OffsetClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  frame* _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  OopClosure* _f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  int    _max_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  int    _max_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  InterpreterFrameClosure(frame* fr, int max_locals, int max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
                          OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    _fr         = fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    _max_locals = max_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    _max_stack  = max_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    _f          = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  void offset_do(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
    oop* addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    if (offset < _max_locals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
      addr = (oop*) _fr->interpreter_frame_local_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
      assert((intptr_t*)addr >= _fr->sp(), "must be inside the frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
      _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
      addr = (oop*) _fr->interpreter_frame_expression_stack_at((offset - _max_locals));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
      // In case of exceptions, the expression stack is invalid and the esp will be reset to express
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
      // this condition. Therefore, we call f only if addr is 'inside' the stack (i.e., addr >= esp for Intel).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
      bool in_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
      if (frame::interpreter_frame_expression_stack_direction() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
        in_stack = (intptr_t*)addr <= _fr->interpreter_frame_tos_address();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
        in_stack = (intptr_t*)addr >= _fr->interpreter_frame_tos_address();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      if (in_stack) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
        _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  int max_locals()  { return _max_locals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  frame* fr()       { return _fr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
class InterpretedArgumentOopFinder: public SignatureInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  OopClosure* _f;      // Closure to invoke
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  int    _offset;      // TOS-relative offset, decremented with each argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  bool   _is_static;   // true if the callee is a static method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  frame* _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  void set(int size, BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
    _offset -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
    if (type == T_OBJECT || type == T_ARRAY) oop_offset_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  void oop_offset_do() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
    oop* addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    addr = (oop*)_fr->interpreter_frame_tos_at(_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  InterpretedArgumentOopFinder(symbolHandle signature, bool is_static, frame* fr, OopClosure* f) : SignatureInfo(signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
    // compute size of arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    int args_size = ArgumentSizeComputer(signature).size() + (is_static ? 0 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    assert(!fr->is_interpreted_frame() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
           args_size <= fr->interpreter_frame_expression_stack_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
            "args cannot be on stack anymore");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
    // initialize InterpretedArgumentOopFinder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
    _f         = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    _fr        = fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    _offset    = args_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    _is_static = is_static;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  void oops_do() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    if (!_is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      --_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      oop_offset_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    iterate_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
// Entry frame has following form (n arguments)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
//         +-----------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
//   sp -> |  last arg |
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
//         +-----------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
//         :    :::    :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
//         +-----------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
// (sp+n)->|  first arg|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
//         +-----------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
// visits and GC's all the arguments in entry frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
class EntryFrameOopFinder: public SignatureInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  bool   _is_static;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  int    _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  frame* _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  OopClosure* _f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  void set(int size, BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    assert (_offset >= 0, "illegal offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    if (type == T_OBJECT || type == T_ARRAY) oop_at_offset_do(_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    _offset -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  void oop_at_offset_do(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    assert (offset >= 0, "illegal offset")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    oop* addr = (oop*) _fr->entry_frame_argument_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
   EntryFrameOopFinder(frame* frame, symbolHandle signature, bool is_static) : SignatureInfo(signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
     _f = NULL; // will be set later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
     _fr = frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
     _is_static = is_static;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
     _offset = ArgumentSizeComputer(signature).size() - 1; // last parameter is at index 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  void arguments_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    _f = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    if (!_is_static) oop_at_offset_do(_offset+1); // do the receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    iterate_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
oop* frame::interpreter_callee_receiver_addr(symbolHandle signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  ArgumentSizeComputer asc(signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  int size = asc.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  return (oop *)interpreter_frame_tos_at(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
void frame::oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool query_oop_map_cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  assert(map != NULL, "map must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  methodHandle m (thread, interpreter_frame_method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  jint      bci = interpreter_frame_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  assert(Universe::heap()->is_in(m()), "must be valid oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  assert(m->is_method(), "checking frame value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  assert((m->is_native() && bci == 0)  || (!m->is_native() && bci >= 0 && bci < m->code_size()), "invalid bci value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  // Handle the monitor elements in the activation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  for (
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    BasicObjectLock* current = interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
    current < interpreter_frame_monitor_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
    current = next_monitor_in_interpreter_frame(current)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
    interpreter_frame_verify_monitor(current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    current->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  // process fixed part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  f->do_oop((oop*)interpreter_frame_method_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  f->do_oop((oop*)interpreter_frame_cache_addr());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  // Hmm what about the mdp?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  // Interpreter frame in the midst of a call have a methodOop within the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  // object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  interpreterState istate = get_interpreterState();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  if (istate->msg() == BytecodeInterpreter::call_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
    f->do_oop((oop*)&istate->_result._to_call._callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  if (m->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
#ifdef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    f->do_oop((oop*)&istate->_oop_temp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
    f->do_oop((oop*)( fp() + interpreter_frame_oop_temp_offset ));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
#endif /* CC_INTERP */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
  symbolHandle signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  bool is_static = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  // Process a callee's arguments if we are at a call site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  // (i.e., if we are at an invoke bytecode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  // This is used sometimes for calling into the VM, not for another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  // interpreted or compiled frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  if (!m->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    Bytecode_invoke *call = Bytecode_invoke_at_check(m, bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    if (call != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
      signature = symbolHandle(thread, call->signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
      is_static = call->is_invokestatic();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
      if (map->include_argument_oops() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
          interpreter_frame_expression_stack_size() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
        ResourceMark rm(thread);  // is this right ???
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
        // we are at a call site & the expression stack is not empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
        // => process callee's arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
        //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
        // Note: The expression stack can be empty if an exception
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1497
diff changeset
   933
        //       occurred during method resolution/execution. In all
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
        //       cases we empty the expression stack completely be-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
        //       fore handling the exception (the exception handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
        //       code in the interpreter calls a blocking runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        //       routine which can cause this code to be executed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
        //       (was bug gri 7/27/98)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
        oops_interpreted_arguments_do(signature, is_static, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    // process locals & expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    InterpreterOopMap *mask = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    InterpreterOopMap oopmap_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
    OopMapCache::compute_one_oop_map(m, bci, &oopmap_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
    mask = &oopmap_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    oops_interpreted_locals_do(f, max_locals, mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    oops_interpreted_expressions_do(f, signature, is_static,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
                                    m->max_stack(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
                                    max_locals, mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    InterpreterFrameClosure blk(this, max_locals, m->max_stack(), f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    // process locals & expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
    InterpreterOopMap mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    if (query_oop_map_cache) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
      m->mask_for(bci, &mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      OopMapCache::compute_one_oop_map(m, bci, &mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
    mask.iterate_oop(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
void frame::oops_interpreted_locals_do(OopClosure *f,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
                                      int max_locals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
                                      InterpreterOopMap *mask) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  // Process locals then interpreter expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  for (int i = 0; i < max_locals; i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    Tag tag = interpreter_frame_local_tag(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    if (tag == TagReference) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      oop* addr = (oop*) interpreter_frame_local_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
      assert((intptr_t*)addr >= sp(), "must be inside the frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
      f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
      assert(tag == TagValue, "bad tag value for locals");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
      oop* p = (oop*) interpreter_frame_local_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
      // Not always true - too bad.  May have dead oops without tags in locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      // assert(*p == NULL || !(*p)->is_oop(), "oop not tagged on interpreter locals");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
      assert(*p == NULL || !mask->is_oop(i), "local oop map mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
void frame::oops_interpreted_expressions_do(OopClosure *f,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
                                      symbolHandle signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
                                      bool is_static,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
                                      int max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
                                      int max_locals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
                                      InterpreterOopMap *mask) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  // There is no stack no matter what the esp is pointing to (native methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
  // might look like expression stack is nonempty).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  if (max_stack == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  // Point the top of the expression stack above arguments to a call so
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  // arguments aren't gc'ed as both stack values for callee and callee
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  // arguments in callee's locals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  int args_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  if (!signature.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
    args_size = ArgumentSizeComputer(signature).size() + (is_static ? 0 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
  intptr_t *tos_addr = interpreter_frame_tos_at(args_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  assert(args_size != 0 || tos_addr == interpreter_frame_tos_address(), "these are same");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  intptr_t *frst_expr = interpreter_frame_expression_stack_at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  // In case of exceptions, the expression stack is invalid and the esp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  // will be reset to express this condition. Therefore, we call f only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  // if addr is 'inside' the stack (i.e., addr >= esp for Intel).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  bool in_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  if (interpreter_frame_expression_stack_direction() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
    in_stack = (intptr_t*)frst_expr <= tos_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
    in_stack = (intptr_t*)frst_expr >= tos_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  if (!in_stack) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  jint stack_size = interpreter_frame_expression_stack_size() - args_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  for (int j = 0; j < stack_size; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
    Tag tag = interpreter_frame_expression_stack_tag(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
    if (tag == TagReference) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
      oop *addr = (oop*) interpreter_frame_expression_stack_at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
      f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
      assert(tag == TagValue, "bad tag value for stack element");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
      oop *p = (oop*) interpreter_frame_expression_stack_at((j));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
      assert(*p == NULL || !mask->is_oop(j+max_locals), "stack oop map mismatch");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
void frame::oops_interpreted_arguments_do(symbolHandle signature, bool is_static, OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
  InterpretedArgumentOopFinder finder(signature, is_static, this, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  finder.oops_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1046
void frame::oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* reg_map) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  assert(_cb != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  if (_cb->oop_maps() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
    OopMapSet::oops_do(this, reg_map, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    // Preserve potential arguments for a callee. We handle this by dispatching
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
    // on the codeblob. For c2i, we do
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
    if (reg_map->include_argument_oops()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
      _cb->preserve_callee_argument_oops(*this, reg_map, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  // In cases where perm gen is collected, GC will want to mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  // oops referenced from nmethods active on thread stacks so as to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
  // prevent them from being collected. However, this visit should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  // restricted to certain phases of the collection only. The
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1061
  // closure decides how it wants nmethods to be traced.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1062
  if (cf != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1063
    cf->do_code_blob(_cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
class CompiledArgumentOopFinder: public SignatureInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  OopClosure*     _f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  int             _offset;      // the current offset, incremented with each argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  bool            _is_static;   // true if the callee is a static method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  frame           _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  RegisterMap*    _reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  int             _arg_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  VMRegPair*      _regs;        // VMReg list of arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  void set(int size, BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    if (type == T_OBJECT || type == T_ARRAY) handle_oop_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    _offset += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  virtual void handle_oop_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    // Extract low order register number from register array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    // In LP64-land, the high-order bits are valid but unhelpful.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
    VMReg reg = _regs[_offset].first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
    oop *loc = _fr.oopmapreg_to_location(reg, _reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
    _f->do_oop(loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  CompiledArgumentOopFinder(symbolHandle signature, bool is_static, OopClosure* f, frame fr,  const RegisterMap* reg_map)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    : SignatureInfo(signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
    // initialize CompiledArgumentOopFinder
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    _f         = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    _offset    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    _is_static = is_static;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    _fr        = fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    _reg_map   = (RegisterMap*)reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
    _arg_size  = ArgumentSizeComputer(signature).size() + (is_static ? 0 : 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
    int arg_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
    _regs = SharedRuntime::find_callee_arguments(signature(), is_static, &arg_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    assert(arg_size == _arg_size, "wrong arg size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  void oops_do() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
    if (!_is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
      handle_oop_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
      _offset++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
    iterate_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
void frame::oops_compiled_arguments_do(symbolHandle signature, bool is_static, const RegisterMap* reg_map, OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  CompiledArgumentOopFinder finder(signature, is_static, f, *this, reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  finder.oops_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
// Get receiver out of callers frame, i.e. find parameter 0 in callers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
// frame.  Consult ADLC for where parameter 0 is to be found.  Then
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
// check local reg_map for it being a callee-save register or argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
// register, both of which are saved in the local frame.  If not found
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
// there, it must be an in-stack argument of the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
// Note: caller.sp() points to callee-arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
oop frame::retrieve_receiver(RegisterMap* reg_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  frame caller = *this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
  // First consult the ADLC on where it puts parameter 0 for this signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  VMReg reg = SharedRuntime::name_for_receiver();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  oop r = *caller.oopmapreg_to_location(reg, reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  assert( Universe::heap()->is_in_or_null(r), "bad receiver" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
oop* frame::oopmapreg_to_location(VMReg reg, const RegisterMap* reg_map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  if(reg->is_reg()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    // If it is passed in a register, it got spilled in the stub frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
    return (oop *)reg_map->location(reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  } else {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1144
    int sp_offset_in_bytes = reg->reg2stack() * VMRegImpl::stack_slot_size;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1145
    return (oop*)(((address)unextended_sp()) + sp_offset_in_bytes);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
BasicLock* frame::compiled_synchronized_native_monitor(nmethod* nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  if (nm == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
    assert(_cb != NULL && _cb->is_nmethod() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
           nm->method()->is_native() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
           nm->method()->is_synchronized(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
           "should not call this otherwise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
    nm = (nmethod*) _cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  int byte_offset = in_bytes(nm->compiled_synchronized_native_basic_lock_sp_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  assert(byte_offset >= 0, "should not see invalid offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
  return (BasicLock*) &sp()[byte_offset / wordSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
oop frame::compiled_synchronized_native_monitor_owner(nmethod* nm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
  if (nm == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
    assert(_cb != NULL && _cb->is_nmethod() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
           nm->method()->is_native() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
           nm->method()->is_synchronized(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
           "should not call this otherwise");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
    nm = (nmethod*) _cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  int byte_offset = in_bytes(nm->compiled_synchronized_native_basic_lock_owner_sp_offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  assert(byte_offset >= 0, "should not see invalid offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  oop owner = ((oop*) sp())[byte_offset / wordSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  assert( Universe::heap()->is_in(owner), "bad receiver" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  return owner;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
void frame::oops_entry_do(OopClosure* f, const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  assert(map != NULL, "map must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  if (map->include_argument_oops()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
    // must collect argument oops, as nobody else is doing it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
    Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
    methodHandle m (thread, entry_frame_call_wrapper()->callee_method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
    symbolHandle signature (thread, m->signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
    EntryFrameOopFinder finder(this, signature, m->is_static());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
    finder.arguments_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
  // Traverse the Handle Block saved in the entry frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  entry_frame_call_wrapper()->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1192
void frame::oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
         if (is_interpreted_frame())    { oops_interpreted_do(f, map, use_interpreter_oop_map_cache);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  } else if (is_entry_frame())          { oops_entry_do      (f, map);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1195
  } else if (CodeCache::contains(pc())) { oops_code_blob_do  (f, cf, map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1201
void frame::nmethods_do(CodeBlobClosure* cf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
  if (_cb != NULL && _cb->is_nmethod()) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1203
    cf->do_code_blob(_cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
void frame::gc_prologue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  if (is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
    // set bcx to bci to become methodOop position independent during GC
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
    interpreter_frame_set_bcx(interpreter_frame_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
void frame::gc_epilogue() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
  if (is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
    // set bcx back to bcp for interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
    interpreter_frame_set_bcx((intptr_t)interpreter_frame_bcp());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  // call processor specific epilog function
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  pd_gc_epilog();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
# ifdef ENABLE_ZAP_DEAD_LOCALS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
void frame::CheckValueClosure::do_oop(oop* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  if (CheckOopishValues && Universe::heap()->is_in_reserved(*p)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
    warning("value @ " INTPTR_FORMAT " looks oopish (" INTPTR_FORMAT ") (thread = " INTPTR_FORMAT ")", p, (address)*p, Thread::current());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
frame::CheckValueClosure frame::_check_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
void frame::CheckOopClosure::do_oop(oop* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  if (*p != NULL && !(*p)->is_oop()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
    warning("value @ " INTPTR_FORMAT " should be an oop (" INTPTR_FORMAT ") (thread = " INTPTR_FORMAT ")", p, (address)*p, Thread::current());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
 }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
frame::CheckOopClosure frame::_check_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
void frame::check_derived_oop(oop* base, oop* derived) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  _check_oop.do_oop(base);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
void frame::ZapDeadClosure::do_oop(oop* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
  if (TraceZapDeadLocals) tty->print_cr("zapping @ " INTPTR_FORMAT " containing " INTPTR_FORMAT, p, (address)*p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
  // Need cast because on _LP64 the conversion to oop is ambiguous.  Constant
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
  // can be either long or int.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
  *p = (oop)(int)0xbabebabe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
frame::ZapDeadClosure frame::_zap_dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
void frame::zap_dead_locals(JavaThread* thread, const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  assert(thread == Thread::current(), "need to synchronize to do this to another thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  // Tracing - part 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  if (TraceZapDeadLocals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
    ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
    tty->print_cr("--------------------------------------------------------------------------------");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
    tty->print("Zapping dead locals in ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
    print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  // Zapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
       if (is_entry_frame      ()) zap_dead_entry_locals      (thread, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
  else if (is_interpreted_frame()) zap_dead_interpreted_locals(thread, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  else if (is_compiled_frame()) zap_dead_compiled_locals   (thread, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
    // could be is_runtime_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
    // so remove error: ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
    ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  // Tracing - part 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
  if (TraceZapDeadLocals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
void frame::zap_dead_interpreted_locals(JavaThread *thread, const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  // get current interpreter 'pc'
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
  methodOop m   = interpreter_frame_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  int       bci = interpreter_frame_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  if (TaggedStackInterpreter) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
    InterpreterOopMap *mask = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
    InterpreterOopMap oopmap_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
    methodHandle method(thread, m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
    OopMapCache::compute_one_oop_map(method, bci, &oopmap_mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    mask = &oopmap_mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
    oops_interpreted_locals_do(&_check_oop, max_locals, mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
    // process dynamic part
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
    InterpreterFrameClosure value_blk(this, max_locals, m->max_stack(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
                                      &_check_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    InterpreterFrameClosure   oop_blk(this, max_locals, m->max_stack(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
                                      &_check_oop  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
    InterpreterFrameClosure  dead_blk(this, max_locals, m->max_stack(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
                                      &_zap_dead   );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
    // get frame map
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    InterpreterOopMap mask;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
    m->mask_for(bci, &mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
    mask.iterate_all( &oop_blk, &value_blk, &dead_blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
void frame::zap_dead_compiled_locals(JavaThread* thread, const RegisterMap* reg_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  ResourceMark rm(thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  assert(_cb != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  if (_cb->oop_maps() != NULL) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
  1321
    OopMapSet::all_do(this, reg_map, &_check_oop, check_derived_oop, &_check_value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
void frame::zap_dead_entry_locals(JavaThread*, const RegisterMap*) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
  if (TraceZapDeadLocals) warning("frame::zap_dead_entry_locals unimplemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
void frame::zap_dead_deoptimized_locals(JavaThread*, const RegisterMap*) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  if (TraceZapDeadLocals) warning("frame::zap_dead_deoptimized_locals unimplemented");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
# endif // ENABLE_ZAP_DEAD_LOCALS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
void frame::verify(const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  // for now make sure receiver type is correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  if (is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
    methodOop method = interpreter_frame_method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
    guarantee(method->is_method(), "method is wrong in frame::verify");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
    if (!method->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
      // fetch the receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
      oop* p = (oop*) interpreter_frame_local_at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
      // make sure we have the right receiver type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  COMPILER2_PRESENT(assert(DerivedPointerTable::is_empty(), "must be empty before verify");)
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1349
  oops_do_internal(&VerifyOopClosure::verify_oop, NULL, (RegisterMap*)map, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
bool frame::verify_return_pc(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  if (StubRoutines::returns_to_call_stub(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  if (CodeCache::contains(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  if (Interpreter::contains(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
void frame::interpreter_frame_verify_monitor(BasicObjectLock* value) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  // verify that the value is in the right part of the frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  address low_mark  = (address) interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  address high_mark = (address) interpreter_frame_monitor_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  address current   = (address) value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
  const int monitor_size = frame::interpreter_frame_monitor_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  guarantee((high_mark - current) % monitor_size  ==  0         , "Misaligned top of BasicObjectLock*");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  guarantee( high_mark > current                                , "Current BasicObjectLock* higher than high_mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  guarantee((current - low_mark) % monitor_size  ==  0         , "Misaligned bottom of BasicObjectLock*");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  guarantee( current >= low_mark                               , "Current BasicObjectLock* below than low_mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
//-----------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
// StackFrameStream implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
StackFrameStream::StackFrameStream(JavaThread *thread, bool update) : _reg_map(thread, update) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  assert(thread->has_last_Java_frame(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
  _fr = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  _is_done = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
}