src/hotspot/share/runtime/frame.cpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 58273 08a5148e7c4e
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53547
9d1a788dea3d 8217921: Runtime dead code removal
redestad
parents: 51529
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5426
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    25
#include "precompiled.hpp"
54347
235883996bc7 8221698: Remove redundant includes from popular header files
iklam
parents: 54150
diff changeset
    26
#include "classfile/moduleEntry.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25468
diff changeset
    27
#include "code/codeCache.hpp"
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25468
diff changeset
    28
#include "code/vmreg.inline.hpp"
19334
3aa9ca404965 8021898: Broken JIT compiler optimization for loop unswitching
kvn
parents: 18938
diff changeset
    29
#include "compiler/abstractCompiler.hpp"
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 13728
diff changeset
    30
#include "compiler/disassembler.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30144
diff changeset
    31
#include "gc/shared/collectedHeap.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    32
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    33
#include "interpreter/oopMapCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    34
#include "memory/resourceArea.hpp"
49359
59f6547e151f 8199264: Remove universe.inline.hpp to simplify include dependencies
stefank
parents: 47799
diff changeset
    35
#include "memory/universe.hpp"
57811
947252a54b98 8229838: Rename markOop files to markWord
stefank
parents: 54669
diff changeset
    36
#include "oops/markWord.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30144
diff changeset
    37
#include "oops/method.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    38
#include "oops/methodData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    39
#include "oops/oop.inline.hpp"
29084
1b732f2836ce 8073387: Move VerifyOopClosures out from genOopClosures.hpp
stefank
parents: 29081
diff changeset
    40
#include "oops/verifyOopClosure.hpp"
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 9437
diff changeset
    41
#include "prims/methodHandles.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    42
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    43
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    44
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    45
#include "runtime/monitorChunk.hpp"
25468
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 25351
diff changeset
    46
#include "runtime/os.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    47
#include "runtime/sharedRuntime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    48
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    49
#include "runtime/stubCodeGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7109
diff changeset
    50
#include "runtime/stubRoutines.hpp"
25351
7c198a690050 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents: 24424
diff changeset
    51
#include "runtime/thread.inline.hpp"
46560
388aa8d67c80 8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents: 42650
diff changeset
    52
#include "utilities/debug.hpp"
7447
32c42d627f41 7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents: 7397
diff changeset
    53
#include "utilities/decoder.hpp"
46560
388aa8d67c80 8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents: 42650
diff changeset
    54
