hotspot/src/share/vm/ci/ciMethodHandle.cpp
author never
Thu, 12 Apr 2012 12:07:09 -0700
changeset 12984 8fc2453a8ec4
parent 10973 3b6e9c685073
child 13391 30245956af37
permissions -rw-r--r--
7160677: missing else in fix for 7152811 Reviewed-by: kvn, kevinw
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     1
/*
7888
1be03febacc2 7010913: JSR 292 ciMethodHandle does not handle MethodHandleCompiler exceptions properly
twisti
parents: 7397
diff changeset
     2
 * Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     4
 *
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     8
 *
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    13
 * accompanied this code).
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    14
 *
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
diff changeset
    21
 * questions.
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    22
 *
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    23
 */
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
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/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "ci/ciInstance.hpp"
9638
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    28
#include "ci/ciMethodData.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "ci/ciMethodHandle.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "ci/ciUtilities.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "prims/methodHandleWalk.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "prims/methodHandles.hpp"
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    33
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    34
// ciMethodHandle
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    35
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    36
// ------------------------------------------------------------------
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    37
// ciMethodHandle::get_adapter
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    38
//
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    39
// Return an adapter for this MethodHandle.
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    40
ciMethod* ciMethodHandle::get_adapter_impl(bool is_invokedynamic) {
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    41
  VM_ENTRY_MARK;
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    42
  Handle h(get_oop());
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    43
  methodHandle callee(_callee->get_methodOop());
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    44
  assert(callee->is_method_handle_invoke(), "");
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    45
  oop mt1 = callee->method_handle_type();
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    46
  oop mt2 = java_lang_invoke_MethodHandle::type(h());
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    47
  if (!java_lang_invoke_MethodType::equals(mt1, mt2)) {
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    48
    if (PrintMiscellaneous && (Verbose || WizardMode)) {
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    49
      tty->print_cr("ciMethodHandle::get_adapter: types not equal");
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    50
      mt1->print(); mt2->print();
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    51
    }
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    52
    return NULL;
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    53
  }
7888
1be03febacc2 7010913: JSR 292 ciMethodHandle does not handle MethodHandleCompiler exceptions properly
twisti
parents: 7397
diff changeset
    54
  // We catch all exceptions here that could happen in the method
1be03febacc2 7010913: JSR 292 ciMethodHandle does not handle MethodHandleCompiler exceptions properly
twisti
parents: 7397
diff changeset
    55
  // handle compiler and stop the VM.
9975
82190b49ce14 7050554: JSR 292 - need optimization for selectAlternative
never
parents: 9946
diff changeset
    56
  MethodHandleCompiler mhc(h, callee->name(), callee->signature(), _profile.count(), is_invokedynamic, THREAD);
9118
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    57
  if (!HAS_PENDING_EXCEPTION) {
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    58
    methodHandle m = mhc.compile(THREAD);
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    59
    if (!HAS_PENDING_EXCEPTION) {
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    60
      return CURRENT_ENV->get_object(m())->as_method();
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    61
    }
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    62
  }
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    63
  if (PrintMiscellaneous && (Verbose || WizardMode)) {
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    64
    tty->print("*** ciMethodHandle::get_adapter => ");
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    65
    PENDING_EXCEPTION->print();
10008
d84de97ad847 7056328: JSR 292 invocation sometimes fails in adapters for types not on boot class path
jrose
parents: 9975
diff changeset
    66
    tty->print("*** get_adapter (%s): ", is_invokedynamic ? "indy" : "mh"); ((ciObject*)this)->print();
9118
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    67
  }
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    68
  CLEAR_PENDING_EXCEPTION;
a4c6e4429693 7009600: JSR 292 Server compiler crashes in Compile::find_intrinsic(ciMethod*, bool)
jrose
parents: 7888
diff changeset
    69
  return NULL;
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    70
}
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    71
9638
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    72
// ------------------------------------------------------------------
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    73
// ciMethodHandle::get_adapter
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    74
//
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    75
// Return an adapter for this MethodHandle.
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    76
ciMethod* ciMethodHandle::get_adapter(bool is_invokedynamic) {
9638
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    77
  ciMethod* result = get_adapter_impl(is_invokedynamic);
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    78
  if (result) {
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    79
    // Fake up the MDO maturity.
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    80
    ciMethodData* mdo = result->method_data();
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    81
    if (mdo != NULL && _caller->method_data() != NULL && _caller->method_data()->is_mature()) {
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    82
      mdo->set_mature();
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    83
    }
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    84
  }
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    85
  return result;
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    86
}
a9e79f5cd83b 6998541: JSR 292 implement missing return-type conversion for OP_RETYPE_RAW
twisti
parents: 9633
diff changeset
    87
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    88
10973
3b6e9c685073 7105364: JDK8 b10 hotspot: src/share/vm/ci/ciMethodHandle.cpp Error: Use "." or "->"
kvn
parents: 10514
diff changeset
    89
#ifdef ASSERT
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    90
// ------------------------------------------------------------------
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    91
// ciMethodHandle::print_chain_impl
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    92
//
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    93
// Implementation of the print method.
10973
3b6e9c685073 7105364: JDK8 b10 hotspot: src/share/vm/ci/ciMethodHandle.cpp Error: Use "." or "->"
kvn
parents: 10514
diff changeset
    94
void ciMethodHandle::print_chain_impl() {
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    95
  ASSERT_IN_VM;
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    96
  MethodHandleChain::print(get_oop());
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents:
diff changeset
    97
}
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    98
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
    99
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
   100
// ------------------------------------------------------------------
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
   101
// ciMethodHandle::print_chain
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
   102
//
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
   103
// Implementation of the print_chain method.
10973
3b6e9c685073 7105364: JDK8 b10 hotspot: src/share/vm/ci/ciMethodHandle.cpp Error: Use "." or "->"
kvn
parents: 10514
diff changeset
   104
void ciMethodHandle::print_chain() {
3b6e9c685073 7105364: JDK8 b10 hotspot: src/share/vm/ci/ciMethodHandle.cpp Error: Use "." or "->"
kvn
parents: 10514
diff changeset
   105
  GUARDED_VM_ENTRY(print_chain_impl(););
10514
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
   106
}
e229a19078cf 7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents: 10008
diff changeset
   107
#endif