jdk/src/java.base/share/classes/java/lang/invoke/MethodHandleStatics.java
author psandoz
Thu, 24 Mar 2016 11:21:21 +0100
changeset 36934 590fc47a0aeb
parent 34384 439c06c76808
child 37593 824750ada3d6
permissions -rw-r--r--
8149644: Integrate VarHandles Reviewed-by: coffeys, mhaupt, vlivanov Contributed-by: paul.sandoz@oracle.com, aleksey.shipilev@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     1
/*
32762
253adb0f4301 8136931: more fine-grained condition checking for BMH species creation
mhaupt
parents: 29986
diff changeset
     2
 * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     4
 *
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    10
 *
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    15
 * accompanied this code).
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    16
 *
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    20
 *
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    23
 * questions.
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    24
 */
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
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;
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    27
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    28
import java.security.AccessController;
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    29
import java.security.PrivilegedAction;
33674
566777f73c32 8140606: Update library code to use internal Unsafe
chegar
parents: 33312
diff changeset
    30
import jdk.internal.misc.Unsafe;
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    31
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    32
/**
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    33
 * This class consists exclusively of static names internal to the
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    34
 * method handle implementation.
8822
8145ab9f5f86 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 8821
diff changeset
    35
 * Usage:  {@code import static java.lang.invoke.MethodHandleStatics.*}
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    36
 * @author John Rose, JSR 292 EG
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    37
 */
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    38
/*non-public*/ class MethodHandleStatics {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    39
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    40
    private MethodHandleStatics() { }  // do not instantiate
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    41
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    42
    static final Unsafe UNSAFE = Unsafe.getUnsafe();
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    43
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    44
    static final boolean DEBUG_METHOD_HANDLE_NAMES;
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    45
    static final boolean DUMP_CLASS_FILES;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    46
    static final boolean TRACE_INTERPRETER;
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    47
    static final boolean TRACE_METHOD_LINKAGE;
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
    48
    static final int COMPILE_THRESHOLD;
27295
8ed31033bf48 8059877: GWT branch frequencies pollution due to LF sharing
vlivanov
parents: 26482
diff changeset
    49
    static final int DONT_INLINE_THRESHOLD;
26464
65b37da18e06 8037209: Improvements and cleanups to bytecode assembly for lambda forms
vlivanov
parents: 25859
diff changeset
    50
    static final int PROFILE_LEVEL;
29019
a859b806c8bd 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27756
diff changeset
    51
    static final boolean PROFILE_GWT;
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    52
    static final int CUSTOMIZE_THRESHOLD;
36934
590fc47a0aeb 8149644: Integrate VarHandles
psandoz
parents: 34384
diff changeset
    53
    static final boolean VAR_HANDLE_GUARDS;
26464
65b37da18e06 8037209: Improvements and cleanups to bytecode assembly for lambda forms
vlivanov
parents: 25859
diff changeset
    54
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    55
    static {
36934
590fc47a0aeb 8149644: Integrate VarHandles
psandoz
parents: 34384
diff changeset
    56
        final Object[] values = new Object[10];
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29020
diff changeset
    57
        AccessController.doPrivileged(new PrivilegedAction<>() {
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    58
                public Void run() {
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    59
                    values[0] = Boolean.getBoolean("java.lang.invoke.MethodHandle.DEBUG_NAMES");
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    60
                    values[1] = Boolean.getBoolean("java.lang.invoke.MethodHandle.DUMP_CLASS_FILES");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    61
                    values[2] = Boolean.getBoolean("java.lang.invoke.MethodHandle.TRACE_INTERPRETER");
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    62
                    values[3] = Boolean.getBoolean("java.lang.invoke.MethodHandle.TRACE_METHOD_LINKAGE");
27756
0a9a3b51bb92 8059880: Get rid of LambdaForm interpretation
vlivanov
parents: 27755
diff changeset
    63
                    values[4] = Integer.getInteger("java.lang.invoke.MethodHandle.COMPILE_THRESHOLD", 0);
27755
baf8735fc8bf 8063135: Enable full LF sharing by default
vlivanov
parents: 27295
diff changeset
    64
                    values[5] = Integer.getInteger("java.lang.invoke.MethodHandle.DONT_INLINE_THRESHOLD", 30);
baf8735fc8bf 8063135: Enable full LF sharing by default
vlivanov
parents: 27295
diff changeset
    65
                    values[6] = Integer.getInteger("java.lang.invoke.MethodHandle.PROFILE_LEVEL", 0);
29019
a859b806c8bd 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27756
diff changeset
    66
                    values[7] = Boolean.parseBoolean(System.getProperty("java.lang.invoke.MethodHandle.PROFILE_GWT", "true"));
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    67
                    values[8] = Integer.getInteger("java.lang.invoke.MethodHandle.CUSTOMIZE_THRESHOLD", 127);
36934
590fc47a0aeb 8149644: Integrate VarHandles
psandoz
parents: 34384
diff changeset
    68
                    values[9] = Boolean.parseBoolean(System.getProperty("java.lang.invoke.VarHandle.VAR_HANDLE_GUARDS", "true"));
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    69
                    return null;
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    70
                }
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    71
            });
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    72
        DEBUG_METHOD_HANDLE_NAMES = (Boolean) values[0];
13423
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    73
        DUMP_CLASS_FILES          = (Boolean) values[1];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    74
        TRACE_INTERPRETER         = (Boolean) values[2];
17843fff200d 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 10419
diff changeset
    75
        TRACE_METHOD_LINKAGE      = (Boolean) values[3];
27755
baf8735fc8bf 8063135: Enable full LF sharing by default
vlivanov
parents: 27295
diff changeset
    76
        COMPILE_THRESHOLD         = (Integer) values[4];
baf8735fc8bf 8063135: Enable full LF sharing by default
vlivanov
parents: 27295
diff changeset
    77
        DONT_INLINE_THRESHOLD     = (Integer) values[5];
baf8735fc8bf 8063135: Enable full LF sharing by default
vlivanov
parents: 27295
diff changeset
    78
        PROFILE_LEVEL             = (Integer) values[6];
29019
a859b806c8bd 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
vlivanov
parents: 27756
diff changeset
    79
        PROFILE_GWT               = (Boolean) values[7];
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    80
        CUSTOMIZE_THRESHOLD       = (Integer) values[8];
36934
590fc47a0aeb 8149644: Integrate VarHandles
psandoz
parents: 34384
diff changeset
    81
        VAR_HANDLE_GUARDS         = (Boolean) values[9];
29020
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    82
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    83
        if (CUSTOMIZE_THRESHOLD < -1 || CUSTOMIZE_THRESHOLD > 127) {
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    84
            throw newInternalError("CUSTOMIZE_THRESHOLD should be in [-1...127] range");
9f6d43586ccb 8069591: Customize LambdaForms which are invoked using MH.invoke/invokeExact
vlivanov
parents: 29019
diff changeset
    85
        }
9780
6fc3b49cfee4 7050328: (jsr-292) findConstructor throws ExceptionInInitializerError if run under SecurityManager
jrose
parents: 9731
diff changeset
    86
    }
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
    87
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    88
    /** Tell if any of the debugging switches are turned on.
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    89
     *  If this is the case, it is reasonable to perform extra checks or save extra information.
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    90
     */
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    91
    /*non-public*/ static boolean debugEnabled() {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    92
        return (DEBUG_METHOD_HANDLE_NAMES |
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    93
                DUMP_CLASS_FILES |
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    94
                TRACE_INTERPRETER |
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    95
                TRACE_METHOD_LINKAGE);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    96
    }
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    97
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
    98
    // handy shared exception makers (they simplify the common case code)
24572
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
    99
    /*non-public*/ static InternalError newInternalError(String message) {
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
   100
        return new InternalError(message);
5c9e5961d21c 8037210: Get rid of char-based descriptions 'J' of basic types
vlivanov
parents: 16100
diff changeset
   101
    }
14089
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   102
    /*non-public*/ static InternalError newInternalError(String message, Throwable cause) {
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   103
        return new InternalError(message, cause);
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   104
    }
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   105
    /*non-public*/ static InternalError newInternalError(Throwable cause) {
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   106
        return new InternalError(cause);
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   107
    }
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   108
    /*non-public*/ static RuntimeException newIllegalStateException(String message) {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   109
        return new IllegalStateException(message);
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   110
    }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   111
    /*non-public*/ static RuntimeException newIllegalStateException(String message, Object obj) {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   112
        return new IllegalStateException(message(message, obj));
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   113
    }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   114
    /*non-public*/ static RuntimeException newIllegalArgumentException(String message) {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   115
        return new IllegalArgumentException(message);
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   116
    }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   117
    /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj) {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   118
        return new IllegalArgumentException(message(message, obj));
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   119
    }
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   120
    /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj, Object obj2) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   121
        return new IllegalArgumentException(message(message, obj, obj2));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   122
    }
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   123
    /** Propagate unchecked exceptions and errors, but wrap anything checked and throw that instead. */
14222
58f55d4dde46 7196190: Improve method of handling MethodHandles
jrose
parents: 13423
diff changeset
   124
    /*non-public*/ static Error uncaughtException(Throwable ex) {
26467
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   125
        if (ex instanceof Error)  throw (Error) ex;
d69abed3a07d 8050052: Small cleanups in java.lang.invoke code
vlivanov
parents: 26464
diff changeset
   126
        if (ex instanceof RuntimeException)  throw (RuntimeException) ex;
14089
0a41b980d62a 8000989: smaller code changes to make future JSR 292 backports easier
twisti
parents: 13423
diff changeset
   127
        throw newInternalError("uncaught exception", ex);
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   128
    }
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   129
    private static String message(String message, Object obj) {
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   130
        if (obj != null)  message = message + ": " + obj;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   131
        return message;
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   132
    }
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   133
    private static String message(String message, Object obj, Object obj2) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   134
        if (obj != null || obj2 != null)  message = message + ": " + obj + ", " + obj2;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   135
        return message;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents: 8822
diff changeset
   136
    }
8821
2836ee97ee27 6839872: remove implementation inheritance from JSR 292 APIs
jrose
parents:
diff changeset
   137
}