hotspot/src/share/vm/opto/callGenerator.cpp
author twisti
Tue, 21 Aug 2012 10:48:50 -0700
changeset 13487 75aa4880b15f
parent 13393 f0344cc50a90
child 13728 882756847a04
permissions -rw-r--r--
7192167: JSR 292: C1 has old broken code which needs to be removed Reviewed-by: kvn, roland, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
     2
 * Copyright (c) 2000, 2012, 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: 4906
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4906
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: 4906
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
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "ci/bcEscapeAnalyzer.hpp"
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
    27
#include "ci/ciCallSite.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "ci/ciCPCache.hpp"
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
    29
#include "ci/ciMemberName.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "ci/ciMethodHandle.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "opto/addnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "opto/callGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "opto/callnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "opto/cfgnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "opto/connode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "opto/parse.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "opto/subnode.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Utility function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
const TypeFunc* CallGenerator::tf() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  return TypeFunc::make(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//-----------------------------ParseGenerator---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// Internal class which handles all direct bytecode traversal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class ParseGenerator : public InlineCallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  bool  _is_osr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  float _expected_uses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  ParseGenerator(ciMethod* method, float expected_uses, bool is_osr = false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    : InlineCallGenerator(method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _is_osr        = is_osr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _expected_uses = expected_uses;
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
    62
    assert(InlineTree::check_can_parse(method) == NULL, "parse must be possible");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual bool      is_parse() const           { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  virtual JVMState* generate(JVMState* jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int is_osr() { return _is_osr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
JVMState* ParseGenerator::generate(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  Compile* C = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  if (is_osr()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // The JVMS for a OSR has a single argument (see its TypeFunc).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    assert(jvms->depth() == 1, "no inline OSR");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  if (C->failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    return NULL;  // bailing out of the compile; do not try to parse
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  Parse parser(jvms, method(), _expected_uses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Grab signature for matching/allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (parser.tf() != (parser.depth() == 1 ? C->tf() : tf())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    assert(C->env()->system_dictionary_modification_counter_changed(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
           "Must invalidate if TypeFuncs differ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  GraphKit& exits = parser.exits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  if (C->failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    while (exits.pop_exception_state() != NULL) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  assert(exits.jvms()->same_calls_as(jvms), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Simply return the exit state of the parser,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // augmented by any exceptional states.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return exits.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
//---------------------------DirectCallGenerator------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// Internal class which handles all out-of-line calls w/o receiver type checks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
class DirectCallGenerator : public CallGenerator {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   110
 private:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   111
  CallStaticJavaNode* _call_node;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   112
  // Force separate memory and I/O projections for the exceptional
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   113
  // paths to facilitate late inlinig.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   114
  bool                _separate_io_proj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   115
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   116
 public:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   117
  DirectCallGenerator(ciMethod* method, bool separate_io_proj)
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   118
    : CallGenerator(method),
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   119
      _separate_io_proj(separate_io_proj)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  virtual JVMState* generate(JVMState* jvms);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   123
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   124
  CallStaticJavaNode* call_node() const { return _call_node; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
JVMState* DirectCallGenerator::generate(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  bool is_static = method()->is_static();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  address target = is_static ? SharedRuntime::get_resolve_static_call_stub()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                             : SharedRuntime::get_resolve_opt_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  if (kit.C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    kit.C->log()->elem("direct_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  CallStaticJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallStaticJavaNode(tf(), target, method(), kit.bci());
12591
064b5c1aa88a 7162094: LateInlineCallGenerator::do_late_inline crashed on uninitialized _call_node
never
parents: 11193
diff changeset
   138
  _call_node = call;  // Save the call node in case we need it later
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // Make an explicit receiver null_check as part of this call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // Since we share a map with the caller, his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    kit.null_check_receiver(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      // And dump it back to the caller, decorated with any exceptions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // Mark the call node as virtual, sort of:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    call->set_optimized_virtual(true);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   149
    if (method()->is_method_handle_intrinsic() ||
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   150
        method()->is_compiled_lambda_form()) {
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   151
      call->set_method_handle_invoke(true);
4906
90640ad2d401 6926782: CodeBuffer size too small after 6921352
twisti
parents: 4567
diff changeset
   152
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  kit.set_arguments_for_java_call(call);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   155
  kit.set_edges_for_java_call(call, false, _separate_io_proj);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   156
  Node* ret = kit.set_results_for_java_call(call, _separate_io_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  kit.push_node(method()->return_type()->basic_type(), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   161
//--------------------------VirtualCallGenerator------------------------------
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   162
// Internal class which handles all out-of-line calls checking receiver type.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
class VirtualCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  int _vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  VirtualCallGenerator(ciMethod* method, int vtable_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    : CallGenerator(method), _vtable_index(vtable_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    assert(vtable_index == methodOopDesc::invalid_vtable_index ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
           vtable_index >= 0, "either invalid or usable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  virtual bool      is_virtual() const          { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  virtual JVMState* generate(JVMState* jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
JVMState* VirtualCallGenerator::generate(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  Node* receiver = kit.argument(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (kit.C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    kit.C->log()->elem("virtual_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // If the receiver is a constant null, do not torture the system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // by attempting to call through it.  The compile will proceed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // correctly, but may bail out in final_graph_reshaping, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // the call instruction will have a seemingly deficient out-count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // (The bailout says something misleading about an "infinite loop".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  if (kit.gvn().type(receiver)->higher_equal(TypePtr::NULL_PTR)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    kit.inc_sp(method()->arg_size());  // restore arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    kit.uncommon_trap(Deoptimization::Reason_null_check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                      Deoptimization::Action_none,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
                      NULL, "null receiver");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // Ideally we would unconditionally do a null check here and let it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // be converted to an implicit check based on profile information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // However currently the conversion to implicit null checks in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Block::implicit_null_check() only looks for loads and stores, not calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  ciMethod *caller = kit.method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  ciMethodData *caller_md = (caller == NULL) ? NULL : caller->method_data();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  if (!UseInlineCaches || !ImplicitNullChecks ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
       ((ImplicitNullCheckThreshold > 0) && caller_md &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
       (caller_md->trap_count(Deoptimization::Reason_null_check)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
       >= (uint)ImplicitNullCheckThreshold))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    // Make an explicit receiver null_check as part of this call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    // Since we share a map with the caller, his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    receiver = kit.null_check_receiver(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      // And dump it back to the caller, decorated with any exceptions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(!method()->is_static(), "virtual call must not be to static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  assert(!method()->is_final(), "virtual call should not be to final");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(!method()->is_private(), "virtual call should not be to private");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  assert(_vtable_index == methodOopDesc::invalid_vtable_index || !UseInlineCaches,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
         "no vtable calls if +UseInlineCaches ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  address target = SharedRuntime::get_resolve_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Normal inline cache used for call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  CallDynamicJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallDynamicJavaNode(tf(), target, method(), _vtable_index, kit.bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  kit.set_arguments_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  kit.set_edges_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  Node* ret = kit.set_results_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  kit.push_node(method()->return_type()->basic_type(), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Represent the effect of an implicit receiver null_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // as part of this call.  Since we share a map with the caller,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  kit.cast_not_null(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
CallGenerator* CallGenerator::for_inline(ciMethod* m, float expected_uses) {
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
   238
  if (InlineTree::check_can_parse(m) != NULL)  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  return new ParseGenerator(m, expected_uses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// As a special case, the JVMS passed to this CallGenerator is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// for the method execution already in progress, not just the JVMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// of the caller.  Thus, this CallGenerator cannot be mixed with others!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
CallGenerator* CallGenerator::for_osr(ciMethod* m, int osr_bci) {
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
   246
  if (InlineTree::check_can_parse(m) != NULL)  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  float past_uses = m->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  float expected_uses = past_uses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  return new ParseGenerator(m, expected_uses, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   252
CallGenerator* CallGenerator::for_direct_call(ciMethod* m, bool separate_io_proj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  assert(!m->is_abstract(), "for_direct_call mismatch");
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   254
  return new DirectCallGenerator(m, separate_io_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
CallGenerator* CallGenerator::for_virtual_call(ciMethod* m, int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  assert(!m->is_static(), "for_virtual_call mismatch");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   259
  assert(!m->is_method_handle_intrinsic(), "should be a direct call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  return new VirtualCallGenerator(m, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   263
// Allow inlining decisions to be delayed
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   264
class LateInlineCallGenerator : public DirectCallGenerator {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   265
  CallGenerator* _inline_cg;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   266
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   267
 public:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   268
  LateInlineCallGenerator(ciMethod* method, CallGenerator* inline_cg) :
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   269
    DirectCallGenerator(method, true), _inline_cg(inline_cg) {}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   270
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   271
  virtual bool      is_late_inline() const { return true; }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   272
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   273
  // Convert the CallStaticJava into an inline
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   274
  virtual void do_late_inline();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   275
13487
75aa4880b15f 7192167: JSR 292: C1 has old broken code which needs to be removed
twisti
parents: 13393
diff changeset
   276
  virtual JVMState* generate(JVMState* jvms) {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   277
    // Record that this call site should be revisited once the main
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   278
    // parse is finished.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   279
    Compile::current()->add_late_inline(this);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   280
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   281
    // Emit the CallStaticJava and request separate projections so
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   282
    // that the late inlining logic can distinguish between fall
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   283
    // through and exceptional uses of the memory and io projections
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   284
    // as is done for allocations and macro expansion.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   285
    return DirectCallGenerator::generate(jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   286
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   287
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   288
};
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   289
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   290
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   291
void LateInlineCallGenerator::do_late_inline() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   292
  // Can't inline it
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   293
  if (call_node() == NULL || call_node()->outcnt() == 0 ||
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   294
      call_node()->in(0) == NULL || call_node()->in(0)->is_top())
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   295
    return;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   296
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   297
  CallStaticJavaNode* call = call_node();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   298
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   299
  // Make a clone of the JVMState that appropriate to use for driving a parse
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   300
  Compile* C = Compile::current();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   301
  JVMState* jvms     = call->jvms()->clone_shallow(C);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   302
  uint size = call->req();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   303
  SafePointNode* map = new (C, size) SafePointNode(size, jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   304
  for (uint i1 = 0; i1 < size; i1++) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   305
    map->init_req(i1, call->in(i1));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   306
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   307
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   308
  // Make sure the state is a MergeMem for parsing.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   309
  if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   310
    map->set_req(TypeFunc::Memory, MergeMemNode::make(C, map->in(TypeFunc::Memory)));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   311
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   312
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   313
  // Make enough space for the expression stack and transfer the incoming arguments
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   314
  int nargs    = method()->arg_size();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   315
  jvms->set_map(map);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   316
  map->ensure_stack(jvms, jvms->method()->max_stack());
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   317
  if (nargs > 0) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   318
    for (int i1 = 0; i1 < nargs; i1++) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   319
      map->set_req(i1 + jvms->argoff(), call->in(TypeFunc::Parms + i1));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   320
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   321
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   322
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   323
  CompileLog* log = C->log();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   324
  if (log != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   325
    log->head("late_inline method='%d'", log->identify(method()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   326
    JVMState* p = jvms;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   327
    while (p != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   328
      log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   329
      p = p->caller();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   330
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   331
    log->tail("late_inline");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   332
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   333
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   334
  // Setup default node notes to be picked up by the inlining
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   335
  Node_Notes* old_nn = C->default_node_notes();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   336
  if (old_nn != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   337
    Node_Notes* entry_nn = old_nn->clone(C);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   338
    entry_nn->set_jvms(jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   339
    C->set_default_node_notes(entry_nn);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   340
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   341
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   342
  // Now perform the inling using the synthesized JVMState
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   343
  JVMState* new_jvms = _inline_cg->generate(jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   344
  if (new_jvms == NULL)  return;  // no change
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   345
  if (C->failing())      return;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   346
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   347
  // Capture any exceptional control flow
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   348
  GraphKit kit(new_jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   349
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   350
  // Find the result object
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   351
  Node* result = C->top();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   352
  int   result_size = method()->return_type()->size();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   353
  if (result_size != 0 && !kit.stopped()) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   354
    result = (result_size == 1) ? kit.pop() : kit.pop_pair();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   355
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   356
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   357
  kit.replace_call(call, result);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   358
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   359
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   360
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   361
CallGenerator* CallGenerator::for_late_inline(ciMethod* method, CallGenerator* inline_cg) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   362
  return new LateInlineCallGenerator(method, inline_cg);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   363
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   364
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
//---------------------------WarmCallGenerator--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
// Internal class which handles initial deferral of inlining decisions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
class WarmCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  WarmCallInfo*   _call_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  CallGenerator*  _if_cold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  CallGenerator*  _if_hot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  bool            _is_virtual;   // caches virtuality of if_cold
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  bool            _is_inline;    // caches inline-ness of if_hot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  WarmCallGenerator(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
                    CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
                    CallGenerator* if_hot)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    : CallGenerator(if_cold->method())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    assert(method() == if_hot->method(), "consistent choices");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    _call_info  = ci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    _if_cold    = if_cold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    _if_hot     = if_hot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    _is_virtual = if_cold->is_virtual();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    _is_inline  = if_hot->is_inline();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  virtual bool      is_inline() const           { return _is_inline; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  virtual bool      is_virtual() const          { return _is_virtual; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  virtual bool      is_deferred() const         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  virtual JVMState* generate(JVMState* jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
CallGenerator* CallGenerator::for_warm_call(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
                                            CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
                                            CallGenerator* if_hot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  return new WarmCallGenerator(ci, if_cold, if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
JVMState* WarmCallGenerator::generate(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  Compile* C = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  if (C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    C->log()->elem("warm_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  jvms = _if_cold->generate(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  if (jvms != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    Node* m = jvms->map()->control();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    if (m->is_CatchProj()) m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    if (m->is_Catch())     m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    if (m->is_Proj())      m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    if (m->is_CallJava()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
      _call_info->set_call(m->as_Call());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
      _call_info->set_hot_cg(_if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
      if (PrintOpto || PrintOptoInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
        tty->print_cr("Queueing for warm inlining at bci %d:", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
        tty->print("WCI: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
        _call_info->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      _call_info->set_heat(_call_info->compute_heat());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
      C->set_warm_calls(_call_info->insert_into(C->warm_calls()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  return jvms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
void WarmCallInfo::make_hot() {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   432
  Unimplemented();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
void WarmCallInfo::make_cold() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  // No action:  Just dequeue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
//------------------------PredictedCallGenerator------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
// Internal class which handles all out-of-line calls checking receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
class PredictedCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  ciKlass*       _predicted_receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  CallGenerator* _if_missed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  CallGenerator* _if_hit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  float          _hit_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  PredictedCallGenerator(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
                         CallGenerator* if_missed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
                         CallGenerator* if_hit, float hit_prob)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    : CallGenerator(if_missed->method())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
    // The call profile data may predict the hit_prob as extreme as 0 or 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    // Remove the extremes values from the range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    if (hit_prob > PROB_MAX)   hit_prob = PROB_MAX;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    if (hit_prob < PROB_MIN)   hit_prob = PROB_MIN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    _predicted_receiver = predicted_receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    _if_missed          = if_missed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    _if_hit             = if_hit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    _hit_prob           = hit_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  virtual bool      is_virtual()   const    { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  virtual bool      is_inline()    const    { return _if_hit->is_inline(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  virtual bool      is_deferred()  const    { return _if_hit->is_deferred(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  virtual JVMState* generate(JVMState* jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
CallGenerator* CallGenerator::for_predicted_call(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
                                                 CallGenerator* if_missed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
                                                 CallGenerator* if_hit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
                                                 float hit_prob) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  return new PredictedCallGenerator(predicted_receiver, if_missed, if_hit, hit_prob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
JVMState* PredictedCallGenerator::generate(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  PhaseGVN& gvn = kit.gvn();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  // We need an explicit receiver null_check before checking its type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // We share a map with the caller, so his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  Node* receiver = kit.argument(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  CompileLog* log = kit.C->log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  if (log != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
    log->elem("predicted_call bci='%d' klass='%d'",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
              jvms->bci(), log->identify(_predicted_receiver));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  receiver = kit.null_check_receiver(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  Node* exact_receiver = receiver;  // will get updated in place...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  Node* slow_ctl = kit.type_check_receiver(receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
                                           _predicted_receiver, _hit_prob,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
                                           &exact_receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  SafePointNode* slow_map = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  JVMState* slow_jvms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  { PreserveJVMState pjvms(&kit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
    kit.set_control(slow_ctl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    if (!kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
      slow_jvms = _if_missed->generate(kit.sync_jvms());
11193
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   510
      if (kit.failing())
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   511
        return NULL;  // might happen because of NodeCountInliningCutoff
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   512
      assert(slow_jvms != NULL, "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
      kit.add_exception_states_from(slow_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
      kit.set_map(slow_jvms->map());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      if (!kit.stopped())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
        slow_map = kit.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
1055
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   520
  if (kit.stopped()) {
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   521
    // Instance exactly does not matches the desired type.
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   522
    kit.set_jvms(slow_jvms);
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   523
    return kit.transfer_exceptions_into_jvms();
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   524
  }
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   525
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // fall through if the instance exactly matches the desired type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  kit.replace_in_map(receiver, exact_receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // Make the hot call:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  JVMState* new_jvms = _if_hit->generate(kit.sync_jvms());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  if (new_jvms == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
    // Inline failed, so make a direct call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    assert(_if_hit->is_inline(), "must have been a failed inline");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    CallGenerator* cg = CallGenerator::for_direct_call(_if_hit->method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    new_jvms = cg->generate(kit.sync_jvms());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  kit.add_exception_states_from(new_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  kit.set_jvms(new_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  // Need to merge slow and fast?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  if (slow_map == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    // The fast path is the only path remaining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    // Inlined method threw an exception, so it's just the slow path after all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
    kit.set_jvms(slow_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  // Finish the diamond.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  kit.C->set_has_split_ifs(true); // Has chance for split-if optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  RegionNode* region = new (kit.C, 3) RegionNode(3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  region->init_req(1, kit.control());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  region->init_req(2, slow_map->control());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  kit.set_control(gvn.transform(region));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  iophi->set_req(2, slow_map->i_o());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  kit.set_i_o(gvn.transform(iophi));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  kit.merge_memory(slow_map->merged_memory(), region, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  uint tos = kit.jvms()->stkoff() + kit.sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  uint limit = slow_map->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  for (uint i = TypeFunc::Parms; i < limit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    // Skip unused stack slots; fast forward to monoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    if (i == tos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      i = kit.jvms()->monoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      if( i >= limit ) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    Node* m = kit.map()->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    Node* n = slow_map->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    if (m != n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      const Type* t = gvn.type(m)->meet(gvn.type(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      Node* phi = PhiNode::make(region, m, t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
      phi->set_req(2, n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      kit.map()->set_req(i, gvn.transform(phi));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   583
CallGenerator* 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: 13107
diff changeset
   584
  assert(callee->is_method_handle_intrinsic() ||
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   585
         callee->is_compiled_lambda_form(), "for_method_handle_call mismatch");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   586
  CallGenerator* cg = CallGenerator::for_method_handle_inline(jvms, caller, callee);
11193
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   587
  if (cg != NULL)
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   588
    return cg;
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   589
  return CallGenerator::for_direct_call(callee);
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   590
}
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   591
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   592
CallGenerator* CallGenerator::for_method_handle_inline(JVMState* jvms, ciMethod* caller, ciMethod* callee) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   593
  GraphKit kit(jvms);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   594
  PhaseGVN& gvn = kit.gvn();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   595
  Compile* C = kit.C;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   596
  vmIntrinsics::ID iid = callee->intrinsic_id();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   597
  switch (iid) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   598
  case vmIntrinsics::_invokeBasic:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   599
    {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   600
      // get MethodHandle receiver
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   601
      Node* receiver = kit.argument(0);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   602
      if (receiver->Opcode() == Op_ConP) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   603
        const TypeOopPtr* oop_ptr = receiver->bottom_type()->is_oopptr();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   604
        ciMethod* target = oop_ptr->const_oop()->as_method_handle()->get_vmtarget();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   605
        guarantee(!target->is_method_handle_intrinsic(), "should not happen");  // XXX remove
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   606
        const int vtable_index = methodOopDesc::invalid_vtable_index;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   607
        CallGenerator* cg = C->call_generator(target, vtable_index, false, jvms, true, PROB_ALWAYS);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   608
        if (cg != NULL && cg->is_inline())
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   609
          return cg;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   610
      } else {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   611
        if (PrintInlining)  CompileTask::print_inlining(callee, jvms->depth() - 1, jvms->bci(), "receiver not constant");
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   612
      }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   613
    }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   614
    break;
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   615
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   616
  case vmIntrinsics::_linkToVirtual:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   617
  case vmIntrinsics::_linkToStatic:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   618
  case vmIntrinsics::_linkToSpecial:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   619
  case vmIntrinsics::_linkToInterface:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   620
    {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   621
      // pop MemberName argument
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   622
      Node* member_name = kit.argument(callee->arg_size() - 1);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   623
      if (member_name->Opcode() == Op_ConP) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   624
        const TypeOopPtr* oop_ptr = member_name->bottom_type()->is_oopptr();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   625
        ciMethod* target = oop_ptr->const_oop()->as_member_name()->get_vmtarget();
9975
82190b49ce14 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 9099
diff changeset
   626
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   627
        // In lamda forms we erase signature types to avoid resolving issues
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   628
        // involving class loaders.  When we optimize a method handle invoke
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   629
        // to a direct call we must cast the receiver and arguments to its
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   630
        // actual types.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   631
        ciSignature* signature = target->signature();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   632
        const int receiver_skip = target->is_static() ? 0 : 1;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   633
        // Cast receiver to its type.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   634
        if (!target->is_static()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   635
          Node* arg = kit.argument(0);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   636
          const TypeOopPtr* arg_type = arg->bottom_type()->isa_oopptr();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   637
          const Type*       sig_type = TypeOopPtr::make_from_klass(signature->accessing_klass());
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   638
          if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   639
            Node* cast_obj = gvn.transform(new (C, 2) CheckCastPPNode(kit.control(), arg, sig_type));
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   640
            kit.set_argument(0, cast_obj);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   641
          }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   642
        }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   643
        // Cast reference arguments to its type.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   644
        for (int i = 0; i < signature->count(); i++) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   645
          ciType* t = signature->type_at(i);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   646
          if (t->is_klass()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   647
            Node* arg = kit.argument(receiver_skip + i);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   648
            const TypeOopPtr* arg_type = arg->bottom_type()->isa_oopptr();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   649
            const Type*       sig_type = TypeOopPtr::make_from_klass(t->as_klass());
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   650
            if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   651
              Node* cast_obj = gvn.transform(new (C, 2) CheckCastPPNode(kit.control(), arg, sig_type));
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   652
              kit.set_argument(receiver_skip + i, cast_obj);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   653
            }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   654
          }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   655
        }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   656
        const int vtable_index = methodOopDesc::invalid_vtable_index;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   657
        const bool call_is_virtual = target->is_abstract();  // FIXME workaround
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   658
        CallGenerator* cg = C->call_generator(target, vtable_index, call_is_virtual, jvms, true, PROB_ALWAYS);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   659
        if (cg != NULL && cg->is_inline())
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   660
          return cg;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   661
      }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   662
    }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   663
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   664
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   665
  default:
13393
f0344cc50a90 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 13391
diff changeset
   666
    fatal(err_msg_res("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid)));
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   667
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   668
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   669
  return NULL;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   670
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   671
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   672
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
//-------------------------UncommonTrapCallGenerator-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
// Internal class which handles all out-of-line calls checking receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
class UncommonTrapCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  Deoptimization::DeoptReason _reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  Deoptimization::DeoptAction _action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  UncommonTrapCallGenerator(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
                            Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
                            Deoptimization::DeoptAction action)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    : CallGenerator(m)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    _reason = reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    _action = action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  virtual bool      is_virtual() const          { ShouldNotReachHere(); return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  virtual bool      is_trap() const             { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  virtual JVMState* generate(JVMState* jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
CallGenerator*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
CallGenerator::for_uncommon_trap(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
                                 Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
                                 Deoptimization::DeoptAction action) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  return new UncommonTrapCallGenerator(m, reason, action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
JVMState* UncommonTrapCallGenerator::generate(JVMState* jvms) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  // Take the trap with arguments pushed on the stack.  (Cf. null_check_receiver).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  int nargs = method()->arg_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  kit.inc_sp(nargs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  assert(nargs <= kit.sp() && kit.sp() <= jvms->stk_size(), "sane sp w/ args pushed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  if (_reason == Deoptimization::Reason_class_check &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
      _action == Deoptimization::Action_maybe_recompile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    // Temp fix for 6529811
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
    // Don't allow uncommon_trap to override our decision to recompile in the event
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    // of a class cast failure for a monomorphic call as it will never let us convert
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    // the call to either bi-morphic or megamorphic and can lead to unc-trap loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    bool keep_exact_action = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    kit.uncommon_trap(_reason, _action, NULL, "monomorphic vcall checkcast", false, keep_exact_action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    kit.uncommon_trap(_reason, _action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
// (Note:  Moved hook_up_call to GraphKit::set_edges_for_java_call.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
// (Node:  Merged hook_up_exits into ParseGenerator::generate.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
#define NODES_OVERHEAD_PER_METHOD (30.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
#define NODES_PER_BYTECODE (9.5)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  int call_count = profile.count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  int code_size = call_method->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  // Expected execution count is based on the historical count:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  _count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  // Expected profit from inlining, in units of simple call-overheads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  _profit = 1.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  // Expected work performed by the call in units of call-overheads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  // %%% need an empirical curve fit for "work" (time in call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  float bytecodes_per_call = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  _work = 1.0 + code_size / bytecodes_per_call;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  // Expected size of compilation graph:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  // -XX:+PrintParseStatistics once reported:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  //  Methods seen: 9184  Methods parsed: 9184  Nodes created: 1582391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  //  Histogram of 144298 parsed bytecodes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  // %%% Need an better predictor for graph size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  _size = NODES_OVERHEAD_PER_METHOD + (NODES_PER_BYTECODE * code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
// is_cold:  Return true if the node should never be inlined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
// This is true if any of the key metrics are extreme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
bool WarmCallInfo::is_cold() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  if (count()  <  WarmCallMinCount)        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  if (profit() <  WarmCallMinProfit)       return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  if (work()   >  WarmCallMaxWork)         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  if (size()   >  WarmCallMaxSize)         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
// is_hot:  Return true if the node should be inlined immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
// This is true if any of the key metrics are extreme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
bool WarmCallInfo::is_hot() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  assert(!is_cold(), "eliminate is_cold cases before testing is_hot");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  if (count()  >= HotCallCountThreshold)   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  if (profit() >= HotCallProfitThreshold)  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  if (work()   <= HotCallTrivialWork)      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  if (size()   <= HotCallTrivialSize)      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
// compute_heat:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
float WarmCallInfo::compute_heat() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  assert(!is_cold(), "compute heat only on warm nodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  assert(!is_hot(),  "compute heat only on warm nodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  int min_size = MAX2(0,   (int)HotCallTrivialSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  int max_size = MIN2(500, (int)WarmCallMaxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  float method_size = (size() - min_size) / MAX2(1, max_size - min_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  float size_factor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  if      (method_size < 0.05)  size_factor = 4;   // 2 sigmas better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  else if (method_size < 0.15)  size_factor = 2;   // 1 sigma better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  else if (method_size < 0.5)   size_factor = 1;   // better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  else                          size_factor = 0.5; // worse than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  return (count() * profit() * size_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
bool WarmCallInfo::warmer_than(WarmCallInfo* that) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  assert(this != that, "compare only different WCIs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  assert(this->heat() != 0 && that->heat() != 0, "call compute_heat 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  if (this->heat() > that->heat())   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  if (this->heat() < that->heat())   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  assert(this->heat() == that->heat(), "no NaN heat allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  // Equal heat.  Break the tie some other way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  if (!this->call() || !that->call())  return (address)this > (address)that;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  return this->call()->_idx > that->call()->_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
//#define UNINIT_NEXT ((WarmCallInfo*)badAddress)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
#define UNINIT_NEXT ((WarmCallInfo*)NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
WarmCallInfo* WarmCallInfo::insert_into(WarmCallInfo* head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  assert(next() == UNINIT_NEXT, "not yet on any list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  WarmCallInfo* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  WarmCallInfo* next_p = head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  while (next_p != NULL && next_p->warmer_than(this)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    prev_p = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    next_p = prev_p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  // Install this between prev_p and next_p.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  this->set_next(next_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
  if (prev_p == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    head = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
    prev_p->set_next(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  return head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
WarmCallInfo* WarmCallInfo::remove_from(WarmCallInfo* head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  WarmCallInfo* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  WarmCallInfo* next_p = head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  while (next_p != this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
    assert(next_p != NULL, "this must be in the list somewhere");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    prev_p = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    next_p = prev_p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  next_p = this->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  debug_only(this->set_next(UNINIT_NEXT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  // Remove this from between prev_p and next_p.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  if (prev_p == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
    head = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    prev_p->set_next(next_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  return head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   839
WarmCallInfo WarmCallInfo::_always_hot(WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE(),
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   840
                                       WarmCallInfo::MIN_VALUE(), WarmCallInfo::MIN_VALUE());
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   841
WarmCallInfo WarmCallInfo::_always_cold(WarmCallInfo::MIN_VALUE(), WarmCallInfo::MIN_VALUE(),
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   842
                                        WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
WarmCallInfo* WarmCallInfo::always_hot() {
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   845
  assert(_always_hot.is_hot(), "must always be hot");
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   846
  return &_always_hot;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
WarmCallInfo* WarmCallInfo::always_cold() {
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   850
  assert(_always_cold.is_cold(), "must always be cold");
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
   851
  return &_always_cold;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
void WarmCallInfo::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  tty->print("%s : C=%6.1f P=%6.1f W=%6.1f S=%6.1f H=%6.1f -> %p",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
             is_cold() ? "cold" : is_hot() ? "hot " : "warm",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
             count(), profit(), work(), size(), compute_heat(), next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  if (call() != NULL)  call()->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
void print_wci(WarmCallInfo* ci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  ci->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
void WarmCallInfo::print_all() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  for (const WarmCallInfo* p = this; p != NULL; p = p->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    p->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
int WarmCallInfo::count_all() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  int cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  for (const WarmCallInfo* p = this; p != NULL; p = p->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
    cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
#endif //PRODUCT