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.Reflect;
25 import jdk.incubator.code.Op;
26 import jdk.incubator.code.dialect.core.CoreOp;
27 import jdk.incubator.code.interpreter.Interpreter;
28 import org.junit.jupiter.api.Assertions;
29 import org.junit.jupiter.api.Test;
30
31 import java.lang.invoke.MethodHandles;
32 import java.lang.reflect.Method;
33 import java.util.Optional;
34 import java.util.stream.Stream;
35
36 /*
37 * @test
38 * @modules jdk.incubator.code
39 * @run junit TestArrayCreation
40 * @run main Unreflect TestArrayCreation
41 * @run junit TestArrayCreation
42 */
43
44 public class TestArrayCreation {
45 @Reflect
46 public static String[] f() {
47 return new String[10];
48 }
49
50 @Test
51 public void testf() {
52 CoreOp.FuncOp f = getFuncOp("f");
53
54 System.out.println(f.toText());
55
56 Assertions.assertArrayEquals(f(), (Object[]) Interpreter.invoke(MethodHandles.lookup(), f));
57 }
58
59 @Reflect
60 public static String[][] f2() {
61 return new String[10][];
62 }
63
64 @Test
65 public void testf2() {
66 CoreOp.FuncOp f = getFuncOp("f2");
67
68 System.out.println(f.toText());
69
70 Assertions.assertArrayEquals(f2(), (Object[]) Interpreter.invoke(MethodHandles.lookup(), f));
71 }
72
73 @Reflect
74 public static String[][] f3() {
75 return new String[10][10];
76 }
77
78 @Test
79 public void testf3() {
80 CoreOp.FuncOp f = getFuncOp("f3");
81
82 System.out.println(f.toText());
83
84 Assertions.assertArrayEquals(f3(), (Object[]) Interpreter.invoke(MethodHandles.lookup(), f));
85 }
86
87 @Reflect
88 public static String[][] f4() {
89 return new String[][]{{"one", "two"}, {"three"}};
90 }
91
92 @Test
93 public void testf4() {
94 CoreOp.FuncOp f = getFuncOp("f4");
95
96 System.out.println(f.toText());
97
98 Assertions.assertArrayEquals(f4(), (Object[]) Interpreter.invoke(MethodHandles.lookup(), f));
99 }
100
101 static CoreOp.FuncOp getFuncOp(String name) {
102 Optional<Method> om = Stream.of(TestArrayCreation.class.getDeclaredMethods())
103 .filter(m -> m.getName().equals(name))
104 .findFirst();
105
106 Method m = om.get();
107 return Op.ofMethod(m).get();
108 }
109 }