hotspot/src/share/vm/runtime/rframe.hpp
author twisti
Fri, 08 Jan 2010 11:09:46 +0100
changeset 4581 e89fbd1bcb3d
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6914206: change way of permission checking for generated MethodHandle adapters Summary: Put generated MH adapter in InvokeDynamic/MethodHandle classes to be able to indentify them easily in the compiler. Reviewed-by: kvn, never, jrose
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-2000 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
// rframes ("recompiler frames") decorate stack frames with some extra information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// needed by the recompiler.  The recompiler views the stack (at the time of recompilation)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// as a list of rframes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class RFrame : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  const frame _fr;                  // my frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  JavaThread* const _thread;        // thread where frame resides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  RFrame* _caller;                  // caller / callee rframes (or NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  RFrame*const _callee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  const int _num;                   // stack frame number (0 = most recent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  int _invocations;                 // current invocation estimate (for this frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
                                    // (i.e., how often was this frame called)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  int _distance;                    // recompilation search "distance" (measured in # of interpreted frames)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  RFrame(frame fr, JavaThread* thread, RFrame*const callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  virtual void init() = 0;          // compute invocations, loopDepth, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  void print(const char* name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static RFrame* new_RFrame(frame fr, JavaThread* thread, RFrame*const callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  virtual bool is_interpreted() const     { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  virtual bool is_compiled() const        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  int distance() const                    { return _distance; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  void set_distance(int d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  int invocations() const                 { return _invocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  int num() const                         { return _num; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  frame fr() const                        { return _fr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  JavaThread* thread() const              { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  virtual int cost() const = 0;           // estimated inlining cost (size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  virtual methodHandle top_method() const  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual javaVFrame* top_vframe() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual nmethod* nm() const             { ShouldNotCallThis(); return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  RFrame* caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  RFrame* callee() const                  { return _callee; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  RFrame* parent() const;                 // rframe containing lexical scope (if any)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  virtual void print()                    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static int computeSends(methodOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static int computeSends(nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static int computeCumulSends(methodOop m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static int computeCumulSends(nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
class CompiledRFrame : public RFrame {    // frame containing a compiled method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  nmethod*    _nm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  javaVFrame* _vf;                        // top vframe; may be NULL (for most recent frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  methodHandle _method;                   // top method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  CompiledRFrame(frame fr, JavaThread* thread, RFrame*const  callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  friend class RFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  CompiledRFrame(frame fr, JavaThread* thread); // for nmethod triggering its counter (callee == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  bool is_compiled() const                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  methodHandle top_method() const          { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  javaVFrame* top_vframe() const           { return _vf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  nmethod* nm() const                      { return _nm; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  int cost() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
class InterpretedRFrame : public RFrame {    // interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  javaVFrame* _vf;                           // may be NULL (for most recent frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  methodHandle   _method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  InterpretedRFrame(frame fr, JavaThread* thread, RFrame*const  callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  friend class RFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  InterpretedRFrame(frame fr, JavaThread* thread, methodHandle m); // constructor for method triggering its invocation counter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  bool is_interpreted() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  methodHandle top_method() const            { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  javaVFrame* top_vframe() const             { return _vf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  int cost() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// treat deoptimized frames as interpreted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
class DeoptimizedRFrame : public InterpretedRFrame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  DeoptimizedRFrame(frame fr, JavaThread* thread, RFrame*const  callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  friend class RFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
};