jdk/src/share/classes/java/lang/invoke/MethodType.java
author malenkov
Tue, 29 Oct 2013 17:01:06 +0400
changeset 21278 ef8a3a2a72f2
parent 20877 83ea903d5cf1
child 21637 fcaf599f308f
permissions -rw-r--r--
8022746: List of spelling errors in API doc Reviewed-by: alexsch, smarks
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.
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20494
diff changeset
    80
 * (For full details on method type constants,
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20494
diff changeset
    81
 * see sections 4.4.8 and 5.4.3.5 of the Java Virtual Machine Specification.)
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    82
 * <p>
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
    83
 * 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
    84
 * 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
    85
 * (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
    86
 * 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
    87
 * @author John Rose, JSR 292 EG
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    88
 */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    89
public final
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    90
class MethodType implements java.io.Serializable {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    91
    private static final long serialVersionUID = 292L;  // {rtype, {ptype...}}
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    92
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    93
    // 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
    94
    private final Class<?>   rtype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
    95
    private final Class<?>[] ptypes;
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    96
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
    97
    // The remaining fields are caches of various sorts:
20494
cf77ae5ff678 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18569
diff changeset
    98
    private @Stable MethodTypeForm form; // erased form, plus cached data about primitives
cf77ae5ff678 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18569
diff changeset
    99
    private @Stable MethodType wrapAlt;  // alternative wrapped/unwrapped version
cf77ae5ff678 8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents: 18569
diff changeset
   100
    private @Stable Invokers invokers;   // cache of handy higher-order adapters
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   101
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   102
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   103
     * 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
   104
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   105
    private MethodType(Class<?> rtype, Class<?>[] ptypes) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   106
        checkRtype(rtype);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   107
        checkPtypes(ptypes);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   108
        this.rtype = rtype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   109
        this.ptypes = ptypes;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   110
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   111
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   112
    /*trusted*/ MethodTypeForm form() { return form; }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   113
    /*trusted*/ Class<?> rtype() { return rtype; }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   114
    /*trusted*/ Class<?>[] ptypes() { return ptypes; }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   115
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   116
    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
   117
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   118
    /** 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
   119
     *  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
   120
     *  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
   121
     *  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
   122
     *  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
   123
     *  {@code staticMethod(arg1, arg2, ..., arg255)} or
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   124
     *  {@code x.virtualMethod(arg1, arg2, ..., arg254)}.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   125
     */
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   126
    /*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
   127
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   128
    /** 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
   129
     *  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
   130
     *  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
   131
     *  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
   132
     *  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
   133
     *  {@code mh.invoke(arg1, arg2, ..., arg254)}.
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   134
     */
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   135
    // 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
   136
    /*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
   137
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   138
    /** 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
   139
     *  It is derived from the absolute JVM-imposed arity by subtracting two,
20877
83ea903d5cf1 8026183: minor documentation problems in java.lang.invoke
rriggs
parents: 20535
diff changeset
   140
     *  which are the slots occupied by invoke method handle, and the
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   141
     *  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
   142
     *  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
   143
     *  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
   144
     *  {@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
   145
     */
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   146
    /*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
   147
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   148
    private static void checkRtype(Class<?> rtype) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   149
        rtype.equals(rtype);  // null check
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   150
    }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   151
    private static int checkPtype(Class<?> ptype) {
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   152
        ptype.getClass();  //NPE
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   153
        if (ptype == void.class)
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   154
            throw newIllegalArgumentException("parameter type cannot be void");
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   155
        if (ptype == double.class || ptype == long.class)  return 1;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   156
        return 0;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   157
    }
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   158
    /** 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
   159
    private static int checkPtypes(Class<?>[] ptypes) {
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   160
        int slots = 0;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   161
        for (Class<?> ptype : ptypes) {
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   162
            slots += checkPtype(ptype);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   163
        }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   164
        checkSlotCount(ptypes.length + slots);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   165
        return slots;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   166
    }
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   167
    static void checkSlotCount(int count) {
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 13423
diff changeset
   168
        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
   169
        // 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
   170
        if ((count & MAX_JVM_ARITY) != count)
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   171
            throw newIllegalArgumentException("bad parameter count "+count);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   172
    }
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   173
    private static IndexOutOfBoundsException newIndexOutOfBoundsException(Object num) {
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   174
        if (num instanceof Integer)  num = "bad index: "+num;
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   175
        return new IndexOutOfBoundsException(num.toString());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   176
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   177
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
   178
    static final ConcurrentWeakInternSet<MethodType> internTable = new ConcurrentWeakInternSet<>();
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   179
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   180
    static final Class<?>[] NO_PTYPES = {};
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   181
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   182
    /**
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   183
     * 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
   184
     * @param rtype  the return type
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   185
     * @param ptypes the parameter types
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   186
     * @return a method type with the given components
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   187
     * @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
   188
     * @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
   189
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   190
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   191
    MethodType methodType(Class<?> rtype, Class<?>[] ptypes) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   192
        return makeImpl(rtype, ptypes, false);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   193
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   194
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   195
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   196
     * 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
   197
     * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   198
     * @param rtype  the return type
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   199
     * @param ptypes the parameter types
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   200
     * @return a method type with the given components
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   201
     * @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
   202
     * @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
   203
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   204
    public static
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   205
    MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) {
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   206
        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
   207
        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
   208
    }
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
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
    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
   211
        // 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
   212
        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
   213
        return ptypes.toArray(NO_PTYPES);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   214
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   215
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   216
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   217
     * 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
   218
     * 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
   219
     * The leading parameter type is prepended to the remaining array.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   220
     * @param rtype  the return type
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   221
     * @param ptype0 the first parameter type
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   222
     * @param ptypes the remaining parameter types
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   223
     * @return a method type with the given components
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   224
     * @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
   225
     * @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
   226
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   227
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   228
    MethodType methodType(Class<?> rtype, Class<?> ptype0, Class<?>... ptypes) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   229
        Class<?>[] ptypes1 = new Class<?>[1+ptypes.length];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   230
        ptypes1[0] = ptype0;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   231
        System.arraycopy(ptypes, 0, ptypes1, 1, ptypes.length);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   232
        return makeImpl(rtype, ptypes1, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   233
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   234
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   235
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   236
     * 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
   237
     * 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
   238
     * The resulting method has no parameter types.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   239
     * @param rtype  the return type
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   240
     * @return a method type with the given return value
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   241
     * @throws NullPointerException if {@code rtype} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   242
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   243
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   244
    MethodType methodType(Class<?> rtype) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   245
        return makeImpl(rtype, NO_PTYPES, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   246
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   247
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   248
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   249
     * 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
   250
     * 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
   251
     * The resulting method has the single given parameter type.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   252
     * @param rtype  the return type
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   253
     * @param ptype0 the parameter type
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   254
     * @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
   255
     * @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
   256
     * @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
   257
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   258
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   259
    MethodType methodType(Class<?> rtype, Class<?> ptype0) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   260
        return makeImpl(rtype, new Class<?>[]{ ptype0 }, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   261
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   262
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   263
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   264
     * 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
   265
     * 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
   266
     * 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
   267
     * and the specified return type.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   268
     * @param rtype  the return type
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   269
     * @param ptypes the method type which supplies the parameter types
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   270
     * @return a method type with the given components
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   271
     * @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
   272
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   273
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   274
    MethodType methodType(Class<?> rtype, MethodType ptypes) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   275
        return makeImpl(rtype, ptypes.ptypes, true);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   276
    }
2707
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
    /**
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   279
     * 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
   280
     * @param rtype desired return type
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   281
     * @param ptypes desired parameter types
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   282
     * @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
   283
     * @return the unique method type of the desired structure
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   284
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   285
    /*trusted*/ static
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   286
    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
   287
        if (ptypes.length == 0) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   288
            ptypes = NO_PTYPES; trusted = true;
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
        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
   291
        MethodType mt0 = internTable.get(mt1);
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
   292
        if (mt0 != null)
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
   293
            return mt0;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   294
        if (!trusted)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   295
            // defensively copy the array passed in by the user
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   296
            mt1 = new MethodType(rtype, ptypes.clone());
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   297
        // promote the object to the Real Thing, and reprobe
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   298
        MethodTypeForm form = MethodTypeForm.findForm(mt1);
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   299
        mt1.form = form;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
   300
        return internTable.add(mt1);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   301
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   302
    private static final MethodType[] objectOnlyTypes = new MethodType[20];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   303
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   304
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   305
     * 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
   306
     * 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
   307
     * All parameters and the return type will be {@code Object},
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   308
     * 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
   309
     * @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
   310
     * @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
   311
     * @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
   312
     * @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
   313
     * @see #genericMethodType(int)
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   314
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   315
    public static
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   316
    MethodType genericMethodType(int objectArgCount, boolean finalArray) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   317
        MethodType mt;
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   318
        checkSlotCount(objectArgCount);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   319
        int ivarargs = (!finalArray ? 0 : 1);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   320
        int ootIndex = objectArgCount*2 + ivarargs;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   321
        if (ootIndex < objectOnlyTypes.length) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   322
            mt = objectOnlyTypes[ootIndex];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   323
            if (mt != null)  return mt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   324
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   325
        Class<?>[] ptypes = new Class<?>[objectArgCount + ivarargs];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   326
        Arrays.fill(ptypes, Object.class);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   327
        if (ivarargs != 0)  ptypes[objectArgCount] = Object[].class;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   328
        mt = makeImpl(Object.class, ptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   329
        if (ootIndex < objectOnlyTypes.length) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   330
            objectOnlyTypes[ootIndex] = mt;     // cache it here also!
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
        return mt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   333
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   334
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   335
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   336
     * 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
   337
     * 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
   338
     * All parameters and the return type will be Object.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   339
     * @param objectArgCount number of parameters
9645
dabb5e4edc4c 7034977: JSR 292 MethodHandle.invokeGeneric should be renamed MethodHandle.invoke
jrose
parents: 8822
diff changeset
   340
     * @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
   341
     * @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
   342
     * @see #genericMethodType(int, boolean)
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   343
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   344
    public static
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   345
    MethodType genericMethodType(int objectArgCount) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   346
        return genericMethodType(objectArgCount, false);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   347
    }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   348
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   349
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   350
     * 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
   351
     * 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
   352
     * @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
   353
     * @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
   354
     * @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
   355
     * @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
   356
     * @throws IllegalArgumentException if {@code nptype} is {@code void.class}
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   357
     * @throws NullPointerException if {@code nptype} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   358
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   359
    public MethodType changeParameterType(int num, Class<?> nptype) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   360
        if (parameterType(num) == nptype)  return this;
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   361
        checkPtype(nptype);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   362
        Class<?>[] nptypes = ptypes.clone();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   363
        nptypes[num] = nptype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   364
        return makeImpl(rtype, nptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   365
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   366
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   367
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   368
     * 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
   369
     * 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
   370
     * @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
   371
     * @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
   372
     * @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
   373
     * @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
   374
     * @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
   375
     *                                  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
   376
     * @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
   377
     */
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   378
    public MethodType insertParameterTypes(int num, Class<?>... ptypesToInsert) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   379
        int len = ptypes.length;
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   380
        if (num < 0 || num > len)
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   381
            throw newIndexOutOfBoundsException(num);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   382
        int ins = checkPtypes(ptypesToInsert);
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   383
        checkSlotCount(parameterSlotCount() + ptypesToInsert.length + ins);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   384
        int ilen = ptypesToInsert.length;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   385
        if (ilen == 0)  return this;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   386
        Class<?>[] nptypes = Arrays.copyOfRange(ptypes, 0, len+ilen);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   387
        System.arraycopy(nptypes, num, nptypes, num+ilen, len-num);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   388
        System.arraycopy(ptypesToInsert, 0, nptypes, num, ilen);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   389
        return makeImpl(rtype, nptypes, true);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   390
    }
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   391
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   392
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   393
     * 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
   394
     * 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
   395
     * @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
   396
     * @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
   397
     * @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
   398
     *                                  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
   399
     * @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
   400
     */
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   401
    public MethodType appendParameterTypes(Class<?>... ptypesToInsert) {
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   402
        return insertParameterTypes(parameterCount(), ptypesToInsert);
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   403
    }
a279ebc3b25c 6981777: implement JSR 292 EG adjustments from summer 2010
jrose
parents: 7052
diff changeset
   404
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   405
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   406
     * 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
   407
     * 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
   408
     * @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
   409
     * @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
   410
     * @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
   411
     * @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
   412
     * @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
   413
     *                                  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
   414
     * @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
   415
     */
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   416
    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
   417
        return insertParameterTypes(num, listToArray(ptypesToInsert));
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   418
    }
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   419
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   420
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   421
     * 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
   422
     * 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
   423
     * @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
   424
     * @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
   425
     * @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
   426
     *                                  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
   427
     * @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
   428
     */
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   429
    public MethodType appendParameterTypes(List<Class<?>> ptypesToInsert) {
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   430
        return insertParameterTypes(parameterCount(), ptypesToInsert);
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   431
    }
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   432
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   433
     /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   434
     * 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
   435
     * 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
   436
     * @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
   437
     * @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
   438
     * @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
   439
     * @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
   440
     * @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
   441
     *                                  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
   442
     *                                  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
   443
     * @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
   444
     *                                  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
   445
     * @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
   446
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   447
    /*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
   448
        if (start == end)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   449
            return insertParameterTypes(start, ptypesToInsert);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   450
        int len = ptypes.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   451
        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
   452
            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
   453
        int ilen = ptypesToInsert.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   454
        if (ilen == 0)
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   455
            return dropParameterTypes(start, end);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   456
        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
   457
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   458
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   459
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   460
     * 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
   461
     * 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
   462
     * @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
   463
     * @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
   464
     * @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
   465
     * @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
   466
     *                                  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
   467
     *                                  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
   468
     */
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   469
    public MethodType dropParameterTypes(int start, int end) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   470
        int len = ptypes.length;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   471
        if (!(0 <= start && start <= end && end <= len))
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   472
            throw newIndexOutOfBoundsException("start="+start+" end="+end);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   473
        if (start == end)  return this;
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   474
        Class<?>[] nptypes;
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   475
        if (start == 0) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   476
            if (end == len) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   477
                // drop all parameters
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   478
                nptypes = NO_PTYPES;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   479
            } else {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   480
                // drop initial parameter(s)
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   481
                nptypes = Arrays.copyOfRange(ptypes, end, len);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   482
            }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   483
        } else {
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   484
            if (end == len) {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   485
                // drop trailing parameter(s)
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   486
                nptypes = Arrays.copyOfRange(ptypes, 0, start);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   487
            } else {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   488
                int tail = len - end;
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   489
                nptypes = Arrays.copyOfRange(ptypes, 0, start + tail);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   490
                System.arraycopy(ptypes, end, nptypes, start, tail);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   491
            }
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   492
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   493
        return makeImpl(rtype, nptypes, 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
     * 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
   498
     * 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
   499
     * @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
   500
     * @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
   501
     * @throws NullPointerException if {@code nrtype} is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   502
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   503
    public MethodType changeReturnType(Class<?> nrtype) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   504
        if (returnType() == nrtype)  return this;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   505
        return makeImpl(nrtype, ptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   506
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   507
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   508
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   509
     * 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
   510
     * 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
   511
     * @return true if any of the types are primitives
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   512
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   513
    public boolean hasPrimitives() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   514
        return form.hasPrimitives();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   515
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   516
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   517
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   518
     * 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
   519
     * 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
   520
     * 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
   521
     * if it occurs as a return type.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   522
     * @return true if any of the types are wrappers
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   523
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   524
    public boolean hasWrappers() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   525
        return unwrap() != this;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   526
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   527
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   528
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   529
     * Erases all reference types to {@code Object}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   530
     * 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
   531
     * 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
   532
     * @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
   533
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   534
    public MethodType erase() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   535
        return form.erasedType();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   536
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   537
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   538
    /**
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   539
     * 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
   540
     * 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
   541
     * 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
   542
     * @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
   543
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   544
    /*non-public*/ MethodType basicType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   545
        return form.basicType();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   546
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   547
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   548
    /**
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   549
     * @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
   550
     */
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   551
    /*non-public*/ MethodType invokerType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   552
        return insertParameterTypes(0, MethodHandle.class);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   553
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   554
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   555
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   556
     * 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
   557
     * Convenience method for {@link #genericMethodType(int) genericMethodType}.
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   558
     * 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
   559
     * as {@code type.generic()}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   560
     * @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
   561
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   562
    public MethodType generic() {
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   563
        return genericMethodType(parameterCount());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   564
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   565
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   566
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   567
     * Converts all primitive types to their corresponding wrapper types.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   568
     * 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
   569
     * 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
   570
     * 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
   571
     * 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
   572
     * as {@code type.generic()}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   573
     * @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
   574
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   575
    public MethodType wrap() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   576
        return hasPrimitives() ? wrapWithPrims(this) : this;
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
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   579
    /**
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   580
     * 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
   581
     * 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
   582
     * 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
   583
     * 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
   584
     * @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
   585
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   586
    public MethodType unwrap() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   587
        MethodType noprims = !hasPrimitives() ? this : wrapWithPrims(this);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   588
        return unwrapWithNoPrims(noprims);
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 wrapWithPrims(MethodType pt) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   592
        assert(pt.hasPrimitives());
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   593
        MethodType wt = pt.wrapAlt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   594
        if (wt == 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
            wt = MethodTypeForm.canonicalize(pt, MethodTypeForm.WRAP, MethodTypeForm.WRAP);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   597
            assert(wt != null);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   598
            pt.wrapAlt = wt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   599
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   600
        return wt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   601
    }
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
    private static MethodType unwrapWithNoPrims(MethodType wt) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   604
        assert(!wt.hasPrimitives());
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   605
        MethodType uwt = wt.wrapAlt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   606
        if (uwt == null) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   607
            // fill in lazily
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   608
            uwt = MethodTypeForm.canonicalize(wt, MethodTypeForm.UNWRAP, MethodTypeForm.UNWRAP);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   609
            if (uwt == null)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   610
                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
   611
            wt.wrapAlt = uwt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   612
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   613
        return uwt;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   614
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   615
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   616
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   617
     * 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
   618
     * @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
   619
     * @return the selected parameter type
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   620
     * @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
   621
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   622
    public Class<?> parameterType(int num) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   623
        return ptypes[num];
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   624
    }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   625
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   626
     * 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
   627
     * @return the number of parameter types
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   628
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   629
    public int parameterCount() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   630
        return ptypes.length;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   631
    }
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   632
    /**
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   633
     * Returns the return type of this method type.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   634
     * @return the return type
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   635
     */
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   636
    public Class<?> returnType() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   637
        return rtype;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   638
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   639
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   640
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   641
     * 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
   642
     * The list will be immutable.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   643
     * @return the parameter types (as an immutable list)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   644
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   645
    public List<Class<?>> parameterList() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   646
        return Collections.unmodifiableList(Arrays.asList(ptypes));
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   647
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   648
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   649
    /*non-public*/ Class<?> lastParameterType() {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   650
        int len = ptypes.length;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   651
        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
   652
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   653
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   654
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   655
     * 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
   656
     * 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
   657
     * @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
   658
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   659
    public Class<?>[] parameterArray() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   660
        return ptypes.clone();
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
    /**
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   664
     * Compares the specified object with this type for equality.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   665
     * 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
   666
     * 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
   667
     * @param x object to compare
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   668
     * @see Object#equals(Object)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   669
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   670
    @Override
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   671
    public boolean equals(Object x) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   672
        return this == x || x instanceof MethodType && equals((MethodType)x);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   673
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   674
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   675
    private boolean equals(MethodType that) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   676
        return this.rtype == that.rtype
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   677
            && Arrays.equals(this.ptypes, that.ptypes);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   678
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   679
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   680
    /**
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   681
     * Returns the hash code value for this method type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   682
     * 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
   683
     * whose elements are the return type followed by the
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   684
     * parameter types.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   685
     * @return the hash code value for this method type
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   686
     * @see Object#hashCode()
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   687
     * @see #equals(Object)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   688
     * @see List#hashCode()
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   689
     */
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   690
    @Override
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   691
    public int hashCode() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   692
      int hashCode = 31 + rtype.hashCode();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   693
      for (Class<?> ptype : ptypes)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   694
          hashCode = 31*hashCode + ptype.hashCode();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   695
      return hashCode;
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   696
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   697
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   698
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   699
     * Returns a string representation of the method type,
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   700
     * of the form {@code "(PT0,PT1...)RT"}.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   701
     * The string representation of a method type is a
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   702
     * parenthesis enclosed, comma separated list of type names,
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   703
     * followed immediately by the return type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   704
     * <p>
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   705
     * Each type is represented by its
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   706
     * {@link java.lang.Class#getSimpleName simple name}.
2707
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
    @Override
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   709
    public String toString() {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   710
        StringBuilder sb = new StringBuilder();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   711
        sb.append("(");
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   712
        for (int i = 0; i < ptypes.length; i++) {
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   713
            if (i > 0)  sb.append(",");
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   714
            sb.append(ptypes[i].getSimpleName());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   715
        }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   716
        sb.append(")");
7562
a0ad195efe2c 7001424: implement JSR 292 EG adjustments, November 2010
jrose
parents: 7555
diff changeset
   717
        sb.append(rtype.getSimpleName());
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   718
        return sb.toString();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   719
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   720
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   721
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   722
    /*non-public*/
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   723
    boolean isViewableAs(MethodType newType) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   724
        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
   725
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   726
        int argc = parameterCount();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   727
        if (argc != newType.parameterCount())
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   728
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   729
        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
   730
            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
   731
                return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   732
        }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   733
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   734
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   735
    /*non-public*/
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   736
    boolean isCastableTo(MethodType newType) {
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   737
        int argc = parameterCount();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   738
        if (argc != newType.parameterCount())
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   739
            return false;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   740
        return true;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   741
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   742
    /*non-public*/
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   743
    boolean isConvertibleTo(MethodType newType) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   744
        if (!canConvert(returnType(), newType.returnType()))
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   745
            return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   746
        int argc = parameterCount();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   747
        if (argc != newType.parameterCount())
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   748
            return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   749
        for (int i = 0; i < argc; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   750
            if (!canConvert(newType.parameterType(i), parameterType(i)))
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   751
                return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   752
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   753
        return true;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   754
    }
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
   755
    /*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
   756
    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
   757
        // short-circuit a few cases:
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   758
        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
   759
        // 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
   760
        if (src.isPrimitive()) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   761
            // 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
   762
            // 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
   763
            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
   764
            Wrapper sw = Wrapper.forPrimitiveType(src);
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   765
            if (dst.isPrimitive()) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   766
                // P->P must widen
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   767
                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
   768
            } else {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   769
                // 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
   770
                return dst.isAssignableFrom(sw.wrapperType());
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   771
            }
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   772
        } else if (dst.isPrimitive()) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   773
            // any value can be dropped
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   774
            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
   775
            Wrapper dw = Wrapper.forPrimitiveType(dst);
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   776
            // 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
   777
            // For example:
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   778
            //   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
   779
            //   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
   780
            //   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
   781
            // 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
   782
            if (src.isAssignableFrom(dw.wrapperType())) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   783
                return true;
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   784
            }
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   785
            // 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
   786
            // 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
   787
            //   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
   788
            //   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
   789
            if (Wrapper.isWrapperType(src) &&
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   790
                dw.isConvertibleFrom(Wrapper.forWrapperType(src))) {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   791
                // 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
   792
                return true;
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   793
            }
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   794
            // 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
   795
            // 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
   796
            //   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
   797
            //   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
   798
            // 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
   799
            // 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
   800
            // 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
   801
            return false;
9752
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   802
        } else {
88ab34b6da6d 7032323: code changes for JSR 292 EG adjustments to API, through Public Review
jrose
parents: 9731
diff changeset
   803
            // 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
   804
            return true;
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   805
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   806
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 9645
diff changeset
   807
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   808
    /// Queries which have to do with the bytecode architecture
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   809
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   810
    /** 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
   811
     * 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
   812
     * 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
   813
     * 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
   814
     * number of long and double parameters (if any).
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   815
     * <p>
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 20877
diff changeset
   816
     * This method is included for the benefit of applications that must
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   817
     * generate bytecodes that process method handles and invokedynamic.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   818
     * @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
   819
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   820
    /*non-public*/ int parameterSlotCount() {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   821
        return form.parameterSlotCount();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   822
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   823
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   824
    /*non-public*/ Invokers invokers() {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   825
        Invokers inv = invokers;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   826
        if (inv != null)  return inv;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   827
        invokers = inv = new Invokers(this);
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   828
        return inv;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   829
    }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   830
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   831
    /** 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
   832
     * 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
   833
     * {@code parameterCount} inclusive.  Successive parameters are
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   834
     * 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
   835
     * 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
   836
     * 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
   837
     * the {@code parameterSlotDepth} of its trailing edge
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   838
     * at position {@code N+1}.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   839
     * <p>
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   840
     * Parameters of type {@code long} and {@code double} occupy
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   841
     * 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
   842
     * Therefore, the number returned is the number of arguments
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   843
     * <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
   844
     * <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
   845
     * 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
   846
     * <p>
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 20877
diff changeset
   847
     * This method is included for the benefit of applications that must
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   848
     * generate bytecodes that process method handles and invokedynamic.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   849
     * @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
   850
     * @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
   851
     *         given parameter
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   852
     * @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
   853
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   854
    /*non-public*/ int parameterSlotDepth(int num) {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   855
        if (num < 0 || num > ptypes.length)
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   856
            parameterType(num);  // force a range check
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   857
        return form.parameterToArgSlot(num-1);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   858
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   859
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   860
    /** 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
   861
     * from a method of this type.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   862
     * 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
   863
     * 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
   864
     * <p>
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 20877
diff changeset
   865
     * This method is included for the benefit of applications that must
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   866
     * generate bytecodes that process method handles and invokedynamic.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   867
     * @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
   868
     * Will be removed for PFD.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   869
     */
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents: 8348
diff changeset
   870
    /*non-public*/ int returnSlotCount() {
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   871
        return form.returnSlotCount();
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   872
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   873
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   874
    /**
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
   875
     * 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
   876
     * 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
   877
     * 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
   878
     * 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
   879
     * 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
   880
     * <p>
7052
963a5baf2ba3 6980096: JSR 292 reflective lookup should throw checked exceptions
jrose
parents: 5725
diff changeset
   881
     * 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
   882
     * constructed by this method, because their component types are
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   883
     * not all reachable from a common class loader.
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   884
     * <p>
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 20877
diff changeset
   885
     * This method is included for the benefit of applications that must
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   886
     * generate bytecodes that process method handles and {@code invokedynamic}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   887
     * @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
   888
     * @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
   889
     * @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
   890
     * @throws NullPointerException if the string is null
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   891
     * @throws IllegalArgumentException if the string is not well-formed
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   892
     * @throws TypeNotPresentException if a named type cannot be found
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   893
     */
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   894
    public static MethodType fromMethodDescriptorString(String descriptor, ClassLoader loader)
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   895
        throws IllegalArgumentException, TypeNotPresentException
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   896
    {
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
   897
        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
   898
            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
   899
            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
   900
            throw new IllegalArgumentException("not a method descriptor: "+descriptor);
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   901
        List<Class<?>> types = BytecodeDescriptor.parseMethod(descriptor, loader);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   902
        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
   903
        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
   904
        Class<?>[] ptypes = listToArray(types);
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   905
        return makeImpl(rtype, ptypes, true);
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   906
    }
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   907
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   908
    /**
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   909
     * 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
   910
     * <p>
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   911
     * 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
   912
     * 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
   913
     * will appear identical when viewed within descriptor strings.
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   914
     * <p>
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 20877
diff changeset
   915
     * This method is included for the benefit of applications that must
8346
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   916
     * generate bytecodes that process method handles and {@code invokedynamic}.
3b891698c4ec 7012650: implement JSR 292 EG adjustments through January 2010
jrose
parents: 7668
diff changeset
   917
     * {@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
   918
     * 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
   919
     * @return the bytecode type descriptor representation
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
   920
     */
4537
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   921
    public String toMethodDescriptorString() {
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   922
        return BytecodeDescriptor.unparse(this);
7c3c7f8d5195 6914665: update jdk code for JSR 292 (post 6858164)
jrose
parents: 2763
diff changeset
   923
    }
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   924
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   925
    /*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
   926
        return BytecodeDescriptor.unparse(cls);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   927
    }
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
   928
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   929
    /// Serialization.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   930
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   931
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   932
     * There are no serializable fields for {@code MethodType}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   933
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   934
    private static final java.io.ObjectStreamField[] serialPersistentFields = { };
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   935
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   936
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   937
     * Save the {@code MethodType} instance to a stream.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   938
     *
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   939
     * @serialData
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   940
     * 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
   941
     * 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
   942
     * 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
   943
     * as follows:
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20494
diff changeset
   944
     * <blockquote><pre>{@code
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   945
s.writeObject(this.returnType());
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   946
s.writeObject(this.parameterArray());
20535
cc85c8626435 8024438: JSR 292 API specification maintenance for JDK 8
jrose
parents: 20494
diff changeset
   947
     * }</pre></blockquote>
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   948
     * <p>
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   949
     * The deserialized field values are checked as if they were
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   950
     * provided to the factory method {@link #methodType(Class,Class[]) methodType}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   951
     * For example, null values, or {@code void} parameter types,
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   952
     * will lead to exceptions during deserialization.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   953
     * @param s the stream to write the object to
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   954
     * @throws java.io.IOException if there is a problem writing the object
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   955
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   956
    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
   957
        s.defaultWriteObject();  // requires serialPersistentFields to be an empty array
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   958
        s.writeObject(returnType());
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   959
        s.writeObject(parameterArray());
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
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   962
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   963
     * Reconstitute the {@code MethodType} instance from a stream (that is,
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   964
     * deserialize it).
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   965
     * This instance is a scratch object with bogus final fields.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   966
     * It provides the parameters to the factory method called by
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   967
     * {@link #readResolve readResolve}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   968
     * After that call it is discarded.
18569
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   969
     * @param s the stream to read the object from
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   970
     * @throws java.io.IOException if there is a problem reading the object
0e46c17766b7 8019357: Fix doclint warnings in java.lang.invoke
darcy
parents: 18180
diff changeset
   971
     * @throws ClassNotFoundException if one of the component classes cannot be resolved
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   972
     * @see #MethodType()
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   973
     * @see #readResolve
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   974
     * @see #writeObject
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
    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
   977
        s.defaultReadObject();  // requires serialPersistentFields to be an empty array
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   978
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   979
        Class<?>   returnType     = (Class<?>)   s.readObject();
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   980
        Class<?>[] parameterArray = (Class<?>[]) s.readObject();
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   981
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   982
        // Probably this object will never escape, but let's check
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   983
        // the field values now, just to be sure.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   984
        checkRtype(returnType);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   985
        checkPtypes(parameterArray);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   986
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   987
        parameterArray = parameterArray.clone();  // make sure it is unshared
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   988
        MethodType_init(returnType, parameterArray);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   989
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   990
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
     * For serialization only.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   993
     * Sets the final fields to null, pending {@code Unsafe.putObject}.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   994
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   995
    private MethodType() {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   996
        this.rtype = null;
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   997
        this.ptypes = null;
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   998
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
   999
    private void MethodType_init(Class<?> rtype, Class<?>[] ptypes) {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1000
        // In order to communicate these values to readResolve, we must
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1001
        // store them into the implementation-specific final fields.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1002
        checkRtype(rtype);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1003
        checkPtypes(ptypes);
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
  1004
        UNSAFE.putObject(this, rtypeOffset, rtype);
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
  1005
        UNSAFE.putObject(this, ptypesOffset, ptypes);
8348
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
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1008
    // Support for resetting final fields while deserializing
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1009
    private static final long rtypeOffset, ptypesOffset;
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1010
    static {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1011
        try {
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
  1012
            rtypeOffset = UNSAFE.objectFieldOffset
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1013
                (MethodType.class.getDeclaredField("rtype"));
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 13422
diff changeset
  1014
            ptypesOffset = UNSAFE.objectFieldOffset
8348
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1015
                (MethodType.class.getDeclaredField("ptypes"));
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1016
        } catch (Exception ex) {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1017
            throw new Error(ex);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1018
        }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1019
    }
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1020
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1021
    /**
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1022
     * Resolves and initializes a {@code MethodType} object
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1023
     * after serialization.
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1024
     * @return the fully initialized {@code MethodType} object
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1025
     */
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1026
    private Object readResolve() {
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1027
        // Do not use a trusted path for deserialization:
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1028
        //return makeImpl(rtype, ptypes, true);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1029
        // Verify all operands, and make sure ptypes is unshared:
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1030
        return methodType(rtype, ptypes);
3b2ac15dfc16 7016261: JSR 292 MethodType objects should be serializable
jrose
parents: 8346
diff changeset
  1031
    }
13422
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
     * Simple implementation of weak concurrent intern set.
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1035
     *
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1036
     * @param <T> interned type
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1037
     */
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1038
    private static class ConcurrentWeakInternSet<T> {
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
        private final ConcurrentMap<WeakEntry<T>, WeakEntry<T>> map;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1041
        private final ReferenceQueue<T> stale;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1042
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1043
        public ConcurrentWeakInternSet() {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1044
            this.map = new ConcurrentHashMap<>();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1045
            this.stale = new ReferenceQueue<>();
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1046
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1047
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1048
        /**
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1049
         * Get the existing interned element.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1050
         * This method returns null if no element is interned.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1051
         *
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1052
         * @param elem element to look up
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1053
         * @return the interned element
13422
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
        public T get(T elem) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1056
            if (elem == null) throw new NullPointerException();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1057
            expungeStaleElements();
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1058
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1059
            WeakEntry<T> value = map.get(new WeakEntry<>(elem));
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1060
            if (value != null) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1061
                T res = value.get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1062
                if (res != null) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1063
                    return res;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1064
                }
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1065
            }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1066
            return null;
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1067
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1068
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1069
        /**
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1070
         * Interns the element.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1071
         * Always returns non-null element, matching the one in the intern set.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1072
         * Under the race against another add(), it can return <i>different</i>
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1073
         * element, if another thread beats us to interning it.
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1074
         *
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1075
         * @param elem element to add
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1076
         * @return element that was actually added
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1077
         */
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1078
        public T add(T elem) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1079
            if (elem == null) throw new NullPointerException();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1080
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1081
            // Playing double race here, and so spinloop is required.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1082
            // First race is with two concurrent updaters.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1083
            // Second race is with GC purging weak ref under our feet.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1084
            // Hopefully, we almost always end up with a single pass.
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1085
            T interned;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1086
            WeakEntry<T> e = new WeakEntry<>(elem, stale);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1087
            do {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1088
                expungeStaleElements();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1089
                WeakEntry<T> exist = map.putIfAbsent(e, e);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1090
                interned = (exist == null) ? elem : exist.get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1091
            } while (interned == null);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1092
            return interned;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1093
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1094
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1095
        private void expungeStaleElements() {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1096
            Reference<? extends T> reference;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1097
            while ((reference = stale.poll()) != null) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1098
                map.remove(reference);
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1099
            }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1100
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1101
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1102
        private static class WeakEntry<T> extends WeakReference<T> {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1103
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1104
            public final int hashcode;
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1105
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1106
            public WeakEntry(T key, ReferenceQueue<T> queue) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1107
                super(key, queue);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1108
                hashcode = key.hashCode();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1109
            }
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1110
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1111
            public WeakEntry(T key) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1112
                super(key);
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1113
                hashcode = key.hashCode();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1114
            }
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1115
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1116
            @Override
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1117
            public boolean equals(Object obj) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1118
                if (obj instanceof WeakEntry) {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1119
                    Object that = ((WeakEntry) obj).get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1120
                    Object mine = get();
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1121
                    return (that == null || mine == null) ? (this == obj) : mine.equals(that);
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1122
                }
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1123
                return false;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1124
            }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1125
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1126
            @Override
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1127
            public int hashCode() {
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1128
                return hashcode;
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1129
            }
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1130
13422
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1131
        }
72b63ee33f57 7127687: MethodType leaks memory due to interning
jrose
parents: 9752
diff changeset
  1132
    }
18180
e0b8c923f35d 7177472: JSR292: MethodType interning penalizes scalability
twisti
parents: 13610
diff changeset
  1133
2707
5a17df307cbc 6829144: JSR 292 JVM features need a provisional Java API
jrose
parents:
diff changeset
  1134
}