1 /*
 2  * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
 3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 4  *
 5  * This code is free software; you can redistribute it and/or modify it
 6  * under the terms of the GNU General Public License version 2 only, as
 7  * published by the Free Software Foundation.
 8  *
 9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 import jdk.incubator.code.Op;
25 import org.testng.Assert;
26 import org.testng.annotations.Test;
27 
28 import jdk.incubator.code.op.CoreOp;
29 import jdk.incubator.code.interpreter.Interpreter;
30 
31 import java.lang.invoke.MethodHandles;
32 import java.lang.reflect.Method;
33 import jdk.incubator.code.CodeReflection;
34 import java.util.Optional;
35 import java.util.stream.Stream;
36 
37 /*
38  * @test
39  * @modules jdk.incubator.code
40  * @run testng TestArrayTypes
41  */
42 
43 public class TestArrayTypes {
44     @CodeReflection
45     public static Class<?> f() {
46         return String[].class;
47     }
48 
49     @Test
50     public void testf() {
51         CoreOp.FuncOp f = getFuncOp("f");
52 
53         f.writeTo(System.out);
54 
55         Assert.assertEquals(Interpreter.invoke(MethodHandles.lookup(), f), f());
56     }
57 
58     @CodeReflection
59     public static Class<?> f2() {
60         return int[][].class;
61     }
62 
63     @Test
64     public void testf2() {
65         CoreOp.FuncOp f = getFuncOp("f2");
66 
67         f.writeTo(System.out);
68 
69         Assert.assertEquals(Interpreter.invoke(MethodHandles.lookup(), f), f2());
70     }
71 
72     @CodeReflection
73     public static Class<?> f3() {
74         return CoreOp.ArrayLengthOp[][][][][][][].class;
75     }
76 
77     @Test
78     public void testf3() {
79         CoreOp.FuncOp f = getFuncOp("f3");
80 
81         f.writeTo(System.out);
82 
83         Assert.assertEquals(Interpreter.invoke(MethodHandles.lookup(), f), f3());
84     }
85 
86     static CoreOp.FuncOp getFuncOp(String name) {
87         Optional<Method> om = Stream.of(TestArrayTypes.class.getDeclaredMethods())
88                 .filter(m -> m.getName().equals(name))
89                 .findFirst();
90 
91         Method m = om.get();
92         return Op.ofMethod(m).get();
93     }
94 }