src/hotspot/share/runtime/rframe.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 49480 d7df2dd501ce
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
     2
 * Copyright (c) 1997, 2019, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
    25
#ifndef SHARE_RUNTIME_RFRAME_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
    26
#define SHARE_RUNTIME_RFRAME_HPP
7397
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 "memory/allocation.hpp"
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 47216
diff changeset
    29
#include "runtime/frame.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// rframes ("recompiler frames") decorate stack frames with some extra information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// needed by the recompiler.  The recompiler views the stack (at the time of recompilation)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// as a list of rframes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class RFrame : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  const frame _fr;                  // my frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  JavaThread* const _thread;        // thread where frame resides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  RFrame* _caller;                  // caller / callee rframes (or NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  RFrame*const _callee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  const int _num;                   // stack frame number (0 = most recent)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  int _invocations;                 // current invocation estimate (for this frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                                    // (i.e., how often was this frame called)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  int _distance;                    // recompilation search "distance" (measured in # of interpreted frames)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  RFrame(frame fr, JavaThread* thread, RFrame*const callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  virtual void init() = 0;          // compute invocations, loopDepth, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  void print(const char* name);
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
  static RFrame* new_RFrame(frame fr, JavaThread* thread, RFrame*const callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  virtual bool is_interpreted() const     { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  virtual bool is_compiled() const        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  int distance() const                    { return _distance; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  void set_distance(int d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  int invocations() const                 { return _invocations; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  int num() const                         { return _num; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  frame fr() const                        { return _fr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  JavaThread* thread() const              { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  virtual int cost() const = 0;           // estimated inlining cost (size)
31521
f57b2ce43484 8079775: Java 9-fastdebug ia32 Error: Unimplemented with "-XX:CompilationPolicyChoice=1 -XX:-TieredCompilation" options
iveresov
parents: 13728
diff changeset
    63
  virtual Method* top_method() const  = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  virtual javaVFrame* top_vframe() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual nmethod* nm() const             { ShouldNotCallThis(); return NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  RFrame* caller();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  RFrame* callee() const                  { return _callee; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  RFrame* parent() const;                 // rframe containing lexical scope (if any)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual void print()                    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    72
  static int computeSends(Method* m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static int computeSends(nmethod* nm);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    74
  static int computeCumulSends(Method* m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static int computeCumulSends(nmethod* nm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
class CompiledRFrame : public RFrame {    // frame containing a compiled method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  nmethod*    _nm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  javaVFrame* _vf;                        // top vframe; may be NULL (for most recent frame)
31521
f57b2ce43484 8079775: Java 9-fastdebug ia32 Error: Unimplemented with "-XX:CompilationPolicyChoice=1 -XX:-TieredCompilation" options
iveresov
parents: 13728
diff changeset
    82
  Method* _method;                        // top method
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  CompiledRFrame(frame fr, JavaThread* thread, RFrame*const  callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  friend class RFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  CompiledRFrame(frame fr, JavaThread* thread); // for nmethod triggering its counter (callee == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool is_compiled() const                 { return true; }
31521
f57b2ce43484 8079775: Java 9-fastdebug ia32 Error: Unimplemented with "-XX:CompilationPolicyChoice=1 -XX:-TieredCompilation" options
iveresov
parents: 13728
diff changeset
    91
  Method* top_method() const               { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  javaVFrame* top_vframe() const           { return _vf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  nmethod* nm() const                      { return _nm; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  int cost() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
class InterpretedRFrame : public RFrame {    // interpreter frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  javaVFrame* _vf;                           // may be NULL (for most recent frame)
31521
f57b2ce43484 8079775: Java 9-fastdebug ia32 Error: Unimplemented with "-XX:CompilationPolicyChoice=1 -XX:-TieredCompilation" options
iveresov
parents: 13728
diff changeset
   101
  Method* _method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  InterpretedRFrame(frame fr, JavaThread* thread, RFrame*const  callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  friend class RFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
 public:
31521
f57b2ce43484 8079775: Java 9-fastdebug ia32 Error: Unimplemented with "-XX:CompilationPolicyChoice=1 -XX:-TieredCompilation" options
iveresov
parents: 13728
diff changeset
   108
  InterpretedRFrame(frame fr, JavaThread* thread, Method* m); // constructor for method triggering its invocation counter
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  bool is_interpreted() const                { return true; }
31521
f57b2ce43484 8079775: Java 9-fastdebug ia32 Error: Unimplemented with "-XX:CompilationPolicyChoice=1 -XX:-TieredCompilation" options
iveresov
parents: 13728
diff changeset
   110
  Method* top_method() const                 { return _method; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  javaVFrame* top_vframe() const             { return _vf; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  int cost() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// treat deoptimized frames as interpreted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
class DeoptimizedRFrame : public InterpretedRFrame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  DeoptimizedRFrame(frame fr, JavaThread* thread, RFrame*const  callee);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  friend class RFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   124
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49480
diff changeset
   125
#endif // SHARE_RUNTIME_RFRAME_HPP