src/hotspot/cpu/sparc/frame_sparc.cpp
author stefank
Mon, 19 Aug 2019 11:30:03 +0200
changeset 57811 947252a54b98
parent 54786 ebf733a324d4
permissions -rw-r--r--
8229838: Rename markOop files to markWord Reviewed-by: dholmes, rehn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
51263
b5aac518b097 8207779: Method::is_valid_method() compares 'this' with NULL
hseigel
parents: 47560
diff changeset
     2
 * Copyright (c) 1997, 2018, 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: 5419
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5419
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: 5419
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: 6418
diff changeset
    25
#include "precompiled.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25328
diff changeset
    26
#include "code/codeCache.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    27
#include "interpreter/interpreter.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    28
#include "memory/resourceArea.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54437
diff changeset
    29
#include "memory/universe.hpp"
57811
947252a54b98 8229838: Rename markOop files to markWord
stefank
parents: 54786
diff changeset
    30
#include "oops/markWord.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    31
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    32
#include "oops/oop.inline.hpp"
11632
e369165faf7a 7141059: 7116795 broke pure c2 builds
iveresov
parents: 11571
diff changeset
    33
#include "prims/methodHandles.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    34
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    35
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    36
#include "runtime/javaCalls.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    37
#include "runtime/monitorChunk.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    38
#include "runtime/signature.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    39
#include "runtime/stubCodeGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    40
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    41
#include "vmreg_sparc.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    42
#ifdef COMPILER1
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    43
#include "c1/c1_Runtime1.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    44
#include "runtime/vframeArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6418
diff changeset
    45
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
void RegisterMap::pd_clear() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  if (_thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    frame fr = _thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    _window = fr.sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    _window = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  _younger_window = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// Unified register numbering scheme: each 32-bits counts as a register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// number, so all the V9 registers take 2 slots.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
const static int R_L_nums[] = {0+040,2+040,4+040,6+040,8+040,10+040,12+040,14+040};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
const static int R_I_nums[] = {0+060,2+060,4+060,6+060,8+060,10+060,12+060,14+060};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
const static int R_O_nums[] = {0+020,2+020,4+020,6+020,8+020,10+020,12+020,14+020};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
const static int R_G_nums[] = {0+000,2+000,4+000,6+000,8+000,10+000,12+000,14+000};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
static RegisterMap::LocationValidType bad_mask = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
static RegisterMap::LocationValidType R_LIO_mask = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
static bool register_map_inited = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
static void register_map_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  if (!register_map_inited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    register_map_inited = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    for (i = 0; i < 8; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      assert(R_L_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      assert(R_I_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      assert(R_O_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      assert(R_G_nums[i] < RegisterMap::location_valid_type_size, "in first chunk");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    bad_mask |= (1LL << R_O_nums[6]); // SP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    bad_mask |= (1LL << R_O_nums[7]); // cPC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    bad_mask |= (1LL << R_I_nums[6]); // FP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    bad_mask |= (1LL << R_I_nums[7]); // rPC
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    bad_mask |= (1LL << R_G_nums[2]); // TLS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    bad_mask |= (1LL << R_G_nums[7]); // reserved by libthread
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    for (i = 0; i < 8; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      R_LIO_mask |= (1LL << R_L_nums[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
      R_LIO_mask |= (1LL << R_I_nums[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      R_LIO_mask |= (1LL << R_O_nums[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
address RegisterMap::pd_location(VMReg regname) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  register_map_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  assert(regname->is_reg(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // Only the GPRs get handled this way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  if( !regname->is_Register())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // don't talk about bad registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  if ((bad_mask & ((LocationValidType)1 << regname->value())) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Convert to a GPR
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  Register reg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int second_word = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // 32-bit registers for in, out and local
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (!regname->is_concrete()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // HMM ought to return NULL for any non-concrete (odd) vmreg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    // this all tied up in the fact we put out double oopMaps for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    // register locations. When that is fixed we'd will return NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    // (or assert here).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    reg = regname->prev()->as_Register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    second_word = sizeof(jint);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    reg = regname->as_Register();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  if (reg->is_out()) {
47560
e4a5b535c0d2 8011352: C1: TraceCodeBlobStacks crashes fastdebug Solaris SPARC.
neliasso
parents: 47216
diff changeset
   123
    return _younger_window == NULL ? NULL :
e4a5b535c0d2 8011352: C1: TraceCodeBlobStacks crashes fastdebug Solaris SPARC.
neliasso
parents: 47216
diff changeset
   124
      second_word + (address)&_younger_window[reg->after_save()->sp_offset_in_saved_window()];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  if (reg->is_local() || reg->is_in()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    assert(_window != NULL, "Window should be available");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    return second_word + (address)&_window[reg->sp_offset_in_saved_window()];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Only the window'd GPRs get handled this way; not the globals.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
void RegisterMap::check_location_valid() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  register_map_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  assert((_location_valid[0] & bad_mask) == 0, "cannot have special locations for SP,FP,TLS,etc.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// We are shifting windows.  That means we are moving all %i to %o,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// getting rid of all current %l, and keeping all %g.  This is only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// complicated if any of the location pointers for these are valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
// The normal case is that everything is in its standard register window
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// home, and _location_valid[0] is zero.  In that case, this routine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// does exactly nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
void RegisterMap::shift_individual_registers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  if (!update_map())  return;  // this only applies to maps with locations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  register_map_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  check_location_valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  LocationValidType lv = _location_valid[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  LocationValidType lv0 = lv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  lv &= ~R_LIO_mask;  // clear %l, %o, %i regs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // if we cleared some non-%g locations, we may have to do some shifting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  if (lv != lv0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    // copy %i0-%i5 to %o0-%o5, if they have special locations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // This can happen in within stubs which spill argument registers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // around a dynamic link operation, such as resolve_opt_virtual_call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    for (int i = 0; i < 8; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      if (lv0 & (1LL << R_I_nums[i])) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
        _location[R_O_nums[i]] = _location[R_I_nums[i]];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
        lv |=  (1LL << R_O_nums[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  _location_valid[0] = lv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  check_location_valid();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   175
bool frame::safe_for_sender(JavaThread *thread) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   177
  address _SP = (address) sp();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   178
  address _FP = (address) fp();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   179
  address _UNEXTENDED_SP = (address) unextended_sp();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   180
  // sp must be within the stack
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   181
  bool sp_safe = (_SP <= thread->stack_base()) &&
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   182
                 (_SP >= thread->stack_base() - thread->stack_size());
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   183
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   184
  if (!sp_safe) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   185
    return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   186
  }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   187
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   188
  // unextended sp must be within the stack and above or equal sp
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   189
  bool unextended_sp_safe = (_UNEXTENDED_SP <= thread->stack_base()) &&
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   190
                            (_UNEXTENDED_SP >= _SP);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   191
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   192
  if (!unextended_sp_safe) return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   193
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   194
  // an fp must be within the stack and above (but not equal) sp
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   195
  bool fp_safe = (_FP <= thread->stack_base()) &&
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   196
                 (_FP > _SP);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   197
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   198
  // We know sp/unextended_sp are safe only fp is questionable here
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   199
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   200
  // If the current frame is known to the code cache then we can attempt to
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   201
  // to construct the sender and do some validation of it. This goes a long way
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   202
  // toward eliminating issues when we get in frame construction code
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   203
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   204
  if (_cb != NULL ) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   205
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   206
    // First check if frame is complete and tester is reliable
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   207
    // Unfortunately we can only check frame complete for runtime stubs and nmethod
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   208
    // other generic buffer blobs are more problematic so we just assume they are
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   209
    // ok. adapter blobs never have a frame complete and are never ok.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   210
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   211
    if (!_cb->is_frame_complete_at(_pc)) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   212
      if (_cb->is_compiled() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   213
        return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   214
      }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   215
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   216
15801
fefae82e1067 8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents: 14579
diff changeset
   217
    // Could just be some random pointer within the codeBlob
fefae82e1067 8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents: 14579
diff changeset
   218
    if (!_cb->code_contains(_pc)) {
fefae82e1067 8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents: 14579
diff changeset
   219
      return false;
fefae82e1067 8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents: 14579
diff changeset
   220
    }
fefae82e1067 8008340: [sampling] assert(upper->pc_offset() >= pc_offset) failed: sanity
rbackman
parents: 14579
diff changeset
   221
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   222
    // Entry frame checks
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   223
    if (is_entry_frame()) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   224
      // an entry frame must have a valid fp.
40332
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   225
      return fp_safe && is_entry_frame_valid(thread);
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   226
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   227
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   228
    intptr_t* younger_sp = sp();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   229
    intptr_t* _SENDER_SP = sender_sp(); // sender is actually just _FP
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   230
    bool adjusted_stack = is_interpreted_frame();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   231
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   232
    address   sender_pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   233
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   234
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   235
    // We must always be able to find a recognizable pc
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   236
    CodeBlob* sender_blob = CodeCache::find_blob_unsafe(sender_pc);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   237
    if (sender_pc == NULL ||  sender_blob == NULL) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   238
      return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   239
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   240
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   241
    // Could be a zombie method
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   242
    if (sender_blob->is_zombie() || sender_blob->is_unloaded()) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   243
      return false;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   244
    }
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   245
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   246
    // It should be safe to construct the sender though it might not be valid
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   247
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   248
    frame sender(_SENDER_SP, younger_sp, adjusted_stack);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   249
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   250
    // Do we have a valid fp?
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   251
    address sender_fp = (address) sender.fp();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   252
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   253
    // an fp must be within the stack and above (but not equal) current frame's _FP
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   254
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   255
    bool sender_fp_safe = (sender_fp <= thread->stack_base()) &&
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   256
                   (sender_fp > _FP);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   257
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   258
    if (!sender_fp_safe) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   259
      return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   260
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   261
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   262
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   263
    // If the potential sender is the interpreter then we can do some more checking
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   264
    if (Interpreter::contains(sender_pc)) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   265
      return sender.is_interpreted_frame_valid(thread);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   266
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   267
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   268
    // Could just be some random pointer within the codeBlob
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   269
    if (!sender.cb()->code_contains(sender_pc)) {
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   270
      return false;
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   271
    }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   272
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   273
    // We should never be able to see an adapter if the current frame is something from code cache
6418
6671edbd230e 6978355: renaming for 6961697
twisti
parents: 5702
diff changeset
   274
    if (sender_blob->is_adapter_blob()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   275
      return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   276
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   277
40332
a52d1e719c4d 8159284: bigapps/Jetty - assert(jfa->last_Java_sp() > sp()) failed with JFR in use
coleenp
parents: 38144
diff changeset
   278
    if (sender.is_entry_frame()) {
42051
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   279
      // Validate the JavaCallWrapper an entry frame must have
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   280
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   281
      address jcw = (address)sender.entry_frame_call_wrapper();
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   282
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   283
      bool jcw_safe = (jcw <= thread->stack_base()) && (jcw > sender_fp);
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   284
0264f170da65 8166679: JNI AsyncGetCallTrace replaces topmost frame name with <no Java callstack recorded> starting with Java 9 b133
cjplummer
parents: 40337
diff changeset
   285
      return jcw_safe;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   286
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   287
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   288
    // If the frame size is 0 something (or less) is bad because every nmethod has a non-zero frame size
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   289
    // because you must allocate window space
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   290
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17006
diff changeset
   291
    if (sender_blob->frame_size() <= 0) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   292
      assert(!sender_blob->is_compiled(), "should count return address at least");
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   293
      return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   294
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   295
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   296
    // The sender should positively be an nmethod or call_stub. On sparc we might in fact see something else.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   297
    // The cause of this is because at a save instruction the O7 we get is a leftover from an earlier
17006
b9bfa72b7dda 7104565: trim jprt build targets
drchase
parents: 15801
diff changeset
   298
    // window use. So if a runtime stub creates two frames (common in fastdebug/debug) then we see the
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   299
    // stale pc. So if the sender blob is not something we'd expect we have little choice but to declare
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   300
    // the stack unwalkable. pd_get_top_frame_for_signal_handler tries to recover from this by unwinding
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   301
    // that initial frame and retrying.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   302
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   303
    if (!sender_blob->is_compiled()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   304
      return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   305
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   306
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   307
    // Could put some more validation for the potential non-interpreted sender
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   308
    // frame we'd create by calling sender if I could think of any. Wait for next crash in forte...
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   309
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   310
    // One idea is seeing if the sender_pc we have is one that we'd expect to call to current cb
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   311
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   312
    // We've validated the potential sender that would be created
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   313
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   314
    return true;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   315
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   317
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   318
  // Must be native-compiled frame. Since sender will try and use fp to find
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   319
  // linkages it must be safe
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   320
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   321
  if (!fp_safe) return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   322
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   323
  // could try and do some more potential verification of native frame if we could think of some...
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   324
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   325
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
// constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// Construct an unpatchable, deficient frame
26821
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   331
void frame::init(intptr_t* sp, address pc, CodeBlob* cb) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  assert( (((intptr_t)sp & (wordSize-1)) == 0), "frame constructor passed an invalid sp");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  _sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  _younger_sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  _pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  _cb = cb;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  _sp_adjustment_by_callee = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  assert(pc == NULL && cb == NULL || pc != NULL, "can't have a cb and no pc!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  if (_cb == NULL && _pc != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    _cb = CodeCache::find_blob(_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  _deopt_state = unknown;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
26821
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   345
frame::frame(intptr_t* sp, unpatchable_t, address pc, CodeBlob* cb) {
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   346
  init(sp, pc, cb);
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   347
}
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   348
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   349
frame::frame(intptr_t* sp, intptr_t* younger_sp, bool younger_frame_is_interpreted) :
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   350
  _sp(sp),
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   351
  _younger_sp(younger_sp),
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   352
  _deopt_state(unknown),
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   353
  _sp_adjustment_by_callee(0) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  if (younger_sp == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
    // make a deficient frame which doesn't know where its PC is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    _pc = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    _cb = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    _pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    assert( (intptr_t*)younger_sp[FP->sp_offset_in_saved_window()] == (intptr_t*)((intptr_t)sp - STACK_BIAS), "younger_sp must be valid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    // Any frame we ever build should always "safe" therefore we should not have to call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    // find_blob_unsafe
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    // In case of native stubs, the pc retrieved here might be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    // wrong.  (the _last_native_pc will have the right value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    // So do not put add any asserts on the _pc here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  }
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   367
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   368
  if (_pc != NULL)
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   369
    _cb = CodeCache::find_blob(_pc);
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   370
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   371
  // Check for MethodHandle call sites.
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   372
  if (_cb != NULL) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   373
    CompiledMethod* nm = _cb->as_compiled_method_or_null();
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   374
    if (nm != NULL) {
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   375
      if (nm->is_deopt_mh_entry(_pc) || nm->is_method_handle_return(_pc)) {
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   376
        _sp_adjustment_by_callee = (intptr_t*) ((intptr_t) sp[L7_mh_SP_save->sp_offset_in_saved_window()] + STACK_BIAS) - sp;
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   377
        // The SP is already adjusted by this MH call site, don't
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   378
        // overwrite this value with the wrong interpreter value.
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   379
        younger_frame_is_interpreted = false;
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   380
      }
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   381
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   384
  if (younger_frame_is_interpreted) {
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   385
    // compute adjustment to this frame's SP made by its interpreted callee
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   386
    _sp_adjustment_by_callee = (intptr_t*) ((intptr_t) younger_sp[I5_savedSP->sp_offset_in_saved_window()] + STACK_BIAS) - sp;
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   387
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   389
  // It is important that the frame is fully constructed when we do
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   390
  // this lookup as get_deopt_original_pc() needs a correct value for
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   391
  // unextended_sp() which uses _sp_adjustment_by_callee.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  if (_pc != NULL) {
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   393
    address original_pc = CompiledMethod::get_deopt_original_pc(this);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   394
    if (original_pc != NULL) {
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   395
      _pc = original_pc;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
      _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
      _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
26821
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   403
#ifndef PRODUCT
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   404
// This is a generic constructor which is only used by pns() in debug.cpp.
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   405
frame::frame(void* sp, void* fp, void* pc) {
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   406
  init((intptr_t*)sp, (address)pc, NULL);
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   407
}
46589
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   408
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   409
extern "C" void findpc(intptr_t x);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   410
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   411
void frame::pd_ps() {
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   412
  intptr_t* curr_sp = sp();
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   413
  intptr_t* prev_sp = curr_sp - 1;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   414
  intptr_t *pc = NULL;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   415
  intptr_t *next_pc = NULL;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   416
  int count = 0;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   417
  tty->print_cr("register window backtrace from " INTPTR_FORMAT ":", p2i(curr_sp));
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   418
  while (curr_sp != NULL && ((intptr_t)curr_sp & 7) == 0 && curr_sp > prev_sp && curr_sp < prev_sp+1000) {
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   419
    pc      = next_pc;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   420
    next_pc = (intptr_t*) curr_sp[I7->sp_offset_in_saved_window()];
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   421
    tty->print("[%d] curr_sp=" INTPTR_FORMAT " pc=", count, p2i(curr_sp));
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   422
    findpc((intptr_t)pc);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   423
    if (WizardMode && Verbose) {
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   424
      // print register window contents also
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   425
      tty->print_cr("    L0..L7: {"
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   426
                    INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " "
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   427
                    INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " ",
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   428
                    curr_sp[0+0], curr_sp[0+1], curr_sp[0+2], curr_sp[0+3],
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   429
                    curr_sp[0+4], curr_sp[0+5], curr_sp[0+6], curr_sp[0+7]);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   430
      tty->print_cr("    I0..I7: {"
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   431
                    INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " "
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   432
                    INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " " INTPTR_FORMAT " ",
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   433
                    curr_sp[8+0], curr_sp[8+1], curr_sp[8+2], curr_sp[8+3],
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   434
                    curr_sp[8+4], curr_sp[8+5], curr_sp[8+6], curr_sp[8+7]);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   435
      // (and print stack frame contents too??)
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   436
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   437
      CodeBlob *b = CodeCache::find_blob((address) pc);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   438
      if (b != NULL) {
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   439
        if (b->is_nmethod()) {
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   440
          Method* m = ((nmethod*)b)->method();
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   441
          int nlocals = m->max_locals();
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   442
          int nparams  = m->size_of_parameters();
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   443
          tty->print_cr("compiled java method (locals = %d, params = %d)", nlocals, nparams);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   444
        }
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   445
      }
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   446
    }
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   447
    prev_sp = curr_sp;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   448
    curr_sp = (intptr_t *)curr_sp[FP->sp_offset_in_saved_window()];
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   449
    curr_sp = (intptr_t *)((intptr_t)curr_sp + STACK_BIAS);
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   450
    count += 1;
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   451
  }
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   452
  if (curr_sp != NULL)
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   453
    tty->print("[%d] curr_sp=" INTPTR_FORMAT " [bogus sp!]", count, p2i(curr_sp));
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   454
}
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   455
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46381
diff changeset
   456
#endif // PRODUCT
26821
ce9f82507dc2 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well
simonis
parents: 25717
diff changeset
   457
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
bool frame::is_interpreted_frame() const  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  return Interpreter::contains(pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
// sender_sp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
intptr_t* frame::interpreter_frame_sender_sp() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  return fp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  assert(is_interpreted_frame(), "interpreted frame expected");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  Unimplemented();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
frame frame::sender_for_entry_frame(RegisterMap *map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  assert(map != NULL, "map must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // Java frame called from C; skip all C frames and return top C
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // frame of that chunk as the sender
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  assert(!entry_frame_is_first(), "next Java fp must be non zero");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  assert(jfa->last_Java_sp() > _sp, "must be above this frame on stack");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  intptr_t* last_Java_sp = jfa->last_Java_sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  // Since we are walking the stack now this nested anchor is obviously walkable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  // even if it wasn't when it was stacked.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  if (!jfa->walkable()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    // Capture _last_Java_pc (if needed) and mark anchor walkable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    jfa->capture_last_Java_pc(_sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  assert(jfa->last_Java_pc() != NULL, "No captured pc!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  map->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  map->make_integer_regs_unsaved();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  map->shift_window(last_Java_sp, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  assert(map->include_argument_oops(), "should be set by clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  return frame(last_Java_sp, frame::unpatchable, jfa->last_Java_pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
frame frame::sender_for_interpreter_frame(RegisterMap *map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  ShouldNotCallThis();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  return sender(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
frame frame::sender_for_compiled_frame(RegisterMap *map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  ShouldNotCallThis();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  return sender(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
frame frame::sender(RegisterMap* map) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  assert(map != NULL, "map must be set");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  assert(CodeCache::find_blob_unsafe(_pc) == _cb, "inconsistent");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  // Default is not to follow arguments; update it accordingly below
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  map->set_include_argument_oops(false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  if (is_entry_frame()) return sender_for_entry_frame(map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   516
  intptr_t* younger_sp = sp();
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   517
  intptr_t* sp         = sender_sp();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  // Note:  The version of this operation on any platform with callee-save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  //        registers must update the register map (if not null).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  //        In order to do this correctly, the various subtypes of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  //        of frame (interpreted, compiled, glue, native),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  //        must be distinguished.  There is no need on SPARC for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  //        such distinctions, because all callee-save registers are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  //        preserved for all frames via SPARC-specific mechanisms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  //        *** HOWEVER, *** if and when we make any floating-point
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  //        registers callee-saved, then we will have to copy over
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  //        the RegisterMap update logic from the Intel code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // The constructor of the sender must know whether this frame is interpreted so it can set the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  // sender's _sp_adjustment_by_callee field.  An osr adapter frame was originally
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  // interpreted but its pc is in the code cache (for c1 -> osr_frame_return_id stub), so it must be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  // explicitly recognized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
9976
6fef34e63df1 7045514: SPARC assembly code for JSR 292 ricochet frames
never
parents: 9632
diff changeset
   536
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   537
  bool frame_is_interpreted = is_interpreted_frame();
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   538
  if (frame_is_interpreted) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
    map->make_integer_regs_unsaved();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    map->shift_window(sp, younger_sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  } else if (_cb != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    // Update the locations of implicitly saved registers to be their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    // addresses in the register save area.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    // For %o registers, the addresses of %i registers in the next younger
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    // frame are used.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
    map->shift_window(sp, younger_sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    if (map->update_map()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      // Tell GC to use argument oopmaps for some runtime stubs that need it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      // For C1, the runtime stub might not have oop maps, so set this flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
      // outside of update_register_map.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      if (_cb->oop_maps() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
        OopMapSet::update_register_map(this, map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  }
5687
b862d1f189bd 6930772: JSR 292 needs to support SPARC C1
twisti
parents: 5419
diff changeset
   557
  return frame(sp, younger_sp, frame_is_interpreted);
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
void frame::patch_pc(Thread* thread, address pc) {
40336
4f31bb2b0a5a 8029441: assert(!((nmethod*)_cb)->is_deopt_pc(_pc)) failed: invariant broken
dlong
parents: 38144
diff changeset
   562
  vmassert(_deopt_state != unknown, "frame is unpatchable");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  if(thread == Thread::current()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
   StubRoutines::Sparc::flush_callers_register_windows_func()();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  if (TracePcPatching) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    // QQQ this assert is invalid (or too strong anyway) sice _pc could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    // be original pc and frame could have the deopt pc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    // assert(_pc == *O7_addr() + pc_return_offset, "frame has wrong pc");
24917
bf961166fa07 8044071: Print format/argument warnings
mikael
parents: 23203
diff changeset
   570
    tty->print_cr("patch_pc at address " INTPTR_FORMAT " [" INTPTR_FORMAT " -> " INTPTR_FORMAT "]",
bf961166fa07 8044071: Print format/argument warnings
mikael
parents: 23203
diff changeset
   571
                  p2i(O7_addr()), p2i(_pc), p2i(pc));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  _cb = CodeCache::find_blob(pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  *O7_addr() = pc - pc_return_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  _cb = CodeCache::find_blob(_pc);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 35214
diff changeset
   576
  address original_pc = CompiledMethod::get_deopt_original_pc(this);
4752
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   577
  if (original_pc != NULL) {
67a506670cd0 6921352: JSR 292 needs its own deopt handler
twisti
parents: 4749
diff changeset
   578
    assert(original_pc == _pc, "expected original to be stored before patching");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    _deopt_state = is_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    _deopt_state = not_deoptimized;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
static bool sp_is_valid(intptr_t* old_sp, intptr_t* young_sp, intptr_t* sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  return (((intptr_t)sp & (2*wordSize-1)) == 0 &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
          sp <= old_sp &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
          sp >= young_sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  Find the (biased) sp that is just younger than old_sp starting at sp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  If not found return NULL. Register windows are assumed to be flushed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
intptr_t* frame::next_younger_sp_or_null(intptr_t* old_sp, intptr_t* sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  intptr_t* previous_sp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  intptr_t* orig_sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  int max_frames = (old_sp - sp) / 16; // Minimum frame size is 16
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  int max_frame2 = max_frames;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  while(sp != old_sp && sp_is_valid(old_sp, orig_sp, sp)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
    if (max_frames-- <= 0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
      // too many frames have gone by; invalid parameters given to this function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    previous_sp = sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    sp = (intptr_t*)sp[FP->sp_offset_in_saved_window()];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
    sp = (intptr_t*)((intptr_t)sp + STACK_BIAS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  return (sp == old_sp ? previous_sp : NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  Determine if "sp" is a valid stack pointer. "sp" is assumed to be younger than
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  "valid_sp". So if "sp" is valid itself then it should be possible to walk frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  from "sp" to "valid_sp". The assumption is that the registers windows for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  thread stack in question are flushed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
bool frame::is_valid_stack_pointer(intptr_t* valid_sp, intptr_t* sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  return next_younger_sp_or_null(valid_sp, sp) != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   626
bool frame::is_interpreted_frame_valid(JavaThread* thread) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  assert(is_interpreted_frame(), "Not an interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  // These are reasonable sanity checks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  if (fp() == 0 || (intptr_t(fp()) & (2*wordSize-1)) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  if (sp() == 0 || (intptr_t(sp()) & (2*wordSize-1)) != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   635
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  const intptr_t interpreter_frame_initial_sp_offset = interpreter_frame_vm_local_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  if (fp() + interpreter_frame_initial_sp_offset < sp()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // These are hacks to keep us out of trouble.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  // The problem with these is that they mask other problems
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  if (fp() <= sp()) {        // this attempts to deal with unsigned comparison above
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   645
  // do some validation of frame elements
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   646
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   647
  // first the method
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   648
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   649
  Method* m = *interpreter_frame_method_addr();
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   650
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   651
  // validate the method we'd find in this potential sender
51263
b5aac518b097 8207779: Method::is_valid_method() compares 'this' with NULL
hseigel
parents: 47560
diff changeset
   652
  if (!Method::is_valid_method(m)) return false;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   653
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   654
  // stack frames shouldn't be much larger than max_stack elements
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   655
35071
a0910b1d3e0d 8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents: 31389
diff changeset
   656
  if (fp() - unextended_sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   659
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25328
diff changeset
   660
  // validate bci/bcp
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   661
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25328
diff changeset
   662
  address bcp = interpreter_frame_bcp();
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25328
diff changeset
   663
  if (m->validate_bci_from_bcp(bcp) < 0) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   664
    return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   665
  }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   666
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   667
  // validate ConstantPoolCache*
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   668
  ConstantPoolCache* cp = *interpreter_frame_cache_addr();
54437
2ae93028bef3 8221539: [metaspace] Improve MetaspaceObj::is_metaspace_obj() and friends
stuefe
parents: 51263
diff changeset
   669
  if (MetaspaceObj::is_valid(cp) == false) return false;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   670
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   671
  // validate locals
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   672
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   673
  address locals =  (address) *interpreter_frame_locals_addr();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   674
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   675
  if (locals > thread->stack_base() || locals < (address) fp()) return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   676
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   677
  // We'd have to be pretty unlucky to be mislead at this point
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
// Windows have been flushed on entry (but not marked). Capture the pc that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
// is the return address to the frame that contains "sp" as its stack pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
// This pc resides in the called of the frame corresponding to "sp".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
// As a side effect we mark this JavaFrameAnchor as having flushed the windows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
// This side effect lets us mark stacked JavaFrameAnchors (stacked in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
// call_helper) as flushed when we have flushed the windows for the most
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
// recent (i.e. current) JavaFrameAnchor. This saves useless flushing calls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
// and lets us find the pc just once rather than multiple times as it did
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
// in the bad old _post_Java_state days.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
void JavaFrameAnchor::capture_last_Java_pc(intptr_t* sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  if (last_Java_sp() != NULL && last_Java_pc() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    // try and find the sp just younger than _last_Java_sp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    intptr_t* _post_Java_sp = frame::next_younger_sp_or_null(last_Java_sp(), sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    // Really this should never fail otherwise VM call must have non-standard
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    // frame linkage (bad) or stack is not properly flushed (worse).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
    guarantee(_post_Java_sp != NULL, "bad stack!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    _last_Java_pc = (address) _post_Java_sp[ I7->sp_offset_in_saved_window()] + frame::pc_return_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  set_window_flushed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
void JavaFrameAnchor::make_walkable(JavaThread* thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  if (walkable()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  // Eventually make an assert
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  guarantee(Thread::current() == (Thread*)thread, "only current thread can flush its registers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  // We always flush in case the profiler wants it but we won't mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  // the windows as flushed unless we have a last_Java_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  intptr_t* sp = StubRoutines::Sparc::flush_callers_register_windows_func()();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  if (last_Java_sp() != NULL ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    capture_last_Java_pc(sp);
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
intptr_t* frame::entry_frame_argument_at(int offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  // convert offset to index to deal with tsi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  intptr_t* LSP = (intptr_t*) sp()[Lentry_args->sp_offset_in_saved_window()];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  return &LSP[index+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  assert(is_interpreted_frame(), "interpreted frame expected");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
   728
  Method* method = interpreter_frame_method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  BasicType type = method->result_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  if (method->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
    // Prior to notifying the runtime of the method_exit the possible result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
    // value is saved to l_scratch and d_scratch.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    intptr_t* l_scratch = fp() + interpreter_frame_l_scratch_fp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    intptr_t* d_scratch = fp() + interpreter_frame_d_scratch_fp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
    address l_addr = (address)l_scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
    // On 64-bit the result for 1/8/16/32-bit result types is in the other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
    // word half
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
    l_addr += wordSize/2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
    switch (type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
      case T_OBJECT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
      case T_ARRAY: {
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 18488
diff changeset
   746
        oop obj = cast_to_oop(at(interpreter_frame_oop_temp_offset));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
        assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
        *oop_result = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
      case T_BOOLEAN : { jint* p = (jint*)l_addr; value_result->z = (jboolean)((*p) & 0x1); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
      case T_BYTE    : { jint* p = (jint*)l_addr; value_result->b = (jbyte)((*p) & 0xff); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
      case T_CHAR    : { jint* p = (jint*)l_addr; value_result->c = (jchar)((*p) & 0xffff); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
      case T_SHORT   : { jint* p = (jint*)l_addr; value_result->s = (jshort)((*p) & 0xffff); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
      case T_INT     : value_result->i = *(jint*)l_addr; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
      case T_LONG    : value_result->j = *(jlong*)l_scratch; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
      case T_FLOAT   : value_result->f = *(jfloat*)d_scratch; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      case T_DOUBLE  : value_result->d = *(jdouble*)d_scratch; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
      case T_VOID    : /* Nothing to do */ break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      default        : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
    intptr_t* tos_addr = interpreter_frame_tos_address();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
    switch(type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
      case T_OBJECT:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
      case T_ARRAY: {
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 18488
diff changeset
   769
        oop obj = cast_to_oop(*tos_addr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
        assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
        *oop_result = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
      case T_BOOLEAN : { jint* p = (jint*)tos_addr; value_result->z = (jboolean)((*p) & 0x1); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      case T_BYTE    : { jint* p = (jint*)tos_addr; value_result->b = (jbyte)((*p) & 0xff); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
      case T_CHAR    : { jint* p = (jint*)tos_addr; value_result->c = (jchar)((*p) & 0xffff); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      case T_SHORT   : { jint* p = (jint*)tos_addr; value_result->s = (jshort)((*p) & 0xffff); break; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      case T_INT     : value_result->i = *(jint*)tos_addr; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
      case T_LONG    : value_result->j = *(jlong*)tos_addr; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
      case T_FLOAT   : value_result->f = *(jfloat*)tos_addr; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
      case T_DOUBLE  : value_result->d = *(jdouble*)tos_addr; break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
      case T_VOID    : /* Nothing to do */ break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      default        : ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  return type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
// Lesp pointer is one word lower than the top item on the stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize) - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  return &interpreter_frame_tos_address()[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
}
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   795
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   796
11571
23f825a42a85 7120468: SPARC/x86: use frame::describe to enhance trace_method_handle
bdelsart
parents: 11565
diff changeset
   797
#ifndef PRODUCT
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   798
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   799
#define DESCRIBE_FP_OFFSET(name) \
9632
cd86c748c12b 7043301: assert(locals < caller->fp() || locals > (caller->fp() + 16)) failed: locals in save area
never
parents: 9437
diff changeset
   800
  values.describe(frame_no, fp() + frame::name##_offset, #name)
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   801
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   802
void frame::describe_pd(FrameValues& values, int frame_no) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   803
  for (int w = 0; w < frame::register_save_words; w++) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   804
    values.describe(frame_no, sp() + w, err_msg("register save area word %d", w), 1);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   805
  }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   806
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11632
diff changeset
   807
  if (is_interpreted_frame()) {
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   808
    DESCRIBE_FP_OFFSET(interpreter_frame_d_scratch_fp);
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   809
    DESCRIBE_FP_OFFSET(interpreter_frame_l_scratch_fp);
38074
8475fdc6dcc3 8154580: Save mirror in interpreter frame to enable cleanups of CLDClosure
coleenp
parents: 35214
diff changeset
   810
    DESCRIBE_FP_OFFSET(interpreter_frame_mirror);
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   811
    DESCRIBE_FP_OFFSET(interpreter_frame_oop_temp);
11565
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 10539
diff changeset
   812
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 10539
diff changeset
   813
    // esp, according to Lesp (e.g. not depending on bci), if seems valid
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 10539
diff changeset
   814
    intptr_t* esp = *interpreter_frame_esp_addr();
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 10539
diff changeset
   815
    if ((esp >= sp()) && (esp < fp())) {
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 10539
diff changeset
   816
      values.describe(-1, esp, "*Lesp");
713a0398ca58 7120450: complete information dumped by frame_describe
bdelsart
parents: 10539
diff changeset
   817
    }
9437
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   818
  }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   819
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   820
  if (!is_compiled_frame()) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   821
    if (frame::callee_aggregate_return_pointer_words != 0) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   822
      values.describe(frame_no, sp() + frame::callee_aggregate_return_pointer_sp_offset, "callee_aggregate_return_pointer_word");
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   823
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   824
    for (int w = 0; w < frame::callee_register_argument_save_area_words; w++) {
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   825
      values.describe(frame_no, sp() + frame::callee_register_argument_save_area_sp_offset + w,
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   826
                      err_msg("callee_register_argument_save_area_words %d", w));
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   827
    }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   828
  }
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   829
}
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   830
9981851b4b8c 7009361: JSR 292 Invalid value on stack on solaris-sparc with -Xcomp
never
parents: 7397
diff changeset
   831
#endif
10539
f87cedf7983c 7087445: Improve platform independence of JSR292 shared code
bdelsart
parents: 9976
diff changeset
   832
f87cedf7983c 7087445: Improve platform independence of JSR292 shared code
bdelsart
parents: 9976
diff changeset
   833
intptr_t *frame::initial_deoptimization_info() {
f87cedf7983c 7087445: Improve platform independence of JSR292 shared code
bdelsart
parents: 9976
diff changeset
   834
  // unused... but returns fp() to minimize changes introduced by 7087445
f87cedf7983c 7087445: Improve platform independence of JSR292 shared code
bdelsart
parents: 9976
diff changeset
   835
  return fp();
f87cedf7983c 7087445: Improve platform independence of JSR292 shared code
bdelsart
parents: 9976
diff changeset
   836
}