jdk/src/share/classes/java/lang/invoke/MethodType.java
author twisti
Mon, 17 Jun 2013 16:24:48 -0700
changeset 18180 e0b8c923f35d
parent 13610 28122b96858e
child 18569 0e46c17766b7
permissions -rw-r--r--
7177472: JSR292: MethodType interning penalizes scalability Reviewed-by: twisti Contributed-by: Aleksey Shipilev <aleksey.shipilev@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
     1
/*
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
     2
 * Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
     4
 *
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4537
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4537
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    10
 *
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    15
 * accompanied this code).
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    16
 *
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4537
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4537
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4537
diff changeset
    23
 * questions.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    24
 */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    25
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
    26
package java.lang.invoke;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    27
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
    28
import sun.invoke.util.Wrapper;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
    29
import java.lang.ref.WeakReference;
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
    30
import java.lang.ref.Reference;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
    31
import java.lang.ref.ReferenceQueue;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    32
import java.util.Arrays;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    33
import java.util.Collections;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    34
import java.util.List;
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
    35
import java.util.concurrent.ConcurrentMap;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
    36
import java.util.concurrent.ConcurrentHashMap;
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
    37
import sun.invoke.util.BytecodeDescriptor;
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
    38
import static java.lang.invoke.MethodHandleStatics.*;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
    39
import sun.invoke.util.VerifyType;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    40
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    41
/**
5722
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    42
 * A method type represents the arguments and return type accepted and
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    43
 * returned by a method handle, or the arguments and return type passed
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    44
 * and expected  by a method handle caller.  Method types must be properly
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    45
 * matched between a method handle and all its callers,
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    46
 * and the JVM's operations enforce this matching at, specifically
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
    47
 * during calls to {@link MethodHandle#invokeExact MethodHandle.invokeExact}
9645
dabb5e4edc4c 7034977: JSR 292 MethodHandle.invokeGeneric should be renamed MethodHandle.invoke
jrose
parents: 8822
diff changeset
    48
 * and {@link MethodHandle#invoke MethodHandle.invoke}, and during execution
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    49
 * of {@code invokedynamic} instructions.
5722
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    50
 * <p>
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    51
 * The structure is a return type accompanied by any number of parameter types.
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    52
 * The types (primitive, {@code void}, and reference) are represented by {@link Class} objects.
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    53
 * (For ease of exposition, we treat {@code void} as if it were a type.
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    54
 * In fact, it denotes the absence of a return type.)
5722
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    55
 * <p>
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    56
 * All instances of {@code MethodType} are immutable.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    57
 * Two instances are completely interchangeable if they compare equal.
5722
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    58
 * Equality depends on pairwise correspondence of the return and parameter types and on nothing else.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    59
 * <p>
5722
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    60
 * This type can be created only by factory methods.
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    61
 * All factory methods may cache values, though caching is not guaranteed.
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    62
 * Some factory methods are static, while others are virtual methods which
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    63
 * modify precursor method types, e.g., by changing a selected parameter.
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    64
 * <p>
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    65
 * Factory methods which operate on groups of parameter types
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    66
 * are systematically presented in two versions, so that both Java arrays and
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    67
 * Java lists can be used to work with groups of parameter types.
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    68
 * The query methods {@code parameterArray} and {@code parameterList}
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    69
 * also provide a choice between arrays and lists.
5722
4ada807383c8 6939134: JSR 292 adjustments to method handle invocation
jrose
parents: 4537
diff changeset
    70
 * <p>
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    71
 * {@code MethodType} objects are sometimes derived from bytecode instructions
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    72
 * such as {@code invokedynamic}, specifically from the type descriptor strings associated
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    73
 * with the instructions in a class file's constant pool.
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
    74
 * <p>
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    75
 * Like classes and strings, method types can also be represented directly
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
    76
 * in a class file's constant pool as constants.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
    77
 * A method type may be loaded by an {@code ldc} instruction which refers
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
    78
 * to a suitable {@code CONSTANT_MethodType} constant pool entry.
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    79
 * The entry refers to a {@code CONSTANT_Utf8} spelling for the descriptor string.
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    80
 * For more details, see the <a href="package-summary.html#mtcon">package summary</a>.
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    81
 * <p>
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    82
 * When the JVM materializes a {@code MethodType} from a descriptor string,
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    83
 * all classes named in the descriptor must be accessible, and will be loaded.
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    84
 * (But the classes need not be initialized, as is the case with a {@code CONSTANT_Class}.)
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    85
 * This loading may occur at any time before the {@code MethodType} object is first derived.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    86
 * @author John Rose, JSR 292 EG
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    87
 */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    88
