hotspot/src/share/vm/runtime/vframeArray.hpp
author kamg
Wed, 16 Apr 2008 17:36:29 -0400
changeset 362 00cf4bffd828
parent 1 489c9b5090e2
child 3600 27aa4477d039
permissions -rw-r--r--
6622385: Accessing protected static methods Summary: Protected contraints should only be applied if member is not static Reviewed-by: acorn, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
// A vframeArray is an array used for momentarily storing off stack Java method activations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// during deoptimization. Essentially it is an array of vframes where each vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// data is stored off stack. This structure will never exist across a safepoint so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// there is no need to gc any oops that are stored in the structure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class LocalsClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ExpressionStackClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class MonitorStackClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class MonitorArrayElement;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class StackValueCollection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// A vframeArrayElement is an element of a vframeArray. Each element
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// represent an interpreter frame which will eventually be created.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class vframeArrayElement : public _ValueObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    frame _frame;                                                // the interpreter frame we will unpack into
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    int _bci;                                                    // raw bci for this vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    methodOop  _method;                                          // the method for this vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    MonitorChunk* _monitors;                                     // active monitors for this vframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    StackValueCollection* _locals;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    StackValueCollection* _expressions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  frame* iframe(void)                { return &_frame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int bci(void) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int raw_bci(void) const            { return _bci; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  methodOop method(void) const       { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  MonitorChunk* monitors(void) const { return _monitors; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  void free_monitors(JavaThread* jt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  StackValueCollection* locals(void) const             { return _locals; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  StackValueCollection* expressions(void) const        { return _expressions; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  void fill_in(compiledVFrame* vf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Formerly part of deoptimizedVFrame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Returns the on stack word size for this frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // callee_parameters is the number of callee locals residing inside this frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  int on_stack_size(int callee_parameters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                    int callee_locals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                    bool is_top_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                    int popframe_extra_stack_expression_els) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Unpacks the element to skeletal interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  void unpack_on_stack(int callee_parameters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                       int callee_locals,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                       frame* caller,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                       bool is_top_frame,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                       int exec_mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  void print(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
#endif /* PRODUCT */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
// this can be a ResourceObj if we don't save the last one...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// but it does make debugging easier even if we can't look
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// at the data in each vframeElement
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
class vframeArray: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Here is what a vframeArray looks like in memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      fixed part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
        description of the original frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
        _frames - number of vframes in this array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
        adapter info
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
        callee register save area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      variable part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
        vframeArrayElement   [ 0 ]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
        ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
        vframeArrayElement   [_frames - 1]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  JavaThread*                  _owner_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  vframeArray*                 _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  frame                        _original;          // the original frame of the deoptee
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  frame                        _caller;            // caller of root frame in vframeArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  frame                        _sender;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  Deoptimization::UnrollBlock* _unroll_block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  int                          _frame_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  int                          _frames; // number of javavframes in the array (does not count any adapter)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  intptr_t                     _callee_registers[RegisterMap::reg_count];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  unsigned char                _valid[RegisterMap::reg_count];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  vframeArrayElement           _elements[1];   // First variable section.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  void fill_in_element(int index, compiledVFrame* vf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  bool is_location_valid(int i) const        { return _valid[i] != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  void set_location_valid(int i, bool valid) { _valid[i] = valid; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Tells whether index is within bounds.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bool is_within_bounds(int index) const        { return 0 <= index && index < frames(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Accessores for instance variable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  int frames() const                            { return _frames;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static vframeArray* allocate(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                               RegisterMap* reg_map, frame sender, frame caller, frame self);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  vframeArrayElement* element(int index)        { assert(is_within_bounds(index), "Bad index"); return &_elements[index]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Allocates a new vframe in the array and fills the array with vframe information in chunk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  void fill_in(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk, const RegisterMap *reg_map);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // Returns the owner of this vframeArray
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  JavaThread* owner_thread() const           { return _owner_thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Accessors for next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  vframeArray* next() const                  { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  void set_next(vframeArray* value)          { _next = value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Accessors for sp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  intptr_t* sp() const                       { return _original.sp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  intptr_t* unextended_sp() const            { return _original.unextended_sp(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  address original_pc() const                { return _original.pc(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  frame original() const                     { return _original; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  frame caller() const                       { return _caller; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  frame sender() const                       { return _sender; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Accessors for unroll block
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  Deoptimization::UnrollBlock* unroll_block() const         { return _unroll_block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void set_unroll_block(Deoptimization::UnrollBlock* block) { _unroll_block = block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Returns the size of the frame that got deoptimized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  int frame_size() const { return _frame_size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Unpack the array on the stack passed in stack interval
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void unpack_to_stack(frame &unpack_frame, int exec_mode);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Deallocates monitor chunks allocated during deoptimization.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // This should be called when the array is not used anymore.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void deallocate_monitor_chunks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Accessor for register map
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  address register_location(int i) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void print_on_2(outputStream* st) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void print_value_on(outputStream* st) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Comparing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  bool structural_compare(JavaThread* thread, GrowableArray<compiledVFrame*>* chunk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
};