jdk/test/java/lang/invoke/RicochetTest.java
author jrose
Fri, 17 Aug 2012 13:42:25 -0700
changeset 13610 28122b96858e
parent 11534 9949ffb8eb3a
child 14342 8435a30053c1
permissions -rw-r--r--
7191102: nightly failures after JSR 292 lazy method handle update (round 3) Reviewed-by: twisti, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     1
/*
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     2
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     4
 *
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    10
 *
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    15
 * accompanied this code).
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    16
 *
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    20
 *
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    23
 * questions.
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    24
 */
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    25
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    26
/* @test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    27
 * @summary unit tests for recursive method handles
9781
ce852878da20 7049122: java/lang/invoke/RicochetTest.java with MAX_ARITY=255 in -Xcomp mode overflows code cache
jrose
parents: 9646
diff changeset
    28
 * @run junit/othervm -DRicochetTest.MAX_ARITY=50 test.java.lang.invoke.RicochetTest
ce852878da20 7049122: java/lang/invoke/RicochetTest.java with MAX_ARITY=255 in -Xcomp mode overflows code cache
jrose
parents: 9646
diff changeset
    29
 */
ce852878da20 7049122: java/lang/invoke/RicochetTest.java with MAX_ARITY=255 in -Xcomp mode overflows code cache
jrose
parents: 9646
diff changeset
    30
