hotspot/src/share/vm/runtime/vframe.hpp
author zmajo
Mon, 27 Apr 2015 10:49:43 +0200
changeset 30305 b92a97e1e9cb
parent 25714 87fa6860b5ae
child 31782 b23b74f8ae8d
permissions -rw-r--r--
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86 Summary: Introduce the PreserveFramePointer flag to control if RBP is used as the frame pointer or as a general purpose register. Reviewed-by: kvn, roland, dlong, enevill, shade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22234
diff changeset
     2
 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3686
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3686
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: 3686
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_VFRAME_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_VFRAME_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "code/debugInfo.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "code/location.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/frame.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/frame.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/stackValue.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/stackValueCollection.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "utilities/growableArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// vframes are virtual stack frames representing source level activations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// A single frame may hold several source level activations in the case of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// optimized code. The debugging stored with the optimized code enables
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// us to unfold a frame as a stack of vframes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// A cVFrame represents an activation of a non-java method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// The vframe inheritance hierarchy:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// - vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//   - javaVFrame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
//     - interpretedVFrame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//     - compiledVFrame     ; (used for both compiled Java methods and native stubs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//   - externalVFrame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//     - entryVFrame        ; special frame created when calling Java from C
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// - BasicLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class vframe: public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  frame        _fr;      // Raw frame behind the virtual frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  RegisterMap  _reg_map; // Register map for the raw frame (used to handle callee-saved registers).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  JavaThread*  _thread;  // The thread owning the raw frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  vframe(const frame* fr, const RegisterMap* reg_map, JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  vframe(const frame* fr, JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // Factory method for creating vframes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static vframe* new_vframe(const frame* f, const RegisterMap *reg_map, JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  frame              fr()           const { return _fr;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  CodeBlob*          cb()         const { return _fr.cb();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  nmethod*           nm()         const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      assert( cb() != NULL && cb()->is_nmethod(), "usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      return (nmethod*) cb();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// ???? Does this need to be a copy?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  frame*             frame_pointer() { return &_fr;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  const RegisterMap* register_map() const { return &_reg_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  JavaThread*        thread()       const { return _thread;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Returns the sender vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  virtual vframe* sender() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Returns the next javaVFrame on the stack (skipping all other kinds of frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  javaVFrame *java_sender() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Answers if the this is the top vframe in the frame, i.e., if the sender vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // is in the caller frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  virtual bool is_top() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Returns top vframe within same frame (see is_top())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  virtual vframe* top() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Type testing operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  virtual bool is_entry_frame()       const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  virtual bool is_java_frame()        const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual bool is_interpreted_frame() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  virtual bool is_compiled_frame()    const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // printing operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  virtual void print_value() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  virtual void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
class javaVFrame: public vframe {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // JVM state
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   109
  virtual Method*                      method()         const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  virtual int                          bci()            const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  virtual StackValueCollection*        locals()         const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  virtual StackValueCollection*        expressions()    const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // the order returned by monitors() is from oldest -> youngest#4418568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  virtual GrowableArray<MonitorInfo*>* monitors()       const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Debugging support via JVMTI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // NOTE that this is not guaranteed to give correct results for compiled vframes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Deoptimize first if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  virtual void set_locals(StackValueCollection* values) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Test operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool is_java_frame() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  javaVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) : vframe(fr, reg_map, thread) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  javaVFrame(const frame* fr, JavaThread* thread) : vframe(fr, thread) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // casting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  static javaVFrame* cast(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    assert(vf == NULL || vf->is_java_frame(), "must be java frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    return (javaVFrame*) vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Return an array of monitors locked by this frame in the youngest to oldest order
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  GrowableArray<MonitorInfo*>* locked_monitors();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // printing used during stack dumps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  void print_lock_info_on(outputStream* st, int frame_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  void print_lock_info(int frame_count) { print_lock_info_on(tty, frame_count); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // printing operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  void print_value() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  void print_activation(int index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // verify operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  virtual void verify() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // Structural compare
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  bool structural_compare(javaVFrame* other);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  friend class vframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
class interpretedVFrame: public javaVFrame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // JVM state
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   161
  Method*                      method()         const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  int                          bci()            const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  StackValueCollection*        locals()         const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  StackValueCollection*        expressions()    const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  GrowableArray<MonitorInfo*>* monitors()       const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  void set_locals(StackValueCollection* values) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // Test operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  bool is_interpreted_frame() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  interpretedVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) : javaVFrame(fr, reg_map, thread) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Accessors for Byte Code Pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  u_char* bcp() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  void set_bcp(u_char* bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // casting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  static interpretedVFrame* cast(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    assert(vf == NULL || vf->is_interpreted_frame(), "must be interpreted frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    return (interpretedVFrame*) vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static const int bcp_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  intptr_t* locals_addr_at(int offset) const;
25473
185aff4215a4 8039905: heapdump/OnOOMToFile and heapdump/OnOOMToPath fail with "assert(fr().interpreter_frame_expression_stack_size() >= length) failed: error in expression stack!"
mgronlun
parents: 24424
diff changeset
   189
  StackValueCollection* stack_data(bool expressions) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // returns where the parameters starts relative to the frame pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  int start_of_parameters() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // verify operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void verify() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  friend class vframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
class externalVFrame: public vframe {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  externalVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread) : vframe(fr, reg_map, thread) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // printing operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void print_value() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  friend class vframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
class entryVFrame: public externalVFrame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  bool is_entry_frame() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  entryVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // casting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  static entryVFrame* cast(vframe* vf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    assert(vf == NULL || vf->is_entry_frame(), "must be entry frame");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    return (entryVFrame*) vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void print_value() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  friend class vframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
// A MonitorInfo is a ResourceObject that describes a the pair:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
// 1) the owner of the monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
// 2) the monitor lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
class MonitorInfo : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  oop        _owner; // the object owning the monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  BasicLock* _lock;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   246
  oop        _owner_klass; // klass (mirror) if owner was scalar replaced
256
70fdc3927a4e 6681646: Relocking of a scalar replaced object during deoptimization is broken
kvn
parents: 1
diff changeset
   247
  bool       _eliminated;
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   248
  bool       _owner_is_scalar_replaced;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Constructor
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   251
  MonitorInfo(oop owner, BasicLock* lock, bool eliminated, bool owner_is_scalar_replaced) {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   252
    if (!owner_is_scalar_replaced) {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   253
      _owner = owner;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   254
      _owner_klass = NULL;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   255
    } else {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   256
      assert(eliminated, "monitor should be eliminated for scalar replaced object");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   257
      _owner = NULL;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   258
      _owner_klass = owner;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   259
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    _lock  = lock;
256
70fdc3927a4e 6681646: Relocking of a scalar replaced object during deoptimization is broken
kvn
parents: 1
diff changeset
   261
    _eliminated = eliminated;
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   262
    _owner_is_scalar_replaced = owner_is_scalar_replaced;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // Accessors
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   265
  oop        owner() const {
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   266
    assert(!_owner_is_scalar_replaced, "should not be called for scalar replaced object");
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   267
    return _owner;
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   268
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   269
  oop   owner_klass() const {
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   270
    assert(_owner_is_scalar_replaced, "should not be called for not scalar replaced object");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   271
    return _owner_klass;
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   272
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  BasicLock* lock()  const { return _lock;  }
256
70fdc3927a4e 6681646: Relocking of a scalar replaced object during deoptimization is broken
kvn
parents: 1
diff changeset
   274
  bool eliminated()  const { return _eliminated; }
3171
aa289b22b577 6837472: com/sun/jdi/MonitorFrameInfo.java fails with AggressiveOpts in 6u14
kvn
parents: 670
diff changeset
   275
  bool owner_is_scalar_replaced()  const { return _owner_is_scalar_replaced; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
class vframeStreamCommon : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // common
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  frame        _frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  JavaThread*  _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  RegisterMap  _reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  enum { interpreted_mode, compiled_mode, at_end_mode } _mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  int _sender_decode_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Cached information
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   289
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  int       _bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // Should VM activations be ignored or not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  bool _stop_at_java_call_stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  bool fill_in_compiled_inlined_sender();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void fill_from_compiled_frame(int decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void fill_from_compiled_native_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  void found_bad_method_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  void fill_from_interpreter_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  bool fill_from_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // Helper routine for security_get_caller_frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  void skip_prefixed_method_and_wrappers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  vframeStreamCommon(JavaThread* thread) : _reg_map(thread, false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    _thread = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  // Accessors
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   314
  Method* method() const { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  int bci() const { return _bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  intptr_t* frame_id() const { return _frame.id(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  address frame_pc() const { return _frame.pc(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  CodeBlob*          cb()         const { return _frame.cb();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  nmethod*           nm()         const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      assert( cb() != NULL && cb()->is_nmethod(), "usage");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      return (nmethod*) cb();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // Frame type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  bool is_interpreted_frame() const { return _frame.is_interpreted_frame(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  bool is_entry_frame() const       { return _frame.is_entry_frame(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  void next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    // handle frames with inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
    if (_mode == compiled_mode    && fill_in_compiled_inlined_sender()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    // handle general case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      _frame = _frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    } while (!fill_from_frame());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  }
16617
6235d2c7549f 7198429: need checked categorization of caller-sensitive methods in the JDK
twisti
parents: 13728
diff changeset
   339
  void security_next();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  bool at_end() const { return _mode == at_end_mode; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // Implements security traversal. Skips depth no. of frame including
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // special security frames and prefixed native methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  void security_get_caller_frame(int depth);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // Helper routine for JVM_LatestUserDefinedLoader -- needed for 1.4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // reflection implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  void skip_reflection_related_frames();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
class vframeStream : public vframeStreamCommon {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  vframeStream(JavaThread* thread, bool stop_at_java_call_stub = false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    : vframeStreamCommon(thread) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    _stop_at_java_call_stub = stop_at_java_call_stub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    if (!thread->has_last_Java_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      _mode = at_end_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    _frame = _thread->last_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    while (!fill_from_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
      _frame = _frame.sender(&_reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // top_frame may not be at safepoint, start with sender
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  vframeStream(JavaThread* thread, frame top_frame, bool stop_at_java_call_stub = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
inline bool vframeStreamCommon::fill_in_compiled_inlined_sender() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  if (_sender_decode_offset == DebugInformationRecorder::serialized_null) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  fill_from_compiled_frame(_sender_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
inline void vframeStreamCommon::fill_from_compiled_frame(int decode_offset) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  _mode = compiled_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // Range check to detect ridiculous offsets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  if (decode_offset == DebugInformationRecorder::serialized_null ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
      decode_offset < 0 ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
      decode_offset >= nm()->scopes_data_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    // 6379830 AsyncGetCallTrace sometimes feeds us wild frames.
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   392
    // If we read nmethod::scopes_data at serialized_null (== 0)
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   393
    // or if read some at other invalid offset, invalid values will be decoded.
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   394
    // Based on these values, invalid heap locations could be referenced
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   395
    // that could lead to crashes in product mode.
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   396
    // Therefore, do not use the decode offset if invalid, but fill the frame
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   397
    // as it were a native compiled frame (no Java-level assumptions).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
    if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
      tty->print_cr("Error in fill_from_frame: pc_desc for "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
                    INTPTR_FORMAT " not found or invalid at %d",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22234
diff changeset
   402
                    p2i(_frame.pc()), decode_offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
      nm()->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
      nm()->method()->print_codes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
      nm()->print_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      nm()->print_pcs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // Provide a cheap fallback in product mode.  (See comment above.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    found_bad_method_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    fill_from_compiled_native_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  // Decode first part of scopeDesc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  DebugInfoReadStream buffer(nm(), decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  _sender_decode_offset = buffer.read_int();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   418
  _method               = buffer.read_method();
3686
69c1b5228547 6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents: 3603
diff changeset
   419
  _bci                  = buffer.read_bci();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  assert(_method->is_method(), "checking type of decoded method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
// The native frames are handled specially. We do not rely on ScopeDesc info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
// since the pc might not be exact due to the _last_native_pc trick.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
inline void vframeStreamCommon::fill_from_compiled_native_frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  _mode = compiled_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  _sender_decode_offset = DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  _method = nm()->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  _bci = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
inline bool vframeStreamCommon::fill_from_frame() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // Interpreted frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  if (_frame.is_interpreted_frame()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    fill_from_interpreter_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // Compiled frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  if (cb() != NULL && cb()->is_nmethod()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    if (nm()->is_native_method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      // Do not rely on scopeDesc since the pc might be unprecise due to the _last_native_pc trick.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      fill_from_compiled_native_frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      PcDesc* pc_desc = nm()->pc_desc_at(_frame.pc());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
      int decode_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      if (pc_desc == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
        // Should not happen, but let fill_from_compiled_frame handle it.
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   451
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   452
        // If we are trying to walk the stack of a thread that is not
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   453
        // at a safepoint (like AsyncGetCallTrace would do) then this is an
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   454
        // acceptable result. [ This is assuming that safe_for_sender
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   455
        // is so bullet proof that we can trust the frames it produced. ]
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   456
        //
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   457
        // So if we see that the thread is not safepoint safe
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   458
        // then simply produce the method and a bci of zero
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   459
        // and skip the possibility of decoding any inlining that
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   460
        // may be present. That is far better than simply stopping (or
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   461
        // asserting. If however the thread is safepoint safe this
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   462
        // is the sign of a compiler bug  and we'll let
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   463
        // fill_from_compiled_frame handle it.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   464
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   465
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   466
        JavaThreadState state = _thread->thread_state();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   467
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   468
        // in_Java should be good enough to test safepoint safety
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   469
        // if state were say in_Java_trans then we'd expect that
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   470
        // the pc would have already been slightly adjusted to
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   471
        // one that would produce a pcDesc since the trans state
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   472
        // would be one that might in fact anticipate a safepoint
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   473
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   474
        if (state == _thread_in_Java ) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   475
          // This will get a method a zero bci and no inlining.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   476
          // Might be nice to have a unique bci to signify this
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   477
          // particular case but for now zero will do.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   478
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   479
          fill_from_compiled_native_frame();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   480
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   481
          // There is something to be said for setting the mode to
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   482
          // at_end_mode to prevent trying to walk further up the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   483
          // stack. There is evidence that if we walk any further
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   484
          // that we could produce a bad stack chain. However until
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   485
          // we see evidence that allowing this causes us to find
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   486
          // frames bad enough to cause segv's or assertion failures
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   487
          // we don't do it as while we may get a bad call chain the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   488
          // probability is much higher (several magnitudes) that we
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   489
          // get good data.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   490
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   491
          return true;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 256
diff changeset
   492
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
        decode_offset = DebugInformationRecorder::serialized_null;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
        decode_offset = pc_desc->scope_decode_offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
      fill_from_compiled_frame(decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // End of stack?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  if (_frame.is_first_frame() || (_stop_at_java_call_stub && _frame.is_entry_frame())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
    _mode = at_end_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
inline void vframeStreamCommon::fill_from_interpreter_frame() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   513
  Method* method = _frame.interpreter_frame_method();
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25473
diff changeset
   514
  address   bcp    = _frame.interpreter_frame_bcp();
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 25473
diff changeset
   515
  int       bci    = method->validate_bci_from_bcp(bcp);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // 6379830 AsyncGetCallTrace sometimes feeds us wild frames.
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   517
  // AsyncGetCallTrace interrupts the VM asynchronously. As a result
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   518
  // it is possible to access an interpreter frame for which
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   519
  // no Java-level information is yet available (e.g., becasue
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   520
  // the frame was being created when the VM interrupted it).
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   521
  // In this scenario, pretend that the interpreter is at the point
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   522
  // of entering the method.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  if (bci < 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    found_bad_method_frame();
30305
b92a97e1e9cb 8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents: 25714
diff changeset
   525
    bci = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  _mode   = interpreted_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  _method = method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  _bci    = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   531
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   532
#endif // SHARE_VM_RUNTIME_VFRAME_HPP