public final
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    89
class MethodType implements java.io.Serializable {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    90
    private static final long serialVersionUID = 292L;  // {rtype, {ptype...}}
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    91
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    92
    // The rtype and ptypes fields define the structural identity of the method type:
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    93
    private final Class<?>   rtype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    94
    private final Class<?>[] ptypes;
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    95
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    96
    // The remaining fields are caches of various sorts:
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    97
    private MethodTypeForm form; // erased form, plus cached data about primitives
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    98
    private MethodType wrapAlt;  // alternative wrapped/unwrapped version
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    99
    private Invokers invokers;   // cache of handy higher-order adapters
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   100
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   101
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   102
     * Check the given parameters for validity and store them into the final fields.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   103
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   104
    private MethodType(Class<?> rtype, Class<?>[] ptypes) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   105
        checkRtype(rtype);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   106
        checkPtypes(ptypes);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   107
        this.rtype = rtype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   108
        this.ptypes = ptypes;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   109
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   110
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   111
    /*trusted*/ MethodTypeForm form() { return form; }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   112
    /*trusted*/ Class<?> rtype() { return rtype; }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   113
    /*trusted*/ Class<?>[] ptypes() { return ptypes; }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   114
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   115
    void setForm(MethodTypeForm f) { form = f; }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   116
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   117
    /** This number, mandated by the JVM spec as 255,
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   118
     *  is the maximum number of <em>slots</em>
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   119
     *  that any Java method can receive in its argument list.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   120
     *  It limits both JVM signatures and method type objects.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   121
     *  The longest possible invocation will look like
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   122
     *  {@code staticMethod(arg1, arg2, ..., arg255)} or
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   123
     *  {@code x.virtualMethod(arg1, arg2, ..., arg254)}.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   124
     */
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   125
    /*non-public*/ static final int MAX_JVM_ARITY = 255;  // this is mandated by the JVM spec.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   126
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   127
    /** This number is the maximum arity of a method handle, 254.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   128
     *  It is derived from the absolute JVM-imposed arity by subtracting one,
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   129
     *  which is the slot occupied by the method handle itself at the
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   130
     *  beginning of the argument list used to invoke the method handle.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   131
     *  The longest possible invocation will look like
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   132
     *  {@code mh.invoke(arg1, arg2, ..., arg254)}.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   133
     */
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   134
    // Issue:  Should we allow MH.invokeWithArguments to go to the full 255?
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   135
    /*non-public*/ static final int MAX_MH_ARITY = MAX_JVM_ARITY-1;  // deduct one for mh receiver
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   136
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   137
    /** This number is the maximum arity of a method handle invoker, 253.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   138
     *  It is derived from the absolute JVM-imposed arity by subtracting two,
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   139
     *  which are the slots occupied by invoke method handle, and the the
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   140
     *  target method handle, which are both at the beginning of the argument
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   141
     *  list used to invoke the target method handle.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   142
     *  The longest possible invocation will look like
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   143
     *  {@code invokermh.invoke(targetmh, arg1, arg2, ..., arg253)}.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   144
     */
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   145
    /*non-public*/ static final int MAX_MH_INVOKER_ARITY = MAX_MH_ARITY-1;  // deduct one more for invoker
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   146
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   147
    private static void checkRtype(Class<?> rtype) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   148
        rtype.equals(rtype);  // null check
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   149
    }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   150
    private static int checkPtype(Class<?> ptype) {
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   151
        ptype.getClass();  //NPE
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   152
        if (ptype == void.class)
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   153
            throw newIllegalArgumentException("parameter type cannot be void");
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   154
        if (ptype == double.class || ptype == long.class)  return 1;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   155
        return 0;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   156
    }
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   157
    /** Return number of extra slots (count of long/double args). */
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   158
    private static int checkPtypes(Class<?>[] ptypes) {
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   159
        int slots = 0;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   160
        for (Class<?> ptype : ptypes) {
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   161
            slots += checkPtype(ptype);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   162
        }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   163
        checkSlotCount(ptypes.length + slots);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   164
        return slots;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   165
    }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   166
    static void checkSlotCount(int count) {
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   167
        assert((MAX_JVM_ARITY & (MAX_JVM_ARITY+1)) == 0);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   168
        // MAX_JVM_ARITY must be power of 2 minus 1 for following code trick to work:
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   169
        if ((count & MAX_JVM_ARITY) != count)
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   170
            throw newIllegalArgumentException("bad parameter count "+count);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   171
    }
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   172
    private static IndexOutOfBoundsException newIndexOutOfBoundsException(Object num) {
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   173
        if (num instanceof Integer)  num = "bad index: "+num;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   174
        return new IndexOutOfBoundsException(num.toString());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   175
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   176
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
   177
    static final ConcurrentWeakInternSet<MethodType> internTable = new ConcurrentWeakInternSet<>();
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   178
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   179
    static final Class<?>[] NO_PTYPES = {};
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   180
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   181
    /**
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   182
     * Finds or creates an instance of the given method type.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   183
     * @param rtype  the return type
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   184
     * @param ptypes the parameter types
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   185
     * @return a method type with the given components
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   186
     * @throws NullPointerException if {@code rtype} or {@code ptypes} or any element of {@code ptypes} is null
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   187
     * @throws IllegalArgumentException if any element of {@code ptypes} is {@code void.class}
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   188
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   189
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   190
    MethodType methodType(Class<?> rtype, Class<?>[] ptypes) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   191
        return makeImpl(rtype, ptypes, false);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   192
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   193
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   194
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   195
     * Finds or creates a method type with the given components.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   196
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   197
     * @return a method type with the given components
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   198
     * @throws NullPointerException if {@code rtype} or {@code ptypes} or any element of {@code ptypes} is null
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   199
     * @throws IllegalArgumentException if any element of {@code ptypes} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   200
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   201
    public static
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   202
    MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) {
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   203
        boolean notrust = false;  // random List impl. could return evil ptypes array
9731
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   204
        return makeImpl(rtype, listToArray(ptypes), notrust);
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   205
    }
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   206
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   207
    private static Class<?>[] listToArray(List<Class<?>> ptypes) {
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   208
        // sanity check the size before the toArray call, since size might be huge
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   209
        checkSlotCount(ptypes.size());
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   210
        return ptypes.toArray(NO_PTYPES);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   211
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   212
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   213
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   214
     * Finds or creates a method type with the given components.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   215
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   216
     * The leading parameter type is prepended to the remaining array.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   217
     * @return a method type with the given components
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   218
     * @throws NullPointerException if {@code rtype} or {@code ptype0} or {@code ptypes} or any element of {@code ptypes} is null
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   219
     * @throws IllegalArgumentException if {@code ptype0} or {@code ptypes} or any element of {@code ptypes} is {@code void.class}
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   220
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   221
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   222
    MethodType methodType(Class<?> rtype, Class<?> ptype0, Class<?>... ptypes) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   223
        Class<?>[] ptypes1 = new Class<?>[1+ptypes.length];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   224
        ptypes1[0] = ptype0;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   225
        System.arraycopy(ptypes, 0, ptypes1, 1, ptypes.length);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   226
        return makeImpl(rtype, ptypes1, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   227
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   228
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   229
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   230
     * Finds or creates a method type with the given components.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   231
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   232
     * The resulting method has no parameter types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   233
     * @return a method type with the given return value
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   234
     * @throws NullPointerException if {@code rtype} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   235
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   236
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   237
    MethodType methodType(Class<?> rtype) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   238
        return makeImpl(rtype, NO_PTYPES, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   239
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   240
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   241
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   242
     * Finds or creates a method type with the given components.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   243
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   244
     * The resulting method has the single given parameter type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   245
     * @return a method type with the given return value and parameter type
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   246
     * @throws NullPointerException if {@code rtype} or {@code ptype0} is null
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   247
     * @throws IllegalArgumentException if {@code ptype0} is {@code void.class}
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   248
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   249
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   250
    MethodType methodType(Class<?> rtype, Class<?> ptype0) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   251
        return makeImpl(rtype, new Class<?>[]{ ptype0 }, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   252
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   253
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   254
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   255
     * Finds or creates a method type with the given components.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   256
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   257
     * The resulting method has the same parameter types as {@code ptypes},
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   258
     * and the specified return type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   259
     * @throws NullPointerException if {@code rtype} or {@code ptypes} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   260
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   261
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   262
    MethodType methodType(Class<?> rtype, MethodType ptypes) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   263
        return makeImpl(rtype, ptypes.ptypes, true);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   264
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   265
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   266
    /**
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   267
     * Sole factory method to find or create an interned method type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   268
     * @param rtype desired return type
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   269
     * @param ptypes desired parameter types
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   270
     * @param trusted whether the ptypes can be used without cloning
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   271
     * @return the unique method type of the desired structure
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   272
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   273
    /*trusted*/ static
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   274
    MethodType makeImpl(Class<?> rtype, Class<?>[] ptypes, boolean trusted) {
9731
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   275
        if (ptypes.length == 0) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   276
            ptypes = NO_PTYPES; trusted = true;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   277
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   278
        MethodType mt1 = new MethodType(rtype, ptypes);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   279
        MethodType mt0 = internTable.get(mt1);
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
   280
        if (mt0 != null)
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
   281
            return mt0;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   282
        if (!trusted)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   283
            // defensively copy the array passed in by the user
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   284
            mt1 = new MethodType(rtype, ptypes.clone());
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   285
        // promote the object to the Real Thing, and reprobe
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   286
        MethodTypeForm form = MethodTypeForm.findForm(mt1);
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   287
        mt1.form = form;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
   288
        return internTable.add(mt1);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   289
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   290
    private static final MethodType[] objectOnlyTypes = new MethodType[20];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   291
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   292
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   293
     * Finds or creates a method type whose components are {@code Object} with an optional trailing {@code Object[]} array.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   294
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   295
     * All parameters and the return type will be {@code Object},
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   296
     * except the final array parameter if any, which will be {@code Object[]}.
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   297
     * @param objectArgCount number of parameters (excluding the final array parameter if any)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   298
     * @param finalArray whether there will be a trailing array parameter, of type {@code Object[]}
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   299
     * @return a generally applicable method type, for all calls of the given fixed argument count and a collected array of further arguments
9752
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   300
     * @throws IllegalArgumentException if {@code objectArgCount} is negative or greater than 255 (or 254, if {@code finalArray} is true)
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   301
     * @see #genericMethodType(int)
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   302
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   303
    public static
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   304
    MethodType genericMethodType(int objectArgCount, boolean finalArray) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   305
        MethodType mt;
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   306
        checkSlotCount(objectArgCount);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   307
        int ivarargs = (!finalArray ? 0 : 1);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   308
        int ootIndex = objectArgCount*2 + ivarargs;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   309
        if (ootIndex < objectOnlyTypes.length) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   310
            mt = objectOnlyTypes[ootIndex];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   311
            if (mt != null)  return mt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   312
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   313
        Class<?>[] ptypes = new Class<?>[objectArgCount + ivarargs];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   314
        Arrays.fill(ptypes, Object.class);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   315
        if (ivarargs != 0)  ptypes[objectArgCount] = Object[].class;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   316
        mt = makeImpl(Object.class, ptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   317
        if (ootIndex < objectOnlyTypes.length) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   318
            objectOnlyTypes[ootIndex] = mt;     // cache it here also!
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   319
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   320
        return mt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   321
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   322
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   323
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   324
     * Finds or creates a method type whose components are all {@code Object}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   325
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   326
     * All parameters and the return type will be Object.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   327
     * @param objectArgCount number of parameters
9645
dabb5e4edc4c 7034977: JSR 292 MethodHandle.invokeGeneric should be renamed MethodHandle.invoke
jrose
parents: 8822
diff changeset
   328
     * @return a generally applicable method type, for all calls of the given argument count
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   329
     * @throws IllegalArgumentException if {@code objectArgCount} is negative or greater than 255
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   330
     * @see #genericMethodType(int, boolean)
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   331
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   332
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   333
    MethodType genericMethodType(int objectArgCount) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   334
        return genericMethodType(objectArgCount, false);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   335
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   336
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   337
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   338
     * Finds or creates a method type with a single different parameter type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   339
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   340
     * @param num    the index (zero-based) of the parameter type to change
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   341
     * @param nptype a new parameter type to replace the old one with
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   342
     * @return the same type, except with the selected parameter changed
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   343
     * @throws IndexOutOfBoundsException if {@code num} is not a valid index into {@code parameterArray()}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   344
     * @throws IllegalArgumentException if {@code nptype} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   345
     * @throws NullPointerException if {@code nptype} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   346
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   347
    public MethodType changeParameterType(int num, Class<?> nptype) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   348
        if (parameterType(num) == nptype)  return this;
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   349
        checkPtype(nptype);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   350
        Class<?>[] nptypes = ptypes.clone();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   351
        nptypes[num] = nptype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   352
        return makeImpl(rtype, nptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   353
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   354
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   355
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   356
     * Finds or creates a method type with additional parameter types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   357
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   358
     * @param num    the position (zero-based) of the inserted parameter type(s)
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   359
     * @param ptypesToInsert zero or more new parameter types to insert into the parameter list
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   360
     * @return the same type, except with the selected parameter(s) inserted
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   361
     * @throws IndexOutOfBoundsException if {@code num} is negative or greater than {@code parameterCount()}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   362
     * @throws IllegalArgumentException if any element of {@code ptypesToInsert} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   363
     *                                  or if the resulting method type would have more than 255 parameter slots
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   364
     * @throws NullPointerException if {@code ptypesToInsert} or any of its elements is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   365
     */
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   366
    public MethodType insertParameterTypes(int num, Class<?>... ptypesToInsert) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   367
        int len = ptypes.length;
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   368
        if (num < 0 || num > len)
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   369
            throw newIndexOutOfBoundsException(num);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   370
        int ins = checkPtypes(ptypesToInsert);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   371
        checkSlotCount(parameterSlotCount() + ptypesToInsert.length + ins);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   372
        int ilen = ptypesToInsert.length;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   373
        if (ilen == 0)  return this;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   374
        Class<?>[] nptypes = Arrays.copyOfRange(ptypes, 0, len+ilen);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   375
        System.arraycopy(nptypes, num, nptypes, num+ilen, len-num);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   376
        System.arraycopy(ptypesToInsert, 0, nptypes, num, ilen);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   377
        return makeImpl(rtype, nptypes, true);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   378
    }
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   379
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   380
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   381
     * Finds or creates a method type with additional parameter types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   382
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   383
     * @param ptypesToInsert zero or more new parameter types to insert after the end of the parameter list
7555
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   384
     * @return the same type, except with the selected parameter(s) appended
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   385
     * @throws IllegalArgumentException if any element of {@code ptypesToInsert} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   386
     *                                  or if the resulting method type would have more than 255 parameter slots
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   387
     * @throws NullPointerException if {@code ptypesToInsert} or any of its elements is null
7555
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   388
     */
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   389
    public MethodType appendParameterTypes(Class<?>... ptypesToInsert) {
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   390
        return insertParameterTypes(parameterCount(), ptypesToInsert);
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   391
    }
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   392
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   393
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   394
     * Finds or creates a method type with additional parameter types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   395
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   396
     * @param num    the position (zero-based) of the inserted parameter type(s)
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   397
     * @param ptypesToInsert zero or more new parameter types to insert into the parameter list
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   398
     * @return the same type, except with the selected parameter(s) inserted
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   399
     * @throws IndexOutOfBoundsException if {@code num} is negative or greater than {@code parameterCount()}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   400
     * @throws IllegalArgumentException if any element of {@code ptypesToInsert} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   401
     *                                  or if the resulting method type would have more than 255 parameter slots
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   402
     * @throws NullPointerException if {@code ptypesToInsert} or any of its elements is null
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   403
     */
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   404
    public MethodType insertParameterTypes(int num, List<Class<?>> ptypesToInsert) {
9731
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   405
        return insertParameterTypes(num, listToArray(ptypesToInsert));
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   406
    }
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   407
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   408
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   409
     * Finds or creates a method type with additional parameter types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   410
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   411
     * @param ptypesToInsert zero or more new parameter types to insert after the end of the parameter list
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   412
     * @return the same type, except with the selected parameter(s) appended
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   413
     * @throws IllegalArgumentException if any element of {@code ptypesToInsert} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   414
     *                                  or if the resulting method type would have more than 255 parameter slots
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   415
     * @throws NullPointerException if {@code ptypesToInsert} or any of its elements is null
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   416
     */
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   417
    public MethodType appendParameterTypes(List<Class<?>> ptypesToInsert) {
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   418
        return insertParameterTypes(parameterCount(), ptypesToInsert);
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   419
    }
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   420
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   421
     /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   422
     * Finds or creates a method type with modified parameter types.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   423
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   424
     * @param start  the position (zero-based) of the first replaced parameter type(s)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   425
     * @param end    the position (zero-based) after the last replaced parameter type(s)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   426
     * @param ptypesToInsert zero or more new parameter types to insert into the parameter list
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   427
     * @return the same type, except with the selected parameter(s) replaced
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   428
     * @throws IndexOutOfBoundsException if {@code start} is negative or greater than {@code parameterCount()}
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   429
     *                                  or if {@code end} is negative or greater than {@code parameterCount()}
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   430
     *                                  or if {@code start} is greater than {@code end}
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   431
     * @throws IllegalArgumentException if any element of {@code ptypesToInsert} is {@code void.class}
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   432
     *                                  or if the resulting method type would have more than 255 parameter slots
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   433
     * @throws NullPointerException if {@code ptypesToInsert} or any of its elements is null
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   434
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   435
    /*non-public*/ MethodType replaceParameterTypes(int start, int end, Class<?>... ptypesToInsert) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   436
        if (start == end)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   437
            return insertParameterTypes(start, ptypesToInsert);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   438
        int len = ptypes.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   439
        if (!(0 <= start && start <= end && end <= len))
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   440
            throw newIndexOutOfBoundsException("start="+start+" end="+end);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   441
        int ilen = ptypesToInsert.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   442
        if (ilen == 0)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   443
            return dropParameterTypes(start, end);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   444
        return dropParameterTypes(start, end).insertParameterTypes(start, ptypesToInsert);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   445
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   446
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   447
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   448
     * Finds or creates a method type with some parameter types omitted.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   449
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   450
     * @param start  the index (zero-based) of the first parameter type to remove
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   451
     * @param end    the index (greater than {@code start}) of the first parameter type after not to remove
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   452
     * @return the same type, except with the selected parameter(s) removed
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   453
     * @throws IndexOutOfBoundsException if {@code start} is negative or greater than {@code parameterCount()}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   454
     *                                  or if {@code end} is negative or greater than {@code parameterCount()}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   455
     *                                  or if {@code start} is greater than {@code end}
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   456
     */
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   457
    public MethodType dropParameterTypes(int start, int end) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   458
        int len = ptypes.length;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   459
        if (!(0 <= start && start <= end && end <= len))
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   460
            throw newIndexOutOfBoundsException("start="+start+" end="+end);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   461
        if (start == end)  return this;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   462
        Class<?>[] nptypes;
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   463
        if (start == 0) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   464
            if (end == len) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   465
                // drop all parameters
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   466
                nptypes = NO_PTYPES;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   467
            } else {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   468
                // drop initial parameter(s)
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   469
                nptypes = Arrays.copyOfRange(ptypes, end, len);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   470
            }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   471
        } else {
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   472
            if (end == len) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   473
                // drop trailing parameter(s)
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   474
                nptypes = Arrays.copyOfRange(ptypes, 0, start);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   475
            } else {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   476
                int tail = len - end;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   477
                nptypes = Arrays.copyOfRange(ptypes, 0, start + tail);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   478
                System.arraycopy(ptypes, end, nptypes, start, tail);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   479
            }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   480
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   481
        return makeImpl(rtype, nptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   482
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   483
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   484
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   485
     * Finds or creates a method type with a different return type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   486
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   487
     * @param nrtype a return parameter type to replace the old one with
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   488
     * @return the same type, except with the return type change
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   489
     * @throws NullPointerException if {@code nrtype} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   490
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   491
    public MethodType changeReturnType(Class<?> nrtype) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   492
        if (returnType() == nrtype)  return this;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   493
        return makeImpl(nrtype, ptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   494
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   495
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   496
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   497
     * Reports if this type contains a primitive argument or return value.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   498
     * The return type {@code void} counts as a primitive.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   499
     * @return true if any of the types are primitives
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   500
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   501
    public boolean hasPrimitives() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   502
        return form.hasPrimitives();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   503
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   504
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   505
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   506
     * Reports if this type contains a wrapper argument or return value.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   507
     * Wrappers are types which box primitive values, such as {@link Integer}.
9752
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   508
     * The reference type {@code java.lang.Void} counts as a wrapper,
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   509
     * if it occurs as a return type.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   510
     * @return true if any of the types are wrappers
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   511
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   512
    public boolean hasWrappers() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   513
        return unwrap() != this;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   514
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   515
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   516
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   517
     * Erases all reference types to {@code Object}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   518
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   519
     * All primitive types (including {@code void}) will remain unchanged.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   520
     * @return a version of the original type with all reference types replaced
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   521
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   522
    public MethodType erase() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   523
        return form.erasedType();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   524
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   525
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   526
    /**
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   527
     * Erases all reference types to {@code Object}, and all subword types to {@code int}.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   528
     * This is the reduced type polymorphism used by private methods
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   529
     * such as {@link MethodHandle#invokeBasic invokeBasic}.
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   530
     * @return a version of the original type with all reference and subword types replaced
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   531
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   532
    /*non-public*/ MethodType basicType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   533
        return form.basicType();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   534
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   535
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   536
    /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   537
     * @return a version of the original type with MethodHandle prepended as the first argument
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   538
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   539
    /*non-public*/ MethodType invokerType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   540
        return insertParameterTypes(0, MethodHandle.class);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   541
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   542
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   543
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   544
     * Converts all types, both reference and primitive, to {@code Object}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   545
     * Convenience method for {@link #genericMethodType(int) genericMethodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   546
     * The expression {@code type.wrap().erase()} produces the same value
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   547
     * as {@code type.generic()}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   548
     * @return a version of the original type with all types replaced
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   549
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   550
    public MethodType generic() {
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   551
        return genericMethodType(parameterCount());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   552
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   553
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   554
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   555
     * Converts all primitive types to their corresponding wrapper types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   556
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   557
     * All reference types (including wrapper types) will remain unchanged.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   558
     * A {@code void} return type is changed to the type {@code java.lang.Void}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   559
     * The expression {@code type.wrap().erase()} produces the same value
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   560
     * as {@code type.generic()}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   561
     * @return a version of the original type with all primitive types replaced
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   562
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   563
    public MethodType wrap() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   564
        return hasPrimitives() ? wrapWithPrims(this) : this;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   565
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   566
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   567
    /**
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   568
     * Converts all wrapper types to their corresponding primitive types.
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   569
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   570
     * All primitive types (including {@code void}) will remain unchanged.
2763
172d44ffd1e5 6839802: java.dyn needs to be on the CORE_PKGS list
jrose
parents: 2707
diff changeset
   571
     * A return type of {@code java.lang.Void} is changed to {@code void}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   572
     * @return a version of the original type with all wrapper types replaced
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   573
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   574
    public MethodType unwrap() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   575
        MethodType noprims = !hasPrimitives() ? this : wrapWithPrims(this);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   576
        return unwrapWithNoPrims(noprims);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   577
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   578
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   579
    private static MethodType wrapWithPrims(MethodType pt) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   580
        assert(pt.hasPrimitives());
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   581
        MethodType wt = pt.wrapAlt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   582
        if (wt == null) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   583
            // fill in lazily
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   584
            wt = MethodTypeForm.canonicalize(pt, MethodTypeForm.WRAP, MethodTypeForm.WRAP);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   585
            assert(wt != null);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   586
            pt.wrapAlt = wt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   587
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   588
        return wt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   589
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   590
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   591
    private static MethodType unwrapWithNoPrims(MethodType wt) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   592
        assert(!wt.hasPrimitives());
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   593
        MethodType uwt = wt.wrapAlt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   594
        if (uwt == null) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   595
            // fill in lazily
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   596
            uwt = MethodTypeForm.canonicalize(wt, MethodTypeForm.UNWRAP, MethodTypeForm.UNWRAP);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   597
            if (uwt == null)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   598
                uwt = wt;    // type has no wrappers or prims at all
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   599
            wt.wrapAlt = uwt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   600
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   601
        return uwt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   602
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   603
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   604
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   605
     * Returns the parameter type at the specified index, within this method type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   606
     * @param num the index (zero-based) of the desired parameter type
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   607
     * @return the selected parameter type
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   608
     * @throws IndexOutOfBoundsException if {@code num} is not a valid index into {@code parameterArray()}
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   609
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   610
    public Class<?> parameterType(int num) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   611
        return ptypes[num];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   612
    }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   613
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   614
     * Returns the number of parameter types in this method type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   615
     * @return the number of parameter types
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   616
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   617
    public int parameterCount() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   618
        return ptypes.length;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   619
    }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   620
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   621
     * Returns the return type of this method type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   622
     * @return the return type
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   623
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   624
    public Class<?> returnType() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   625
        return rtype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   626
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   627
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   628
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   629
     * Presents the parameter types as a list (a convenience method).
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   630
     * The list will be immutable.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   631
     * @return the parameter types (as an immutable list)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   632
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   633
    public List<Class<?>> parameterList() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   634
        return Collections.unmodifiableList(Arrays.asList(ptypes));
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   635
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   636
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   637
    /*non-public*/ Class<?> lastParameterType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   638
        int len = ptypes.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   639
        return len == 0 ? void.class : ptypes[len-1];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   640
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   641
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   642
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   643
     * Presents the parameter types as an array (a convenience method).
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   644
     * Changes to the array will not result in changes to the type.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   645
     * @return the parameter types (as a fresh copy if necessary)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   646
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   647
    public Class<?>[] parameterArray() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   648
        return ptypes.clone();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   649
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   650
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   651
    /**
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   652
     * Compares the specified object with this type for equality.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   653
     * That is, it returns <tt>true</tt> if and only if the specified object
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   654
     * is also a method type with exactly the same parameters and return type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   655
     * @param x object to compare
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   656
     * @see Object#equals(Object)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   657
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   658
    @Override
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   659
    public boolean equals(Object x) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   660
        return this == x || x instanceof MethodType && equals((MethodType)x);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   661
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   662
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   663
    private boolean equals(MethodType that) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   664
        return this.rtype == that.rtype
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   665
            && Arrays.equals(this.ptypes, that.ptypes);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   666
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   667
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   668
    /**
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   669
     * Returns the hash code value for this method type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   670
     * It is defined to be the same as the hashcode of a List
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   671
     * whose elements are the return type followed by the
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   672
     * parameter types.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   673
     * @return the hash code value for this method type
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   674
     * @see Object#hashCode()
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   675
     * @see #equals(Object)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   676
     * @see List#hashCode()
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   677
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   678
    @Override
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   679
    public int hashCode() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   680
      int hashCode = 31 + rtype.hashCode();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   681
      for (Class<?> ptype : ptypes)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   682
          hashCode = 31*hashCode + ptype.hashCode();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   683
      return hashCode;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   684
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   685
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   686
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   687
     * Returns a string representation of the method type,
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   688
     * of the form {@code "(PT0,PT1...)RT"}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   689
     * The string representation of a method type is a
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   690
     * parenthesis enclosed, comma separated list of type names,
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   691
     * followed immediately by the return type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   692
     * <p>
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   693
     * Each type is represented by its
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   694
     * {@link java.lang.Class#getSimpleName simple name}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   695
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   696
    @Override
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   697
    public String toString() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   698
        StringBuilder sb = new StringBuilder();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   699
        sb.append("(");
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   700
        for (int i = 0; i < ptypes.length; i++) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   701
            if (i > 0)  sb.append(",");
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   702
            sb.append(ptypes[i].getSimpleName());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   703
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   704
        sb.append(")");
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   705
        sb.append(rtype.getSimpleName());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   706
        return sb.toString();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   707
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   708
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   709
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   710
    /*non-public*/
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   711
    boolean isViewableAs(MethodType newType) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   712
        if (!VerifyType.isNullConversion(returnType(), newType.returnType()))
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   713
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   714
        int argc = parameterCount();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   715
        if (argc != newType.parameterCount())
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   716
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   717
        for (int i = 0; i < argc; i++) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   718
            if (!VerifyType.isNullConversion(newType.parameterType(i), parameterType(i)))
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   719
                return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   720
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   721
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   722
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   723
    /*non-public*/
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   724
    boolean isCastableTo(MethodType newType) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   725
        int argc = parameterCount();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   726
        if (argc != newType.parameterCount())
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   727
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   728
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   729
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   730
    /*non-public*/
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   731
    boolean isConvertibleTo(MethodType newType) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   732
        if (!canConvert(returnType(), newType.returnType()))
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   733
            return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   734
        int argc = parameterCount();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   735
        if (argc != newType.parameterCount())
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   736
            return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   737
        for (int i = 0; i < argc; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   738
            if (!canConvert(newType.parameterType(i), parameterType(i)))
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   739
                return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   740
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   741
        return true;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   742
    }
9731
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   743
    /*non-public*/
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   744
    static boolean canConvert(Class<?> src, Class<?> dst) {
9752
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   745
        // short-circuit a few cases:
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   746
        if (src == dst || dst == Object.class)  return true;
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   747
        // the remainder of this logic is documented in MethodHandle.asType
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   748
        if (src.isPrimitive()) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   749
            // can force void to an explicit null, a la reflect.Method.invoke
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   750
            // can also force void to a primitive zero, by analogy
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   751
            if (src == void.class)  return true;  //or !dst.isPrimitive()?
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   752
            Wrapper sw = Wrapper.forPrimitiveType(src);
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   753
            if (dst.isPrimitive()) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   754
                // P->P must widen
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   755
                return Wrapper.forPrimitiveType(dst).isConvertibleFrom(sw);
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   756
            } else {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   757
                // P->R must box and widen
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   758
                return dst.isAssignableFrom(sw.wrapperType());
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   759
            }
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   760
        } else if (dst.isPrimitive()) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   761
            // any value can be dropped
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   762
            if (dst == void.class)  return true;
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   763
            Wrapper dw = Wrapper.forPrimitiveType(dst);
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   764
            // R->P must be able to unbox (from a dynamically chosen type) and widen
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   765
            // For example:
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   766
            //   Byte/Number/Comparable/Object -> dw:Byte -> byte.
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   767
            //   Character/Comparable/Object -> dw:Character -> char
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   768
            //   Boolean/Comparable/Object -> dw:Boolean -> boolean
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   769
            // This means that dw must be cast-compatible with src.
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   770
            if (src.isAssignableFrom(dw.wrapperType())) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   771
                return true;
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   772
            }
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   773
            // The above does not work if the source reference is strongly typed
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   774
            // to a wrapper whose primitive must be widened.  For example:
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   775
            //   Byte -> unbox:byte -> short/int/long/float/double
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   776
            //   Character -> unbox:char -> int/long/float/double
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   777
            if (Wrapper.isWrapperType(src) &&
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   778
                dw.isConvertibleFrom(Wrapper.forWrapperType(src))) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   779
                // can unbox from src and then widen to dst
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   780
                return true;
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   781
            }
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   782
            // We have already covered cases which arise due to runtime unboxing
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   783
            // of a reference type which covers several wrapper types:
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   784
            //   Object -> cast:Integer -> unbox:int -> long/float/double
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   785
            //   Serializable -> cast:Byte -> unbox:byte -> byte/short/int/long/float/double
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   786
            // An marginal case is Number -> dw:Character -> char, which would be OK if there were a
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   787
            // subclass of Number which wraps a value that can convert to char.
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   788
            // Since there is none, we don't need an extra check here to cover char or boolean.
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   789
            return false;
9752
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   790
        } else {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   791
            // R->R always works, since null is always valid dynamically
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   792
            return true;
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   793
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   794
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   795
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   796
    /// Queries which have to do with the bytecode architecture
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   797
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   798
    /** Reports the number of JVM stack slots required to invoke a method
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   799
     * of this type.  Note that (for historical reasons) the JVM requires
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   800
     * a second stack slot to pass long and double arguments.
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   801
     * So this method returns {@link #parameterCount() parameterCount} plus the
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   802
     * number of long and double parameters (if any).
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   803
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   804
     * This method is included for the benfit of applications that must
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   805
     * generate bytecodes that process method handles and invokedynamic.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   806
     * @return the number of JVM stack slots for this type's parameters
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   807
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   808
    /*non-public*/ int parameterSlotCount() {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   809
        return form.parameterSlotCount();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   810
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   811
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   812
    /*non-public*/ Invokers invokers() {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   813
        Invokers inv = invokers;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   814
        if (inv != null)  return inv;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   815
        invokers = inv = new Invokers(this);
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   816
        return inv;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   817
    }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   818
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   819
    /** Reports the number of JVM stack slots which carry all parameters including and after
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   820
     * the given position, which must be in the range of 0 to
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   821
     * {@code parameterCount} inclusive.  Successive parameters are
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   822
     * more shallowly stacked, and parameters are indexed in the bytecodes
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   823
     * according to their trailing edge.  Thus, to obtain the depth
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   824
     * in the outgoing call stack of parameter {@code N}, obtain
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   825
     * the {@code parameterSlotDepth} of its trailing edge
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   826
     * at position {@code N+1}.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   827
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   828
     * Parameters of type {@code long} and {@code double} occupy
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   829
     * two stack slots (for historical reasons) and all others occupy one.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   830
     * Therefore, the number returned is the number of arguments
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   831
     * <em>including</em> and <em>after</em> the given parameter,
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   832
     * <em>plus</em> the number of long or double arguments
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   833
     * at or after after the argument for the given parameter.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   834
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   835
     * This method is included for the benfit of applications that must
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   836
     * generate bytecodes that process method handles and invokedynamic.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   837
     * @param num an index (zero-based, inclusive) within the parameter types
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   838
     * @return the index of the (shallowest) JVM stack slot transmitting the
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   839
     *         given parameter
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   840
     * @throws IllegalArgumentException if {@code num} is negative or greater than {@code parameterCount()}
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   841
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   842
    /*non-public*/ int parameterSlotDepth(int num) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   843
        if (num < 0 || num > ptypes.length)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   844
            parameterType(num);  // force a range check
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   845
        return form.parameterToArgSlot(num-1);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   846
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   847
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   848
    /** Reports the number of JVM stack slots required to receive a return value
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   849
     * from a method of this type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   850
     * If the {@link #returnType() return type} is void, it will be zero,
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   851
     * else if the return type is long or double, it will be two, else one.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   852
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   853
     * This method is included for the benfit of applications that must
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   854
     * generate bytecodes that process method handles and invokedynamic.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   855
     * @return the number of JVM stack slots (0, 1, or 2) for this type's return value
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   856
     * Will be removed for PFD.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   857
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   858
    /*non-public*/ int returnSlotCount() {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   859
        return form.returnSlotCount();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   860
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   861
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   862
    /**
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   863
     * Finds or creates an instance of a method type, given the spelling of its bytecode descriptor.
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   864
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
   865
     * Any class or interface name embedded in the descriptor string
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   866
     * will be resolved by calling {@link ClassLoader#loadClass(java.lang.String)}
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   867
     * on the given loader (or if it is null, on the system class loader).
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   868
     * <p>
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
   869
     * Note that it is possible to encounter method types which cannot be
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   870
     * constructed by this method, because their component types are
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   871
     * not all reachable from a common class loader.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   872
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   873
     * This method is included for the benfit of applications that must
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   874
     * generate bytecodes that process method handles and {@code invokedynamic}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   875
     * @param descriptor a bytecode-level type descriptor string "(T...)T"
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   876
     * @param loader the class loader in which to look up the types
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   877
     * @return a method type matching the bytecode-level type descriptor
9752
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   878
     * @throws NullPointerException if the string is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   879
     * @throws IllegalArgumentException if the string is not well-formed
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   880
     * @throws TypeNotPresentException if a named type cannot be found
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   881
     */
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   882
    public static MethodType fromMethodDescriptorString(String descriptor, ClassLoader loader)
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   883
        throws IllegalArgumentException, TypeNotPresentException
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   884
    {
9731
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   885
        if (!descriptor.startsWith("(") ||  // also generates NPE if needed
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   886
            descriptor.indexOf(')') < 0 ||
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   887
            descriptor.indexOf('.') >= 0)
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   888
            throw new IllegalArgumentException("not a method descriptor: "+descriptor);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   889
        List<Class<?>> types = BytecodeDescriptor.parseMethod(descriptor, loader);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   890
        Class<?> rtype = types.remove(types.size() - 1);
9731
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   891
        checkSlotCount(types.size());
d0f7a3e441c4 7044892: JSR 292: API entry points sometimes throw the wrong exceptions or doesn't throw the expected one
jrose
parents: 9646
diff changeset
   892
        Class<?>[] ptypes = listToArray(types);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   893
        return makeImpl(rtype, ptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   894
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   895
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   896
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   897
     * Produces a bytecode descriptor representation of the method type.
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
   898
     * <p>
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   899
     * Note that this is not a strict inverse of {@link #fromMethodDescriptorString fromMethodDescriptorString}.
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
   900
     * Two distinct classes which share a common name but have different class loaders
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
   901
     * will appear identical when viewed within descriptor strings.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   902
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   903
     * This method is included for the benfit of applications that must
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   904
     * generate bytecodes that process method handles and {@code invokedynamic}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   905
     * {@link #fromMethodDescriptorString(java.lang.String, java.lang.ClassLoader) fromMethodDescriptorString},
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   906
     * because the latter requires a suitable class loader argument.
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   907
     * @return the bytecode type descriptor representation
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   908
     */
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   909
    public String toMethodDescriptorString() {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   910
        return BytecodeDescriptor.unparse(this);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   911
    }
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   912
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   913
    /*non-public*/ static String toFieldDescriptorString(Class<?> cls) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   914
        return BytecodeDescriptor.unparse(cls);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   915
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   916
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   917
    /// Serialization.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   918
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   919
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   920
     * There are no serializable fields for {@code MethodType}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   921
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   922
    private static final java.io.ObjectStreamField[] serialPersistentFields = { };
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   923
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   924
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   925
     * Save the {@code MethodType} instance to a stream.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   926
     *
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   927
     * @serialData
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   928
     * For portability, the serialized format does not refer to named fields.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   929
     * Instead, the return type and parameter type arrays are written directly
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   930
     * from the {@code writeObject} method, using two calls to {@code s.writeObject}
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   931
     * as follows:
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   932
     * <blockquote><pre>
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   933
s.writeObject(this.returnType());
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   934
s.writeObject(this.parameterArray());
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   935
     * </pre></blockquote>
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   936
     * <p>
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   937
     * The deserialized field values are checked as if they were
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   938
     * provided to the factory method {@link #methodType(Class,Class[]) methodType}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   939
     * For example, null values, or {@code void} parameter types,
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   940
     * will lead to exceptions during deserialization.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   941
     * @param the stream to write the object to
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   942
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   943
    private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   944
        s.defaultWriteObject();  // requires serialPersistentFields to be an empty array
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   945
        s.writeObject(returnType());
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   946
        s.writeObject(parameterArray());
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   947
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   948
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   949
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   950
     * Reconstitute the {@code MethodType} instance from a stream (that is,
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   951
     * deserialize it).
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   952
     * This instance is a scratch object with bogus final fields.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   953
     * It provides the parameters to the factory method called by
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   954
     * {@link #readResolve readResolve}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   955
     * After that call it is discarded.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   956
     * @param the stream to read the object from
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   957
     * @see #MethodType()
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   958
     * @see #readResolve
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   959
     * @see #writeObject
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   960
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   961
    private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   962
        s.defaultReadObject();  // requires serialPersistentFields to be an empty array
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   963
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   964
        Class<?>   returnType     = (Class<?>)   s.readObject();
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   965
        Class<?>[] parameterArray = (Class<?>[]) s.readObject();
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   966
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   967
        // Probably this object will never escape, but let's check
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   968
        // the field values now, just to be sure.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   969
        checkRtype(returnType);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   970
        checkPtypes(parameterArray);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   971
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   972
        parameterArray = parameterArray.clone();  // make sure it is unshared
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   973
        MethodType_init(returnType, parameterArray);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   974
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   975
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   976
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   977
     * For serialization only.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   978
     * Sets the final fields to null, pending {@code Unsafe.putObject}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   979
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   980
    private MethodType() {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   981
        this.rtype = null;
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   982
        this.ptypes = null;
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   983
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   984
    private void MethodType_init(Class<?> rtype, Class<?>[] ptypes) {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   985
        // In order to communicate these values to readResolve, we must
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   986
        // store them into the implementation-specific final fields.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   987
        checkRtype(rtype);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   988
        checkPtypes(ptypes);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   989
        UNSAFE.putObject(this, rtypeOffset, rtype);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   990
        UNSAFE.putObject(this, ptypesOffset, ptypes);
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   991
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   992
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   993
    // Support for resetting final fields while deserializing
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   994
    private static final long rtypeOffset, ptypesOffset;
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   995
    static {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   996
        try {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   997
            rtypeOffset = UNSAFE.objectFieldOffset
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   998
                (MethodType.class.getDeclaredField("rtype"));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   999
            ptypesOffset = UNSAFE.objectFieldOffset
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1000
                (MethodType.class.getDeclaredField("ptypes"));
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1001
        } catch (Exception ex) {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1002
            throw new Error(ex);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1003
        }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1004
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1005
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1006
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1007
     * Resolves and initializes a {@code MethodType} object
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1008
     * after serialization.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1009
     * @return the fully initialized {@code MethodType} object
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1010
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1011
    private Object readResolve() {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1012
        // Do not use a trusted path for deserialization:
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1013
        //return makeImpl(rtype, ptypes, true);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1014
        // Verify all operands, and make sure ptypes is unshared:
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1015
        return methodType(rtype, ptypes);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1016
    }
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1017
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1018
    /**
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1019
     * Simple implementation of weak concurrent intern set.
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1020
     *
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1021
     * @param <T> interned type
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1022
     */
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1023
    private static class ConcurrentWeakInternSet<T> {
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1024
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1025
        private final ConcurrentMap<WeakEntry<T>, WeakEntry<T>> map;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1026
        private final ReferenceQueue<T> stale;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1027
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1028
        public ConcurrentWeakInternSet() {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1029
            this.map = new ConcurrentHashMap<>();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1030
            this.stale = new ReferenceQueue<>();
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1031
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1032
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1033
        /**
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1034
         * Get the existing interned element.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1035
         * This method returns null if no element is interned.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1036
         *
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1037
         * @param elem element to look up
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1038
         * @return the interned element
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1039
         */
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1040
        public T get(T elem) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1041
            if (elem == null) throw new NullPointerException();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1042
            expungeStaleElements();
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1043
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1044
            WeakEntry<T> value = map.get(new WeakEntry<>(elem));
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1045
            if (value != null) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1046
                T res = value.get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1047
                if (res != null) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1048
                    return res;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1049
                }
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1050
            }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1051
            return null;
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1052
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1053
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1054
        /**
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1055
         * Interns the element.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1056
         * Always returns non-null element, matching the one in the intern set.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1057
         * Under the race against another add(), it can return <i>different</i>
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1058
         * element, if another thread beats us to interning it.
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1059
         *
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1060
         * @param elem element to add
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1061
         * @return element that was actually added
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1062
         */
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1063
        public T add(T elem) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1064
            if (elem == null) throw new NullPointerException();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1065
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1066
            // Playing double race here, and so spinloop is required.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1067
            // First race is with two concurrent updaters.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1068
            // Second race is with GC purging weak ref under our feet.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1069
            // Hopefully, we almost always end up with a single pass.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1070
            T interned;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1071
            WeakEntry<T> e = new WeakEntry<>(elem, stale);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1072
            do {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1073
                expungeStaleElements();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1074
                WeakEntry<T> exist = map.putIfAbsent(e, e);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1075
                interned = (exist == null) ? elem : exist.get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1076
            } while (interned == null);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1077
            return interned;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1078
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1079
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1080
        private void expungeStaleElements() {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1081
            Reference<? extends T> reference;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1082
            while ((reference = stale.poll()) != null) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1083
                map.remove(reference);
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1084
            }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1085
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1086
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1087
        private static class WeakEntry<T> extends WeakReference<T> {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1088
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1089
            public final int hashcode;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1090
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1091
            public WeakEntry(T key, ReferenceQueue<T> queue) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1092
                super(key, queue);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1093
                hashcode = key.hashCode();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1094
            }
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1095
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1096
            public WeakEntry(T key) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1097
                super(key);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1098
                hashcode = key.hashCode();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1099
            }
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1100
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1101
            @Override
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1102
            public boolean equals(Object obj) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1103
                if (obj instanceof WeakEntry) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1104
                    Object that = ((WeakEntry) obj).get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1105
                    Object mine = get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1106
                    return (that == null || mine == null) ? (this == obj) : mine.equals(that);
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1107
                }
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1108
                return false;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1109
            }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1110
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1111
            @Override
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1112
            public int hashCode() {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1113
                return hashcode;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1114
            }
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1115
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1116
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1117
    }
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1118
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
  1119
}