/*
ce852878da20 7049122: java/lang/invoke/RicochetTest.java with MAX_ARITY=255 in -Xcomp mode overflows code cache
jrose
parents: 9646
diff changeset
    31
 * @ignore The following test creates an unreasonable number of adapters in -Xcomp mode (7049122)
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    32
 * @run junit/othervm -DRicochetTest.MAX_ARITY=255 test.java.lang.invoke.RicochetTest
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    33
 */
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    34
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    35
package test.java.lang.invoke;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    36
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    37
import java.lang.invoke.*;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    38
import java.util.*;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    39
import org.junit.*;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    40
import static java.lang.invoke.MethodType.*;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    41
import static java.lang.invoke.MethodHandles.*;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    42
import static org.junit.Assert.*;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    43
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    44
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    45
/**
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    46
 *
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    47
 * @author jrose
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    48
 */
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    49
public class RicochetTest {
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
    50
    private static final Class<?> CLASS = RicochetTest.class;
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    51
    private static final int MAX_ARITY = Integer.getInteger(CLASS.getSimpleName()+".MAX_ARITY", 40);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    52
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    53
    public static void main(String... av) throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    54
        RicochetTest test = new RicochetTest();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    55
        if (av.length > 0)  test.testOnly = Arrays.asList(av).toString();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    56
        if (REPEAT == 1 || test.testOnly != null) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    57
            test.testAll();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    58
            if (test.testOnlyTests == null)  throw new RuntimeException("no matching test: "+test.testOnly);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    59
        } else if (REPEAT == 0) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    60
            org.junit.runner.JUnitCore.runClasses(RicochetTest.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    61
        } else {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    62
            verbose(1, "REPEAT="+REPEAT);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    63
            for (int i = 0; i < REPEAT; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    64
                test.testRepetition = (i+1);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    65
                verbose(0, "[#"+test.testRepetition+"]");
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    66
                test.testAll();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    67
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    68
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    69
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    70
    int testRepetition;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    71
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    72
    public void testAll() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    73
        testNull();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    74
        testBoxInteger();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    75
        testFilterReturnValue();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    76
        testFilterObject();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    77
        testBoxLong();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    78
        testFilterInteger();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    79
        testIntSpreads();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    80
        testByteSpreads();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    81
        testLongSpreads();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    82
        testIntCollects();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    83
        testReturns();
10081
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
    84
        testRecursion();
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    85
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    86
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    87
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    88
    public void testNull() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    89
        if (testRepetition > (1+REPEAT/100))  return;  // trivial test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    90
        if (!startTest("testNull"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    91
        assertEquals(opI(37), opI.invokeWithArguments(37));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    92
        assertEqualFunction(opI, opI);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    93
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    94
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    95
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    96
    public void testBoxInteger() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    97
        if (!startTest("testBoxInteger"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    98
        assertEqualFunction(opI, opI.asType(opL_I.type()).asType(opI.type()));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
    99
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   100
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   101
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   102
    public void testFilterReturnValue() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   103
        if (!startTest("testFilterReturnValue"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   104
        int[] ints = { 12, 23, 34, 45, 56, 67, 78, 89 };
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   105
        Object res = list8ints.invokeExact(ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7]);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   106
        assertEquals(Arrays.toString(ints), res.toString());
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   107
        MethodHandle idreturn = filterReturnValue(list8ints, identity(Object.class));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   108
        res = idreturn.invokeExact(ints[0], ints[1], ints[2], ints[3], ints[4], ints[5], ints[6], ints[7]);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   109
        assertEquals(Arrays.toString(ints), res.toString());
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   110
        MethodHandle add0 = addL.bindTo(0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   111
        assertEqualFunction(filterReturnValue(opL2, add0), opL2);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   112
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   113
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   114
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   115
    public void testFilterObject() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   116
        if (!startTest("testFilterObject"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   117
        MethodHandle add0 = addL.bindTo(0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   118
        assertEqualFunction(sequence(opL2, add0), opL2);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   119
        int bump13 = -13;  // value near 20 works as long as test values are near [-80..80]
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   120
        MethodHandle add13   = addL.bindTo(bump13);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   121
        MethodHandle add13_0 = addL.bindTo(opI2(bump13, 0));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   122
        MethodHandle add13_1 = addL.bindTo(opI2(0, bump13));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   123
        assertEqualFunction(sequence(opL2, add13_0),
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   124
                            filterArguments(opL2, 0, add13));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   125
        assertEqualFunction(sequence(opL2, add13_1),
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   126
                            filterArguments(opL2, 1, add13));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   127
        System.out.println("[testFilterObject done]");
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   128
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   129
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   130
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   131
    public void testBoxLong() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   132
        if (!startTest("testBoxLong"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   133
        assertEqualFunction(opJ, opJ.asType(opL_J.type()).asType(opJ.type()));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   134
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   135
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   136
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   137
    public void testFilterInteger() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   138
        if (!startTest("testFilterInteger"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   139
        assertEqualFunction(opI, sequence(convI_L, opL_I));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   140
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   141
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   142
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   143
    public void testIntSpreads() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   144
        if (!startTest("testIntSpreads"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   145
        MethodHandle id = identity(int[].class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   146
        final int MAX = MAX_ARITY-2;  // 253+1 would cause parameter overflow with 'this' added
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   147
        for (int nargs = 0; nargs <= MAX; nargs++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   148
            if (nargs > 30 && nargs < MAX-20)  nargs += 10;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   149
            int[] args = new int[nargs];
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   150
            for (int j = 0; j < args.length; j++)  args[j] = j + 11;
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   151
            //System.out.println("testIntSpreads "+Arrays.toString(args));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   152
            int[] args1 = (int[]) id.invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   153
            assertArrayEquals(args, args1);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   154
            MethodHandle coll = id.asCollector(int[].class, nargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   155
            int[] args2 = args;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   156
            switch (nargs) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   157
                case 0:  args2 = (int[]) coll.invokeExact(); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   158
                case 1:  args2 = (int[]) coll.invokeExact(args[0]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   159
                case 2:  args2 = (int[]) coll.invokeExact(args[0], args[1]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   160
                case 3:  args2 = (int[]) coll.invokeExact(args[0], args[1], args[2]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   161
                case 4:  args2 = (int[]) coll.invokeExact(args[0], args[1], args[2], args[3]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   162
                case 5:  args2 = (int[]) coll.invokeExact(args[0], args[1], args[2], args[3], args[4]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   163
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   164
            assertArrayEquals(args, args2);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   165
            MethodHandle mh = coll.asSpreader(int[].class, nargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   166
            int[] args3 = (int[]) mh.invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   167
            assertArrayEquals(args, args3);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   168
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   169
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   170
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   171
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   172
    public void testByteSpreads() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   173
        if (!startTest("testByteSpreads"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   174
        MethodHandle id = identity(byte[].class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   175
        final int MAX = MAX_ARITY-2;  // 253+1 would cause parameter overflow with 'this' added
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   176
        for (int nargs = 0; nargs <= MAX; nargs++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   177
            if (nargs > 30 && nargs < MAX-20)  nargs += 10;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   178
            byte[] args = new byte[nargs];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   179
            for (int j = 0; j < args.length; j++)  args[j] = (byte)(j + 11);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   180
            //System.out.println("testByteSpreads "+Arrays.toString(args));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   181
            byte[] args1 = (byte[]) id.invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   182
            assertArrayEquals(args, args1);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   183
            MethodHandle coll = id.asCollector(byte[].class, nargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   184
            byte[] args2 = args;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   185
            switch (nargs) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   186
                case 0:  args2 = (byte[]) coll.invokeExact(); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   187
                case 1:  args2 = (byte[]) coll.invokeExact(args[0]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   188
                case 2:  args2 = (byte[]) coll.invokeExact(args[0], args[1]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   189
                case 3:  args2 = (byte[]) coll.invokeExact(args[0], args[1], args[2]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   190
                case 4:  args2 = (byte[]) coll.invokeExact(args[0], args[1], args[2], args[3]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   191
                case 5:  args2 = (byte[]) coll.invokeExact(args[0], args[1], args[2], args[3], args[4]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   192
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   193
            assertArrayEquals(args, args2);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   194
            MethodHandle mh = coll.asSpreader(byte[].class, nargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   195
            byte[] args3 = (byte[]) mh.invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   196
            assertArrayEquals(args, args3);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   197
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   198
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   199
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   200
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   201
    public void testLongSpreads() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   202
        if (!startTest("testLongSpreads"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   203
        MethodHandle id = identity(long[].class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   204
        final int MAX = (MAX_ARITY - 2) / 2;  // 253/2+1 would cause parameter overflow with 'this' added
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   205
        for (int nargs = 0; nargs <= MAX; nargs++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   206
            if (nargs > 30 && nargs < MAX-20)  nargs += 10;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   207
            long[] args = new long[nargs];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   208
            for (int j = 0; j < args.length; j++)  args[j] = (long)(j + 11);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   209
            //System.out.println("testLongSpreads "+Arrays.toString(args));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   210
            long[] args1 = (long[]) id.invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   211
            assertArrayEquals(args, args1);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   212
            MethodHandle coll = id.asCollector(long[].class, nargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   213
            long[] args2 = args;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   214
            switch (nargs) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   215
                case 0:  args2 = (long[]) coll.invokeExact(); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   216
                case 1:  args2 = (long[]) coll.invokeExact(args[0]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   217
                case 2:  args2 = (long[]) coll.invokeExact(args[0], args[1]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   218
                case 3:  args2 = (long[]) coll.invokeExact(args[0], args[1], args[2]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   219
                case 4:  args2 = (long[]) coll.invokeExact(args[0], args[1], args[2], args[3]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   220
                case 5:  args2 = (long[]) coll.invokeExact(args[0], args[1], args[2], args[3], args[4]); break;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   221
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   222
            assertArrayEquals(args, args2);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   223
            MethodHandle mh = coll.asSpreader(long[].class, nargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   224
            long[] args3 = (long[]) mh.invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   225
            assertArrayEquals(args, args3);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   226
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   227
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   228
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   229
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   230
    public void testIntCollects() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   231
        if (!startTest("testIntCollects"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   232
        for (MethodHandle lister : INT_LISTERS) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   233
            int outputs = lister.type().parameterCount();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   234
            for (int collects = 0; collects <= Math.min(outputs, INT_COLLECTORS.length-1); collects++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   235
                int inputs = outputs - 1 + collects;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   236
                if (inputs < 0)  continue;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   237
                for (int pos = 0; pos + collects <= inputs; pos++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   238
                    MethodHandle collector = INT_COLLECTORS[collects];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   239
                    int[] args = new int[inputs];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   240
                    int ap = 0, arg = 31;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   241
                    for (int i = 0; i < pos; i++)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   242
                        args[ap++] = arg++ + 0;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   243
                    for (int i = 0; i < collects; i++)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   244
                        args[ap++] = arg++ + 10;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   245
                    while (ap < args.length)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   246
                        args[ap++] = arg++ + 20;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   247
                    // calculate piecemeal:
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   248
                    //System.out.println("testIntCollects "+Arrays.asList(lister, pos, collector)+" on "+Arrays.toString(args));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   249
                    int[] collargs = Arrays.copyOfRange(args, pos, pos+collects);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   250
                    int coll = (int) collector.asSpreader(int[].class, collargs.length).invokeExact(collargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   251
                    int[] listargs = Arrays.copyOfRange(args, 0, outputs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   252
                    System.arraycopy(args, pos+collects, listargs, pos+1, outputs - (pos+1));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   253
                    listargs[pos] = coll;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   254
                    //System.out.println("  coll="+coll+" listargs="+Arrays.toString(listargs));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   255
                    Object expect = lister.asSpreader(int[].class, listargs.length).invokeExact(listargs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   256
                    //System.out.println("  expect="+expect);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   257
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   258
                    // now use the combined MH, and test the output:
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   259
                    MethodHandle mh = collectArguments(lister, pos, int[].class, INT_COLLECTORS[collects]);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   260
                    if (mh == null)  continue;  // no infix collection, yet
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   261
                    assert(mh.type().parameterCount() == inputs);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   262
                    Object observe = mh.asSpreader(int[].class, args.length).invokeExact(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   263
                    assertEquals(expect, observe);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   264
                }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   265
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   266
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   267
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   268
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   269
    @Test
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   270
    public void testByteCollects() throws Throwable {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   271
        if (!startTest("testByteCollects"))  return;
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   272
        for (MethodHandle lister : BYTE_LISTERS) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   273
            int outputs = lister.type().parameterCount();
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   274
            for (int collects = 0; collects <= Math.min(outputs, BYTE_COLLECTORS.length-1); collects++) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   275
                int inputs = outputs - 1 + collects;
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   276
                if (inputs < 0)  continue;
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   277
                for (int pos = 0; pos + collects <= inputs; pos++) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   278
                    MethodHandle collector = BYTE_COLLECTORS[collects];
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   279
                    byte[] args = new byte[inputs];
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   280
                    int ap = 0, arg = 31;
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   281
                    for (int i = 0; i < pos; i++)
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   282
                        args[ap++] = (byte)(arg++ + 0);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   283
                    for (int i = 0; i < collects; i++)
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   284
                        args[ap++] = (byte)(arg++ + 10);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   285
                    while (ap < args.length)
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   286
                        args[ap++] = (byte)(arg++ + 20);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   287
                    // calculate piecemeal:
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   288
                    //System.out.println("testIntCollects "+Arrays.asList(lister, pos, collector)+" on "+Arrays.toString(args));
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   289
                    byte[] collargs = Arrays.copyOfRange(args, pos, pos+collects);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   290
                    byte coll = (byte) collector.asSpreader(byte[].class, collargs.length).invokeExact(collargs);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   291
                    byte[] listargs = Arrays.copyOfRange(args, 0, outputs);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   292
                    System.arraycopy(args, pos+collects, listargs, pos+1, outputs - (pos+1));
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   293
                    listargs[pos] = coll;
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   294
                    //System.out.println("  coll="+coll+" listargs="+Arrays.toString(listargs));
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   295
                    Object expect = lister.asSpreader(byte[].class, listargs.length).invokeExact(listargs);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   296
                    //System.out.println("  expect="+expect);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   297
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   298
                    // now use the combined MH, and test the output:
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   299
                    MethodHandle mh = collectArguments(lister, pos, byte[].class, BYTE_COLLECTORS[collects]);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   300
                    if (mh == null)  continue;  // no infix collection, yet
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   301
                    assert(mh.type().parameterCount() == inputs);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   302
                    Object observe = mh.asSpreader(byte[].class, args.length).invokeExact(args);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   303
                    assertEquals(expect, observe);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   304
                }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   305
            }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   306
        }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   307
    }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   308
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   309
    private static MethodHandle collectArguments(MethodHandle lister, int pos, Class<?> array, MethodHandle collector) {
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   310
        int collects = collector.type().parameterCount();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   311
        int outputs = lister.type().parameterCount();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   312
        if (pos == outputs - 1)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   313
            return MethodHandles.filterArguments(lister, pos,
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   314
                        collector.asSpreader(array, collects))
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   315
                            .asCollector(array, collects);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   316
        //return MethodHandles.collectArguments(lister, pos, collector); //no such animal
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   317
        return null;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   318
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   319
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   320
    private static final Class<?>[] RETURN_TYPES = {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   321
        Object.class, String.class, Integer.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   322
        int.class, long.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   323
        boolean.class, byte.class, char.class, short.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   324
        float.class, double.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   325
        void.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   326
    };
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   327
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   328
    @Test
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   329
    public void testReturns() throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   330
        if (!startTest("testReturns"))  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   331
        // fault injection:
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   332
        int faultCount = 0;  // total of 1296 tests
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   333
        faultCount = Integer.getInteger("testReturns.faultCount", 0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   334
        for (Class<?> ret : RETURN_TYPES) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   335
            // make a complicated identity function and pass something through it
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   336
            System.out.println(ret.getSimpleName());
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   337
            Class<?> vret = (ret == void.class) ? Void.class : ret;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   338
            MethodHandle id = // (vret)->ret
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   339
                identity(vret).asType(methodType(ret, vret));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   340
            final int LENGTH = 4;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   341
            int[] index = {0};
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   342
            Object vals = java.lang.reflect.Array.newInstance(vret, LENGTH);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   343
            MethodHandle indexGetter =  //()->int
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   344
                insertArguments(arrayElementGetter(index.getClass()), 0, index, 0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   345
            MethodHandle valSelector =  // (int)->vret
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   346
                arrayElementGetter(vals.getClass()).bindTo(vals);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   347
            MethodHandle valGetter =  // ()->vret
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   348
                foldArguments(valSelector, indexGetter);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   349
            if (ret != void.class) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   350
                for (int i = 0; i < LENGTH; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   351
                    Object val = (i + 50);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   352
                    if (ret == boolean.class)  val = (i % 3 == 0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   353
                    if (ret == String.class)   val = "#"+i;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   354
                    if (ret == char.class)     val = (char)('a'+i);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   355
                    if (ret == byte.class)     val = (byte)~i;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   356
                    if (ret == short.class)    val = (short)(1<<i);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   357
                    java.lang.reflect.Array.set(vals, i, val);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   358
                }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   359
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   360
            for (int i = 0; i < LENGTH; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   361
                Object val = java.lang.reflect.Array.get(vals, i);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   362
                System.out.println(i+" => "+val);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   363
                index[0] = i;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   364
                if (--faultCount == 0)  index[0] ^= 1;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   365
                Object x = valGetter.invokeWithArguments();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   366
                assertEquals(val, x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   367
                // make a return-filter call:  x = id(valGetter())
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   368
                if (--faultCount == 0)  index[0] ^= 1;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   369
                x = filterReturnValue(valGetter, id).invokeWithArguments();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   370
                assertEquals(val, x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   371
                // make a filter call:  x = id(*,valGetter(),*)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   372
                for (int len = 1; len <= 4; len++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   373
                    for (int pos = 0; pos < len; pos++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   374
                        MethodHandle proj = id;  // lambda(..., vret x,...){x}
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   375
                        for (int j = 0; j < len; j++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   376
                            if (j == pos)  continue;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   377
                            proj = dropArguments(proj, j, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   378
                        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   379
                        assert(proj.type().parameterCount() == len);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   380
                        // proj: (Object*, pos: vret, Object*)->ret
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   381
                        assertEquals(vret, proj.type().parameterType(pos));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   382
                        MethodHandle vgFilter = dropArguments(valGetter, 0, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   383
                        if (--faultCount == 0)  index[0] ^= 1;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   384
                        x = filterArguments(proj, pos, vgFilter).invokeWithArguments(new Object[len]);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   385
                        assertEquals(val, x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   386
                    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   387
                }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   388
                // make a fold call:
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   389
                for (int len = 0; len <= 4; len++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   390
                    for (int fold = 0; fold <= len; fold++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   391
                        MethodHandle proj = id;  // lambda(ret x, ...){x}
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   392
                        if (ret == void.class)  proj = constant(Object.class, null);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   393
                        int arg0 = (ret == void.class ? 0 : 1);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   394
                        for (int j = 0; j < len; j++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   395
                            proj = dropArguments(proj, arg0, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   396
                        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   397
                        assert(proj.type().parameterCount() == arg0 + len);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   398
                        // proj: (Object*, pos: vret, Object*)->ret
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   399
                        if (arg0 != 0)  assertEquals(vret, proj.type().parameterType(0));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   400
                        MethodHandle vgFilter = valGetter.asType(methodType(ret));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   401
                        for (int j = 0; j < fold; j++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   402
                            vgFilter = dropArguments(vgFilter, j, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   403
                        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   404
                        x = foldArguments(proj, vgFilter).invokeWithArguments(new Object[len]);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   405
                        if (--faultCount == 0)  index[0] ^= 1;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   406
                        assertEquals(val, x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   407
                    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   408
                }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   409
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   410
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   411
        //System.out.println("faultCount="+faultCount);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   412
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   413
10081
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   414
    @Test
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   415
    public void testRecursion() throws Throwable {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   416
        if (!startTest("testRecursion"))  return;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   417
        final int LIMIT = 10;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   418
        for (int i = 0; i < LIMIT; i++) {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   419
            RFCB rfcb = new RFCB(i);
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   420
            Object x = "x", y = "y";
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   421
            Object result = rfcb.recursiveFunction(x, y);
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   422
            verbose(1, result);
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   423
        }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   424
    }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   425
    /** Recursive Function Control Block */
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   426
    private static class RFCB {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   427
        java.util.Random random;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   428
        final MethodHandle[] fns;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   429
        int depth;
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   430
        @SuppressWarnings("LeakingThisInConstructor")
10081
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   431
        RFCB(int seed) throws Throwable {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   432
            this.random = new java.util.Random(seed);
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   433
            this.fns = new MethodHandle[Math.max(29, (1 << MAX_DEPTH-2)/3)];
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   434
            java.util.Arrays.fill(fns, lookup().bind(this, "recursiveFunction", genericMethodType(2)));
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   435
            for (int i = 5; i < fns.length; i++) {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   436
                switch (i % 4) {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   437
                case 0: fns[i] = filterArguments(fns[i - 5], 0, insertArguments(fns[i - 4], 1, ".")); break;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   438
                case 1: fns[i] = filterArguments(fns[i - 5], 1, insertArguments(fns[i - 3], 1, ".")); break;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   439
                case 2: fns[i] = filterReturnValue(fns[i - 5], insertArguments(fns[i - 2], 1, ".")); break;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   440
                }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   441
            }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   442
        }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   443
        Object recursiveFunction(Object x, Object y) throws Throwable {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   444
            depth++;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   445
            try {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   446
                final int ACTION_COUNT = 11;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   447
                switch (random.nextInt(ACTION_COUNT)) {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   448
                case 1:
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   449
                    Throwable ex = new RuntimeException();
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   450
                    ex.fillInStackTrace();
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   451
                    if (VERBOSITY >= 2) ex.printStackTrace(System.out);
10081
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   452
                    x = "ST; " + x;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   453
                    break;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   454
                case 2:
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   455
                    System.gc();
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   456
                    x = "GC; " + x;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   457
                    break;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   458
                }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   459
                boolean isLeaf = (depth >= MAX_DEPTH);
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   460
                if (isLeaf) {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   461
                    return Arrays.asList(x, y).toString();
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   462
                }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   463
                return fns[random.nextInt(fns.length)].invokeExact(x, y);
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   464
            } finally {
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   465
                depth--;
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   466
            }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   467
        }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   468
    }
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   469
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   470
    private static MethodHandle sequence(MethodHandle mh1, MethodHandle... mhs) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   471
        MethodHandle res = mh1;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   472
        for (MethodHandle mh2 : mhs)
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   473
            res = filterReturnValue(res, mh2);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   474
        return res;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   475
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   476
    private static void assertEqualFunction(MethodHandle x, MethodHandle y) throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   477
        assertEquals(x.type(), y.type()); //??
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   478
        MethodType t = x.type();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   479
        if (t.parameterCount() == 0) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   480
            assertEqualFunctionAt(null, x, y);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   481
            return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   482
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   483
        Class<?> ptype = t.parameterType(0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   484
        if (ptype == long.class || ptype == Long.class) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   485
            for (long i = -10; i <= 10; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   486
                assertEqualFunctionAt(i, x, y);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   487
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   488
        } else {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   489
            for (int i = -10; i <= 10; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   490
                assertEqualFunctionAt(i, x, y);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   491
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   492
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   493
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   494
    private static void assertEqualFunctionAt(Object v, MethodHandle x, MethodHandle y) throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   495
        Object[] args = new Object[x.type().parameterCount()];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   496
        Arrays.fill(args, v);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   497
        Object xval = invokeWithCatch(x, args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   498
        Object yval = invokeWithCatch(y, args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   499
        String msg = "ok";
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   500
        if (!Objects.equals(xval, yval)) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   501
            msg = ("applying "+x+" & "+y+" to "+v);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   502
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   503
        assertEquals(msg, xval, yval);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   504
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   505
    private static Object invokeWithCatch(MethodHandle mh, Object... args) throws Throwable {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   506
        try {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   507
            return mh.invokeWithArguments(args);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   508
        } catch (Throwable ex) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   509
            System.out.println("threw: "+mh+Arrays.asList(args));
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   510
            ex.printStackTrace(System.out);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   511
            return ex;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   512
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   513
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   514
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   515
    private static final Lookup LOOKUP = lookup();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   516
    private static MethodHandle findStatic(String name,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   517
                                           Class<?> rtype,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   518
                                           Class<?>... ptypes) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   519
        try {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   520
            return LOOKUP.findStatic(LOOKUP.lookupClass(), name, methodType(rtype, ptypes));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   521
        } catch (ReflectiveOperationException ex) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   522
            throw new RuntimeException(ex);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   523
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   524
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   525
    private static MethodHandle findStatic(String name,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   526
                                           Class<?> rtype,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   527
                                           List<?> ptypes) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   528
        return findStatic(name, rtype, ptypes.toArray(new Class<?>[ptypes.size()]));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   529
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   530
    static int getProperty(String name, int dflt) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   531
        String qual = LOOKUP.lookupClass().getName();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   532
        String prop = System.getProperty(qual+"."+name);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   533
        if (prop == null)  prop = System.getProperty(name);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   534
        if (prop == null)  return dflt;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   535
        return Integer.parseInt(prop);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   536
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   537
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   538
    private static int opI(int... xs) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   539
        stress();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   540
        int base = 100;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   541
        int z = 0;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   542
        for (int x : xs) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   543
            z = (z * base) + (x % base);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   544
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   545
        verbose("opI", xs.length, xs, z);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   546
        return z;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   547
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   548
    private static int opI2(int x, int y) { return opI(x, y); }  // x*100 + y%100
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   549
    private static int opI3(int x, int y, int z) { return opI(x, y, z); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   550
    private static int opI4(int w, int x, int y, int z) { return opI(w, x, y, z); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   551
    private static int opI(int x) { return opI2(x, 37); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   552
    private static Object opI_L(int x) { return (Object) opI(x); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   553
    private static long opJ3(long x, long y, long z) { return (long) opI3((int)x, (int)y, (int)z); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   554
    private static long opJ2(long x, long y) { return (long) opI2((int)x, (int)y); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   555
    private static long opJ(long x) { return (long) opI((int)x); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   556
    private static Object opL2(Object x, Object y) { return (Object) opI2((int)x, (int)y); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   557
    private static Object opL(Object x) { return (Object) opI((int)x); }
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   558
    private static int opL2_I(Object x, Object y) { return opI2((int)x, (int)y); }
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   559
    private static int opL_I(Object x) { return opI((int)x); }
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   560
    private static long opL_J(Object x) { return (long) opI((int)x); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   561
    private static final MethodHandle opI, opI2, opI3, opI4, opI_L, opJ, opJ2, opJ3, opL2, opL, opL2_I, opL_I, opL_J;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   562
    static {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   563
        opI4 = findStatic("opI4", int.class, int.class, int.class, int.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   564
        opI3 = findStatic("opI3", int.class, int.class, int.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   565
        opI2 = findStatic("opI2", int.class, int.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   566
        opI = findStatic("opI", int.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   567
        opI_L = findStatic("opI_L", Object.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   568
        opJ = findStatic("opJ", long.class, long.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   569
        opJ2 = findStatic("opJ2", long.class, long.class, long.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   570
        opJ3 = findStatic("opJ3", long.class, long.class, long.class, long.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   571
        opL2 = findStatic("opL2", Object.class, Object.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   572
        opL = findStatic("opL", Object.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   573
        opL2_I = findStatic("opL2_I", int.class, Object.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   574
        opL_I = findStatic("opL_I", int.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   575
        opL_J = findStatic("opL_J", long.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   576
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   577
    private static final MethodHandle[] INT_COLLECTORS = {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   578
        constant(int.class, 42), opI, opI2, opI3, opI4
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   579
    };
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   580
    private static final MethodHandle[] BYTE_COLLECTORS = {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   581
        constant(byte.class, (byte)42), i2b(opI), i2b(opI2), i2b(opI3), i2b(opI4)
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   582
    };
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   583
    private static final MethodHandle[] LONG_COLLECTORS = {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   584
        constant(long.class, 42), opJ, opJ2, opJ3
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   585
    };
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   586
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   587
    private static int addI(int x, int y) { stress(); return x+y; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   588
    private static Object addL(Object x, Object y) { return addI((int)x, (int)y); }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   589
    private static final MethodHandle addI, addL;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   590
    static {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   591
        addI = findStatic("addI", int.class, int.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   592
        addL = findStatic("addL", Object.class, Object.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   593
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   594
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   595
    private static Object list8ints(int a, int b, int c, int d, int e, int f, int g, int h) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   596
        return Arrays.asList(a, b, c, d, e, f, g, h);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   597
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   598
    private static Object list8longs(long a, long b, long c, long d, long e, long f, long g, long h) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   599
        return Arrays.asList(a, b, c, d, e, f, g, h);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   600
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   601
    private static final MethodHandle list8ints = findStatic("list8ints", Object.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   602
                                                             Collections.nCopies(8, int.class));
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   603
    private static final MethodHandle list8longs = findStatic("list8longs", Object.class,
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   604
                                                              Collections.nCopies(8, long.class));
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   605
    private static final MethodHandle[] INT_LISTERS, LONG_LISTERS, BYTE_LISTERS;
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   606
    static {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   607
        int listerCount = list8ints.type().parameterCount() + 1;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   608
        INT_LISTERS  = new MethodHandle[listerCount];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   609
        LONG_LISTERS = new MethodHandle[listerCount];
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   610
        BYTE_LISTERS = new MethodHandle[listerCount];
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   611
        MethodHandle lister = list8ints;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   612
        MethodHandle llister = list8longs;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   613
        for (int i = listerCount - 1; ; i--) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   614
            INT_LISTERS[i] = lister;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   615
            LONG_LISTERS[i] = llister;
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   616
            BYTE_LISTERS[i] = i2b(lister);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   617
            if (i == 0)  break;
11534
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   618
            lister  = insertArguments(lister,  i-1, 0);
9949ffb8eb3a 7117167: Misc warnings in java.lang.invoke and sun.invoke.*
jrose
parents: 10081
diff changeset
   619
            llister = insertArguments(llister, i-1, 0L);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   620
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   621
    }
13610
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   622
    private static MethodHandle i2b(MethodHandle mh) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   623
        return MethodHandles.explicitCastArguments(mh, subst(mh.type(), int.class, byte.class));
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   624
    }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   625
    private static MethodType subst(MethodType mt, Class<?> from, Class<?> to) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   626
        for (int i = 0; i < mt.parameterCount(); i++) {
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   627
            if (mt.parameterType(i) == from)
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   628
                mt = mt.changeParameterType(i, to);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   629
        }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   630
        if (mt.returnType() == from)
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   631
            mt = mt.changeReturnType(to);
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   632
        return mt;
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   633
    }
28122b96858e 7191102: nightly failures after JSR 292 lazy method handle update (round 3)
jrose
parents: 11534
diff changeset
   634
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   635
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   636
    private static Object  convI_L(int     x) { stress(); return (Object)  x; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   637
    private static int     convL_I(Object  x) { stress(); return (int)     x; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   638
    private static Object  convJ_L(long    x) { stress(); return (Object)  x; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   639
    private static long    convL_J(Object  x) { stress(); return (long)    x; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   640
    private static int     convJ_I(long    x) { stress(); return (int)     x; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   641
    private static long    convI_J(int     x) { stress(); return (long)    x; }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   642
    private static final MethodHandle convI_L, convL_I, convJ_L, convL_J, convJ_I, convI_J;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   643
    static {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   644
        convI_L = findStatic("convI_L", Object.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   645
        convL_I = findStatic("convL_I", int.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   646
        convJ_L = findStatic("convJ_L", Object.class, long.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   647
        convL_J = findStatic("convL_J", long.class, Object.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   648
        convJ_I = findStatic("convJ_I", int.class, long.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   649
        convI_J = findStatic("convI_J", long.class, int.class);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   650
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   651
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   652
    // stress modes:
10081
0f7b9636aa64 7058651: JSR 292 unit tests need a refresh
jrose
parents: 9781
diff changeset
   653
    private static final int MAX_DEPTH = getProperty("MAX_DEPTH", 5);
9646
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   654
    private static final int REPEAT = getProperty("REPEAT", 0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   655
    private static final int STRESS = getProperty("STRESS", 0);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   656
    private static /*v*/ int STRESS_COUNT;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   657
    private static final Object[] SINK = new Object[4];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   658
    private static void stress() {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   659
        if (STRESS <= 0) return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   660
        int count = STRESS + (STRESS_COUNT++ & 0x1);  // non-constant value
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   661
        for (int i = 0; i < count; i++) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   662
            SINK[i % SINK.length] = new Object[STRESS + i % (SINK.length + 1)];
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   663
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   664
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   665
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   666
    // verbosity:
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   667
    private static final int VERBOSITY = getProperty("VERBOSITY", 0) + (REPEAT == 0 ? 0 : -1);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   668
    private static void verbose(Object a, Object b, Object c, Object d) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   669
        if (VERBOSITY <= 0)  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   670
        verbose(1, a, b, c, d);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   671
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   672
    private static void verbose(Object a, Object b, Object c) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   673
        if (VERBOSITY <= 0)  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   674
        verbose(1, a, b, c);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   675
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   676
    private static void verbose(int level, Object a, Object... bcd) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   677
        if (level > VERBOSITY)  return;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   678
        String m = a.toString();
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   679
        if (bcd != null && bcd.length > 0) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   680
            List<Object> l = new ArrayList<>(bcd.length);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   681
            for (Object x : bcd) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   682
                if (x instanceof Object[])  x = Arrays.asList((Object[])x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   683
                if (x instanceof int[])     x = Arrays.toString((int[])x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   684
                if (x instanceof long[])    x = Arrays.toString((long[])x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   685
                l.add(x);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   686
            }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   687
            m = m+Arrays.asList(bcd);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   688
        }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   689
        System.out.println(m);
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   690
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   691
    String testOnly;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   692
    String testOnlyTests;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   693
    private boolean startTest(String name) {
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   694
        if (testOnly != null && !testOnly.contains(name))
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   695
            return false;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   696
        verbose(0, "["+name+"]");
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   697
        testOnlyTests = (testOnlyTests == null) ? name : testOnlyTests+" "+name;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   698
        return true;
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   699
    }
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   700
5ebbe5ab084f 6939861: JVM should handle more conversion operations
jrose
parents:
diff changeset
   701
}