hotspot/src/share/vm/opto/callGenerator.cpp
author goetz
Thu, 21 Nov 2013 18:29:34 -0800
changeset 22852 1063026e8cee
parent 21582 6c76cdd733fe
child 22872 b6902ee5bc8d
permissions -rw-r--r--
8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization. Summary: Fixed Implicit NULL check optimization for AIX, where the page at address '0' is only write-protected. Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
     2
 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4906
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4906
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4906
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "ci/bcEscapeAnalyzer.hpp"
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
    27
#include "ci/ciCallSite.hpp"
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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "opto/cfgnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "opto/connode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "opto/parse.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#include "opto/rootnode.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
#include "opto/runtime.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#include "opto/subnode.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Utility function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
const TypeFunc* CallGenerator::tf() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  return TypeFunc::make(method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
//-----------------------------ParseGenerator---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// Internal class which handles all direct bytecode traversal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class ParseGenerator : public InlineCallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  bool  _is_osr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  float _expected_uses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  ParseGenerator(ciMethod* method, float expected_uses, bool is_osr = false)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    : InlineCallGenerator(method)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    _is_osr        = is_osr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    _expected_uses = expected_uses;
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
    62
    assert(InlineTree::check_can_parse(method) == NULL, "parse must be possible");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual bool      is_parse() const           { return true; }
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
    66
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  int is_osr() { return _is_osr; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
    71
JVMState* ParseGenerator::generate(JVMState* jvms, Parse* parent_parser) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  Compile* C = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  if (is_osr()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // The JVMS for a OSR has a single argument (see its TypeFunc).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    assert(jvms->depth() == 1, "no inline OSR");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  if (C->failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    return NULL;  // bailing out of the compile; do not try to parse
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
    83
  Parse parser(jvms, method(), _expected_uses, parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Grab signature for matching/allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (parser.tf() != (parser.depth() == 1 ? C->tf() : tf())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    assert(C->env()->system_dictionary_modification_counter_changed(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
           "Must invalidate if TypeFuncs differ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  GraphKit& exits = parser.exits();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  if (C->failing()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    while (exits.pop_exception_state() != NULL) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  assert(exits.jvms()->same_calls_as(jvms), "sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Simply return the exit state of the parser,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // augmented by any exceptional states.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return exits.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
//---------------------------DirectCallGenerator------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// Internal class which handles all out-of-line calls w/o receiver type checks.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
class DirectCallGenerator : public CallGenerator {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   110
 private:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   111
  CallStaticJavaNode* _call_node;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   112
  // Force separate memory and I/O projections for the exceptional
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   113
  // paths to facilitate late inlinig.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   114
  bool                _separate_io_proj;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   115
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   116
 public:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   117
  DirectCallGenerator(ciMethod* method, bool separate_io_proj)
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   118
    : CallGenerator(method),
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   119
      _separate_io_proj(separate_io_proj)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   122
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   123
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   124
  CallStaticJavaNode* call_node() const { return _call_node; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   127
JVMState* DirectCallGenerator::generate(JVMState* jvms, Parse* parent_parser) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  bool is_static = method()->is_static();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  address target = is_static ? SharedRuntime::get_resolve_static_call_stub()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                             : SharedRuntime::get_resolve_opt_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  if (kit.C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    kit.C->log()->elem("direct_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   137
  CallStaticJavaNode *call = new (kit.C) CallStaticJavaNode(kit.C, tf(), target, method(), kit.bci());
12591
064b5c1aa88a 7162094: LateInlineCallGenerator::do_late_inline crashed on uninitialized _call_node
never
parents: 11193
diff changeset
   138
  _call_node = call;  // Save the call node in case we need it later
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  if (!is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    // Make an explicit receiver null_check as part of this call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // Since we share a map with the caller, his JVMS gets adjusted.
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   142
    kit.null_check_receiver_before_call(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
      // And dump it back to the caller, decorated with any exceptions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // Mark the call node as virtual, sort of:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    call->set_optimized_virtual(true);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   149
    if (method()->is_method_handle_intrinsic() ||
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   150
        method()->is_compiled_lambda_form()) {
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   151
      call->set_method_handle_invoke(true);
4906
90640ad2d401 6926782: CodeBuffer size too small after 6921352
twisti
parents: 4567
diff changeset
   152
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  kit.set_arguments_for_java_call(call);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   155
  kit.set_edges_for_java_call(call, false, _separate_io_proj);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   156
  Node* ret = kit.set_results_for_java_call(call, _separate_io_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  kit.push_node(method()->return_type()->basic_type(), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   161
//--------------------------VirtualCallGenerator------------------------------
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4450
diff changeset
   162
// Internal class which handles all out-of-line calls checking receiver type.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
class VirtualCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  int _vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  VirtualCallGenerator(ciMethod* method, int vtable_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    : CallGenerator(method), _vtable_index(vtable_index)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
   170
    assert(vtable_index == Method::invalid_vtable_index ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
           vtable_index >= 0, "either invalid or usable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  virtual bool      is_virtual() const          { return true; }
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   174
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   177
JVMState* VirtualCallGenerator::generate(JVMState* jvms, Parse* parent_parser) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  Node* receiver = kit.argument(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (kit.C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    kit.C->log()->elem("virtual_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // If the receiver is a constant null, do not torture the system
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // by attempting to call through it.  The compile will proceed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // correctly, but may bail out in final_graph_reshaping, because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // the call instruction will have a seemingly deficient out-count.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // (The bailout says something misleading about an "infinite loop".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  if (kit.gvn().type(receiver)->higher_equal(TypePtr::NULL_PTR)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    kit.inc_sp(method()->arg_size());  // restore arguments
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    kit.uncommon_trap(Deoptimization::Reason_null_check,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
                      Deoptimization::Action_none,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
                      NULL, "null receiver");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // Ideally we would unconditionally do a null check here and let it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // be converted to an implicit check based on profile information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // However currently the conversion to implicit null checks in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Block::implicit_null_check() only looks for loads and stores, not calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  ciMethod *caller = kit.method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  ciMethodData *caller_md = (caller == NULL) ? NULL : caller->method_data();
22852
1063026e8cee 8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents: 21582
diff changeset
   204
  if (!UseInlineCaches || !ImplicitNullChecks || !os::zero_page_read_protected() ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
       ((ImplicitNullCheckThreshold > 0) && caller_md &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
       (caller_md->trap_count(Deoptimization::Reason_null_check)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
       >= (uint)ImplicitNullCheckThreshold))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    // Make an explicit receiver null_check as part of this call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    // Since we share a map with the caller, his JVMS gets adjusted.
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   210
    receiver = kit.null_check_receiver_before_call(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      // And dump it back to the caller, decorated with any exceptions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(!method()->is_static(), "virtual call must not be to static");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  assert(!method()->is_final(), "virtual call should not be to final");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(!method()->is_private(), "virtual call should not be to private");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
   220
  assert(_vtable_index == Method::invalid_vtable_index || !UseInlineCaches,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
         "no vtable calls if +UseInlineCaches ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  address target = SharedRuntime::get_resolve_virtual_call_stub();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Normal inline cache used for call
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
   224
  CallDynamicJavaNode *call = new (kit.C) CallDynamicJavaNode(tf(), target, method(), _vtable_index, kit.bci());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  kit.set_arguments_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  kit.set_edges_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  Node* ret = kit.set_results_for_java_call(call);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  kit.push_node(method()->return_type()->basic_type(), ret);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Represent the effect of an implicit receiver null_check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // as part of this call.  Since we share a map with the caller,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  kit.cast_not_null(receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
CallGenerator* CallGenerator::for_inline(ciMethod* m, float expected_uses) {
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
   238
  if (InlineTree::check_can_parse(m) != NULL)  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  return new ParseGenerator(m, expected_uses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
// As a special case, the JVMS passed to this CallGenerator is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// for the method execution already in progress, not just the JVMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// of the caller.  Thus, this CallGenerator cannot be mixed with others!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
CallGenerator* CallGenerator::for_osr(ciMethod* m, int osr_bci) {
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10503
diff changeset
   246
  if (InlineTree::check_can_parse(m) != NULL)  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  float past_uses = m->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  float expected_uses = past_uses;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  return new ParseGenerator(m, expected_uses, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   252
CallGenerator* CallGenerator::for_direct_call(ciMethod* m, bool separate_io_proj) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  assert(!m->is_abstract(), "for_direct_call mismatch");
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   254
  return new DirectCallGenerator(m, separate_io_proj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
CallGenerator* CallGenerator::for_virtual_call(ciMethod* m, int vtable_index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  assert(!m->is_static(), "for_virtual_call mismatch");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   259
  assert(!m->is_method_handle_intrinsic(), "should be a direct call");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  return new VirtualCallGenerator(m, vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   263
// Allow inlining decisions to be delayed
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   264
class LateInlineCallGenerator : public DirectCallGenerator {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   265
 protected:
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   266
  CallGenerator* _inline_cg;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   267
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   268
  virtual bool do_late_inline_check(JVMState* jvms) { return true; }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   269
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   270
 public:
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   271
  LateInlineCallGenerator(ciMethod* method, CallGenerator* inline_cg) :
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   272
    DirectCallGenerator(method, true), _inline_cg(inline_cg) {}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   273
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   274
  virtual bool      is_late_inline() const { return true; }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   275
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   276
  // Convert the CallStaticJava into an inline
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   277
  virtual void do_late_inline();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   278
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   279
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser) {
14828
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   280
    Compile *C = Compile::current();
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   281
    C->print_inlining_skip(this);
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   282
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   283
    // Record that this call site should be revisited once the main
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   284
    // parse is finished.
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   285
    if (!is_mh_late_inline()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   286
      C->add_late_inline(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   287
    }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   288
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   289
    // Emit the CallStaticJava and request separate projections so
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   290
    // that the late inlining logic can distinguish between fall
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   291
    // through and exceptional uses of the memory and io projections
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   292
    // as is done for allocations and macro expansion.
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   293
    return DirectCallGenerator::generate(jvms, parent_parser);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   294
  }
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   295
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   296
  virtual void print_inlining_late(const char* msg) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   297
    CallNode* call = call_node();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   298
    Compile* C = Compile::current();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   299
    C->print_inlining_insert(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   300
    C->print_inlining(method(), call->jvms()->depth()-1, call->jvms()->bci(), msg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   301
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   302
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   303
};
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
void LateInlineCallGenerator::do_late_inline() {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   306
  // Can't inline it
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   307
  CallStaticJavaNode* call = call_node();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   308
  if (call == NULL || call->outcnt() == 0 ||
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   309
      call->in(0) == NULL || call->in(0)->is_top()) {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   310
    return;
15478
6e6f37256157 8007144: Incremental inlining mistakes some call sites for dead ones and doesn't inline them
roland
parents: 15118
diff changeset
   311
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   312
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   313
  const TypeTuple *r = call->tf()->domain();
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   314
  for (int i1 = 0; i1 < method()->arg_size(); i1++) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   315
    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
   316
      assert(Compile::current()->inlining_incrementally(), "shouldn't happen during parsing");
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   317
      return;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   318
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   319
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   320
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   321
  if (call->in(TypeFunc::Memory)->is_top()) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   322
    assert(Compile::current()->inlining_incrementally(), "shouldn't happen during parsing");
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   323
    return;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   324
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   325
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   326
  Compile* C = Compile::current();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   327
  // Remove inlined methods from Compiler's lists.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   328
  if (call->is_macro()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   329
    C->remove_macro_node(call);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   330
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   331
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   332
  // Make a clone of the JVMState that appropriate to use for driving a parse
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   333
  JVMState* old_jvms = call->jvms();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   334
  JVMState* jvms = old_jvms->clone_shallow(C);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   335
  uint size = call->req();
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
   336
  SafePointNode* map = new (C) SafePointNode(size, jvms);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   337
  for (uint i1 = 0; i1 < size; i1++) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   338
    map->init_req(i1, call->in(i1));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   339
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   340
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   341
  // Make sure the state is a MergeMem for parsing.
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   342
  if (!map->in(TypeFunc::Memory)->is_MergeMem()) {
14828
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   343
    Node* mem = MergeMemNode::make(C, map->in(TypeFunc::Memory));
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   344
    C->initial_gvn()->set_type_bottom(mem);
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   345
    map->set_req(TypeFunc::Memory, mem);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   346
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   347
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   348
  uint nargs = method()->arg_size();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   349
  // blow away old call arguments
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   350
  Node* top = C->top();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   351
  for (uint i1 = 0; i1 < nargs; i1++) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   352
    map->set_req(TypeFunc::Parms + i1, top);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   353
  }
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   354
  jvms->set_map(map);
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   355
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   356
  // Make enough space in the expression stack to transfer
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   357
  // the incoming arguments and return value.
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   358
  map->ensure_stack(jvms, jvms->method()->max_stack());
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   359
  for (uint i1 = 0; i1 < nargs; i1++) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   360
    map->set_argument(jvms, i1, call->in(TypeFunc::Parms + i1));
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   361
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   362
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   363
  // This check is done here because for_method_handle_inline() method
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   364
  // needs jvms for inlined state.
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   365
  if (!do_late_inline_check(jvms)) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   366
    map->disconnect_inputs(NULL, C);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   367
    return;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   368
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   369
14828
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   370
  C->print_inlining_insert(this);
bb9dffedf46c 8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents: 14621
diff changeset
   371
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   372
  CompileLog* log = C->log();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   373
  if (log != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   374
    log->head("late_inline method='%d'", log->identify(method()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   375
    JVMState* p = jvms;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   376
    while (p != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   377
      log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   378
      p = p->caller();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   379
    }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   380
    log->tail("late_inline");
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   381
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   382
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   383
  // Setup default node notes to be picked up by the inlining
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   384
  Node_Notes* old_nn = C->default_node_notes();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   385
  if (old_nn != NULL) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   386
    Node_Notes* entry_nn = old_nn->clone(C);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   387
    entry_nn->set_jvms(jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   388
    C->set_default_node_notes(entry_nn);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   389
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   390
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   391
  // Now perform the inling using the synthesized JVMState
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   392
  JVMState* new_jvms = _inline_cg->generate(jvms, NULL);
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   393
  if (new_jvms == NULL)  return;  // no change
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   394
  if (C->failing())      return;
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   395
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   396
  // Capture any exceptional control flow
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   397
  GraphKit kit(new_jvms);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   398
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   399
  // Find the result object
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   400
  Node* result = C->top();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   401
  int   result_size = method()->return_type()->size();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   402
  if (result_size != 0 && !kit.stopped()) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   403
    result = (result_size == 1) ? kit.pop() : kit.pop_pair();
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   404
  }
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   405
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   406
  C->set_has_loops(C->has_loops() || _inline_cg->method()->has_loops());
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   407
  C->env()->notice_inlined_method(_inline_cg->method());
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   408
  C->set_inlining_progress(true);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   409
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   410
  kit.replace_call(call, result);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   411
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   412
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   413
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   414
CallGenerator* CallGenerator::for_late_inline(ciMethod* method, CallGenerator* inline_cg) {
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   415
  return new LateInlineCallGenerator(method, inline_cg);
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   416
}
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   417
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   418
class LateInlineMHCallGenerator : public LateInlineCallGenerator {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   419
  ciMethod* _caller;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   420
  int _attempt;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   421
  bool _input_not_const;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   422
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   423
  virtual bool do_late_inline_check(JVMState* jvms);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   424
  virtual bool already_attempted() const { return _attempt > 0; }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   425
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   426
 public:
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   427
  LateInlineMHCallGenerator(ciMethod* caller, ciMethod* callee, bool input_not_const) :
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   428
    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
   429
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   430
  virtual bool is_mh_late_inline() const { return true; }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   431
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   432
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser) {
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   433
    JVMState* new_jvms = LateInlineCallGenerator::generate(jvms, parent_parser);
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   434
    if (_input_not_const) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   435
      // inlining won't be possible so no need to enqueue right now.
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   436
      call_node()->set_generator(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   437
    } else {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   438
      Compile::current()->add_late_inline(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   439
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   440
    return new_jvms;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   441
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   442
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   443
  virtual void print_inlining_late(const char* msg) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   444
    if (!_input_not_const) return;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   445
    LateInlineCallGenerator::print_inlining_late(msg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   446
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   447
};
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   448
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   449
bool LateInlineMHCallGenerator::do_late_inline_check(JVMState* jvms) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   450
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   451
  CallGenerator* cg = for_method_handle_inline(jvms, _caller, method(), _input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   452
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   453
  if (!_input_not_const) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   454
    _attempt++;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   455
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   456
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   457
  if (cg != NULL) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   458
    assert(!cg->is_late_inline() && cg->is_inline(), "we're doing late inlining");
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   459
    _inline_cg = cg;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   460
    Compile::current()->dec_number_of_mh_late_inlines();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   461
    return true;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   462
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   463
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   464
  call_node()->set_generator(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   465
  return false;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   466
}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   467
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   468
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
   469
  Compile::current()->inc_number_of_mh_late_inlines();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   470
  CallGenerator* cg = new LateInlineMHCallGenerator(caller, callee, input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   471
  return cg;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   472
}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   473
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   474
class LateInlineStringCallGenerator : public LateInlineCallGenerator {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   475
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   476
 public:
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   477
  LateInlineStringCallGenerator(ciMethod* method, CallGenerator* inline_cg) :
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   478
    LateInlineCallGenerator(method, inline_cg) {}
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   479
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   480
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   481
    Compile *C = Compile::current();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   482
    C->print_inlining_skip(this);
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
    C->add_string_late_inline(this);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   485
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   486
    JVMState* new_jvms =  DirectCallGenerator::generate(jvms, parent_parser);
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   487
    return new_jvms;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   488
  }
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   489
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   490
  virtual bool is_string_late_inline() const { return true; }
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   491
};
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   492
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   493
CallGenerator* CallGenerator::for_string_late_inline(ciMethod* method, CallGenerator* inline_cg) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   494
  return new LateInlineStringCallGenerator(method, inline_cg);
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
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   497
class LateInlineBoxingCallGenerator : public LateInlineCallGenerator {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   498
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   499
 public:
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   500
  LateInlineBoxingCallGenerator(ciMethod* method, CallGenerator* inline_cg) :
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   501
    LateInlineCallGenerator(method, inline_cg) {}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   502
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   503
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser) {
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   504
    Compile *C = Compile::current();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   505
    C->print_inlining_skip(this);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   506
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   507
    C->add_boxing_late_inline(this);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   508
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   509
    JVMState* new_jvms =  DirectCallGenerator::generate(jvms, parent_parser);
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   510
    return new_jvms;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   511
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   512
};
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   513
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   514
CallGenerator* CallGenerator::for_boxing_late_inline(ciMethod* method, CallGenerator* inline_cg) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   515
  return new LateInlineBoxingCallGenerator(method, inline_cg);
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 15478
diff changeset
   516
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
//---------------------------WarmCallGenerator--------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
// Internal class which handles initial deferral of inlining decisions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
class WarmCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  WarmCallInfo*   _call_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  CallGenerator*  _if_cold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  CallGenerator*  _if_hot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  bool            _is_virtual;   // caches virtuality of if_cold
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  bool            _is_inline;    // caches inline-ness of if_hot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  WarmCallGenerator(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
                    CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
                    CallGenerator* if_hot)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    : CallGenerator(if_cold->method())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
    assert(method() == if_hot->method(), "consistent choices");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    _call_info  = ci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    _if_cold    = if_cold;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    _if_hot     = if_hot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    _is_virtual = if_cold->is_virtual();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    _is_inline  = if_hot->is_inline();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  virtual bool      is_inline() const           { return _is_inline; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  virtual bool      is_virtual() const          { return _is_virtual; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  virtual bool      is_deferred() const         { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   545
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
CallGenerator* CallGenerator::for_warm_call(WarmCallInfo* ci,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
                                            CallGenerator* if_cold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
                                            CallGenerator* if_hot) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  return new WarmCallGenerator(ci, if_cold, if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   555
JVMState* WarmCallGenerator::generate(JVMState* jvms, Parse* parent_parser) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  Compile* C = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  if (C->log() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
    C->log()->elem("warm_call bci='%d'", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  }
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   560
  jvms = _if_cold->generate(jvms, parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  if (jvms != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
    Node* m = jvms->map()->control();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
    if (m->is_CatchProj()) m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
    if (m->is_Catch())     m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    if (m->is_Proj())      m = m->in(0);  else m = C->top();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    if (m->is_CallJava()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      _call_info->set_call(m->as_Call());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      _call_info->set_hot_cg(_if_hot);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
      if (PrintOpto || PrintOptoInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
        tty->print_cr("Queueing for warm inlining at bci %d:", jvms->bci());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
        tty->print("WCI: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
        _call_info->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      _call_info->set_heat(_call_info->compute_heat());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
      C->set_warm_calls(_call_info->insert_into(C->warm_calls()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  return jvms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
void WarmCallInfo::make_hot() {
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 1217
diff changeset
   584
  Unimplemented();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
void WarmCallInfo::make_cold() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  // No action:  Just dequeue.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
//------------------------PredictedCallGenerator------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
// Internal class which handles all out-of-line calls checking receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
class PredictedCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  ciKlass*       _predicted_receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  CallGenerator* _if_missed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  CallGenerator* _if_hit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  float          _hit_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  PredictedCallGenerator(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
                         CallGenerator* if_missed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
                         CallGenerator* if_hit, float hit_prob)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
    : CallGenerator(if_missed->method())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    // The call profile data may predict the hit_prob as extreme as 0 or 1.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    // Remove the extremes values from the range.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    if (hit_prob > PROB_MAX)   hit_prob = PROB_MAX;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    if (hit_prob < PROB_MIN)   hit_prob = PROB_MIN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    _predicted_receiver = predicted_receiver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    _if_missed          = if_missed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    _if_hit             = if_hit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    _hit_prob           = hit_prob;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  virtual bool      is_virtual()   const    { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  virtual bool      is_inline()    const    { return _if_hit->is_inline(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  virtual bool      is_deferred()  const    { return _if_hit->is_deferred(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   621
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
CallGenerator* CallGenerator::for_predicted_call(ciKlass* predicted_receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
                                                 CallGenerator* if_missed,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
                                                 CallGenerator* if_hit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
                                                 float hit_prob) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  return new PredictedCallGenerator(predicted_receiver, if_missed, if_hit, hit_prob);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   633
JVMState* PredictedCallGenerator::generate(JVMState* jvms, Parse* parent_parser) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  PhaseGVN& gvn = kit.gvn();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  // We need an explicit receiver null_check before checking its type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  // We share a map with the caller, so his JVMS gets adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  Node* receiver = kit.argument(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  CompileLog* log = kit.C->log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  if (log != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    log->elem("predicted_call bci='%d' klass='%d'",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
              jvms->bci(), log->identify(_predicted_receiver));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   646
  receiver = kit.null_check_receiver_before_call(method());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  Node* exact_receiver = receiver;  // will get updated in place...
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  Node* slow_ctl = kit.type_check_receiver(receiver,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
                                           _predicted_receiver, _hit_prob,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
                                           &exact_receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  SafePointNode* slow_map = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  JVMState* slow_jvms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  { PreserveJVMState pjvms(&kit);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    kit.set_control(slow_ctl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    if (!kit.stopped()) {
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   661
      slow_jvms = _if_missed->generate(kit.sync_jvms(), parent_parser);
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
   662
      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
   663
        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
   664
      assert(slow_jvms != NULL, "must be");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
      kit.add_exception_states_from(slow_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
      kit.set_map(slow_jvms->map());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
      if (!kit.stopped())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
        slow_map = kit.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
1055
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   672
  if (kit.stopped()) {
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   673
    // 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
   674
    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
   675
    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
   676
  }
f4fb9fb08038 6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents: 1
diff changeset
   677
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  // fall through if the instance exactly matches the desired type
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  kit.replace_in_map(receiver, exact_receiver);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  // Make the hot call:
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   682
  JVMState* new_jvms = _if_hit->generate(kit.sync_jvms(), parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  if (new_jvms == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    // Inline failed, so make a direct call.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    assert(_if_hit->is_inline(), "must have been a failed inline");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    CallGenerator* cg = CallGenerator::for_direct_call(_if_hit->method());
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   687
    new_jvms = cg->generate(kit.sync_jvms(), parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  kit.add_exception_states_from(new_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  kit.set_jvms(new_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  // Need to merge slow and fast?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  if (slow_map == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    // The fast path is the only path remaining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  if (kit.stopped()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    // Inlined method threw an exception, so it's just the slow path after all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    kit.set_jvms(slow_jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  // Finish the diamond.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  kit.C->set_has_split_ifs(true); // Has chance for split-if optimization
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
   706
  RegionNode* region = new (kit.C) RegionNode(3);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  region->init_req(1, kit.control());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  region->init_req(2, slow_map->control());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  kit.set_control(gvn.transform(region));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  iophi->set_req(2, slow_map->i_o());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  kit.set_i_o(gvn.transform(iophi));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  kit.merge_memory(slow_map->merged_memory(), region, 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  uint tos = kit.jvms()->stkoff() + kit.sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  uint limit = slow_map->req();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  for (uint i = TypeFunc::Parms; i < limit; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    // Skip unused stack slots; fast forward to monoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    if (i == tos) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
      i = kit.jvms()->monoff();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
      if( i >= limit ) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
    Node* m = kit.map()->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    Node* n = slow_map->in(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    if (m != n) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
      const Type* t = gvn.type(m)->meet(gvn.type(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      Node* phi = PhiNode::make(region, m, t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
      phi->set_req(2, n);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      kit.map()->set_req(i, gvn.transform(phi));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   735
CallGenerator* CallGenerator::for_method_handle_call(JVMState* jvms, ciMethod* caller, ciMethod* callee, bool delayed_forbidden) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   736
  assert(callee->is_method_handle_intrinsic() ||
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   737
         callee->is_compiled_lambda_form(), "for_method_handle_call mismatch");
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   738
  bool input_not_const;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   739
  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
   740
  Compile* C = Compile::current();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   741
  if (cg != NULL) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   742
    if (!delayed_forbidden && AlwaysIncrementalInline) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   743
      return CallGenerator::for_late_inline(callee, cg);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   744
    } else {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   745
      return cg;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   746
    }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   747
  }
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   748
  int bci = jvms->bci();
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   749
  ciCallProfile profile = caller->call_profile_at_bci(bci);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   750
  int call_site_count = caller->scale_count(profile.count());
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   751
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   752
  if (IncrementalInline && call_site_count > 0 &&
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   753
      (input_not_const || !C->inlining_incrementally() || C->over_inlining_cutoff())) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   754
    return CallGenerator::for_mh_late_inline(caller, callee, input_not_const);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   755
  } else {
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   756
    // Out-of-line call.
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   757
    return CallGenerator::for_direct_call(callee);
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   758
  }
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
   759
}
d8de495d05e0 7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents: 10986
diff changeset
   760
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   761
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
   762
  GraphKit kit(jvms);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   763
  PhaseGVN& gvn = kit.gvn();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   764
  Compile* C = kit.C;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   765
  vmIntrinsics::ID iid = callee->intrinsic_id();
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   766
  input_not_const = true;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   767
  switch (iid) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   768
  case vmIntrinsics::_invokeBasic:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   769
    {
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   770
      // Get MethodHandle receiver:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   771
      Node* receiver = kit.argument(0);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   772
      if (receiver->Opcode() == Op_ConP) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   773
        input_not_const = false;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   774
        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
   775
        ciMethod* target = oop_ptr->const_oop()->as_method_handle()->get_vmtarget();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   776
        guarantee(!target->is_method_handle_intrinsic(), "should not happen");  // XXX remove
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13487
diff changeset
   777
        const int vtable_index = Method::invalid_vtable_index;
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   778
        CallGenerator* cg = C->call_generator(target, vtable_index, false, jvms, true, PROB_ALWAYS, NULL, true, true);
21582
6c76cdd733fe 8028159: C2: compiler stack overflow during inlining of @ForceInline methods
vlivanov
parents: 21099
diff changeset
   779
        assert(cg == NULL || !cg->is_late_inline() || cg->is_mh_late_inline(), "no late inline here");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   780
        if (cg != NULL && cg->is_inline())
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   781
          return cg;
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   782
      }
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   783
    }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   784
    break;
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10510
diff changeset
   785
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   786
  case vmIntrinsics::_linkToVirtual:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   787
  case vmIntrinsics::_linkToStatic:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   788
  case vmIntrinsics::_linkToSpecial:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   789
  case vmIntrinsics::_linkToInterface:
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   790
    {
14621
fd9265ab0f67 7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents: 14132
diff changeset
   791
      // Get MemberName argument:
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   792
      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
   793
      if (member_name->Opcode() == Op_ConP) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   794
        input_not_const = false;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   795
        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
   796
        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
   797
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   798
        // In lamda forms we erase signature types to avoid resolving issues
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   799
        // 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
   800
        // 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
   801
        // actual types.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   802
        ciSignature* signature = target->signature();
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   803
        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
   804
        // Cast receiver to its type.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   805
        if (!target->is_static()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   806
          Node* arg = kit.argument(0);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   807
          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
   808
          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
   809
          if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
   810
            Node* cast_obj = gvn.transform(new (C) CheckCastPPNode(kit.control(), arg, sig_type));
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   811
            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
   812
          }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   813
        }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   814
        // Cast reference arguments to its type.
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   815
        for (int i = 0; i < signature->count(); i++) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   816
          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
   817
          if (t->is_klass()) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   818
            Node* arg = kit.argument(receiver_skip + i);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   819
            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
   820
            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
   821
            if (arg_type != NULL && !arg_type->higher_equal(sig_type)) {
13895
f6dfe4123709 7193318: C2: remove number of inputs requirement from Node's new operator
kvn
parents: 13728
diff changeset
   822
              Node* cast_obj = gvn.transform(new (C) CheckCastPPNode(kit.control(), arg, sig_type));
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   823
              kit.set_argument(receiver_skip + i, cast_obj);
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   824
            }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   825
          }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   826
        }
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   827
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   828
        // Try to get the most accurate receiver type
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   829
        const bool is_virtual              = (iid == vmIntrinsics::_linkToVirtual);
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   830
        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
   831
        int  vtable_index       = Method::invalid_vtable_index;
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   832
        bool call_does_dispatch = false;
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   833
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   834
        ciKlass* speculative_receiver_type = NULL;
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   835
        if (is_virtual_or_interface) {
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   836
          ciInstanceKlass* klass = target->holder();
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   837
          Node*             receiver_node = kit.argument(0);
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   838
          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
   839
          // call_does_dispatch and vtable_index are out-parameters.  They might be changed.
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   840
          target = C->optimize_virtual_call(caller, jvms->bci(), klass, target, receiver_type,
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   841
                                            is_virtual,
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   842
                                            call_does_dispatch, vtable_index);  // out-parameters
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   843
          // We lack profiling at this call but type speculation may
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   844
          // provide us with a type
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   845
          speculative_receiver_type = receiver_type->speculative_type();
15118
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   846
        }
1a1a6d1dfaab 8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents: 15113
diff changeset
   847
21099
46e6bbecd9e5 8024070: C2 needs some form of type speculation
roland
parents: 21089
diff changeset
   848
        CallGenerator* cg = C->call_generator(target, vtable_index, call_does_dispatch, jvms, true, PROB_ALWAYS, speculative_receiver_type, true, true);
21582
6c76cdd733fe 8028159: C2: compiler stack overflow during inlining of @ForceInline methods
vlivanov
parents: 21099
diff changeset
   849
        assert(cg == NULL || !cg->is_late_inline() || cg->is_mh_late_inline(), "no late inline here");
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   850
        if (cg != NULL && cg->is_inline())
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   851
          return cg;
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   852
      }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   853
    }
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   854
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   855
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   856
  default:
13393
f0344cc50a90 7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents: 13391
diff changeset
   857
    fatal(err_msg_res("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid)));
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13107
diff changeset
   858
    break;
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   859
  }
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   860
  return NULL;
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   861
}
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   862
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 9975
diff changeset
   863
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   864
//------------------------PredictedIntrinsicGenerator------------------------------
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   865
// Internal class which handles all predicted Intrinsic calls.
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   866
class PredictedIntrinsicGenerator : public CallGenerator {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   867
  CallGenerator* _intrinsic;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   868
  CallGenerator* _cg;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   869
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   870
public:
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   871
  PredictedIntrinsicGenerator(CallGenerator* intrinsic,
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   872
                              CallGenerator* cg)
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   873
    : CallGenerator(cg->method())
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   874
  {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   875
    _intrinsic = intrinsic;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   876
    _cg        = cg;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   877
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   878
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   879
  virtual bool      is_virtual()   const    { return true; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   880
  virtual bool      is_inlined()   const    { return true; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   881
  virtual bool      is_intrinsic() const    { return true; }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   882
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   883
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   884
};
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   885
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   886
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   887
CallGenerator* CallGenerator::for_predicted_intrinsic(CallGenerator* intrinsic,
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   888
                                                      CallGenerator* cg) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   889
  return new PredictedIntrinsicGenerator(intrinsic, cg);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   890
}
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   891
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   892
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   893
JVMState* PredictedIntrinsicGenerator::generate(JVMState* jvms, Parse* parent_parser) {
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   894
  GraphKit kit(jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   895
  PhaseGVN& gvn = kit.gvn();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   896
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   897
  CompileLog* log = kit.C->log();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   898
  if (log != NULL) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   899
    log->elem("predicted_intrinsic bci='%d' method='%d'",
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   900
              jvms->bci(), log->identify(method()));
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   901
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   902
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   903
  Node* slow_ctl = _intrinsic->generate_predicate(kit.sync_jvms());
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   904
  if (kit.failing())
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   905
    return NULL;  // might happen because of NodeCountInliningCutoff
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   906
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   907
  SafePointNode* slow_map = NULL;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   908
  JVMState* slow_jvms;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   909
  if (slow_ctl != NULL) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   910
    PreserveJVMState pjvms(&kit);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   911
    kit.set_control(slow_ctl);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   912
    if (!kit.stopped()) {
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   913
      slow_jvms = _cg->generate(kit.sync_jvms(), parent_parser);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   914
      if (kit.failing())
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   915
        return NULL;  // might happen because of NodeCountInliningCutoff
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   916
      assert(slow_jvms != NULL, "must be");
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   917
      kit.add_exception_states_from(slow_jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   918
      kit.set_map(slow_jvms->map());
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   919
      if (!kit.stopped())
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   920
        slow_map = kit.stop();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   921
    }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   922
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   923
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   924
  if (kit.stopped()) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   925
    // Predicate is always false.
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   926
    kit.set_jvms(slow_jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   927
    return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   928
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   929
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   930
  // Generate intrinsic code:
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   931
  JVMState* new_jvms = _intrinsic->generate(kit.sync_jvms(), parent_parser);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   932
  if (new_jvms == NULL) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   933
    // Intrinsic failed, so use slow code or make a direct call.
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   934
    if (slow_map == NULL) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   935
      CallGenerator* cg = CallGenerator::for_direct_call(method());
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
   936
      new_jvms = cg->generate(kit.sync_jvms(), parent_parser);
14132
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   937
    } else {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   938
      kit.set_jvms(slow_jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   939
      return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   940
    }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   941
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   942
  kit.add_exception_states_from(new_jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   943
  kit.set_jvms(new_jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   944
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   945
  // Need to merge slow and fast?
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   946
  if (slow_map == NULL) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   947
    // The fast path is the only path remaining.
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   948
    return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   949
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   950
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   951
  if (kit.stopped()) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   952
    // Intrinsic method threw an exception, so it's just the slow path after all.
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   953
    kit.set_jvms(slow_jvms);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   954
    return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   955
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   956
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   957
  // Finish the diamond.
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   958
  kit.C->set_has_split_ifs(true); // Has chance for split-if optimization
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   959
  RegionNode* region = new (kit.C) RegionNode(3);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   960
  region->init_req(1, kit.control());
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   961
  region->init_req(2, slow_map->control());
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   962
  kit.set_control(gvn.transform(region));
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   963
  Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   964
  iophi->set_req(2, slow_map->i_o());
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   965
  kit.set_i_o(gvn.transform(iophi));
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   966
  kit.merge_memory(slow_map->merged_memory(), region, 2);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   967
  uint tos = kit.jvms()->stkoff() + kit.sp();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   968
  uint limit = slow_map->req();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   969
  for (uint i = TypeFunc::Parms; i < limit; i++) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   970
    // Skip unused stack slots; fast forward to monoff();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   971
    if (i == tos) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   972
      i = kit.jvms()->monoff();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   973
      if( i >= limit ) break;
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   974
    }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   975
    Node* m = kit.map()->in(i);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   976
    Node* n = slow_map->in(i);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   977
    if (m != n) {
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   978
      const Type* t = gvn.type(m)->meet(gvn.type(n));
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   979
      Node* phi = PhiNode::make(region, m, t);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   980
      phi->set_req(2, n);
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   981
      kit.map()->set_req(i, gvn.transform(phi));
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   982
    }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   983
  }
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   984
  return kit.transfer_exceptions_into_jvms();
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   985
}
3c1437abcefd 7184394: add intrinsics to use AES instructions
kvn
parents: 13895
diff changeset
   986
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
//-------------------------UncommonTrapCallGenerator-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
// Internal class which handles all out-of-line calls checking receiver type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
class UncommonTrapCallGenerator : public CallGenerator {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  Deoptimization::DeoptReason _reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
  Deoptimization::DeoptAction _action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  UncommonTrapCallGenerator(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
                            Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
                            Deoptimization::DeoptAction action)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
    : CallGenerator(m)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    _reason = reason;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
    _action = action;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
  virtual bool      is_virtual() const          { ShouldNotReachHere(); return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
  virtual bool      is_trap() const             { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
  1006
  virtual JVMState* generate(JVMState* jvms, Parse* parent_parser);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
CallGenerator*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
CallGenerator::for_uncommon_trap(ciMethod* m,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
                                 Deoptimization::DeoptReason reason,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
                                 Deoptimization::DeoptAction action) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  return new UncommonTrapCallGenerator(m, reason, action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
21089
e1986ff6fe2e 8024069: replace_in_map() should operate on parent maps
roland
parents: 17383
diff changeset
  1018
JVMState* UncommonTrapCallGenerator::generate(JVMState* jvms, Parse* parent_parser) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  GraphKit kit(jvms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  // Take the trap with arguments pushed on the stack.  (Cf. null_check_receiver).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  int nargs = method()->arg_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  kit.inc_sp(nargs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  assert(nargs <= kit.sp() && kit.sp() <= jvms->stk_size(), "sane sp w/ args pushed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  if (_reason == Deoptimization::Reason_class_check &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
      _action == Deoptimization::Action_maybe_recompile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
    // Temp fix for 6529811
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
    // Don't allow uncommon_trap to override our decision to recompile in the event
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
    // of a class cast failure for a monomorphic call as it will never let us convert
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
    // the call to either bi-morphic or megamorphic and can lead to unc-trap loops
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
    bool keep_exact_action = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
    kit.uncommon_trap(_reason, _action, NULL, "monomorphic vcall checkcast", false, keep_exact_action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    kit.uncommon_trap(_reason, _action);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  return kit.transfer_exceptions_into_jvms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
// (Note:  Moved hook_up_call to GraphKit::set_edges_for_java_call.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
// (Node:  Merged hook_up_exits into ParseGenerator::generate.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
#define NODES_OVERHEAD_PER_METHOD (30.0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
#define NODES_PER_BYTECODE (9.5)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  int call_count = profile.count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  int code_size = call_method->code_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  // Expected execution count is based on the historical count:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  _count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  // Expected profit from inlining, in units of simple call-overheads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  _profit = 1.0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  // Expected work performed by the call in units of call-overheads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  // %%% need an empirical curve fit for "work" (time in call)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  float bytecodes_per_call = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  _work = 1.0 + code_size / bytecodes_per_call;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
  // Expected size of compilation graph:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
  // -XX:+PrintParseStatistics once reported:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  //  Methods seen: 9184  Methods parsed: 9184  Nodes created: 1582391
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
  //  Histogram of 144298 parsed bytecodes:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
  // %%% Need an better predictor for graph size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  _size = NODES_OVERHEAD_PER_METHOD + (NODES_PER_BYTECODE * code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
// is_cold:  Return true if the node should never be inlined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
// This is true if any of the key metrics are extreme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
bool WarmCallInfo::is_cold() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  if (count()  <  WarmCallMinCount)        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
  if (profit() <  WarmCallMinProfit)       return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
  if (work()   >  WarmCallMaxWork)         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  if (size()   >  WarmCallMaxSize)         return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
// is_hot:  Return true if the node should be inlined immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
// This is true if any of the key metrics are extreme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
bool WarmCallInfo::is_hot() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  assert(!is_cold(), "eliminate is_cold cases before testing is_hot");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  if (count()  >= HotCallCountThreshold)   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
  if (profit() >= HotCallProfitThreshold)  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  if (work()   <= HotCallTrivialWork)      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  if (size()   <= HotCallTrivialSize)      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
// compute_heat:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
float WarmCallInfo::compute_heat() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  assert(!is_cold(), "compute heat only on warm nodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
  assert(!is_hot(),  "compute heat only on warm nodes");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
  int min_size = MAX2(0,   (int)HotCallTrivialSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  int max_size = MIN2(500, (int)WarmCallMaxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  float method_size = (size() - min_size) / MAX2(1, max_size - min_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  float size_factor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  if      (method_size < 0.05)  size_factor = 4;   // 2 sigmas better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  else if (method_size < 0.15)  size_factor = 2;   // 1 sigma better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  else if (method_size < 0.5)   size_factor = 1;   // better than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  else                          size_factor = 0.5; // worse than avg.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  return (count() * profit() * size_factor);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
bool WarmCallInfo::warmer_than(WarmCallInfo* that) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  assert(this != that, "compare only different WCIs");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  assert(this->heat() != 0 && that->heat() != 0, "call compute_heat 1st");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  if (this->heat() > that->heat())   return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  if (this->heat() < that->heat())   return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  assert(this->heat() == that->heat(), "no NaN heat allowed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  // Equal heat.  Break the tie some other way.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  if (!this->call() || !that->call())  return (address)this > (address)that;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
  return this->call()->_idx > that->call()->_idx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
//#define UNINIT_NEXT ((WarmCallInfo*)badAddress)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
#define UNINIT_NEXT ((WarmCallInfo*)NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
WarmCallInfo* WarmCallInfo::insert_into(WarmCallInfo* head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
  assert(next() == UNINIT_NEXT, "not yet on any list");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  WarmCallInfo* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  WarmCallInfo* next_p = head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  while (next_p != NULL && next_p->warmer_than(this)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
    prev_p = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
    next_p = prev_p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  // Install this between prev_p and next_p.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  this->set_next(next_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  if (prev_p == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
    head = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    prev_p->set_next(this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  return head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
WarmCallInfo* WarmCallInfo::remove_from(WarmCallInfo* head) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
  WarmCallInfo* prev_p = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  WarmCallInfo* next_p = head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  while (next_p != this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
    assert(next_p != NULL, "this must be in the list somewhere");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
    prev_p = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    next_p = prev_p->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  next_p = this->next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  debug_only(this->set_next(UNINIT_NEXT));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  // Remove this from between prev_p and next_p.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  if (prev_p == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
    head = next_p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
    prev_p->set_next(next_p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  return head;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
  1153
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
  1154
                                       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
  1155
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
  1156
                                        WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
WarmCallInfo* WarmCallInfo::always_hot() {
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
  1159
  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
  1160
  return &_always_hot;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
WarmCallInfo* WarmCallInfo::always_cold() {
9099
bdeb610d3cb1 6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents: 8676
diff changeset
  1164
  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
  1165
  return &_always_cold;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
void WarmCallInfo::print() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  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
  1173
             is_cold() ? "cold" : is_hot() ? "hot " : "warm",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
             count(), profit(), work(), size(), compute_heat(), next());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
  if (call() != NULL)  call()->dump();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
void print_wci(WarmCallInfo* ci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  ci->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
void WarmCallInfo::print_all() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  for (const WarmCallInfo* p = this; p != NULL; p = p->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
    p->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
int WarmCallInfo::count_all() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
  int cnt = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
  for (const WarmCallInfo* p = this; p != NULL; p = p->next())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    cnt++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  return cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
#endif //PRODUCT