hotspot/src/share/vm/opto/callGenerator.hpp
author twisti
Tue, 24 Jul 2012 10:51:00 -0700
changeset 13391 30245956af37
parent 11193 d8de495d05e0
child 13963 e5b53c306fb5
permissions -rw-r--r--
7023639: JSR 292 method handle invocation needs a fast path for compiled code 6984705: JSR 292 method handle creation should not go through JNI Summary: remove assembly code for JDK 7 chained method handles Reviewed-by: jrose, twisti, kvn, mhaupt Contributed-by: John Rose <john.r.rose@oracle.com>, Christian Thalinger <christian.thalinger@oracle.com>, Michael Haupt <michael.haupt@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
     2
 * Copyright (c) 2000, 2011, 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: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
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: 4567
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_OPTO_CALLGENERATOR_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_OPTO_CALLGENERATOR_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
    28
#include "compiler/compileBroker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "opto/callnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "opto/compile.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "opto/type.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/deoptimization.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//---------------------------CallGenerator-------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The subclasses of this class handle generation of ideal nodes for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// call sites and method entry points.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class CallGenerator : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    xxxunusedxxx
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  ciMethod*             _method;                // The method being called.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 protected:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
    48
  CallGenerator(ciMethod* method) : _method(method) {}
1
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
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  ciMethod*         method() const              { return _method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // is_inline: At least some code implementing the method is copied here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  virtual bool      is_inline() const           { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // is_intrinsic: There's a method-specific way of generating the inline code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  virtual bool      is_intrinsic() const        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // is_parse: Bytecodes implementing the specific method are copied here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual bool      is_parse() const            { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // is_virtual: The call uses the receiver type to select or check the method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  virtual bool      is_virtual() const          { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // is_deferred: The decision whether to inline or not is deferred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  virtual bool      is_deferred() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // is_predicted: Uses an explicit check against a predicted type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual bool      is_predicted() const        { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // is_trap: Does not return to the caller.  (E.g., uncommon trap.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  virtual bool      is_trap() const             { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    69
  // is_late_inline: supports conversion of call into an inline
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    70
  virtual bool      is_late_inline() const      { return false; }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    71
  // Replace the call with an inline version of the code
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    72
  virtual void do_late_inline() { ShouldNotReachHere(); }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    73
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    74
  virtual CallStaticJavaNode* call_node() const { ShouldNotReachHere(); return NULL; }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
    75
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Note:  It is possible for a CG to be both inline and virtual.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // (The hashCode intrinsic does a vtable check and an inlined fast path.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Utilities:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  const TypeFunc*   tf() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // The given jvms has state and arguments for a call to my method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Edges after jvms->argoff() carry all (pre-popped) argument values.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Update the map with state and return values (if any) and return it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // The return values (0, 1, or 2) must be pushed on the map's stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // and the sp of the jvms incremented accordingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // The jvms is returned on success.  Alternatively, a copy of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // given jvms, suitably updated, may be returned, in which case the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // caller should discard the original jvms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // The non-Parm edges of the returned map will contain updated global state,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // and one or two edges before jvms->sp() will carry any return values.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Other map edges may contain locals or monitors, and should not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // be changed in meaning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // If the call traps, the returned map must have a control edge of top.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // If the call can throw, the returned map must report has_exceptions().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // If the result is NULL, it means that this CallGenerator was unable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // to handle the given call, and another CallGenerator should be consulted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  virtual JVMState* generate(JVMState* jvms) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // How to generate a call site that is inlined:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static CallGenerator* for_inline(ciMethod* m, float expected_uses = -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // How to generate code for an on-stack replacement handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  static CallGenerator* for_osr(ciMethod* m, int osr_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // How to generate vanilla out-of-line call sites:
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
   111
  static CallGenerator* for_direct_call(ciMethod* m, bool separate_io_projs = false);   // static, special
11193
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10265
diff changeset
   112
  static CallGenerator* for_virtual_call(ciMethod* m, int vtable_index);  // virtual, interface
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   113
  static CallGenerator* for_dynamic_call(ciMethod* m);   // invokedynamic
11193
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10265
diff changeset
   114
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   115
  static CallGenerator* for_method_handle_call(  JVMState* jvms, ciMethod* caller, ciMethod* callee);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   116
  static CallGenerator* for_method_handle_inline(JVMState* jvms, ciMethod* caller, ciMethod* callee);
9975
82190b49ce14 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 9099
diff changeset
   117
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
   118
  // How to generate a replace a direct call with an inline version
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
   119
  static CallGenerator* for_late_inline(ciMethod* m, CallGenerator* inline_cg);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1
diff changeset
   120
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // How to make a call but defer the decision whether to inline or not.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static CallGenerator* for_warm_call(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                                      CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                                      CallGenerator* if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // How to make a call that optimistically assumes a receiver type:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  static CallGenerator* for_predicted_call(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                                           CallGenerator* if_missed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
                                           CallGenerator* if_hit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
                                           float hit_prob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   132
  // How to make a call that optimistically assumes a MethodHandle target:
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   133
  static CallGenerator* for_predicted_dynamic_call(ciMethodHandle* predicted_method_handle,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   134
                                                   CallGenerator* if_missed,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   135
                                                   CallGenerator* if_hit,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   136
                                                   float hit_prob);
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   137
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // How to make a call that gives up and goes back to the interpreter:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static CallGenerator* for_uncommon_trap(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                                          Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
                                          Deoptimization::DeoptAction action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Registry for intrinsics:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static CallGenerator* for_intrinsic(ciMethod* m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static void register_intrinsic(ciMethod* m, CallGenerator* cg);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   146
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   147
  static void print_inlining(ciMethod* callee, int inline_level, int bci, const char* msg) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   148
    if (PrintInlining)
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   149
      CompileTask::print_inlining(callee, inline_level, bci, msg);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   150
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   154
//------------------------InlineCallGenerator----------------------------------
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   155
class InlineCallGenerator : public CallGenerator {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
 protected:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   157
  InlineCallGenerator(ciMethod* method) : CallGenerator(method) {}
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   158
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   159
 public:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 11193
diff changeset
   160
  virtual bool      is_inline() const           { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
//---------------------------WarmCallInfo--------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// A struct to collect information about a given call site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// Helps sort call sites into "hot", "medium", and "cold".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// Participates in the queueing of "medium" call sites for possible inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
class WarmCallInfo : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  CallNode*     _call;   // The CallNode which may be inlined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  CallGenerator* _hot_cg;// CG for expanding the call node
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // These are the metrics we use to evaluate call sites:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  float         _count;  // How often do we expect to reach this site?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  float         _profit; // How much time do we expect to save by inlining?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  float         _work;   // How long do we expect the average call to take?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  float         _size;   // How big do we expect the inlined code to be?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  float         _heat;   // Combined score inducing total order on call sites.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  WarmCallInfo* _next;   // Next cooler call info in pending queue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Count is the number of times this call site is expected to be executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // Large count is favorable for inlining, because the extra compilation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // work will be amortized more completely.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // Profit is a rough measure of the amount of time we expect to save
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // per execution of this site if we inline it.  (1.0 == call overhead)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Large profit favors inlining.  Negative profit disables inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Work is a rough measure of the amount of time a typical out-of-line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // call from this site is expected to take.  (1.0 == call, no-op, return)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Small work is somewhat favorable for inlining, since methods with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // short "hot" traces are more likely to inline smoothly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // Size is the number of graph nodes we expect this method to produce,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // not counting the inlining of any further warm calls it may include.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Small size favors inlining, since small methods are more likely to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // inline smoothly.  The size is estimated by examining the native code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // if available.  The method bytecodes are also examined, assuming
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // empirically observed node counts for each kind of bytecode.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Heat is the combined "goodness" of a site's inlining.  If we were
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // omniscient, it would be the difference of two sums of future execution
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // times of code emitted for this site (amortized across multiple sites if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // sharing applies).  The two sums are for versions of this call site with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // and without inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // We approximate this mythical quantity by playing with averages,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // rough estimates, and assumptions that history repeats itself.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // The basic formula count * profit is heuristically adjusted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // by looking at the expected compilation and execution times of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // of the inlined call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Note:  Some of these metrics may not be present in the final product,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // but exist in development builds to experiment with inline policy tuning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // This heuristic framework does not model well the very significant
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // effects of multiple-level inlining.  It is possible to see no immediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // profit from inlining X->Y, but to get great profit from a subsequent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // inlining X->Y->Z.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // This framework does not take well into account the problem of N**2 code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // size in a clique of mutually inlinable methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  WarmCallInfo*  next() const          { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  void       set_next(WarmCallInfo* n) { _next = n; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   230
  static WarmCallInfo _always_hot;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   231
  static WarmCallInfo _always_cold;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   232
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   233
  // Constructor intitialization of always_hot and always_cold
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   234
  WarmCallInfo(float c, float p, float w, float s) {
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   235
    _call = NULL;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   236
    _hot_cg = NULL;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   237
    _next = NULL;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   238
    _count = c;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   239
    _profit = p;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   240
    _work = w;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   241
    _size = s;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   242
    _heat = 0;
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 7397
diff changeset
   243
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // Because WarmInfo objects live over the entire lifetime of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // Compile object, they are allocated into the comp_arena, which
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // does not get resource marked or reset during the compile process
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void *operator new( size_t x, Compile* C ) { return C->comp_arena()->Amalloc(x); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void operator delete( void * ) { } // fast deallocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  static WarmCallInfo* always_hot();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  static WarmCallInfo* always_cold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  WarmCallInfo() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    _call = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    _hot_cg = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    _next = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    _count = _profit = _work = _size = _heat = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  CallNode* call() const { return _call; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  float count()    const { return _count; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  float size()     const { return _size; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  float work()     const { return _work; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  float profit()   const { return _profit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  float heat()     const { return _heat; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  void set_count(float x)     { _count = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  void set_size(float x)      { _size = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void set_work(float x)      { _work = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  void set_profit(float x)    { _profit = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  void set_heat(float x)      { _heat = x; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Load initial heuristics from profiles, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // The heuristics can be tweaked further by the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  void init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  static float MAX_VALUE() { return +1.0e10; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  static float MIN_VALUE() { return -1.0e10; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  float compute_heat() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  void set_call(CallNode* call)      { _call = call; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  void set_hot_cg(CallGenerator* cg) { _hot_cg = cg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // Do not queue very hot or very cold calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Make very cold ones out of line immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // Inline very hot ones immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // These queries apply various tunable limits
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // to the above metrics in a systematic way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // Test for coldness before testing for hotness.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  bool is_cold() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  bool is_hot() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  // Force a warm call to be hot.  This worklists the call node for inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  void make_hot();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  // Force a warm call to be cold.  This worklists the call node for out-of-lining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  void make_cold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // A reproducible total ordering, in which heat is the major key.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  bool warmer_than(WarmCallInfo* that);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // List management.  These methods are called with the list head,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // and return the new list head, inserting or removing the receiver.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  WarmCallInfo* insert_into(WarmCallInfo* head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  WarmCallInfo* remove_from(WarmCallInfo* head);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void print_all() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  int count_all() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   316
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   317
#endif // SHARE_VM_OPTO_CALLGENERATOR_HPP