hotspot/src/share/vm/interpreter/linkResolver.hpp
author coleenp
Sat, 27 May 2017 09:21:01 -0400
changeset 46505 fd4bc78630b1
parent 46458 3c12af929e7d
child 46727 6e4a84748e2c
permissions -rw-r--r--
8174749: Use hash table/oops for MemberName table Summary: Add a Java type called ResolvedMethodName which is immutable and can be stored in a hashtable, that is weakly collected by gc Reviewed-by: sspitsyn, stefank, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
     2
 * Copyright (c) 1997, 2017, 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: 5421
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5421
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: 5421
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: 6062
diff changeset
    25
#ifndef SHARE_VM_INTERPRETER_LINKRESOLVER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    26
#define SHARE_VM_INTERPRETER_LINKRESOLVER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    27
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13391
diff changeset
    28
#include "oops/method.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// All the necessary definitions for run-time link resolution.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    32
// CallInfo provides all the information gathered for a particular
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    33
// linked call site after resolving it. A link is any reference
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// made from within the bytecodes of a method to an object outside of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// that method. If the info is invalid, the link has not been resolved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// successfully.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    38
class CallInfo : public StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
 public:
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    40
  // Ways that a method call might be selected (or not) based on receiver type.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    41
  // Note that an invokevirtual instruction might be linked with no_dispatch,
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    42
  // and an invokeinterface instruction might be linked with any of the three options
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    43
  enum CallKind {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    44
    direct_call,                        // jump into resolved_method (must be concrete)
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    45
    vtable_call,                        // select recv.klass.method_at_vtable(index)
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    46
    itable_call,                        // select recv.klass.method_at_itable(resolved_method.holder, index)
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    47
    unknown_kind = -1
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    48
  };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    50
  Klass*       _resolved_klass;         // static receiver klass, resolved from a symbolic reference
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    51
  Klass*       _selected_klass;         // dynamic receiver class (same as static, or subklass)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  methodHandle _resolved_method;        // static target method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  methodHandle _selected_method;        // dynamic (actual) target method
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    54
  CallKind     _call_kind;              // kind of call (static(=bytecode static/special +
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    55
                                        //               others inferred), vtable, itable)
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    56
  int          _call_index;             // vtable or itable index of selected class method (if any)
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 8921
diff changeset
    57
  Handle       _resolved_appendix;      // extra argument in constant pool (if CPCE::has_appendix)
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
    58
  Handle       _resolved_method_type;   // MethodType (for invokedynamic and invokehandle call sites)
