hotspot/src/share/vm/runtime/frame.hpp
author twisti
Tue, 05 Jan 2010 15:21:25 +0100
changeset 4567 7fc02fbe5c7a
parent 3908 24b55ad4c228
child 4748 3fa8d8a7c0ea
permissions -rw-r--r--
6893268: additional dynamic language related optimizations in C2 Summary: C2 needs some additional optimizations to be able to handle MethodHandle invokes and invokedynamic instructions at the best performance. Reviewed-by: kvn, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2880
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
typedef class BytecodeInterpreter* interpreterState;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class CodeBlob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// A frame represents a physical stack frame (an activation).  Frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// can be C or Java frames, and the Java frames can be interpreted or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// compiled.  In contrast, vframes represent source-level activations,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// so that one physical frame can correspond to multiple source level
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// frames because of inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class frame VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // Instance variables:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  intptr_t* _sp; // stack pointer (from Thread::last_Java_sp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  address   _pc; // program counter (the next instruction after the call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  CodeBlob* _cb; // CodeBlob that "owns" pc
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  enum deopt_state {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    not_deoptimized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    is_deoptimized,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    unknown
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  deopt_state _deopt_state;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  // Constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  frame();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // pc: Returns the pc at which this frame will continue normally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // It must point at the beginning of the next instruction to execute.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  address pc() const             { return _pc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // This returns the pc that if you were in the debugger you'd see. Not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // the idealized value in the frame object. This undoes the magic conversion
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // that happens for deoptimized frames. In addition it makes the value the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // hardware would want to see in the native frame. The only user (at this point)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // is deoptimization. It likely no one else should ever use it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  address raw_pc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  void set_pc( address   newpc );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  intptr_t* sp() const           { return _sp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  void set_sp( intptr_t* newsp ) { _sp = newsp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  CodeBlob* cb() const           { return _cb; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // patching operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  void   patch_pc(Thread* thread, address pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Every frame needs to return a unique id which distinguishes it from all other frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // For sparc and ia32 use sp. ia64 can have memory frames that are empty so multiple frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // will have identical sp values. For ia64 the bsp (fp) value will serve. No real frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // should have an id() of NULL so it is a distinguishing value for an unmatchable frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // We also have relationals which allow comparing a frame to anoth frame's id() allow
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // us to distinguish younger (more recent activation) from older (less recent activations)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // A NULL id is only valid when comparing for equality.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  intptr_t* id(void) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  bool is_younger(intptr_t* id) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  bool is_older(intptr_t* id) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Compares for strict equality. Rarely used or needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // It can return a different result than f1.id() == f2.id()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  bool equal(frame other) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // type testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool is_interpreted_frame()    const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool is_java_frame()           const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  bool is_entry_frame()          const;             // Java frame called from C?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  bool is_native_frame()         const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  bool is_runtime_frame()        const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  bool is_compiled_frame()       const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  bool is_safepoint_blob_frame() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  bool is_deoptimized_frame()    const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // testers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  bool is_first_frame() const; // oldest frame? (has no sender)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  bool is_first_java_frame() const;              // same for Java frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   111
  bool is_interpreted_frame_valid(JavaThread* thread) const;       // performs sanity checks on interpreted frames.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // tells whether this frame is marked for deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool should_be_deoptimized() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // tells whether this frame can be deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  bool can_be_deoptimized() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // returns the frame size in stack slots
2880
c2974244a496 6848466: frame::frame_size() assertion failure with -XX:+DebugDeoptimization
cfang
parents: 670
diff changeset
   120
  int frame_size(RegisterMap* map) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // returns the sending frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  frame sender(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // for Profiling - acting on another frame. walks sender frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // if valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  frame profile_find_Java_sender_frame(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  bool safe_for_sender(JavaThread *thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // returns the sender, but skips conversion frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  frame real_sender(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // returns the the sending Java frame, skipping any intermediate C frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // NB: receiver must not be first frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  frame java_sender() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Helper methods for better factored code in frame::sender
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  frame sender_for_compiled_frame(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  frame sender_for_entry_frame(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  frame sender_for_interpreter_frame(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  frame sender_for_native_frame(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // All frames:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // A low-level interface for vframes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  intptr_t* addr_at(int index) const             { return &fp()[index];    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  intptr_t  at(int index) const                  { return *addr_at(index); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // accessors for locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  oop obj_at(int offset) const                   { return *obj_at_addr(offset);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void obj_at_put(int offset, oop value)         { *obj_at_addr(offset) = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  jint int_at(int offset) const                  { return *int_at_addr(offset);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  void int_at_put(int offset, jint value)        { *int_at_addr(offset) = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  oop*      obj_at_addr(int offset) const        { return (oop*)     addr_at(offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  oop*      adjusted_obj_at_addr(methodOop method, int index) { return obj_at_addr(adjust_offset(method, index)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  jint*    int_at_addr(int offset) const         { return (jint*)    addr_at(offset); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Link (i.e., the pointer to the previous frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  intptr_t* link() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  void set_link(intptr_t* addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // Return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  address  sender_pc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // Support for deoptimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void deoptimize(JavaThread* thread, bool thread_is_known_safe = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // The frame's original SP, before any extension by an interpreted callee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // used for packing debug info into vframeArray objects and vframeArray lookup.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  intptr_t* unextended_sp() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // returns the stack pointer of the calling frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  intptr_t* sender_sp() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Interpreter frames:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  intptr_t** interpreter_frame_locals_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  intptr_t*  interpreter_frame_bcx_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  intptr_t*  interpreter_frame_mdx_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Tags for TaggedStackInterpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  enum Tag {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      TagValue = 0,          // Important: must be zero to use G0 on sparc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      TagReference = 0x555,  // Reference type - is an oop that needs gc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
      TagCategory2 = 0x666   // Only used internally by interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                             // and not written to the java stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
      // The values above are chosen so that misuse causes a crash
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      // with a recognizable value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  static Tag tag_for_basic_type(BasicType typ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    return (typ == T_OBJECT ? TagReference : TagValue);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Locals
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // The _at version returns a pointer because the address is used for GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  intptr_t* interpreter_frame_local_at(int index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  Tag       interpreter_frame_local_tag(int index) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void      interpreter_frame_set_local_tag(int index, Tag tag) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void interpreter_frame_set_locals(intptr_t* locs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // byte code index/pointer (use these functions for unchecked frame access only!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  intptr_t interpreter_frame_bcx() const                  { return *interpreter_frame_bcx_addr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void interpreter_frame_set_bcx(intptr_t bcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // byte code index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  jint interpreter_frame_bci() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  void interpreter_frame_set_bci(jint bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // byte code pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  address interpreter_frame_bcp() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void    interpreter_frame_set_bcp(address bcp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Unchecked access to the method data index/pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Only use this if you know what you are doing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  intptr_t interpreter_frame_mdx() const                  { return *interpreter_frame_mdx_addr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void interpreter_frame_set_mdx(intptr_t mdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // method data pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  address interpreter_frame_mdp() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  void    interpreter_frame_set_mdp(address dp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // Find receiver out of caller's (compiled) argument list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  oop retrieve_receiver(RegisterMap *reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  // Return the monitor owner and BasicLock for compiled synchronized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // native methods so that biased locking can revoke the receiver's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // bias if necessary. Takes optional nmethod for this frame as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // argument to avoid performing repeated lookups in code cache.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  BasicLock* compiled_synchronized_native_monitor      (nmethod* nm = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  oop        compiled_synchronized_native_monitor_owner(nmethod* nm = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // Find receiver for an invoke when arguments are just pushed on stack (i.e., callee stack-frame is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // not setup)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  oop interpreter_callee_receiver(symbolHandle signature)     { return *interpreter_callee_receiver_addr(signature); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   253
  oop* interpreter_callee_receiver_addr(symbolHandle signature);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // expression stack (may go up or down, direction == 1 or -1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  intptr_t* interpreter_frame_expression_stack() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  static  jint  interpreter_frame_expression_stack_direction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // The _at version returns a pointer because the address is used for GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  intptr_t* interpreter_frame_expression_stack_at(jint offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  Tag       interpreter_frame_expression_stack_tag(jint offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  void      interpreter_frame_set_expression_stack_tag(jint offset, Tag tag) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // top of expression stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  intptr_t* interpreter_frame_tos_at(jint offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  intptr_t* interpreter_frame_tos_address() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  jint  interpreter_frame_expression_stack_size() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  intptr_t* interpreter_frame_sender_sp() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
#ifndef CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // template based interpreter deoptimization support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  void  set_interpreter_frame_sender_sp(intptr_t* sender_sp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  void interpreter_frame_set_monitor_end(BasicObjectLock* value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#endif // CC_INTERP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  // BasicObjectLocks:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // interpreter_frame_monitor_begin is higher in memory than interpreter_frame_monitor_end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // Interpreter_frame_monitor_begin points to one element beyond the oldest one,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // interpreter_frame_monitor_end   points to the youngest one, or if there are none,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  //                                 it points to one beyond where the first element will be.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // interpreter_frame_monitor_size  reports the allocation size of a monitor in the interpreter stack.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  //                                 this value is >= BasicObjectLock::size(), and may be rounded up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  BasicObjectLock* interpreter_frame_monitor_begin() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  BasicObjectLock* interpreter_frame_monitor_end()   const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  BasicObjectLock* next_monitor_in_interpreter_frame(BasicObjectLock* current) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  BasicObjectLock* previous_monitor_in_interpreter_frame(BasicObjectLock* current) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  static int interpreter_frame_monitor_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void interpreter_frame_verify_monitor(BasicObjectLock* value) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // Tells whether the current interpreter_frame frame pointer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // corresponds to the old compiled/deoptimized fp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  // The receiver used to be a top level frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  bool interpreter_frame_equals_unpacked_fp(intptr_t* fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // Return/result value from this interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // If the method return type is T_OBJECT or T_ARRAY populates oop_result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // For other (non-T_VOID) the appropriate field in the jvalue is populated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // with the result value.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Should only be called when at method exit when the method is not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // exiting due to an exception.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  BasicType interpreter_frame_result(oop* oop_result, jvalue* value_result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // Method & constant pool cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  methodOop interpreter_frame_method() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  void interpreter_frame_set_method(methodOop method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  methodOop* interpreter_frame_method_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  constantPoolCacheOop* interpreter_frame_cache_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // Entry frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  JavaCallWrapper* entry_frame_call_wrapper() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  intptr_t* entry_frame_argument_at(int offset) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // tells whether there is another chunk of Delta stack above
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  bool entry_frame_is_first() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Compiled frames:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // Given the index of a local, and the number of argument words
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // in this stack frame, tell which word of the stack frame to find
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // the local in.  Arguments are stored above the ofp/rpc pair,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // while other locals are stored below it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // Since monitors (BasicLock blocks) are also assigned indexes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // but may have different storage requirements, their presence
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // can also affect the calculation of offsets.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  static int local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // Given the index of a monitor, etc., tell which word of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // stack frame contains the start of the BasicLock block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // Note that the local index by convention is the __higher__
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // of the two indexes allocated to the block.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  static int monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // Tell the smallest value that local_offset_for_compiler will attain.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // This is used to help determine how much stack frame to allocate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  static int min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // Tells if this register must be spilled during a call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // On Intel, all registers are smashed by calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  static bool volatile_across_calls(Register reg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // Safepoints
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  oop saved_oop_result(RegisterMap* map) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  void set_saved_oop_result(RegisterMap* map, oop obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // For debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  const char* print_name() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  void print_value() const { print_value_on(tty,NULL); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  void print_value_on(outputStream* st, JavaThread *thread) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  void interpreter_frame_print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  void print_on_error(outputStream* st, char* buf, int buflen, bool verbose = false) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // Conversion from an VMReg to physical stack location
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  oop* oopmapreg_to_location(VMReg reg, const RegisterMap* regmap) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  // Oops-do's
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   374
  void oops_compiled_arguments_do(symbolHandle signature, bool has_receiver, const RegisterMap* reg_map, OopClosure* f);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  void oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool query_oop_map_cache = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  void oops_interpreted_locals_do(OopClosure *f,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                                 int max_locals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
                                 InterpreterOopMap *mask);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  void oops_interpreted_expressions_do(OopClosure *f, symbolHandle signature,
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   382
                                 bool has_receiver, int max_stack, int max_locals,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                                 InterpreterOopMap *mask);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 3908
diff changeset
   384
  void oops_interpreted_arguments_do(symbolHandle signature, bool has_receiver, OopClosure* f);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // Iteration of oops
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   387
  void oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void oops_entry_do(OopClosure* f, const RegisterMap* map);
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   389
  void oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  int adjust_offset(methodOop method, int index); // helper for above fn
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  // Memory management
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   393
  void oops_do(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map) { oops_do_internal(f, cf, map, true); }
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3261
diff changeset
   394
  void nmethods_do(CodeBlobClosure* cf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  void gc_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  void gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  void pd_gc_epilog();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
# ifdef ENABLE_ZAP_DEAD_LOCALS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  class CheckValueClosure: public OopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   403
   public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   404
    void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   405
    void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  static CheckValueClosure _check_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  class CheckOopClosure: public OopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   410
   public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   411
    void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   412
    void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  static CheckOopClosure _check_oop;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  static void check_derived_oop(oop* base, oop* derived);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  class ZapDeadClosure: public OopClosure {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   419
   public:
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   420
    void do_oop(oop* p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 354
diff changeset
   421
    void do_oop(narrowOop* p) { ShouldNotReachHere(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  static ZapDeadClosure _zap_dead;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // Zapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  void zap_dead_locals            (JavaThread* thread, const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  void zap_dead_interpreted_locals(JavaThread* thread, const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  void zap_dead_compiled_locals   (JavaThread* thread, const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  void zap_dead_entry_locals      (JavaThread* thread, const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  void zap_dead_deoptimized_locals(JavaThread* thread, const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
# endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  void verify(const RegisterMap* map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  static bool verify_return_pc(address x);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  static bool is_bci(intptr_t bcx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  // Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // assert(frame::verify_return_pc(return_address), "must be a return pc");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  int pd_oop_map_offset_adjustment() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
# include "incls/_frame_pd.hpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
// StackFrameStream iterates through the frames of a thread starting from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
// top most frame. It automatically takes care of updating the location of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
// all (callee-saved) registers. Notice: If a thread is stopped at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
// a safepoint, all registers are saved, not only the callee-saved ones.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
// Use:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
//   for(StackFrameStream fst(thread); !fst.is_done(); fst.next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
//     ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
//   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
class StackFrameStream : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  frame       _fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  RegisterMap _reg_map;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  bool        _is_done;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
   StackFrameStream(JavaThread *thread, bool update = true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // Iteration
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  bool is_done()                  { return (_is_done) ? true : (_is_done = _fr.is_first_frame(), false); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  void next()                     { if (!_is_done) _fr = _fr.sender(&_reg_map); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // Query
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  frame *current()                { return &_fr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  RegisterMap* register_map()     { return &_reg_map; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
};