#include "utilities/formatBuffer.hpp"
7447
32c42d627f41 7003748: Decode C stack frames when symbols are presented (PhoneHome project)
zgu
parents: 7397
diff changeset
    55
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
RegisterMap::RegisterMap(JavaThread *thread, bool update_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _thread         = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _update_map     = update_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  debug_only(_update_for_id = NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  for (int i = 0; i < reg_count ; i++ ) _location[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
RegisterMap::RegisterMap(const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  assert(map != this, "bad initialization parameter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  assert(map != NULL, "RegisterMap must be present");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _thread                = map->thread();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _update_map            = map->update_map();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  _include_argument_oops = map->include_argument_oops();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  debug_only(_update_for_id = map->_update_for_id;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  pd_initialize_from(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  if (update_map()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    for(int i = 0; i < location_valid_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      LocationValidType bits = !update_map() ? 0 : map->_location_valid[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      _location_valid[i] = bits;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      // for whichever bits are set, pull in the corresponding map->_location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      int j = i*location_valid_type_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      while (bits != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
        if ((bits & 1) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
          assert(0 <= j && j < reg_count, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
          _location[j] = map->_location[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
        bits >>= 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
        j += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
void RegisterMap::clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  set_include_argument_oops(true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  if (_update_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    for(int i = 0; i < location_valid_size; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      _location_valid[i] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    pd_clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    pd_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
void RegisterMap::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  st->print_cr("Register map");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  for(int i = 0; i < reg_count; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    VMReg r = VMRegImpl::as_VMReg(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    intptr_t* src = (intptr_t*) location(r);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    if (src != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
1497
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
   114
      r->print_on(st);
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   115
      st->print(" [" INTPTR_FORMAT "] = ", p2i(src));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      if (((uintptr_t)src & (sizeof(*src)-1)) != 0) {
1497
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
   117
        st->print_cr("<misaligned>");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      } else {
1497
cd3234c89e59 6764622: IdealGraphVisualizer fixes
never
parents: 670
diff changeset
   119
        st->print_cr(INTPTR_FORMAT, *src);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
void RegisterMap::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
// This returns the pc that if you were in the debugger you'd see. Not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
// the idealized value in the frame object. This undoes the magic conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
// that happens for deoptimized frames. In addition it makes the value the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
// hardware would want to see in the native frame. The only user (at this point)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
// is deoptimization. It likely no one else should ever use it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
address frame::raw_pc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  if (is_deoptimized_frame()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   138
    CompiledMethod* cm = cb()->as_compiled_method_or_null();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   139
    if (cm->is_method_handle_return(pc()))
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   140
      return cm->deopt_mh_handler_begin() - pc_return_offset;
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   141
    else
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   142
      return cm->deopt_handler_begin() - pc_return_offset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    return (pc() - pc_return_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
// Change the pc in a frame object. This does not change the actual pc in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
// actual frame. To do that use patch_pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
void frame::set_pc(address   newpc ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (_cb != NULL && _cb->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant violation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Unsafe to use the is_deoptimzed tester after changing pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  _deopt_state = unknown;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  _pc = newpc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  _cb = CodeCache::find_blob_unsafe(_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// type testers
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11636
diff changeset
   166
bool frame::is_ignored_frame() const {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11636
diff changeset
   167
  return false;  // FIXME: some LambdaForm frames should be ignored
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 9437
diff changeset
   168
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
bool frame::is_deoptimized_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  assert(_deopt_state != unknown, "not answerable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  return _deopt_state == is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
bool frame::is_native_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  return (_cb != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
          _cb->is_nmethod() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
          ((nmethod*)_cb)->is_native_method());
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::is_java_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (is_interpreted_frame()) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  if (is_compiled_frame())    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
bool frame::is_compiled_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  if (_cb != NULL &&
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   189
      _cb->is_compiled() &&
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   190
      ((CompiledMethod*)_cb)->is_java_method()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
bool frame::is_runtime_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  return (_cb != NULL && _cb->is_runtime_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
bool frame::is_safepoint_blob_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  return (_cb != NULL && _cb->is_safepoint_stub());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
// testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
bool frame::is_first_java_frame() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  RegisterMap map(JavaThread::current(), false); // No update
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  frame s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  return s.is_first_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
bool frame::entry_frame_is_first() const {
18938
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   216
  return entry_frame_call_wrapper()->is_first_frame();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
18938
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   219
JavaCallWrapper* frame::entry_frame_call_wrapper_if_safe(JavaThread* thread) const {
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   220
  JavaCallWrapper** jcw = entry_frame_call_wrapper_addr();
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   221
  address addr = (address) jcw;
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   222
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   223
  // addr must be within the usable part of the stack
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   224
  if (thread->is_in_usable_stack(addr)) {
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   225
    return *jcw;
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   226
  }
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   227
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   228
  return NULL;
ff8f8cec9434 8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()'
rbackman
parents: 18439
diff changeset
   229
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
40332
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   231
bool frame::is_entry_frame_valid(JavaThread* thread) const {
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   232
  // Validate the JavaCallWrapper an entry frame must have
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   233
  address jcw = (address)entry_frame_call_wrapper();
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   234
  bool jcw_safe = (jcw < thread->stack_base()) && (jcw > (address)fp()); // less than stack base
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   235
  if (!jcw_safe) {
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   236
    return false;
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   237
  }
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   238
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   239
  // Validate sp saved in the java frame anchor
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   240
  JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor();
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   241
  return (jfa->last_Java_sp() > sp());
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   242
}
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   243
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
bool frame::should_be_deoptimized() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  if (_deopt_state == is_deoptimized ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      !is_compiled_frame() ) return false;
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   247
  assert(_cb != NULL && _cb->is_compiled(), "must be an nmethod");
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   248
  CompiledMethod* nm = (CompiledMethod *)_cb;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  if (TraceDependencies) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    tty->print("checking (%s) ", nm->is_marked_for_deoptimization() ? "true" : "false");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    nm->print_value_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if( !nm->is_marked_for_deoptimization() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // If at the return point, then the frame has already been popped, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // only the return needs to be executed. Don't deoptimize here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  return !nm->is_at_poll_return(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
bool frame::can_be_deoptimized() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if (!is_compiled_frame()) return false;
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   265
  CompiledMethod* nm = (CompiledMethod*)_cb;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  if( !nm->can_be_deoptimized() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  return !nm->is_at_poll_return(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
6269
10e06287c0b0 6975006: assert(check.is_deoptimized_frame()) failed: missed deopt
never
parents: 6187
diff changeset
   273
void frame::deoptimize(JavaThread* thread) {
54631
3a3e4e473622 8222637: Obsolete NeedsDeoptSuspend
rehn
parents: 54347
diff changeset
   274
  assert(thread->frame_anchor()->has_last_Java_frame() &&
3a3e4e473622 8222637: Obsolete NeedsDeoptSuspend
rehn
parents: 54347
diff changeset
   275
         thread->frame_anchor()->walkable(), "must be");
6269
10e06287c0b0 6975006: assert(check.is_deoptimized_frame()) failed: missed deopt
never
parents: 6187
diff changeset
   276
  // Schedule deoptimization of an nmethod activation with this frame.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   277
  assert(_cb != NULL && _cb->is_compiled(), "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   279
  // If the call site is a MethodHandle call site use the MH deopt
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   280
  // handler.
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   281
  CompiledMethod* cm = (CompiledMethod*) _cb;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   282
  address deopt = cm->is_method_handle_return(pc()) ?
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   283
                        cm->deopt_mh_handler_begin() :
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   284
                        cm->deopt_handler_begin();
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   285
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // Save the original pc before we patch in the new one
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   287
  cm->set_original_pc(this, pc());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  patch_pc(thread, deopt);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   289
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    RegisterMap map(thread, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    frame check = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    while (id() != check.id()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
      check = check.sender(&map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    assert(check.is_deoptimized_frame(), "missed deopt");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
frame frame::java_sender() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  RegisterMap map(JavaThread::current(), false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  frame s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map)) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  guarantee(s.is_java_frame(), "tried to get caller of first java frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  return s;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
frame frame::real_sender(RegisterMap* map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  frame result = sender(map);
9630
d6419e4395e3 6939861: JVM should handle more conversion operations
never
parents: 9437
diff changeset
   312
  while (result.is_runtime_frame() ||
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11636
diff changeset
   313
         result.is_ignored_frame()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    result = result.sender(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
// Interpreter frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
void frame::interpreter_frame_set_locals(intptr_t* locs)  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  *interpreter_frame_locals_addr() = locs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   327
Method* frame::interpreter_frame_method() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  assert(is_interpreted_frame(), "interpreted frame expected");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   329
  Method* m = *interpreter_frame_method_addr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   330
  assert(m->is_method(), "not a Method*");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  return m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   334
void frame::interpreter_frame_set_method(Method* method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  *interpreter_frame_method_addr() = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   339
void frame::interpreter_frame_set_mirror(oop mirror) {
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   340
  assert(is_interpreted_frame(), "interpreted frame expected");
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   341
  *interpreter_frame_mirror_addr() = mirror;
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   342
}
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   343
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
jint frame::interpreter_frame_bci() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  assert(is_interpreted_frame(), "interpreted frame expected");
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25468
diff changeset
   346
  address bcp = interpreter_frame_bcp();
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25468
diff changeset
   347
  return interpreter_frame_method()->bci_from(bcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
address frame::interpreter_frame_bcp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  assert(is_interpreted_frame(), "interpreted frame expected");
25895
03808d9a48b2 8051398: jvmti tests fieldacc002, fieldmod002 fail in nightly with errors: (watch#0) wrong location
coleenp
parents: 25717
diff changeset
   352
  address bcp = (address)*interpreter_frame_bcp_addr();
03808d9a48b2 8051398: jvmti tests fieldacc002, fieldmod002 fail in nightly with errors: (watch#0) wrong location
coleenp
parents: 25717
diff changeset
   353
  return interpreter_frame_method()->bcp_from(bcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
void frame::interpreter_frame_set_bcp(address bcp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  assert(is_interpreted_frame(), "interpreted frame expected");
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25468
diff changeset
   358
  *interpreter_frame_bcp_addr() = (intptr_t)bcp;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
address frame::interpreter_frame_mdp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  assert(ProfileInterpreter, "must be profiling interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  assert(is_interpreted_frame(), "interpreted frame expected");
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25468
diff changeset
   364
  return (address)*interpreter_frame_mdp_addr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
void frame::interpreter_frame_set_mdp(address mdp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  assert(is_interpreted_frame(), "interpreted frame expected");
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25468
diff changeset
   369
  assert(ProfileInterpreter, "must be profiling interpreter");
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25468
diff changeset
   370
  *interpreter_frame_mdp_addr() = (intptr_t)mdp;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
BasicObjectLock* frame::next_monitor_in_interpreter_frame(BasicObjectLock* current) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  interpreter_frame_verify_monitor(current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  BasicObjectLock* next = (BasicObjectLock*) (((intptr_t*) current) + interpreter_frame_monitor_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  return next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
BasicObjectLock* frame::previous_monitor_in_interpreter_frame(BasicObjectLock* current) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
//   // This verification needs to be checked before being enabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
//   interpreter_frame_verify_monitor(current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  BasicObjectLock* previous = (BasicObjectLock*) (((intptr_t*) current) - interpreter_frame_monitor_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  return previous;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
// Interpreter locals and expression stack locations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
intptr_t* frame::interpreter_frame_local_at(int index) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  const int n = Interpreter::local_offset_in_bytes(index)/wordSize;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  return &((*interpreter_frame_locals_addr())[n]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
intptr_t* frame::interpreter_frame_expression_stack_at(jint offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  const int i = offset * interpreter_frame_expression_stack_direction();
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   401
  const int n = i * Interpreter::stackElementWords;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  return &(interpreter_frame_expression_stack()[n]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
jint frame::interpreter_frame_expression_stack_size() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  // Number of elements on the interpreter expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // Callers should span by stackElementWords
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   408
  int element_size = Interpreter::stackElementWords;
23482
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   409
  size_t stack_size = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  if (frame::interpreter_frame_expression_stack_direction() < 0) {
23482
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   411
    stack_size = (interpreter_frame_expression_stack() -
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   412
                  interpreter_frame_tos_address() + 1)/element_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  } else {
23482
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   414
    stack_size = (interpreter_frame_tos_address() -
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   415
                  interpreter_frame_expression_stack() + 1)/element_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  }
23482
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   417
  assert( stack_size <= (size_t)max_jint, "stack size too big");
40418dd505d1 8033566: [parfait] warning from b128 for hotspot/src/share/vm/runtime/frame.cpp: JNI primitive type mismatch
ccheung
parents: 22929
diff changeset
   418
  return ((jint)stack_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
// (frame::interpreter_frame_sender_sp accessor is in frame_<arch>.cpp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
const char* frame::print_name() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  if (is_native_frame())      return "Native";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  if (is_interpreted_frame()) return "Interpreted";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  if (is_compiled_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    if (is_deoptimized_frame()) return "Deoptimized";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    return "Compiled";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  if (sp() == NULL)            return "Empty";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  return "C";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
void frame::print_value_on(outputStream* st, JavaThread *thread) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  NOT_PRODUCT(address begin = pc()-40;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  NOT_PRODUCT(address end   = NULL;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   439
  st->print("%s frame (sp=" INTPTR_FORMAT " unextended sp=" INTPTR_FORMAT, print_name(), p2i(sp()), p2i(unextended_sp()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  if (sp() != NULL)
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   441
    st->print(", fp=" INTPTR_FORMAT ", real_fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT,
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   442
              p2i(fp()), p2i(real_fp()), p2i(pc()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  if (StubRoutines::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
    st->print_cr(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    st->print("(");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    st->print("~Stub::%s", desc->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    NOT_PRODUCT(begin = desc->begin(); end = desc->end();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  } else if (Interpreter::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    st->print_cr(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    st->print("(");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    InterpreterCodelet* desc = Interpreter::codelet_containing(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    if (desc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
      st->print("~");
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11571
diff changeset
   456
      desc->print_on(st);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
      NOT_PRODUCT(begin = desc->code_begin(); end = desc->code_end();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      st->print("~interpreter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  st->print_cr(")");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  if (_cb != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    st->print("     ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    _cb->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
    st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    if (end == NULL) {
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6269
diff changeset
   470
      begin = _cb->code_begin();
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 6269
diff changeset
   471
      end   = _cb->code_end();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  NOT_PRODUCT(if (WizardMode && Verbose) Disassembler::decode(begin, end);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
void frame::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  print_value_on(st,NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  if (is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    interpreter_frame_print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
void frame::interpreter_frame_print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  jint i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  for (i = 0; i < interpreter_frame_method()->max_locals(); i++ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
    intptr_t x = *interpreter_frame_local_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
    st->print(" - local  [" INTPTR_FORMAT "]", x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
    st->print_cr("; #%d", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  for (i = interpreter_frame_expression_stack_size() - 1; i >= 0; --i ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    intptr_t x = *interpreter_frame_expression_stack_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    st->print(" - stack  [" INTPTR_FORMAT "]", x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    st->print_cr("; #%d", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // locks for synchronization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  for (BasicObjectLock* current = interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
       current < interpreter_frame_monitor_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
       current = next_monitor_in_interpreter_frame(current)) {
4896
88b4193b82b0 6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents: 4752
diff changeset
   507
    st->print(" - obj    [");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    current->obj()->print_value_on(st);
4896
88b4193b82b0 6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents: 4752
diff changeset
   509
    st->print_cr("]");
88b4193b82b0 6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents: 4752
diff changeset
   510
    st->print(" - lock   [");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    current->lock()->print_on(st);
4896
88b4193b82b0 6925249: assert(last_sp < (intptr_t*) interpreter_frame_monitor_begin(),"bad tos")
kvn
parents: 4752
diff changeset
   512
    st->print_cr("]");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  // monitor
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   515
  st->print_cr(" - monitor[" INTPTR_FORMAT "]", p2i(interpreter_frame_monitor_begin()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // bcp
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   517
  st->print(" - bcp    [" INTPTR_FORMAT "]", p2i(interpreter_frame_bcp()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  st->print_cr("; @%d", interpreter_frame_bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  // locals
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   521
  st->print_cr(" - locals [" INTPTR_FORMAT "]", p2i(interpreter_frame_local_at(0)));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // method
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   523
  st->print(" - method [" INTPTR_FORMAT "]", p2i(interpreter_frame_method()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  st->fill_to(23);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  st->print("; ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  interpreter_frame_method()->print_name(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20282
diff changeset
   531
// Print whether the frame is in the VM or OS indicating a HotSpot problem.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
// Otherwise, it's likely a bug in the native library that the Java code calls,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
// hopefully indicating where to submit bugs.
19952
bc974e92f881 8022335: Native stack walk while generating hs_err does not work on Windows x64
iklam
parents: 19334
diff changeset
   534
void frame::print_C_frame(outputStream* st, char* buf, int buflen, address pc) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  // C/C++ frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  bool in_vm = os::address_is_in_vm(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  st->print(in_vm ? "V" : "C");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  int offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  bool found;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  // libname
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  found = os::dll_address_to_library_name(pc, buf, buflen, &offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  if (found) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    // skip directory names
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    const char *p1, *p2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    p1 = buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    int len = (int)strlen(os::file_separator());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    while ((p2 = strstr(p1, os::file_separator())) != NULL) p1 = p2 + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
    st->print("  [%s+0x%x]", p1, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  } else {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   552
    st->print("  " PTR_FORMAT, p2i(pc));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
47666
19219ec3f176 8185712: [windows] Improve native symbol decoder
goetz
parents: 47216
diff changeset
   555
  found = os::dll_address_to_function_name(pc, buf, buflen, &offset);
19219ec3f176 8185712: [windows] Improve native symbol decoder
goetz
parents: 47216
diff changeset
   556
  if (found) {
19219ec3f176 8185712: [windows] Improve native symbol decoder
goetz
parents: 47216
diff changeset
   557
    st->print("  %s+0x%x", buf, offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
// frame::print_on_error() is called by fatal error handler. Notice that we may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
// crash inside this function if stack frame is corrupted. The fatal error
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// handler can catch and handle the crash. Here we assume the frame is valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
// First letter indicates type of the frame:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
//    J: Java frame (compiled)
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
   567
//    A: Java frame (aot compiled)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
//    j: Java frame (interpreted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
//    V: VM frame (C/C++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
//    v: Other frames running VM generated code (e.g. stubs, adapters, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
//    C: C/C++ frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
// We don't need detailed frame type as that in frame::print_name(). "C"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
// suggests the problem is in user lib; everything else is likely a VM bug.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
void frame::print_on_error(outputStream* st, char* buf, int buflen, bool verbose) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  if (_cb != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    if (Interpreter::contains(pc())) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   579
      Method* m = this->interpreter_frame_method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
      if (m != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
        m->name_and_sig_as_C_string(buf, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
        st->print("j  %s", buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
        st->print("+%d", this->interpreter_frame_bci());
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   584
        ModuleEntry* module = m->method_holder()->module();
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   585
        if (module->is_named()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   586
          module->name()->as_C_string(buf, buflen);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   587
          st->print(" %s", buf);
42569
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   588
          if (module->version() != NULL) {
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   589
            module->version()->as_C_string(buf, buflen);
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   590
            st->print("@%s", buf);
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   591
          }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   592
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
      } else {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   594
        st->print("j  " PTR_FORMAT, p2i(pc()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    } else if (StubRoutines::contains(pc())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
      StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
      if (desc != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
        st->print("v  ~StubRoutines::%s", desc->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
      } else {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   601
        st->print("v  ~StubRoutines::" PTR_FORMAT, p2i(pc()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
    } else if (_cb->is_buffer_blob()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
      st->print("v  ~BufferBlob::%s", ((BufferBlob *)_cb)->name());
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   605
    } else if (_cb->is_compiled()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   606
      CompiledMethod* cm = (CompiledMethod*)_cb;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   607
      Method* m = cm->method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
      if (m != NULL) {
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
   609
        if (cm->is_aot()) {
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
   610
          st->print("A %d ", cm->compile_id());
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
   611
        } else if (cm->is_nmethod()) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   612
          nmethod* nm = cm->as_nmethod();
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   613
          st->print("J %d%s", nm->compile_id(), (nm->is_osr_method() ? "%" : ""));
42040
70ec5a09a0d5 8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents: 40332
diff changeset
   614
          st->print(" %s", nm->compiler_name());
38053
e6efb2c54538 8154145: Missing klass/method name in stack traces on error
vlivanov
parents: 36508
diff changeset
   615
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
        m->name_and_sig_as_C_string(buf, buflen);
38053
e6efb2c54538 8154145: Missing klass/method name in stack traces on error
vlivanov
parents: 36508
diff changeset
   617
        st->print(" %s", buf);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   618
        ModuleEntry* module = m->method_holder()->module();
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   619
        if (module->is_named()) {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   620
          module->name()->as_C_string(buf, buflen);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   621
          st->print(" %s", buf);
42569
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   622
          if (module->version() != NULL) {
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   623
            module->version()->as_C_string(buf, buflen);
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   624
            st->print("@%s", buf);
fccb65782775 8169551: Segfaults in error traces when module version is null
hseigel
parents: 42040
diff changeset
   625
          }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36329
diff changeset
   626
        }
38053
e6efb2c54538 8154145: Missing klass/method name in stack traces on error
vlivanov
parents: 36508
diff changeset
   627
        st->print(" (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]",
e6efb2c54538 8154145: Missing klass/method name in stack traces on error
vlivanov
parents: 36508
diff changeset
   628
                  m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   629
#if INCLUDE_JVMCI
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   630
        if (cm->is_nmethod()) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   631
          nmethod* nm = cm->as_nmethod();
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54631
diff changeset
   632
          const char* jvmciName = nm->jvmci_name();
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   633
          if (jvmciName != NULL) {
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   634
            st->print(" (%s)", jvmciName);
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
   635
          }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   636
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
   637
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
      } else {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   639
        st->print("J  " PTR_FORMAT, p2i(pc()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    } else if (_cb->is_runtime_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
      st->print("v  ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    } else if (_cb->is_deoptimization_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      st->print("v  ~DeoptimizationBlob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    } else if (_cb->is_exception_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      st->print("v  ~ExceptionBlob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    } else if (_cb->is_safepoint_stub()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      st->print("v  ~SafepointBlob");
51529
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   649
    } else if (_cb->is_adapter_blob()) {
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   650
      st->print("v  ~AdapterBlob");
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   651
    } else if (_cb->is_vtable_blob()) {
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   652
      st->print("v  ~VtableBlob");
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   653
    } else if (_cb->is_method_handles_adapter_blob()) {
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   654
      st->print("v  ~MethodHandlesAdapterBlob");
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   655
    } else if (_cb->is_uncommon_trap_stub()) {
a716460217ed 8209911: More blob types in hs_err printout
shade
parents: 50015
diff changeset
   656
      st->print("v  ~UncommonTrapBlob");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    } else {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   658
      st->print("v  blob " PTR_FORMAT, p2i(pc()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    print_C_frame(st, buf, buflen, pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  The interpreter_frame_expression_stack_at method in the case of SPARC needs the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  max_stack value of the method in order to compute the expression stack address.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   669
  It uses the Method* in order to get the max_stack value but during GC this
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   670
  Method* value saved on the frame is changed by reverse_and_push and hence cannot
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  be used. So we save the max_stack value in the FrameClosure object and pass it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  down to the interpreter_frame_expression_stack_at method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
class InterpreterFrameClosure : public OffsetClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  frame* _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  OopClosure* _f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  int    _max_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  int    _max_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  InterpreterFrameClosure(frame* fr, int max_locals, int max_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
                          OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    _fr         = fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    _max_locals = max_locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    _max_stack  = max_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    _f          = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  void offset_do(int offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
    oop* addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    if (offset < _max_locals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
      addr = (oop*) _fr->interpreter_frame_local_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
      assert((intptr_t*)addr >= _fr->sp(), "must be inside the frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
      addr = (oop*) _fr->interpreter_frame_expression_stack_at((offset - _max_locals));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
      // In case of exceptions, the expression stack is invalid and the esp will be reset to express
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      // 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
   700
      bool in_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      if (frame::interpreter_frame_expression_stack_direction() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
        in_stack = (intptr_t*)addr <= _fr->interpreter_frame_tos_address();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
        in_stack = (intptr_t*)addr >= _fr->interpreter_frame_tos_address();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      if (in_stack) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
        _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  int max_locals()  { return _max_locals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  frame* fr()       { return _fr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
class InterpretedArgumentOopFinder: public SignatureInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
 private:
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   719
  OopClosure* _f;        // Closure to invoke
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   720
  int    _offset;        // TOS-relative offset, decremented with each argument
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   721
  bool   _has_receiver;  // true if the callee has a receiver
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  frame* _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  void set(int size, BasicType type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    _offset -= size;
58273
08a5148e7c4e 8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents: 57811
diff changeset
   726
    if (is_reference_type(type)) oop_offset_do();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  void oop_offset_do() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
    oop* addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
    addr = (oop*)_fr->interpreter_frame_tos_at(_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
 public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   736
  InterpretedArgumentOopFinder(Symbol* signature, bool has_receiver, frame* fr, OopClosure* f) : SignatureInfo(signature), _has_receiver(has_receiver) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
    // compute size of arguments
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   738
    int args_size = ArgumentSizeComputer(signature).size() + (has_receiver ? 1 : 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    assert(!fr->is_interpreted_frame() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
           args_size <= fr->interpreter_frame_expression_stack_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
            "args cannot be on stack anymore");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
    // initialize InterpretedArgumentOopFinder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    _f         = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
    _fr        = fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    _offset    = args_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  void oops_do() {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   749
    if (_has_receiver) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
      --_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
      oop_offset_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    iterate_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
// Entry frame has following form (n arguments)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
//         +-----------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
//   sp -> |  last arg |
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
// (sp+n)->|  first arg|
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
//         +-----------+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
// visits and GC's all the arguments in entry frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
class EntryFrameOopFinder: public SignatureInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  bool   _is_static;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  int    _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  frame* _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  OopClosure* _f;
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
    assert (_offset >= 0, "illegal offset");
58273
08a5148e7c4e 8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents: 57811
diff changeset
   779
    if (is_reference_type(type)) oop_at_offset_do(_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
    _offset -= size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  void oop_at_offset_do(int offset) {
5402
c51fd0c1d005 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 4896
diff changeset
   784
    assert (offset >= 0, "illegal offset");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    oop* addr = (oop*) _fr->entry_frame_argument_at(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
    _f->do_oop(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
 public:
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   790
   EntryFrameOopFinder(frame* frame, Symbol* signature, bool is_static) : SignatureInfo(signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
     _f = NULL; // will be set later
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
     _fr = frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
     _is_static = is_static;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
     _offset = ArgumentSizeComputer(signature).size() - 1; // last parameter is at index 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  void arguments_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    _f = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
    if (!_is_static) oop_at_offset_do(_offset+1); // do the receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    iterate_parameters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   805
oop* frame::interpreter_callee_receiver_addr(Symbol* signature) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  ArgumentSizeComputer asc(signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  int size = asc.size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  return (oop *)interpreter_frame_tos_at(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   812
void frame::oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool query_oop_map_cache) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  assert(map != NULL, "map must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  methodHandle m (thread, interpreter_frame_method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  jint      bci = interpreter_frame_bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   819
  assert(!Universe::heap()->is_in(m()),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   820
          "must be valid oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  assert(m->is_method(), "checking frame value");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   822
  assert((m->is_native() && bci == 0)  ||
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   823
         (!m->is_native() && bci >= 0 && bci < m->code_size()),
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   824
         "invalid bci value");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  // Handle the monitor elements in the activation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  for (
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
    BasicObjectLock* current = interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
    current < interpreter_frame_monitor_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    current = next_monitor_in_interpreter_frame(current)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    interpreter_frame_verify_monitor(current);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    current->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   838
  if (m->is_native()) {
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   839
    f->do_oop(interpreter_frame_temp_oop_addr());
14582
490bb6c0df7c 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 13728
diff changeset
   840
  }
490bb6c0df7c 8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents: 13728
diff changeset
   841
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   842
  // The method pointer in the frame might be the only path to the method's
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   843
  // klass, and the klass needs to be kept alive while executing. The GCs
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   844
  // don't trace through method pointers, so the mirror of the method's klass
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   845
  // is installed as a GC root.
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
   846
  f->do_oop(interpreter_frame_mirror_addr());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   850
  Symbol* signature = NULL;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   851
  bool has_receiver = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  // Process a callee's arguments if we are at a call site
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  // (i.e., if we are at an invoke bytecode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  // This is used sometimes for calling into the VM, not for another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
  // interpreted or compiled frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  if (!m->is_native()) {
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7448
diff changeset
   858
    Bytecode_invoke call = Bytecode_invoke_check(m, bci);
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7448
diff changeset
   859
    if (call.is_valid()) {
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   860
      signature = call.signature();
7913
dd096a83bdbb 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 7448
diff changeset
   861
      has_receiver = call.has_receiver();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
      if (map->include_argument_oops() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
          interpreter_frame_expression_stack_size() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
        ResourceMark rm(thread);  // is this right ???
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
        // we are at a call site & the expression stack is not empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
        // => process callee's arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
        //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
        // Note: The expression stack can be empty if an exception
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1497
diff changeset
   869
        //       occurred during method resolution/execution. In all
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
        //       cases we empty the expression stack completely be-
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
        //       fore handling the exception (the exception handling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
        //       code in the interpreter calls a blocking runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
        //       routine which can cause this code to be executed).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
        //       (was bug gri 7/27/98)
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   875
        oops_interpreted_arguments_do(signature, has_receiver, f);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   880
  InterpreterFrameClosure blk(this, max_locals, m->max_stack(), f);
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   881
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   882
  // process locals & expression stack
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   883
  InterpreterOopMap mask;
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   884
  if (query_oop_map_cache) {
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   885
    m->mask_for(bci, &mask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  } else {
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   887
    OopMapCache::compute_one_oop_map(m, bci, &mask);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  }
5419
f2e8cc8c12ea 6943304: remove tagged stack interpreter
twisti
parents: 4896
diff changeset
   889
  mask.iterate_oop(&blk);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
   893
void frame::oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f) {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   894
  InterpretedArgumentOopFinder finder(signature, has_receiver, this, f);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  finder.oops_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
   898
void frame::oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* reg_map) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  assert(_cb != NULL, "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  if (_cb->oop_maps() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    OopMapSet::oops_do(this, reg_map, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
    // Preserve potential arguments for a callee. We handle this by dispatching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
    // on the codeblob. For c2i, we do
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    if (reg_map->include_argument_oops()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      _cb->preserve_callee_argument_oops(*this, reg_map, f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  // In cases where perm gen is collected, GC will want to mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  // oops referenced from nmethods active on thread stacks so as to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  // prevent them from being collected. However, this visit should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  // 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
   913
  // 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
   914
  if (cf != NULL)
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
   915
    cf->do_code_blob(_cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
class CompiledArgumentOopFinder: public SignatureInfo {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  OopClosure*     _f;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   921
  int             _offset;        // the current offset, incremented with each argument
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   922
  bool            _has_receiver;  // true if the callee has a receiver
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   923
  bool            _has_appendix;  // true if the call has an appendix
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
  frame           _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
  RegisterMap*    _reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  int             _arg_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  VMRegPair*      _regs;        // VMReg list of arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  void set(int size, BasicType type) {
58273
08a5148e7c4e 8230505: Replace JVM type comparisons to T_OBJECT and T_ARRAY with call to is_reference_type
lfoltan
parents: 57811
diff changeset
   930
    if (is_reference_type(type)) handle_oop_offset();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    _offset += size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  virtual void handle_oop_offset() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    // Extract low order register number from register array.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    // In LP64-land, the high-order bits are valid but unhelpful.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    VMReg reg = _regs[_offset].first();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    oop *loc = _fr.oopmapreg_to_location(reg, _reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
    _f->do_oop(loc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
 public:
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   943
  CompiledArgumentOopFinder(Symbol* signature, bool has_receiver, bool has_appendix, OopClosure* f, frame fr,  const RegisterMap* reg_map)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    : SignatureInfo(signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    // initialize CompiledArgumentOopFinder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    _f         = f;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    _offset    = 0;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   949
    _has_receiver = has_receiver;
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   950
    _has_appendix = has_appendix;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
    _fr        = fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    _reg_map   = (RegisterMap*)reg_map;
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   953
    _arg_size  = ArgumentSizeComputer(signature).size() + (has_receiver ? 1 : 0) + (has_appendix ? 1 : 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
    int arg_size;
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   956
    _regs = SharedRuntime::find_callee_arguments(signature, has_receiver, has_appendix, &arg_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    assert(arg_size == _arg_size, "wrong arg size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  void oops_do() {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   961
    if (_has_receiver) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
      handle_oop_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
      _offset++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
    iterate_parameters();
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   966
    if (_has_appendix) {
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   967
      handle_oop_offset();
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   968
      _offset++;
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   969
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   973
void frame::oops_compiled_arguments_do(Symbol* signature, bool has_receiver, bool has_appendix,
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   974
                                       const RegisterMap* reg_map, OopClosure* f) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
  ResourceMark rm;
17872
2c49e72dcf08 8009981: nashorn tests fail with -XX:+VerifyStack
roland
parents: 15870
diff changeset
   976
  CompiledArgumentOopFinder finder(signature, has_receiver, has_appendix, f, *this, reg_map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  finder.oops_do();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
// Get receiver out of callers frame, i.e. find parameter 0 in callers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
// frame.  Consult ADLC for where parameter 0 is to be found.  Then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
// check local reg_map for it being a callee-save register or argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
// register, both of which are saved in the local frame.  If not found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
// there, it must be an in-stack argument of the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
// Note: caller.sp() points to callee-arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
oop frame::retrieve_receiver(RegisterMap* reg_map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
  frame caller = *this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  // First consult the ADLC on where it puts parameter 0 for this signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  VMReg reg = SharedRuntime::name_for_receiver();
15870
370c3b74c642 8008574: [parfait] Null pointer deference in hotspot/src/share/vm/runtime/frame.cpp
morris
parents: 14633
diff changeset
   992
  oop* oop_adr = caller.oopmapreg_to_location(reg, reg_map);
370c3b74c642 8008574: [parfait] Null pointer deference in hotspot/src/share/vm/runtime/frame.cpp
morris
parents: 14633
diff changeset
   993
  if (oop_adr == NULL) {
370c3b74c642 8008574: [parfait] Null pointer deference in hotspot/src/share/vm/runtime/frame.cpp
morris
parents: 14633
diff changeset
   994
    guarantee(oop_adr != NULL, "bad register save location");
370c3b74c642 8008574: [parfait] Null pointer deference in hotspot/src/share/vm/runtime/frame.cpp
morris
parents: 14633
diff changeset
   995
    return NULL;
370c3b74c642 8008574: [parfait] Null pointer deference in hotspot/src/share/vm/runtime/frame.cpp
morris
parents: 14633
diff changeset
   996
  }
370c3b74c642 8008574: [parfait] Null pointer deference in hotspot/src/share/vm/runtime/frame.cpp
morris
parents: 14633
diff changeset
   997
  oop r = *oop_adr;
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
   998
  assert(Universe::heap()->is_in_or_null(r), "bad receiver: " INTPTR_FORMAT " (" INTX_FORMAT ")", p2i(r), p2i(r));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
  return r;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1003
BasicLock* frame::get_native_monitor() {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1004
  nmethod* nm = (nmethod*)_cb;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1005
  assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1006
         "Should not call this unless it's a native nmethod");
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1007
  int byte_offset = in_bytes(nm->native_basic_lock_sp_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
  assert(byte_offset >= 0, "should not see invalid offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  return (BasicLock*) &sp()[byte_offset / wordSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
7444
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1012
oop frame::get_native_receiver() {
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1013
  nmethod* nm = (nmethod*)_cb;
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1014
  assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1015
         "Should not call this unless it's a native nmethod");
be338e543a57 7004582: Add GetThisObject() function to JVMTI 1.2
kamg
parents: 7397
diff changeset
  1016
  int byte_offset = in_bytes(nm->native_receiver_sp_offset());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
  assert(byte_offset >= 0, "should not see invalid offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  oop owner = ((oop*) sp())[byte_offset / wordSize];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  assert( Universe::heap()->is_in(owner), "bad receiver" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  return owner;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
void frame::oops_entry_do(OopClosure* f, const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  assert(map != NULL, "map must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  if (map->include_argument_oops()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    // must collect argument oops, as nobody else is doing it
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
    Thread *thread = Thread::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
    methodHandle m (thread, entry_frame_call_wrapper()->callee_method());
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7913
diff changeset
  1029
    EntryFrameOopFinder finder(this, m->signature(), m->is_static());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
    finder.arguments_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  // Traverse the Handle Block saved in the entry frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  entry_frame_call_wrapper()->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
  1037
void frame::oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache) {
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1038
#ifndef PRODUCT
50015
d0a350777bd1 8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6
kbarrett
parents: 49359
diff changeset
  1039
#if defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140
d0a350777bd1 8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6
kbarrett
parents: 49359
diff changeset
  1040
#pragma error_messages(off, SEC_NULL_PTR_DEREF)
d0a350777bd1 8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6
kbarrett
parents: 49359
diff changeset
  1041
#endif
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1042
  // simulate GC crash here to dump java thread in error report
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1043
  if (CrashGCForDumpingJavaThread) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1044
    char *t = NULL;
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1045
    *t = 'c';
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1046
  }
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1047
#endif
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1048
  if (is_interpreted_frame()) {
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
  1049
    oops_interpreted_do(f, map, use_interpreter_oop_map_cache);
4489
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1050
  } else if (is_entry_frame()) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1051
    oops_entry_do(f, map);
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1052
  } else if (CodeCache::contains(pc())) {
514173c9a0c2 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 3908
diff changeset
  1053
    oops_code_blob_do(f, cf, map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1059
void frame::nmethods_do(CodeBlobClosure* cf) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  if (_cb != NULL && _cb->is_nmethod()) {
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 2131
diff changeset
  1061
    cf->do_code_blob(_cb);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
54150
5529640c5f67 8220512: Deoptimize redefinition functions that have dirty ICs
coleenp
parents: 53547
diff changeset
  1066
// Call f closure on the interpreted Method*s in the stack.
5529640c5f67 8220512: Deoptimize redefinition functions that have dirty ICs
coleenp
parents: 53547
diff changeset
  1067
void frame::metadata_do(MetadataClosure* f) {
5529640c5f67 8220512: Deoptimize redefinition functions that have dirty ICs
coleenp
parents: 53547
diff changeset
  1068
  ResourceMark rm;
30144
b009de0c0cef 8076421: Fix Zero Interpreter bugs in class redefinition and template interpreter changes
coleenp
parents: 29084
diff changeset
  1069
  if (is_interpreted_frame()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1070
    Method* m = this->interpreter_frame_method();
30144
b009de0c0cef 8076421: Fix Zero Interpreter bugs in class redefinition and template interpreter changes
coleenp
parents: 29084
diff changeset
  1071
    assert(m != NULL, "expecting a method in this frame");
54150
5529640c5f67 8220512: Deoptimize redefinition functions that have dirty ICs
coleenp
parents: 53547
diff changeset
  1072
    f->do_metadata(m);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1073
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1074
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1075
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
void frame::verify(const RegisterMap* map) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  // for now make sure receiver type is correct
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  if (is_interpreted_frame()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1079
    Method* method = interpreter_frame_method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    guarantee(method->is_method(), "method is wrong in frame::verify");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    if (!method->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
      // fetch the receiver
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
      oop* p = (oop*) interpreter_frame_local_at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
      // make sure we have the right receiver type
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  }
47799
1772ebf07d1f 8152470: Add COMPILER2_OR_JVMCI definition
jcm
parents: 47687
diff changeset
  1087
#if COMPILER2_OR_JVMCI
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
  1088
  assert(DerivedPointerTable::is_empty(), "must be empty before verify");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 33063
diff changeset
  1089
#endif
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 38053
diff changeset
  1090
  oops_do_internal(&VerifyOopClosure::verify_oop, NULL, (RegisterMap*)map, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
bool frame::verify_return_pc(address x) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  if (StubRoutines::returns_to_call_stub(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  if (CodeCache::contains(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  if (Interpreter::contains(x)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
void frame::interpreter_frame_verify_monitor(BasicObjectLock* value) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  // verify that the value is in the right part of the frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  address low_mark  = (address) interpreter_frame_monitor_end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  address high_mark = (address) interpreter_frame_monitor_begin();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  address current   = (address) value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
  const int monitor_size = frame::interpreter_frame_monitor_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
  guarantee((high_mark - current) % monitor_size  ==  0         , "Misaligned top of BasicObjectLock*");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  guarantee( high_mark > current                                , "Current BasicObjectLock* higher than high_mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  guarantee((current - low_mark) % monitor_size  ==  0         , "Misaligned bottom of BasicObjectLock*");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  guarantee( current >= low_mark                               , "Current BasicObjectLock* below than low_mark");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
}
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
  1124
#endif
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1125
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
  1126
#ifndef PRODUCT
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1127
void frame::describe(FrameValues& values, int frame_no) {
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1128
  // boundaries: sp and the 'real' frame pointer
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1129
  values.describe(-1, sp(), err_msg("sp for #%d", frame_no), 1);
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1130
  intptr_t* frame_pointer = real_fp(); // Note: may differ from fp()
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1131
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1132
  // print frame info at the highest boundary
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1133
  intptr_t* info_address = MAX2(sp(), frame_pointer);
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1134
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1135
  if (info_address != frame_pointer) {
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1136
    // print frame_pointer explicitly if not marked by the frame info
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1137
    values.describe(-1, frame_pointer, err_msg("frame pointer for #%d", frame_no), 1);
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1138
  }
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1139
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1140
  if (is_entry_frame() || is_compiled_frame() || is_interpreted_frame() || is_native_frame()) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1141
    // Label values common to most frames
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1142
    values.describe(-1, unextended_sp(), err_msg("unextended_sp for #%d", frame_no));
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1143
  }
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1144
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1145
  if (is_interpreted_frame()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
  1146
    Method* m = interpreter_frame_method();
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1147
    int bci = interpreter_frame_bci();
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1148
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1149
    // Label the method and current bci
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1150
    values.describe(-1, info_address,
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1151
                    FormatBuffer<1024>("#%d method %s @ %d", frame_no, m->name_and_sig_as_C_string(), bci), 2);
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1152
    values.describe(-1, info_address,
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1153
                    err_msg("- %d locals %d max stack", m->max_locals(), m->max_stack()), 1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1154
    if (m->max_locals() > 0) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1155
      intptr_t* l0 = interpreter_frame_local_at(0);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1156
      intptr_t* ln = interpreter_frame_local_at(m->max_locals() - 1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1157
      values.describe(-1, MAX2(l0, ln), err_msg("locals for #%d", frame_no), 1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1158
      // Report each local and mark as owned by this frame
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1159
      for (int l = 0; l < m->max_locals(); l++) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1160
        intptr_t* l0 = interpreter_frame_local_at(l);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1161
        values.describe(frame_no, l0, err_msg("local %d", l));
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1162
      }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1163
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1164
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1165
    // Compute the actual expression stack size
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1166
    InterpreterOopMap mask;
59056
15936b142f86 8233913: Remove implicit conversion from Method* to methodHandle
coleenp
parents: 58273
diff changeset
  1167
    OopMapCache::compute_one_oop_map(methodHandle(Thread::current(), m), bci, &mask);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1168
    intptr_t* tos = NULL;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1169
    // Report each stack element and mark as owned by this frame
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1170
    for (int e = 0; e < mask.expression_stack_size(); e++) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1171
      tos = MAX2(tos, interpreter_frame_expression_stack_at(e));
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1172
      values.describe(frame_no, interpreter_frame_expression_stack_at(e),
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1173
                      err_msg("stack %d", e));
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1174
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1175
    if (tos != NULL) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1176
      values.describe(-1, tos, err_msg("expression stack for #%d", frame_no), 1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1177
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1178
    if (interpreter_frame_monitor_begin() != interpreter_frame_monitor_end()) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1179
      values.describe(frame_no, (intptr_t*)interpreter_frame_monitor_begin(), "monitors begin");
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1180
      values.describe(frame_no, (intptr_t*)interpreter_frame_monitor_end(), "monitors end");
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1181
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1182
  } else if (is_entry_frame()) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1183
    // For now just label the frame
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1184
    values.describe(-1, info_address, err_msg("#%d entry frame", frame_no), 2);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1185
  } else if (is_compiled_frame()) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1186
    // For now just label the frame
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 38053
diff changeset
  1187
    CompiledMethod* cm = (CompiledMethod*)cb();
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1188
    values.describe(-1, info_address,
42650
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
  1189
                    FormatBuffer<1024>("#%d nmethod " INTPTR_FORMAT " for method %s%s%s", frame_no,
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
  1190
                                       p2i(cm),
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
  1191
                                       (cm->is_aot() ? "A ": "J "),
1f304d0c888b 8171008: Integrate AOT compiler into JDK
kvn
parents: 42569
diff changeset
  1192
                                       cm->method()->name_and_sig_as_C_string(),
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1193
                                       (_deopt_state == is_deoptimized) ?
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1194
                                       " (deoptimized)" :
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1195
                                       ((_deopt_state == unknown) ? " (state unknown)" : "")),
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1196
                    2);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1197
  } else if (is_native_frame()) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1198
    // For now just label the frame
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1199
    nmethod* nm = cb()->as_nmethod_or_null();
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1200
    values.describe(-1, info_address,
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1201
                    FormatBuffer<1024>("#%d nmethod " INTPTR_FORMAT " for native method %s", frame_no,
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
  1202
                                       p2i(nm), nm->method()->name_and_sig_as_C_string()), 2);
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1203
  } else {
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1204
    // provide default info if not handled before
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1205
    char *info = (char *) "special frame";
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1206
    if ((_cb != NULL) &&
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1207
        (_cb->name() != NULL)) {
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1208
      info = (char *)_cb->name();
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1209
    }
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1210
    values.describe(-1, info_address, err_msg("#%d <%s>", frame_no, info), 2);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1211
  }
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1212
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 11486
diff changeset
  1213
  // platform dependent additional data
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1214
  describe_pd(values, frame_no);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1215
}
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1216
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
//-----------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
// StackFrameStream implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
StackFrameStream::StackFrameStream(JavaThread *thread, bool update) : _reg_map(thread, update) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  assert(thread->has_last_Java_frame(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
  _fr = thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
  _is_done = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
}
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1228
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1229
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
  1230
#ifndef PRODUCT
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1231
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1232
void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1233
  FrameValue fv;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1234
  fv.location = location;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1235
  fv.owner = owner;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1236
  fv.priority = priority;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1237
  fv.description = NEW_RESOURCE_ARRAY(char, strlen(description) + 1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1238
  strcpy(fv.description, description);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1239
  _values.append(fv);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1240
}
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1241
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1242
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
  1243
#ifdef ASSERT
9632
cd86c748c12b 7043301: assert(locals < caller->fp() || locals > (caller->fp() + 16)) failed: locals in save area
never
parents: 9630
diff changeset
  1244
void FrameValues::validate() {
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1245
  _values.sort(compare);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1246
  bool error = false;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1247
  FrameValue prev;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1248
  prev.owner = -1;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1249
  for (int i = _values.length() - 1; i >= 0; i--) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1250
    FrameValue fv = _values.at(i);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1251
    if (fv.owner == -1) continue;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1252
    if (prev.owner == -1) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1253
      prev = fv;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1254
      continue;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1255
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1256
    if (prev.location == fv.location) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1257
      if (fv.owner != prev.owner) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1258
        tty->print_cr("overlapping storage");
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
  1259
        tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", p2i(prev.location), *prev.location, prev.description);
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
  1260
        tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", p2i(fv.location), *fv.location, fv.description);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1261
        error = true;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1262
      }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1263
    } else {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1264
      prev = fv;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1265
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1266
  }
9632
cd86c748c12b 7043301: assert(locals < caller->fp() || locals > (caller->fp() + 16)) failed: locals in save area
never
parents: 9630
diff changeset
  1267
  assert(!error, "invalid layout");
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1268
}
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
  1269
#endif // ASSERT
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1270
10966
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1271
void FrameValues::print(JavaThread* thread) {
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1272
  _values.sort(compare);
9636
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1273
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1274
  // Sometimes values like the fp can be invalid values if the
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1275
  // register map wasn't updated during the walk.  Trim out values
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1276
  // that aren't actually in the stack of the thread.
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1277
  int min_index = 0;
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1278
  int max_index = _values.length() - 1;
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1279
  intptr_t* v0 = _values.at(min_index).location;
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1280
  intptr_t* v1 = _values.at(max_index).location;
10966
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1281
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1282
  if (thread == Thread::current()) {
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1283
    while (!thread->is_in_stack((address)v0)) {
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1284
      v0 = _values.at(++min_index).location;
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1285
    }
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1286
    while (!thread->is_in_stack((address)v1)) {
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1287
      v1 = _values.at(--max_index).location;
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1288
    }
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1289
  } else {
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1290
    while (!thread->on_local_stack((address)v0)) {
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1291
      v0 = _values.at(++min_index).location;
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1292
    }
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1293
    while (!thread->on_local_stack((address)v1)) {
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1294
      v1 = _values.at(--max_index).location;
0c9ed2dfc6a2 7090904: JSR 292: JRuby junit test crashes in PSScavengeRootsClosure::do_oop
twisti
parents: 9636
diff changeset
  1295
    }
9636
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1296
  }
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1297
  intptr_t* min = MIN2(v0, v1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1298
  intptr_t* max = MAX2(v0, v1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1299
  intptr_t* cur = max;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1300
  intptr_t* last = NULL;
9636
363ca5579aff 7043461: VM crashes in void LinkResolver::runtime_resolve_virtual_method
never
parents: 9632
diff changeset
  1301
  for (int i = max_index; i >= min_index; i--) {
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1302
    FrameValue fv = _values.at(i);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1303
    while (cur > fv.location) {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
  1304
      tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT, p2i(cur), *cur);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1305
      cur--;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1306
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1307
    if (last == fv.location) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1308
      const char* spacer = "          " LP64_ONLY("        ");
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1309
      tty->print_cr(" %s  %s %s", spacer, spacer, fv.description);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1310
    } else {
33148
68fa8b6c4340 8042893: compiler: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 33129
diff changeset
  1311
      tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", p2i(fv.location), *fv.location, fv.description);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1312
      last = fv.location;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1313
      cur--;
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1314
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1315
  }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1316
}
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 8107
diff changeset
  1317
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
  1318
#endif // ndef PRODUCT