46505
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
    59
  Handle       _resolved_method_name;   // Object holding the ResolvedMethodName
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    61
  void set_static(Klass* resolved_klass, const methodHandle& resolved_method, TRAPS);
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    62
  void set_interface(Klass* resolved_klass, Klass* selected_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    63
                     const methodHandle& resolved_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    64
                     const methodHandle& selected_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    65
                     int itable_index, TRAPS);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    66
  void set_virtual(Klass* resolved_klass, Klass* selected_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    67
                   const methodHandle& resolved_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    68
                   const methodHandle& selected_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    69
                   int vtable_index, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    70
  void set_handle(const methodHandle& resolved_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    71
                  Handle resolved_appendix, Handle resolved_method_type, TRAPS);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    72
  void set_handle(Klass* resolved_klass,
36819
bca375d368ed 8149644: Integrate VarHandles
psandoz
parents: 35495
diff changeset
    73
                  const methodHandle& resolved_method,
bca375d368ed 8149644: Integrate VarHandles
psandoz
parents: 35495
diff changeset
    74
                  Handle resolved_appendix, Handle resolved_method_type, TRAPS);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    75
  void set_common(Klass* resolved_klass, Klass* selected_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    76
                  const methodHandle& resolved_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    77
                  const methodHandle& selected_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    78
                  CallKind kind,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
    79
                  int index, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  friend class LinkResolver;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
 public:
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    84
  CallInfo() {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    85
#ifndef PRODUCT
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    86
    _call_kind  = CallInfo::unknown_kind;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    87
    _call_index = Method::garbage_vtable_index;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    88
#endif //PRODUCT
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    89
  }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    90
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    91
  // utility to extract an effective CallInfo from a method and an optional receiver limit
46505
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
    92
  // does not queue the method for compilation.  This also creates a ResolvedMethodName
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
    93
  // object for the resolved_method.
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
    94
  CallInfo(Method* resolved_method, Klass* resolved_klass, TRAPS);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
    95
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    96
  Klass*  resolved_klass() const                 { return _resolved_klass; }
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
    97
  Klass*  selected_klass() const                 { return _selected_klass; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  methodHandle resolved_method() const           { return _resolved_method; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  methodHandle selected_method() const           { return _selected_method; }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 8921
diff changeset
   100
  Handle       resolved_appendix() const         { return _resolved_appendix; }
13929
8da0dc50a6e4 7200949: JSR 292: rubybench/bench/time/bench_base64.rb fails with jruby.jar not on boot class path
twisti
parents: 13728
diff changeset
   101
  Handle       resolved_method_type() const      { return _resolved_method_type; }
46505
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
   102
  Handle       resolved_method_name() const      { return _resolved_method_name; }
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
   103
  // Materialize a java.lang.invoke.ResolvedMethodName for this resolved_method
fd4bc78630b1 8174749: Use hash table/oops for MemberName table
coleenp
parents: 46458
diff changeset
   104
  void     set_resolved_method_name(TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  BasicType    result_type() const               { return selected_method()->result_type(); }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   107
  CallKind     call_kind() const                 { return _call_kind; }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   108
  int          call_index() const                { return _call_index; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  int          vtable_index() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    // Even for interface calls the vtable index could be non-negative.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    // See CallInfo::set_interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    assert(has_vtable_index() || is_statically_bound(), "");
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   113
    assert(call_kind() == vtable_call || call_kind() == direct_call, "");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   114
    // The returned value is < 0 if the call is statically bound.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   115
    // But, the returned value may be >= 0 even if the kind is direct_call.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   116
    // It is up to the caller to decide which way to go.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   117
    return _call_index;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   119
  int          itable_index() const {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   120
    assert(call_kind() == itable_call, "");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   121
    // The returned value is always >= 0, a valid itable index.
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   122
    return _call_index;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   123
  }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   124
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   125
  // debugging
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   126
#ifdef ASSERT
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   127
  bool         has_vtable_index() const          { return _call_index >= 0 && _call_kind != CallInfo::itable_call; }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   128
  bool         is_statically_bound() const       { return _call_index == Method::nonvirtual_vtable_index; }
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   129
#endif //ASSERT
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   130
  void         verify() PRODUCT_RETURN;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   131
  void         print()  PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   134
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   135
// Condensed information from constant pool to use to resolve the method or field.
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   136
//   resolved_klass = specified class (i.e., static receiver class)
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   137
//   current_klass  = sending method holder (i.e., class containing the method
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   138
//                    containing the call being resolved)
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   139
//   current_method = sending method (relevant for field resolution)
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   140
class LinkInfo : public StackObj {
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   141
  Symbol*     _name;            // extracted from JVM_CONSTANT_NameAndType
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   142
  Symbol*     _signature;
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   143
  Klass*      _resolved_klass;  // class that the constant pool entry points to
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   144
  Klass*      _current_klass;   // class that owns the constant pool
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   145
  methodHandle _current_method;  // sending method
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   146
  bool        _check_access;
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   147
  constantTag _tag;
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   148
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   149
 public:
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   150
  enum AccessCheck {
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   151
    needs_access_check,
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   152
    skip_access_check
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   153
  };
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   154
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   155
  LinkInfo(const constantPoolHandle& pool, int index, methodHandle current_method, TRAPS);
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   156
  LinkInfo(const constantPoolHandle& pool, int index, TRAPS);
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   157
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   158
  // Condensed information from other call sites within the vm.
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   159
  LinkInfo(Klass* resolved_klass, Symbol* name, Symbol* signature, Klass* current_klass,
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   160
           AccessCheck check_access = needs_access_check,
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   161
           constantTag tag = JVM_CONSTANT_Invalid) :
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   162
    _resolved_klass(resolved_klass),
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   163
    _name(name), _signature(signature), _current_klass(current_klass), _current_method(methodHandle()),
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   164
    _check_access(check_access == needs_access_check), _tag(tag) {}
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   165
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   166
  LinkInfo(Klass* resolved_klass, Symbol* name, Symbol* signature, methodHandle current_method,
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   167
           AccessCheck check_access = needs_access_check,
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   168
           constantTag tag = JVM_CONSTANT_Invalid) :
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   169
    _resolved_klass(resolved_klass),
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   170
    _name(name), _signature(signature), _current_klass(current_method->method_holder()), _current_method(current_method),
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   171
    _check_access(check_access == needs_access_check), _tag(tag) {}
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   172
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   173
  // Case where we just find the method and don't check access against the current class
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   174
  LinkInfo(Klass* resolved_klass, Symbol*name, Symbol* signature) :
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   175
    _resolved_klass(resolved_klass),
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   176
    _name(name), _signature(signature), _current_klass(NULL), _current_method(methodHandle()),
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   177
    _check_access(false), _tag(JVM_CONSTANT_Invalid) {}
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   178
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   179
  // accessors
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   180
  Symbol* name() const               { return _name; }
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   181
  Symbol* signature() const          { return _signature; }
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   182
  Klass* resolved_klass() const      { return _resolved_klass; }
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   183
  Klass* current_klass() const       { return _current_klass; }
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   184
  methodHandle current_method() const { return _current_method; }
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   185
  constantTag tag() const            { return _tag; }
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   186
  bool check_access() const          { return _check_access; }
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   187
  char* method_string() const;
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   188
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   189
  void         print()  PRODUCT_RETURN;
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   190
};
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   191
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   192
// Link information for getfield/putfield & getstatic/putstatic bytecodes
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   193
// is represented using a fieldDescriptor.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
// The LinkResolver is used to resolve constant-pool references at run-time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
// It does all necessary link-time checks & throws exceptions if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
class LinkResolver: AllStatic {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   199
  friend class klassVtable;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   200
  friend class klassItable;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 13929
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
 private:
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   203
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   204
  static methodHandle lookup_method_in_klasses(const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   205
                                               bool checkpolymorphism,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   206
                                               bool in_imethod_resolve, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   207
  static methodHandle lookup_method_in_interfaces(const LinkInfo& link_info, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   208
  static methodHandle lookup_polymorphic_method(const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   209
                                                Handle *appendix_result_or_null,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   210
                                                Handle *method_type_result, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31019
diff changeset
   211
 JVMCI_ONLY(public:) // Needed for CompilerToVM.resolveMethod()
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   212
  // Not Linktime so doesn't take LinkInfo
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   213
  static methodHandle lookup_instance_method_in_klasses (
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   214
                                       Klass* klass, Symbol* name, Symbol* signature, TRAPS);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31019
diff changeset
   215
 JVMCI_ONLY(private:)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   217
  // Similar loader constraint checking functions that throw
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   218
  // LinkageError with descriptive message.
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   219
  static void check_method_loader_constraints(const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   220
                                              const methodHandle& resolved_method,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   221
                                              const char* method_type, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   222
  static void check_field_loader_constraints(Symbol* field, Symbol* sig,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   223
                                             Klass* current_klass,
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   224
                                             Klass* sel_klass, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
38034
f22f68545fd5 8153115: Move private interface check to linktime
iveresov
parents: 36819
diff changeset
   226
  static methodHandle resolve_interface_method(const LinkInfo& link_info, Bytecodes::Code code, TRAPS);
38719
133bf85c3f36 8145148: InterfaceMethod CP entry pointing to a class should cause ICCE
coleenp
parents: 38051
diff changeset
   227
  static methodHandle resolve_method          (const LinkInfo& link_info, Bytecodes::Code code, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   229
  static methodHandle linktime_resolve_static_method    (const LinkInfo& link_info, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   230
  static methodHandle linktime_resolve_special_method   (const LinkInfo& link_info, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   231
  static methodHandle linktime_resolve_virtual_method   (const LinkInfo& link_info, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   232
  static methodHandle linktime_resolve_interface_method (const LinkInfo& link_info, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   234
  static void runtime_resolve_special_method    (CallInfo& result,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   235
                                                 const methodHandle& resolved_method,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   236
                                                 Klass* resolved_klass,
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   237
                                                 Klass* current_klass,
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 39421
diff changeset
   238
                                                 Handle recv,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   239
                                                 bool check_access, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   240
  static void runtime_resolve_virtual_method    (CallInfo& result,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   241
                                                 const methodHandle& resolved_method,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   242
                                                 Klass* resolved_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   243
                                                 Handle recv,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   244
                                                 Klass* recv_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   245
                                                 bool check_null_and_abstract, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   246
  static void runtime_resolve_interface_method  (CallInfo& result,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   247
                                                 const methodHandle& resolved_method,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   248
                                                 Klass* resolved_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   249
                                                 Handle recv,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   250
                                                 Klass* recv_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   251
                                                 bool check_null_and_abstract, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   253
  static void check_field_accessability(Klass* ref_klass,
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   254
                                        Klass* resolved_klass,
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   255
                                        Klass* sel_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   256
                                        const fieldDescriptor& fd, TRAPS);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   257
  static void check_method_accessability(Klass* ref_klass,
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   258
                                         Klass* resolved_klass,
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   259
                                         Klass* sel_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   260
                                         const methodHandle& sel_method, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   262
  // runtime resolving from constant pool
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   263
  static void resolve_invokestatic   (CallInfo& result,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   264
                                      const constantPoolHandle& pool, int index, TRAPS);
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 39421
diff changeset
   265
  static void resolve_invokespecial  (CallInfo& result, Handle recv,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   266
                                      const constantPoolHandle& pool, int index, TRAPS);
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   267
  static void resolve_invokevirtual  (CallInfo& result, Handle recv,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   268
                                      const constantPoolHandle& pool, int index, TRAPS);
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   269
  static void resolve_invokeinterface(CallInfo& result, Handle recv,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   270
                                      const constantPoolHandle& pool, int index, TRAPS);
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   271
  static void resolve_invokedynamic  (CallInfo& result,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   272
                                      const constantPoolHandle& pool, int index, TRAPS);
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   273
  static void resolve_invokehandle   (CallInfo& result,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   274
                                      const constantPoolHandle& pool, int index, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // constant pool resolving
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   277
  static void check_klass_accessability(Klass* ref_klass, Klass* sel_klass, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   279
  // static resolving calls (will not run any Java code);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   280
  // used only from Bytecode_invoke::static_target
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   281
  static methodHandle resolve_method_statically(Bytecodes::Code code,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   282
                                                const constantPoolHandle& pool,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   283
                                                int index, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   285
  static void resolve_field_access(fieldDescriptor& result,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   286
                                   const constantPoolHandle& pool,
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   287
                                   int index,
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   288
                                   const methodHandle& method,
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38719
diff changeset
   289
                                   Bytecodes::Code byte, TRAPS);
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   290
  static void resolve_field(fieldDescriptor& result, const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   291
                            Bytecodes::Code access_kind,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   292
                            bool initialize_class, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   294
  static void resolve_static_call   (CallInfo& result,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   295
                                     const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   296
                                     bool initialize_klass, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   297
  static void resolve_special_call  (CallInfo& result,
44738
11431bbc9549 8168699: Validate special case invocations
coleenp
parents: 39421
diff changeset
   298
                                     Handle recv,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   299
                                     const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   300
                                     TRAPS);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   301
  static void resolve_virtual_call  (CallInfo& result, Handle recv, Klass* recv_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   302
                                     const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   303
                                     bool check_null_and_abstract, TRAPS);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   304
  static void resolve_interface_call(CallInfo& result, Handle recv, Klass* recv_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   305
                                     const LinkInfo& link_info,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   306
                                     bool check_null_and_abstract, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   307
  static void resolve_handle_call   (CallInfo& result,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   308
                                     const LinkInfo& link_info, TRAPS);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   309
  static void resolve_dynamic_call  (CallInfo& result, Handle bootstrap_specifier,
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   310
                                     Symbol* method_name, Symbol* method_signature,
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   311
                                     Klass* current_klass, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   313
  // same as above for compile-time resolution; but returns null handle instead of throwing
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   314
  // an exception on error also, does not initialize klass (i.e., no side effects)
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   315
  static methodHandle resolve_virtual_call_or_null  (Klass* receiver_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   316
                                                     const LinkInfo& link_info);
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   317
  static methodHandle resolve_interface_call_or_null(Klass* receiver_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   318
                                                     const LinkInfo& link_info);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   319
  static methodHandle resolve_static_call_or_null   (const LinkInfo& link_info);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   320
  static methodHandle resolve_special_call_or_null  (const LinkInfo& link_info);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   321
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   322
  static int vtable_index_of_interface_method(Klass* klass, const methodHandle& resolved_method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // same as above for compile-time resolution; returns vtable_index if current_klass if linked
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 39421
diff changeset
   325
  static int resolve_virtual_vtable_index  (Klass* receiver_klass,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   326
                                            const LinkInfo& link_info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // static resolving for compiler (does not throw exceptions, returns null handle if unsuccessful)
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   329
  static methodHandle linktime_resolve_virtual_method_or_null  (const LinkInfo& link_info);
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   330
  static methodHandle linktime_resolve_interface_method_or_null(const LinkInfo& link_info);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // runtime resolving from constant pool
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   333
  static void resolve_invoke(CallInfo& result, Handle recv,
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   334
                             const constantPoolHandle& pool, int index,
31019
d05fcdd70109 8029567: Clean up linkResolver code
coleenp
parents: 30223
diff changeset
   335
                             Bytecodes::Code byte, TRAPS);
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34238
diff changeset
   336
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34238
diff changeset
   337
  // runtime resolving from attached method
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34238
diff changeset
   338
  static void resolve_invoke(CallInfo& result, Handle& recv,
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34238
diff changeset
   339
                             const methodHandle& attached_method,
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 34238
diff changeset
   340
                             Bytecodes::Code byte, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
   342
#endif // SHARE_VM_INTERPRETER_LINKRESOLVER_HPP