src/hotspot/share/opto/callGenerator.cpp
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 55635 0fb70c9118ce
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53469
1d953ae4d39f 8216136: Take Compile_lock for SystemDictionary::_modification_counter with safepoint check
coleenp
parents: 51333
diff changeset
     2
 * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
    28
#include "ci/ciObjArray.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"
23528
8f1a7f5e8066 8001532: C2 node files refactoring
morris
parents: 22873
diff changeset
    36
#include "opto/castnode.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "opto/cfgnode.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"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 26945
diff changeset
    42
#include "runtime/sharedRuntime.hpp"
1
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
53509
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    49
bool CallGenerator::is_inlined_method_handle_intrinsic(JVMState* jvms, ciMethod* m) {
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    50
  return is_inlined_method_handle_intrinsic(jvms->method(), jvms->bci(), m);
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    51
}
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    52
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    53
bool CallGenerator::is_inlined_method_handle_intrinsic(ciMethod* caller, int bci, ciMethod* m) {
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    54
  ciMethod* symbolic_info = caller->get_method_at_bci(bci);
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    55
  return is_inlined_method_handle_intrinsic(symbolic_info, m);
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    56
}
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    57
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    58
bool CallGenerator::is_inlined_method_handle_intrinsic(ciMethod* symbolic_info, ciMethod* m) {
28aa41c4165b 8217760: C2: Missing symbolic info on a call from intrinsics when invoked through MethodHandle
vlivanov
parents: 53469
diff changeset
    59
  return symbolic_info->is_method_handle_intrinsic() && !m->is_method_handle_intrinsic();
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
    60
}
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
    61
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//-----------------------------ParseGenerator---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// Internal class which handles all direct bytecode traversal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
class ParseGenerator : public InlineCallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  bool  _is_osr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  float _expected_uses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  ParseGenerator(ciMethod* method, float expected_uses, bool is_osr = false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    : InlineCallGenerator(method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    _is_osr        = is_osr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    _expected_uses = expected_uses;
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
    75
    assert(InlineTree::check_can_parse(method) == NULL, "parse must be possible");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  virtual bool      is_parse() const           { return true; }
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
    79
  virtual JVMState* generate(JVMState* jvms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  int is_osr() { return _is_osr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
    84
JVMState* ParseGenerator::generate(JVMState* jvms) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  Compile* C = Compile::current();
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
    86
  C->print_inlining_update(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  if (is_osr()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // The JVMS for a OSR has a single argument (see its TypeFunc).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    assert(jvms->depth() == 1, "no inline OSR");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  if (C->failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    return NULL;  // bailing out of the compile; do not try to parse
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
    97
  Parse parser(jvms, method(), _expected_uses);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Grab signature for matching/allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  GraphKit& exits = parser.exits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  if (C->failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    while (exits.pop_exception_state() != NULL) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  assert(exits.jvms()->same_calls_as(jvms), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Simply return the exit state of the parser,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // augmented by any exceptional states.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  return exits.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
//---------------------------DirectCallGenerator------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// Internal class which handles all out-of-line calls w/o receiver type checks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
class DirectCallGenerator : public CallGenerator {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   116
 private:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   117
  CallStaticJavaNode* _call_node;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   118
  // Force separate memory and I/O projections for the exceptional
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   119
  // paths to facilitate late inlinig.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   120
  bool                _separate_io_proj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   121
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   122
 public:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   123
  DirectCallGenerator(ciMethod* method, bool separate_io_proj)
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   124
    : CallGenerator(method),
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   125
      _separate_io_proj(separate_io_proj)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   128
  virtual JVMState* generate(JVMState* jvms);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   129
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   130
  CallStaticJavaNode* call_node() const { return _call_node; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   133
JVMState* DirectCallGenerator::generate(JVMState* jvms) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  GraphKit kit(jvms);
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   135
  kit.C->print_inlining_update(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  bool is_static = method()->is_static();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  address target = is_static ? SharedRuntime::get_resolve_static_call_stub()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                             : SharedRuntime::get_resolve_opt_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  if (kit.C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    kit.C->log()->elem("direct_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24479
diff changeset
   144
  CallStaticJavaNode *call = new CallStaticJavaNode(kit.C, tf(), target, method(), kit.bci());
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   145
  if (is_inlined_method_handle_intrinsic(jvms, method())) {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   146
    // To be able to issue a direct call and skip a call to MH.linkTo*/invokeBasic adapter,
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   147
    // additional information about the method being invoked should be attached
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   148
    // to the call site to make resolution logic work
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   149
    // (see SharedRuntime::resolve_static_call_C).
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   150
    call->set_override_symbolic_info(true);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   151
  }
12591
064b5c1aa88a 7162094: LateInlineCallGenerator::do_late_inline crashed on uninitialized _call_node
never
parents: 11193
diff changeset
   152
  _call_node = call;  // Save the call node in case we need it later
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    // Make an explicit receiver null_check as part of this call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    // Since we share a map with the caller, his JVMS gets adjusted.
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   156
    kit.null_check_receiver_before_call(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      // And dump it back to the caller, decorated with any exceptions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
      return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    // Mark the call node as virtual, sort of:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    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
   163
    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
   164
        method()->is_compiled_lambda_form()) {
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   165
      call->set_method_handle_invoke(true);
4906
90640ad2d401 6926782: CodeBuffer size too small after 6921352
twisti
parents: 4567
diff changeset
   166
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  kit.set_arguments_for_java_call(call);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   169
  kit.set_edges_for_java_call(call, false, _separate_io_proj);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   170
  Node* ret = kit.set_results_for_java_call(call, _separate_io_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  kit.push_node(method()->return_type()->basic_type(), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   175
//--------------------------VirtualCallGenerator------------------------------
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   176
// Internal class which handles all out-of-line calls checking receiver type.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
class VirtualCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  int _vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  VirtualCallGenerator(ciMethod* method, int vtable_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    : CallGenerator(method), _vtable_index(vtable_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
   184
    assert(vtable_index == Method::invalid_vtable_index ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
           vtable_index >= 0, "either invalid or usable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  virtual bool      is_virtual() const          { return true; }
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   188
  virtual JVMState* generate(JVMState* jvms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   191
JVMState* VirtualCallGenerator::generate(JVMState* jvms) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  Node* receiver = kit.argument(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   195
  kit.C->print_inlining_update(this);
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   196
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  if (kit.C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    kit.C->log()->elem("virtual_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // If the receiver is a constant null, do not torture the system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // by attempting to call through it.  The compile will proceed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // correctly, but may bail out in final_graph_reshaping, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // the call instruction will have a seemingly deficient out-count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // (The bailout says something misleading about an "infinite loop".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  if (kit.gvn().type(receiver)->higher_equal(TypePtr::NULL_PTR)) {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   207
    assert(Bytecodes::is_invoke(kit.java_bc()), "%d: %s", kit.java_bc(), Bytecodes::name(kit.java_bc()));
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   208
    ciMethod* declared_method = kit.method()->get_method_at_bci(kit.bci());
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   209
    int arg_size = declared_method->signature()->arg_size_for_bc(kit.java_bc());
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   210
    kit.inc_sp(arg_size);  // restore arguments
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    kit.uncommon_trap(Deoptimization::Reason_null_check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
                      Deoptimization::Action_none,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                      NULL, "null receiver");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  // Ideally we would unconditionally do a null check here and let it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // be converted to an implicit check based on profile information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // However currently the conversion to implicit null checks in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // Block::implicit_null_check() only looks for loads and stores, not calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  ciMethod *caller = kit.method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  ciMethodData *caller_md = (caller == NULL) ? NULL : caller->method_data();
22852
1063026e8cee 8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents: 21582
diff changeset
   223
  if (!UseInlineCaches || !ImplicitNullChecks || !os::zero_page_read_protected() ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
       ((ImplicitNullCheckThreshold > 0) && caller_md &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
       (caller_md->trap_count(Deoptimization::Reason_null_check)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
       >= (uint)ImplicitNullCheckThreshold))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // Make an explicit receiver null_check as part of this call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // Since we share a map with the caller, his JVMS gets adjusted.
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   229
    receiver = kit.null_check_receiver_before_call(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      // And dump it back to the caller, decorated with any exceptions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
      return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  assert(!method()->is_static(), "virtual call must not be to static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  assert(!method()->is_final(), "virtual call should not be to final");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  assert(!method()->is_private(), "virtual call should not be to private");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
   239
  assert(_vtable_index == Method::invalid_vtable_index || !UseInlineCaches,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
         "no vtable calls if +UseInlineCaches ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  address target = SharedRuntime::get_resolve_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // Normal inline cache used for call
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24479
diff changeset
   243
  CallDynamicJavaNode *call = new CallDynamicJavaNode(tf(), target, method(), _vtable_index, kit.bci());
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   244
  if (is_inlined_method_handle_intrinsic(jvms, method())) {
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   245
    // To be able to issue a direct call (optimized virtual or virtual)
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   246
    // and skip a call to MH.linkTo*/invokeBasic adapter, additional information
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   247
    // about the method being invoked should be attached to the call site to
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   248
    // make resolution logic work (see SharedRuntime::resolve_{virtual,opt_virtual}_call_C).
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   249
    call->set_override_symbolic_info(true);
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   250
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  kit.set_arguments_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  kit.set_edges_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  Node* ret = kit.set_results_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  kit.push_node(method()->return_type()->basic_type(), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // Represent the effect of an implicit receiver null_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // as part of this call.  Since we share a map with the caller,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  kit.cast_not_null(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
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
   264
  if (InlineTree::check_can_parse(m) != NULL)  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  return new ParseGenerator(m, expected_uses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
// As a special case, the JVMS passed to this CallGenerator is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// for the method execution already in progress, not just the JVMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// of the caller.  Thus, this CallGenerator cannot be mixed with others!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
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
   272
  if (InlineTree::check_can_parse(m) != NULL)  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  float past_uses = m->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  float expected_uses = past_uses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  return new ParseGenerator(m, expected_uses, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   278
CallGenerator* CallGenerator::for_direct_call(ciMethod* m, bool separate_io_proj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  assert(!m->is_abstract(), "for_direct_call mismatch");
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   280
  return new DirectCallGenerator(m, separate_io_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
CallGenerator* CallGenerator::for_virtual_call(ciMethod* m, int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  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
   285
  assert(!m->is_method_handle_intrinsic(), "should be a direct call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  return new VirtualCallGenerator(m, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   289
// Allow inlining decisions to be delayed
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   290
class LateInlineCallGenerator : public DirectCallGenerator {
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   291
 private:
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   292
  jlong _unique_id;   // unique id for log compilation
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   293
  bool _is_pure_call; // a hint that the call doesn't have important side effects to care about
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   294
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   295
 protected:
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   296
  CallGenerator* _inline_cg;
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   297
  virtual bool do_late_inline_check(JVMState* jvms) { return true; }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   298
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   299
 public:
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   300
  LateInlineCallGenerator(ciMethod* method, CallGenerator* inline_cg, bool is_pure_call = false) :
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   301
    DirectCallGenerator(method, true), _unique_id(0), _is_pure_call(is_pure_call), _inline_cg(inline_cg) {}
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   302
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   303
  virtual bool is_late_inline() const { return true; }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   304
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   305
  // Convert the CallStaticJava into an inline
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   306
  virtual void do_late_inline();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   307
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   308
  virtual JVMState* generate(JVMState* jvms) {
14828
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   309
    Compile *C = Compile::current();
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   310
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   311
    C->log_inline_id(this);
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   312
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   313
    // Record that this call site should be revisited once the main
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   314
    // parse is finished.
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   315
    if (!is_mh_late_inline()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   316
      C->add_late_inline(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   317
    }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   318
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   319
    // Emit the CallStaticJava and request separate projections so
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   320
    // that the late inlining logic can distinguish between fall
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   321
    // through and exceptional uses of the memory and io projections
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   322
    // as is done for allocations and macro expansion.
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   323
    return DirectCallGenerator::generate(jvms);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   324
  }
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   325
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   326
  virtual void print_inlining_late(const char* msg) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   327
    CallNode* call = call_node();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   328
    Compile* C = Compile::current();
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   329
    C->print_inlining_assert_ready();
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   330
    C->print_inlining(method(), call->jvms()->depth()-1, call->jvms()->bci(), msg);
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   331
    C->print_inlining_move_to(this);
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   332
    C->print_inlining_update_delayed(this);
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   333
  }
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   334
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   335
  virtual void set_unique_id(jlong id) {
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   336
    _unique_id = id;
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   337
  }
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   338
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   339
  virtual jlong unique_id() const {
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   340
    return _unique_id;
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   341
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   342
};
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   343
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   344
void LateInlineCallGenerator::do_late_inline() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   345
  // Can't inline it
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   346
  CallStaticJavaNode* call = call_node();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   347
  if (call == NULL || call->outcnt() == 0 ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   348
      call->in(0) == NULL || call->in(0)->is_top()) {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   349
    return;
15478
6e6f37256157 8007144: Incremental inlining mistakes some call sites for dead ones and doesn't inline them
roland
parents: 15118
diff changeset
   350
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   351
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   352
  const TypeTuple *r = call->tf()->domain();
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   353
  for (int i1 = 0; i1 < method()->arg_size(); i1++) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   354
    if (call->in(TypeFunc::Parms + i1)->is_top() && r->field_at(TypeFunc::Parms + i1) != Type::HALF) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   355
      assert(Compile::current()->inlining_incrementally(), "shouldn't happen during parsing");
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   356
      return;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   357
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   358
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   359
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   360
  if (call->in(TypeFunc::Memory)->is_top()) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   361
    assert(Compile::current()->inlining_incrementally(), "shouldn't happen during parsing");
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   362
    return;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   363
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   364
48197
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   365
  // check for unreachable loop
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   366
  CallProjections callprojs;
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   367
  call->extract_projections(&callprojs, true);
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   368
  if (callprojs.fallthrough_catchproj == call->in(0) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   369
      callprojs.catchall_catchproj == call->in(0) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   370
      callprojs.fallthrough_memproj == call->in(TypeFunc::Memory) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   371
      callprojs.catchall_memproj == call->in(TypeFunc::Memory) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   372
      callprojs.fallthrough_ioproj == call->in(TypeFunc::I_O) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   373
      callprojs.catchall_ioproj == call->in(TypeFunc::I_O) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   374
      (callprojs.resproj != NULL && call->find_edge(callprojs.resproj) != -1) ||
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   375
      (callprojs.exobj != NULL && call->find_edge(callprojs.exobj) != -1)) {
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   376
    return;
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   377
  }
afcefb8ab1e1 8191950: assertion failed: no insertions allowed
roland
parents: 47216
diff changeset
   378
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   379
  Compile* C = Compile::current();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   380
  // Remove inlined methods from Compiler's lists.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   381
  if (call->is_macro()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   382
    C->remove_macro_node(call);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   383
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   384
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   385
  bool result_not_used = (callprojs.resproj == NULL || callprojs.resproj->outcnt() == 0);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   386
  if (_is_pure_call && result_not_used) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   387
    // The call is marked as pure (no important side effects), but result isn't used.
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   388
    // It's safe to remove the call.
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   389
    GraphKit kit(call->jvms());
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   390
    kit.replace_call(call, C->top(), true);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   391
  } else {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   392
    // Make a clone of the JVMState that appropriate to use for driving a parse
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   393
    JVMState* old_jvms = call->jvms();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   394
    JVMState* jvms = old_jvms->clone_shallow(C);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   395
    uint size = call->req();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   396
    SafePointNode* map = new SafePointNode(size, jvms);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   397
    for (uint i1 = 0; i1 < size; i1++) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   398
      map->init_req(i1, call->in(i1));
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   399
    }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   400
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   401
    // Make sure the state is a MergeMem for parsing.
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   402
    if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   403
      Node* mem = MergeMemNode::make(map->in(TypeFunc::Memory));
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   404
      C->initial_gvn()->set_type_bottom(mem);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   405
      map->set_req(TypeFunc::Memory, mem);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   406
    }
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   407
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   408
    uint nargs = method()->arg_size();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   409
    // blow away old call arguments
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   410
    Node* top = C->top();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   411
    for (uint i1 = 0; i1 < nargs; i1++) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   412
      map->set_req(TypeFunc::Parms + i1, top);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   413
    }
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   414
    jvms->set_map(map);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   415
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   416
    // Make enough space in the expression stack to transfer
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   417
    // the incoming arguments and return value.
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   418
    map->ensure_stack(jvms, jvms->method()->max_stack());
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   419
    for (uint i1 = 0; i1 < nargs; i1++) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   420
      map->set_argument(jvms, i1, call->in(TypeFunc::Parms + i1));
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   421
    }
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   422
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   423
    C->print_inlining_assert_ready();
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   424
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   425
    C->print_inlining_move_to(this);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   426
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   427
    C->log_late_inline(this);
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   428
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   429
    // This check is done here because for_method_handle_inline() method
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   430
    // needs jvms for inlined state.
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   431
    if (!do_late_inline_check(jvms)) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   432
      map->disconnect_inputs(NULL, C);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   433
      return;
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   434
    }
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   435
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   436
    // Setup default node notes to be picked up by the inlining
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   437
    Node_Notes* old_nn = C->node_notes_at(call->_idx);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   438
    if (old_nn != NULL) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   439
      Node_Notes* entry_nn = old_nn->clone(C);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   440
      entry_nn->set_jvms(jvms);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   441
      C->set_default_node_notes(entry_nn);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   442
    }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   443
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   444
    // Now perform the inlining using the synthesized JVMState
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   445
    JVMState* new_jvms = _inline_cg->generate(jvms);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   446
    if (new_jvms == NULL)  return;  // no change
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   447
    if (C->failing())      return;
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   448
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   449
    // Capture any exceptional control flow
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   450
    GraphKit kit(new_jvms);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   451
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   452
    // Find the result object
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   453
    Node* result = C->top();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   454
    int   result_size = method()->return_type()->size();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   455
    if (result_size != 0 && !kit.stopped()) {
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   456
      result = (result_size == 1) ? kit.pop() : kit.pop_pair();
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   457
    }
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   458
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   459
    C->set_has_loops(C->has_loops() || _inline_cg->method()->has_loops());
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   460
    C->env()->notice_inlined_method(_inline_cg->method());
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   461
    C->set_inlining_progress(true);
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   462
    C->set_do_cleanup(kit.stopped()); // path is dead; needs cleanup
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   463
    kit.replace_call(call, result, true);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   464
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   465
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   466
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   467
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   468
CallGenerator* CallGenerator::for_late_inline(ciMethod* method, CallGenerator* inline_cg) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   469
  return new LateInlineCallGenerator(method, inline_cg);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   470
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   471
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   472
class LateInlineMHCallGenerator : public LateInlineCallGenerator {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   473
  ciMethod* _caller;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   474
  int _attempt;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   475
  bool _input_not_const;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   476
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   477
  virtual bool do_late_inline_check(JVMState* jvms);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   478
  virtual bool already_attempted() const { return _attempt > 0; }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   479
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   480
 public:
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   481
  LateInlineMHCallGenerator(ciMethod* caller, ciMethod* callee, bool input_not_const) :
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   482
    LateInlineCallGenerator(callee, NULL), _caller(caller), _attempt(0), _input_not_const(input_not_const) {}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   483
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   484
  virtual bool is_mh_late_inline() const { return true; }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   485
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   486
  virtual JVMState* generate(JVMState* jvms) {
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   487
    JVMState* new_jvms = LateInlineCallGenerator::generate(jvms);
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   488
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   489
    Compile* C = Compile::current();
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   490
    if (_input_not_const) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   491
      // inlining won't be possible so no need to enqueue right now.
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   492
      call_node()->set_generator(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   493
    } else {
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   494
      C->add_late_inline(this);
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   495
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   496
    return new_jvms;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   497
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   498
};
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   499
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   500
bool LateInlineMHCallGenerator::do_late_inline_check(JVMState* jvms) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   501
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   502
  CallGenerator* cg = for_method_handle_inline(jvms, _caller, method(), _input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   503
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   504
  Compile::current()->print_inlining_update_delayed(this);
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   505
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   506
  if (!_input_not_const) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   507
    _attempt++;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   508
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   509
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   510
  if (cg != NULL && cg->is_inline()) {
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   511
    assert(!cg->is_late_inline(), "we're doing late inlining");
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   512
    _inline_cg = cg;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   513
    Compile::current()->dec_number_of_mh_late_inlines();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   514
    return true;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   515
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   516
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   517
  call_node()->set_generator(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   518
  return false;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   519
}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   520
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   521
CallGenerator* CallGenerator::for_mh_late_inline(ciMethod* caller, ciMethod* callee, bool input_not_const) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   522
  Compile::current()->inc_number_of_mh_late_inlines();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   523
  CallGenerator* cg = new LateInlineMHCallGenerator(caller, callee, input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   524
  return cg;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   525
}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   526
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   527
class LateInlineStringCallGenerator : public LateInlineCallGenerator {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   528
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   529
 public:
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   530
  LateInlineStringCallGenerator(ciMethod* method, CallGenerator* inline_cg) :
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   531
    LateInlineCallGenerator(method, inline_cg) {}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   532
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   533
  virtual JVMState* generate(JVMState* jvms) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   534
    Compile *C = Compile::current();
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   535
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   536
    C->log_inline_id(this);
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   537
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   538
    C->add_string_late_inline(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   539
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   540
    JVMState* new_jvms =  DirectCallGenerator::generate(jvms);
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   541
    return new_jvms;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   542
  }
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   543
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   544
  virtual bool is_string_late_inline() const { return true; }
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   545
};
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   546
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   547
CallGenerator* CallGenerator::for_string_late_inline(ciMethod* method, CallGenerator* inline_cg) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   548
  return new LateInlineStringCallGenerator(method, inline_cg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   549
}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   550
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   551
class LateInlineBoxingCallGenerator : public LateInlineCallGenerator {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   552
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   553
 public:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   554
  LateInlineBoxingCallGenerator(ciMethod* method, CallGenerator* inline_cg) :
53633
eebdde444bb5 8075052: Autobox elimination hinders loop unrolling
vlivanov
parents: 53595
diff changeset
   555
    LateInlineCallGenerator(method, inline_cg, /*is_pure=*/true) {}
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   556
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   557
  virtual JVMState* generate(JVMState* jvms) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   558
    Compile *C = Compile::current();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   559
24002
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   560
    C->log_inline_id(this);
4e6a72032a99 8005079: fix LogCompilation for incremental inlining
roland
parents: 23846
diff changeset
   561
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   562
    C->add_boxing_late_inline(this);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   563
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   564
    JVMState* new_jvms =  DirectCallGenerator::generate(jvms);
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   565
    return new_jvms;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   566
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   567
};
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   568
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   569
CallGenerator* CallGenerator::for_boxing_late_inline(ciMethod* method, CallGenerator* inline_cg) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   570
  return new LateInlineBoxingCallGenerator(method, inline_cg);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   571
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
//---------------------------WarmCallGenerator--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
// Internal class which handles initial deferral of inlining decisions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
class WarmCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  WarmCallInfo*   _call_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  CallGenerator*  _if_cold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  CallGenerator*  _if_hot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  bool            _is_virtual;   // caches virtuality of if_cold
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  bool            _is_inline;    // caches inline-ness of if_hot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  WarmCallGenerator(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
                    CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
                    CallGenerator* if_hot)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
    : CallGenerator(if_cold->method())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    assert(method() == if_hot->method(), "consistent choices");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    _call_info  = ci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    _if_cold    = if_cold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    _if_hot     = if_hot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
    _is_virtual = if_cold->is_virtual();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    _is_inline  = if_hot->is_inline();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  virtual bool      is_inline() const           { return _is_inline; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  virtual bool      is_virtual() const          { return _is_virtual; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  virtual bool      is_deferred() const         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   600
  virtual JVMState* generate(JVMState* jvms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
CallGenerator* CallGenerator::for_warm_call(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
                                            CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
                                            CallGenerator* if_hot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  return new WarmCallGenerator(ci, if_cold, if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   610
JVMState* WarmCallGenerator::generate(JVMState* jvms) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  Compile* C = Compile::current();
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   612
  C->print_inlining_update(this);
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   613
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  if (C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    C->log()->elem("warm_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  }
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   617
  jvms = _if_cold->generate(jvms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  if (jvms != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    Node* m = jvms->map()->control();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    if (m->is_CatchProj()) m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    if (m->is_Catch())     m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    if (m->is_Proj())      m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    if (m->is_CallJava()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
      _call_info->set_call(m->as_Call());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
      _call_info->set_hot_cg(_if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
      if (PrintOpto || PrintOptoInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
        tty->print_cr("Queueing for warm inlining at bci %d:", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
        tty->print("WCI: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
        _call_info->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
      _call_info->set_heat(_call_info->compute_heat());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
      C->set_warm_calls(_call_info->insert_into(C->warm_calls()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  return jvms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
void WarmCallInfo::make_hot() {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   641
  Unimplemented();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
void WarmCallInfo::make_cold() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  // No action:  Just dequeue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
//------------------------PredictedCallGenerator------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
// Internal class which handles all out-of-line calls checking receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
class PredictedCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  ciKlass*       _predicted_receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  CallGenerator* _if_missed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  CallGenerator* _if_hit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
  float          _hit_prob;
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   656
  bool           _exact_check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  PredictedCallGenerator(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
                         CallGenerator* if_missed,
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   661
                         CallGenerator* if_hit, bool exact_check,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   662
                         float hit_prob)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    : CallGenerator(if_missed->method())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    // The call profile data may predict the hit_prob as extreme as 0 or 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    // Remove the extremes values from the range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    if (hit_prob > PROB_MAX)   hit_prob = PROB_MAX;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    if (hit_prob < PROB_MIN)   hit_prob = PROB_MIN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    _predicted_receiver = predicted_receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    _if_missed          = if_missed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    _if_hit             = if_hit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    _hit_prob           = hit_prob;
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   674
    _exact_check        = exact_check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  virtual bool      is_virtual()   const    { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  virtual bool      is_inline()    const    { return _if_hit->is_inline(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  virtual bool      is_deferred()  const    { return _if_hit->is_deferred(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   681
  virtual JVMState* generate(JVMState* jvms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
CallGenerator* CallGenerator::for_predicted_call(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
                                                 CallGenerator* if_missed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
                                                 CallGenerator* if_hit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
                                                 float hit_prob) {
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   689
  return new PredictedCallGenerator(predicted_receiver, if_missed, if_hit,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   690
                                    /*exact_check=*/true, hit_prob);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   693
CallGenerator* CallGenerator::for_guarded_call(ciKlass* guarded_receiver,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   694
                                               CallGenerator* if_missed,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   695
                                               CallGenerator* if_hit) {
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   696
  return new PredictedCallGenerator(guarded_receiver, if_missed, if_hit,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   697
                                    /*exact_check=*/false, PROB_ALWAYS);
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   698
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   700
JVMState* PredictedCallGenerator::generate(JVMState* jvms) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  GraphKit kit(jvms);
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   702
  kit.C->print_inlining_update(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  PhaseGVN& gvn = kit.gvn();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  // We need an explicit receiver null_check before checking its type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  // We share a map with the caller, so his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  Node* receiver = kit.argument(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  CompileLog* log = kit.C->log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  if (log != NULL) {
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   709
    log->elem("predicted_call bci='%d' exact='%d' klass='%d'",
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   710
              jvms->bci(), (_exact_check ? 1 : 0), log->identify(_predicted_receiver));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   713
  receiver = kit.null_check_receiver_before_call(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   718
  // Make a copy of the replaced nodes in case we need to restore them
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   719
  ReplacedNodes replaced_nodes = kit.map()->replaced_nodes();
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   720
  replaced_nodes.clone();
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   721
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   722
  Node* casted_receiver = receiver;  // will get updated in place...
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   723
  Node* slow_ctl = NULL;
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   724
  if (_exact_check) {
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   725
    slow_ctl = kit.type_check_receiver(receiver, _predicted_receiver, _hit_prob,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   726
                                       &casted_receiver);
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   727
  } else {
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   728
    slow_ctl = kit.subtype_check_receiver(receiver, _predicted_receiver,
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   729
                                          &casted_receiver);
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   730
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  SafePointNode* slow_map = NULL;
33589
7cbd1b2c139b 8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents: 33105
diff changeset
   733
  JVMState* slow_jvms = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  { PreserveJVMState pjvms(&kit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    kit.set_control(slow_ctl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
    if (!kit.stopped()) {
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   737
      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
   738
      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
   739
        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
   740
      assert(slow_jvms != NULL, "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
      kit.add_exception_states_from(slow_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      kit.set_map(slow_jvms->map());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      if (!kit.stopped())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
        slow_map = kit.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
1055
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   748
  if (kit.stopped()) {
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   749
    // 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
   750
    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
   751
    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
   752
  }
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   753
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // fall through if the instance exactly matches the desired type
53595
8462b295c08b 6986483: CHA: optimize calls through interfaces
vlivanov
parents: 53594
diff changeset
   755
  kit.replace_in_map(receiver, casted_receiver);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  // Make the hot call:
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   758
  JVMState* new_jvms = _if_hit->generate(kit.sync_jvms());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  if (new_jvms == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    // Inline failed, so make a direct call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
    assert(_if_hit->is_inline(), "must have been a failed inline");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    CallGenerator* cg = CallGenerator::for_direct_call(_if_hit->method());
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   763
    new_jvms = cg->generate(kit.sync_jvms());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  kit.add_exception_states_from(new_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  kit.set_jvms(new_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  // Need to merge slow and fast?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  if (slow_map == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
    // The fast path is the only path remaining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    // Inlined method threw an exception, so it's just the slow path after all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    kit.set_jvms(slow_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   780
  // There are 2 branches and the replaced nodes are only valid on
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   781
  // one: restore the replaced nodes to what they were before the
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   782
  // branch.
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   783
  kit.map()->set_replaced_nodes(replaced_nodes);
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   784
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  // Finish the diamond.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  kit.C->set_has_split_ifs(true); // Has chance for split-if optimization
24923
9631f7d691dc 8034812: remove IDX_INIT macro hack in Node class
thartmann
parents: 24479
diff changeset
   787
  RegionNode* region = new RegionNode(3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  region->init_req(1, kit.control());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  region->init_req(2, slow_map->control());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  kit.set_control(gvn.transform(region));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  iophi->set_req(2, slow_map->i_o());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  kit.set_i_o(gvn.transform(iophi));
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   794
  // Merge memory
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  kit.merge_memory(slow_map->merged_memory(), region, 2);
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   796
  // Transform new memory Phis.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   797
  for (MergeMemStream mms(kit.merged_memory()); mms.next_non_empty();) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   798
    Node* phi = mms.memory();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   799
    if (phi->is_Phi() && phi->in(0) == region) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   800
      mms.set_memory(gvn.transform(phi));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   801
    }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   802
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  uint tos = kit.jvms()->stkoff() + kit.sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  uint limit = slow_map->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  for (uint i = TypeFunc::Parms; i < limit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
    // Skip unused stack slots; fast forward to monoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    if (i == tos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
      i = kit.jvms()->monoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
      if( i >= limit ) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
    Node* m = kit.map()->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    Node* n = slow_map->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    if (m != n) {
22799
83e58bac7980 8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents: 22234
diff changeset
   814
      const Type* t = gvn.type(m)->meet_speculative(gvn.type(n));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      Node* phi = PhiNode::make(region, m, t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      phi->set_req(2, n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
      kit.map()->set_req(i, gvn.transform(phi));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   824
CallGenerator* CallGenerator::for_method_handle_call(JVMState* jvms, ciMethod* caller, ciMethod* callee, bool delayed_forbidden) {
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   825
  assert(callee->is_method_handle_intrinsic(), "for_method_handle_call mismatch");
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   826
  bool input_not_const;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   827
  CallGenerator* cg = CallGenerator::for_method_handle_inline(jvms, caller, callee, input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   828
  Compile* C = Compile::current();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   829
  if (cg != NULL) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   830
    if (!delayed_forbidden && AlwaysIncrementalInline) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   831
      return CallGenerator::for_late_inline(callee, cg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   832
    } else {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   833
      return cg;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   834
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   835
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   836
  int bci = jvms->bci();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   837
  ciCallProfile profile = caller->call_profile_at_bci(bci);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   838
  int call_site_count = caller->scale_count(profile.count());
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   839
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   840
  if (IncrementalInline && call_site_count > 0 &&
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   841
      (input_not_const || !C->inlining_incrementally() || C->over_inlining_cutoff())) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   842
    return CallGenerator::for_mh_late_inline(caller, callee, input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   843
  } else {
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   844
    // Out-of-line call.
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   845
    return CallGenerator::for_direct_call(callee);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   846
  }
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
   847
}
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   848
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   849
CallGenerator* CallGenerator::for_method_handle_inline(JVMState* jvms, ciMethod* caller, ciMethod* callee, bool& input_not_const) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   850
  GraphKit kit(jvms);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   851
  PhaseGVN& gvn = kit.gvn();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   852
  Compile* C = kit.C;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   853
  vmIntrinsics::ID iid = callee->intrinsic_id();
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   854
  input_not_const = true;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   855
  switch (iid) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   856
  case vmIntrinsics::_invokeBasic:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   857
    {
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   858
      // Get MethodHandle receiver:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   859
      Node* receiver = kit.argument(0);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   860
      if (receiver->Opcode() == Op_ConP) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   861
        input_not_const = false;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   862
        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
   863
        ciMethod* target = oop_ptr->const_oop()->as_method_handle()->get_vmtarget();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
   864
        const int vtable_index = Method::invalid_vtable_index;
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   865
43947
a52ee13998f3 8174721: C1: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 43943
diff changeset
   866
        if (!ciMethod::is_consistent_info(callee, target)) {
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   867
          print_inlining_failure(C, callee, jvms->depth() - 1, jvms->bci(),
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   868
                                 "signatures mismatch");
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   869
          return NULL;
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   870
        }
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   871
36075
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   872
        CallGenerator* cg = C->call_generator(target, vtable_index,
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   873
                                              false /* call_does_dispatch */,
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   874
                                              jvms,
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   875
                                              true /* allow_inline */,
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   876
                                              PROB_ALWAYS);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   877
        return cg;
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   878
      } else {
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   879
        print_inlining_failure(C, callee, jvms->depth() - 1, jvms->bci(),
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   880
                               "receiver not constant");
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   881
      }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   882
    }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   883
    break;
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   884
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   885
  case vmIntrinsics::_linkToVirtual:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   886
  case vmIntrinsics::_linkToStatic:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   887
  case vmIntrinsics::_linkToSpecial:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   888
  case vmIntrinsics::_linkToInterface:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   889
    {
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   890
      // Get MemberName argument:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   891
      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
   892
      if (member_name->Opcode() == Op_ConP) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   893
        input_not_const = false;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   894
        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
   895
        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
   896
43947
a52ee13998f3 8174721: C1: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 43943
diff changeset
   897
        if (!ciMethod::is_consistent_info(callee, target)) {
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   898
          print_inlining_failure(C, callee, jvms->depth() - 1, jvms->bci(),
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   899
                                 "signatures mismatch");
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   900
          return NULL;
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   901
        }
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   902
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   903
        // In lambda forms we erase signature types to avoid resolving issues
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   904
        // 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
   905
        // 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
   906
        // actual types.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   907
        ciSignature* signature = target->signature();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   908
        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
   909
        // Cast receiver to its type.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   910
        if (!target->is_static()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   911
          Node* arg = kit.argument(0);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   912
          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
   913
          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
   914
          if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
53510
790377fdc328 8191998: C2: inlining through MH linkers drops speculative part of argument types
vlivanov
parents: 53509
diff changeset
   915
            const Type* recv_type = arg_type->join_speculative(sig_type); // keep speculative part
790377fdc328 8191998: C2: inlining through MH linkers drops speculative part of argument types
vlivanov
parents: 53509
diff changeset
   916
            Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, recv_type));
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   917
            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
   918
          }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   919
        }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   920
        // Cast reference arguments to its type.
35846
f5a8b47778ef 8148752: Compiled StringBuilder code throws StringIndexOutOfBoundsException
thartmann
parents: 35086
diff changeset
   921
        for (int i = 0, j = 0; i < signature->count(); i++) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   922
          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
   923
          if (t->is_klass()) {
35846
f5a8b47778ef 8148752: Compiled StringBuilder code throws StringIndexOutOfBoundsException
thartmann
parents: 35086
diff changeset
   924
            Node* arg = kit.argument(receiver_skip + j);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   925
            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
   926
            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
   927
            if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
53510
790377fdc328 8191998: C2: inlining through MH linkers drops speculative part of argument types
vlivanov
parents: 53509
diff changeset
   928
              const Type* narrowed_arg_type = arg_type->join_speculative(sig_type); // keep speculative part
790377fdc328 8191998: C2: inlining through MH linkers drops speculative part of argument types
vlivanov
parents: 53509
diff changeset
   929
              Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, narrowed_arg_type));
35846
f5a8b47778ef 8148752: Compiled StringBuilder code throws StringIndexOutOfBoundsException
thartmann
parents: 35086
diff changeset
   930
              kit.set_argument(receiver_skip + j, cast_obj);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   931
            }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   932
          }
35846
f5a8b47778ef 8148752: Compiled StringBuilder code throws StringIndexOutOfBoundsException
thartmann
parents: 35086
diff changeset
   933
          j += t->size();  // long and double take two slots
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   934
        }
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   935
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   936
        // Try to get the most accurate receiver type
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   937
        const bool is_virtual              = (iid == vmIntrinsics::_linkToVirtual);
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   938
        const bool is_virtual_or_interface = (is_virtual || iid == vmIntrinsics::_linkToInterface);
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   939
        int  vtable_index       = Method::invalid_vtable_index;
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   940
        bool call_does_dispatch = false;
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   941
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   942
        ciKlass* speculative_receiver_type = NULL;
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   943
        if (is_virtual_or_interface) {
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   944
          ciInstanceKlass* klass = target->holder();
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   945
          Node*             receiver_node = kit.argument(0);
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   946
          const TypeOopPtr* receiver_type = gvn.type(receiver_node)->isa_oopptr();
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   947
          // call_does_dispatch and vtable_index are out-parameters.  They might be changed.
25494
c18718ecf276 8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents: 24948
diff changeset
   948
          // optimize_virtual_call() takes 2 different holder
c18718ecf276 8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents: 24948
diff changeset
   949
          // arguments for a corner case that doesn't apply here (see
c18718ecf276 8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents: 24948
diff changeset
   950
          // Parse::do_call())
c18718ecf276 8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents: 24948
diff changeset
   951
          target = C->optimize_virtual_call(caller, jvms->bci(), klass, klass,
c18718ecf276 8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents: 24948
diff changeset
   952
                                            target, receiver_type, is_virtual,
30223
82ab7b6b4927 8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents: 29081
diff changeset
   953
                                            call_does_dispatch, vtable_index, // out-parameters
36075
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   954
                                            false /* check_access */);
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   955
          // We lack profiling at this call but type speculation may
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   956
          // provide us with a type
26945
981df0f8be4e 8059556: C2: crash while inlining MethodHandle invocation w/ null receiver
vlivanov
parents: 25930
diff changeset
   957
          speculative_receiver_type = (receiver_type != NULL) ? receiver_type->speculative_type() : NULL;
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   958
        }
36075
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   959
        CallGenerator* cg = C->call_generator(target, vtable_index, call_does_dispatch, jvms,
50449
acdfeede95ff 8203480: IncompatibleClassChangeError thrown at sites linked to default interface methods
vlivanov
parents: 48197
diff changeset
   960
                                              !StressMethodHandleLinkerInlining /* allow_inline */,
36075
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   961
                                              PROB_ALWAYS,
e1685e30beca 8148994: Replacing MH::invokeBasic with a direct call breaks LF customization
vlivanov
parents: 35846
diff changeset
   962
                                              speculative_receiver_type);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33589
diff changeset
   963
        return cg;
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
   964
      } else {
43943
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   965
        print_inlining_failure(C, callee, jvms->depth() - 1, jvms->bci(),
e2fdae30bbc1 8166110: Inlining through MH invokers/linkers in unreachable code is unsafe
vlivanov
parents: 40882
diff changeset
   966
                               "member_name not constant");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   967
      }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   968
    }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   969
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   970
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   971
  default:
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 30223
diff changeset
   972
    fatal("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
   973
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   974
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   975
  return NULL;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   976
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   977
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   978
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   979
//------------------------PredicatedIntrinsicGenerator------------------------------
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   980
// Internal class which handles all predicated Intrinsic calls.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   981
class PredicatedIntrinsicGenerator : public CallGenerator {
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   982
  CallGenerator* _intrinsic;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   983
  CallGenerator* _cg;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   984
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   985
public:
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   986
  PredicatedIntrinsicGenerator(CallGenerator* intrinsic,
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
   987
                               CallGenerator* cg)
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   988
    : CallGenerator(cg->method())
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   989
  {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   990
    _intrinsic = intrinsic;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   991
    _cg        = cg;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   992
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   993
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   994
  virtual bool      is_virtual()   const    { return true; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   995
  virtual bool      is_inlined()   const    { return true; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   996
  virtual bool      is_intrinsic() const    { return true; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   997
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
   998
  virtual JVMState* generate(JVMState* jvms);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   999
};
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1000
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1001
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1002
CallGenerator* CallGenerator::for_predicated_intrinsic(CallGenerator* intrinsic,
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1003
                                                       CallGenerator* cg) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1004
  return new PredicatedIntrinsicGenerator(intrinsic, cg);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1005
}
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1006
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1007
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1008
JVMState* PredicatedIntrinsicGenerator::generate(JVMState* jvms) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1009
  // The code we want to generate here is:
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1010
  //    if (receiver == NULL)
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1011
  //        uncommon_Trap
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1012
  //    if (predicate(0))
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1013
  //        do_intrinsic(0)
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1014
  //    else
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1015
  //    if (predicate(1))
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1016
  //        do_intrinsic(1)
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1017
  //    ...
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1018
  //    else
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1019
  //        do_java_comp
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1020
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1021
  GraphKit kit(jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1022
  PhaseGVN& gvn = kit.gvn();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1023
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1024
  CompileLog* log = kit.C->log();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1025
  if (log != NULL) {
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1026
    log->elem("predicated_intrinsic bci='%d' method='%d'",
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1027
              jvms->bci(), log->identify(method()));
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1028
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1029
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1030
  if (!method()->is_static()) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1031
    // We need an explicit receiver null_check before checking its type in predicate.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1032
    // We share a map with the caller, so his JVMS gets adjusted.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1033
    Node* receiver = kit.null_check_receiver_before_call(method());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1034
    if (kit.stopped()) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1035
      return kit.transfer_exceptions_into_jvms();
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1036
    }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1037
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1038
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1039
  int n_predicates = _intrinsic->predicates_count();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1040
  assert(n_predicates > 0, "sanity");
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1041
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1042
  JVMState** result_jvms = NEW_RESOURCE_ARRAY(JVMState*, (n_predicates+1));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1043
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1044
  // Region for normal compilation code if intrinsic failed.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1045
  Node* slow_region = new RegionNode(1);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1046
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1047
  int results = 0;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1048
  for (int predicate = 0; (predicate < n_predicates) && !kit.stopped(); predicate++) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1049
#ifdef ASSERT
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1050
    JVMState* old_jvms = kit.jvms();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1051
    SafePointNode* old_map = kit.map();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1052
    Node* old_io  = old_map->i_o();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1053
    Node* old_mem = old_map->memory();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1054
    Node* old_exc = old_map->next_exception();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1055
#endif
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1056
    Node* else_ctrl = _intrinsic->generate_predicate(kit.sync_jvms(), predicate);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1057
#ifdef ASSERT
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1058
    // Assert(no_new_memory && no_new_io && no_new_exceptions) after generate_predicate.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1059
    assert(old_jvms == kit.jvms(), "generate_predicate should not change jvm state");
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1060
    SafePointNode* new_map = kit.map();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1061
    assert(old_io  == new_map->i_o(), "generate_predicate should not change i_o");
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1062
    assert(old_mem == new_map->memory(), "generate_predicate should not change memory");
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1063
    assert(old_exc == new_map->next_exception(), "generate_predicate should not add exceptions");
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1064
#endif
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1065
    if (!kit.stopped()) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1066
      PreserveJVMState pjvms(&kit);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1067
      // Generate intrinsic code:
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1068
      JVMState* new_jvms = _intrinsic->generate(kit.sync_jvms());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1069
      if (new_jvms == NULL) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1070
        // Intrinsic failed, use normal compilation path for this predicate.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1071
        slow_region->add_req(kit.control());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1072
      } else {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1073
        kit.add_exception_states_from(new_jvms);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1074
        kit.set_jvms(new_jvms);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1075
        if (!kit.stopped()) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1076
          result_jvms[results++] = kit.jvms();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1077
        }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1078
      }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1079
    }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1080
    if (else_ctrl == NULL) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1081
      else_ctrl = kit.C->top();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1082
    }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1083
    kit.set_control(else_ctrl);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1084
  }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1085
  if (!kit.stopped()) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1086
    // Final 'else' after predicates.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1087
    slow_region->add_req(kit.control());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1088
  }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1089
  if (slow_region->req() > 1) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1090
    PreserveJVMState pjvms(&kit);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1091
    // Generate normal compilation code:
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1092
    kit.set_control(gvn.transform(slow_region));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1093
    JVMState* new_jvms = _cg->generate(kit.sync_jvms());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1094
    if (kit.failing())
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1095
      return NULL;  // might happen because of NodeCountInliningCutoff
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1096
    assert(new_jvms != NULL, "must be");
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1097
    kit.add_exception_states_from(new_jvms);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1098
    kit.set_jvms(new_jvms);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1099
    if (!kit.stopped()) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1100
      result_jvms[results++] = kit.jvms();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1101
    }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1102
  }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1103
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1104
  if (results == 0) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1105
    // All paths ended in uncommon traps.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1106
    (void) kit.stop();
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1107
    return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1108
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1109
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1110
  if (results == 1) { // Only one path
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1111
    kit.set_jvms(result_jvms[0]);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1112
    return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1113
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1114
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1115
  // Merge all paths.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1116
  kit.C->set_has_split_ifs(true); // Has chance for split-if optimization
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1117
  RegionNode* region = new RegionNode(results + 1);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1118
  Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1119
  for (int i = 0; i < results; i++) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1120
    JVMState* jvms = result_jvms[i];
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1121
    int path = i + 1;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1122
    SafePointNode* map = jvms->map();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1123
    region->init_req(path, map->control());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1124
    iophi->set_req(path, map->i_o());
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1125
    if (i == 0) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1126
      kit.set_jvms(jvms);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1127
    } else {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1128
      kit.merge_memory(map->merged_memory(), region, path);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1129
    }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1130
  }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1131
  kit.set_control(gvn.transform(region));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1132
  kit.set_i_o(gvn.transform(iophi));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1133
  // Transform new memory Phis.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1134
  for (MergeMemStream mms(kit.merged_memory()); mms.next_non_empty();) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1135
    Node* phi = mms.memory();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1136
    if (phi->is_Phi() && phi->in(0) == region) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1137
      mms.set_memory(gvn.transform(phi));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1138
    }
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1139
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1140
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1141
  // Merge debug info.
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1142
  Node** ins = NEW_RESOURCE_ARRAY(Node*, results);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1143
  uint tos = kit.jvms()->stkoff() + kit.sp();
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1144
  Node* map = kit.map();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1145
  uint limit = map->req();
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1146
  for (uint i = TypeFunc::Parms; i < limit; i++) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1147
    // Skip unused stack slots; fast forward to monoff();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1148
    if (i == tos) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1149
      i = kit.jvms()->monoff();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1150
      if( i >= limit ) break;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1151
    }
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1152
    Node* n = map->in(i);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1153
    ins[0] = n;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1154
    const Type* t = gvn.type(n);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1155
    bool needs_phi = false;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1156
    for (int j = 1; j < results; j++) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1157
      JVMState* jvms = result_jvms[j];
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1158
      Node* jmap = jvms->map();
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1159
      Node* m = NULL;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1160
      if (jmap->req() > i) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1161
        m = jmap->in(i);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1162
        if (m != n) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1163
          needs_phi = true;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1164
          t = t->meet_speculative(gvn.type(m));
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1165
        }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1166
      }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1167
      ins[j] = m;
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1168
    }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1169
    if (needs_phi) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1170
      Node* phi = PhiNode::make(region, n, t);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1171
      for (int j = 1; j < results; j++) {
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1172
        phi->set_req(j + 1, ins[j]);
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1173
      }
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1174
      map->set_req(i, gvn.transform(phi));
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1175
    }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1176
  }
24948
bc074f400757 8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents: 24946
diff changeset
  1177
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1178
  return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1179
}
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
  1180
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
//-------------------------UncommonTrapCallGenerator-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
// Internal class which handles all out-of-line calls checking receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
class UncommonTrapCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  Deoptimization::DeoptReason _reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  Deoptimization::DeoptAction _action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  UncommonTrapCallGenerator(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
                            Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
                            Deoptimization::DeoptAction action)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    : CallGenerator(m)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    _reason = reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
    _action = action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  virtual bool      is_virtual() const          { ShouldNotReachHere(); return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  virtual bool      is_trap() const             { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
  1200
  virtual JVMState* generate(JVMState* jvms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
CallGenerator*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
CallGenerator::for_uncommon_trap(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
                                 Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
                                 Deoptimization::DeoptAction action) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
  return new UncommonTrapCallGenerator(m, reason, action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
24946
24b68ccf3fc4 8026796: Make replace_in_map() on parent maps generic
roland
parents: 24923
diff changeset
  1212
JVMState* UncommonTrapCallGenerator::generate(JVMState* jvms) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
  GraphKit kit(jvms);
23846
490ace57944d 8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents: 23528
diff changeset
  1214
  kit.C->print_inlining_update(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
  // Take the trap with arguments pushed on the stack.  (Cf. null_check_receiver).
40882
23f882a600ce 8158639: C2 compilation fails with SIGSEGV
jcm
parents: 36075
diff changeset
  1216
  // Callsite signature can be different from actual method being called (i.e _linkTo* sites).
23f882a600ce 8158639: C2 compilation fails with SIGSEGV
jcm
parents: 36075
diff changeset
  1217
  // Use callsite signature always.
23f882a600ce 8158639: C2 compilation fails with SIGSEGV
jcm
parents: 36075
diff changeset
  1218
  ciMethod* declared_method = kit.method()->get_method_at_bci(kit.bci());
23f882a600ce 8158639: C2 compilation fails with SIGSEGV
jcm
parents: 36075
diff changeset
  1219
  int nargs = declared_method->arg_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  kit.inc_sp(nargs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  assert(nargs <= kit.sp() && kit.sp() <= jvms->stk_size(), "sane sp w/ args pushed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  if (_reason == Deoptimization::Reason_class_check &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
      _action == Deoptimization::Action_maybe_recompile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
    // Temp fix for 6529811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
    // Don't allow uncommon_trap to override our decision to recompile in the event
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
    // of a class cast failure for a monomorphic call as it will never let us convert
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
    // the call to either bi-morphic or megamorphic and can lead to unc-trap loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
    bool keep_exact_action = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
    kit.uncommon_trap(_reason, _action, NULL, "monomorphic vcall checkcast", false, keep_exact_action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
    kit.uncommon_trap(_reason, _action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
// (Note:  Moved hook_up_call to GraphKit::set_edges_for_java_call.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
// (Node:  Merged hook_up_exits into ParseGenerator::generate.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
#define NODES_OVERHEAD_PER_METHOD (30.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
#define NODES_PER_BYTECODE (9.5)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
  int call_count = profile.count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
  int code_size = call_method->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
  // Expected execution count is based on the historical count:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
  _count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
  // Expected profit from inlining, in units of simple call-overheads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
  _profit = 1.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  // Expected work performed by the call in units of call-overheads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  // %%% need an empirical curve fit for "work" (time in call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  float bytecodes_per_call = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  _work = 1.0 + code_size / bytecodes_per_call;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
  // Expected size of compilation graph:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
  // -XX:+PrintParseStatistics once reported:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  //  Methods seen: 9184  Methods parsed: 9184  Nodes created: 1582391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
  //  Histogram of 144298 parsed bytecodes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
  // %%% Need an better predictor for graph size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  _size = NODES_OVERHEAD_PER_METHOD + (NODES_PER_BYTECODE * code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
// is_cold:  Return true if the node should never be inlined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
// This is true if any of the key metrics are extreme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
bool WarmCallInfo::is_cold() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  if (count()  <  WarmCallMinCount)        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
  if (profit() <  WarmCallMinProfit)       return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
  if (work()   >  WarmCallMaxWork)         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
  if (size()   >  WarmCallMaxSize)         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
// is_hot:  Return true if the node should be inlined immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
// This is true if any of the key metrics are extreme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
bool WarmCallInfo::is_hot() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
  assert(!is_cold(), "eliminate is_cold cases before testing is_hot");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
  if (count()  >= HotCallCountThreshold)   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  if (profit() >= HotCallProfitThreshold)  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  if (work()   <= HotCallTrivialWork)      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  if (size()   <= HotCallTrivialSize)      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
// compute_heat:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
float WarmCallInfo::compute_heat() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
  assert(!is_cold(), "compute heat only on warm nodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  assert(!is_hot(),  "compute heat only on warm nodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
  int min_size = MAX2(0,   (int)HotCallTrivialSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  int max_size = MIN2(500, (int)WarmCallMaxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
  float method_size = (size() - min_size) / MAX2(1, max_size - min_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  float size_factor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
  if      (method_size < 0.05)  size_factor = 4;   // 2 sigmas better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  else if (method_size < 0.15)  size_factor = 2;   // 1 sigma better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
  else if (method_size < 0.5)   size_factor = 1;   // better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
  else                          size_factor = 0.5; // worse than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  return (count() * profit() * size_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
bool WarmCallInfo::warmer_than(WarmCallInfo* that) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
  assert(this != that, "compare only different WCIs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  assert(this->heat() != 0 && that->heat() != 0, "call compute_heat 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
  if (this->heat() > that->heat())   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
  if (this->heat() < that->heat())   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
  assert(this->heat() == that->heat(), "no NaN heat allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
  // Equal heat.  Break the tie some other way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
  if (!this->call() || !that->call())  return (address)this > (address)that;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  return this->call()->_idx > that->call()->_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
//#define UNINIT_NEXT ((WarmCallInfo*)badAddress)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
#define UNINIT_NEXT ((WarmCallInfo*)NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
WarmCallInfo* WarmCallInfo::insert_into(WarmCallInfo* head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
  assert(next() == UNINIT_NEXT, "not yet on any list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
  WarmCallInfo* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  WarmCallInfo* next_p = head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  while (next_p != NULL && next_p->warmer_than(this)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
    prev_p = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
    next_p = prev_p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
  // Install this between prev_p and next_p.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  this->set_next(next_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
  if (prev_p == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
    head = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
    prev_p->set_next(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  return head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
WarmCallInfo* WarmCallInfo::remove_from(WarmCallInfo* head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  WarmCallInfo* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
  WarmCallInfo* next_p = head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  while (next_p != this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
    assert(next_p != NULL, "this must be in the list somewhere");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
    prev_p = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
    next_p = prev_p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  next_p = this->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  debug_only(this->set_next(UNINIT_NEXT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  // Remove this from between prev_p and next_p.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
  if (prev_p == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
    head = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
    prev_p->set_next(next_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
  return head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
  1351
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
  1352
                                       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
  1353
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
  1354
                                        WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
WarmCallInfo* WarmCallInfo::always_hot() {
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
  1357
  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
  1358
  return &_always_hot;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
WarmCallInfo* WarmCallInfo::always_cold() {
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
  1362
  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
  1363
  return &_always_cold;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
void WarmCallInfo::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
  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
  1371
             is_cold() ? "cold" : is_hot() ? "hot " : "warm",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
             count(), profit(), work(), size(), compute_heat(), next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  if (call() != NULL)  call()->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
void print_wci(WarmCallInfo* ci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  ci->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
void WarmCallInfo::print_all() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  for (const WarmCallInfo* p = this; p != NULL; p = p->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
    p->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
int WarmCallInfo::count_all() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
  int cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
  for (const WarmCallInfo* p = this; p != NULL; p = p->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
    cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
  return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
#endif //PRODUCT