1 /* 2 * Copyright (c) 2022, 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 /* 25 * @test 26 * @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64" 27 * @modules jdk.incubator.foreign/jdk.internal.foreign 28 * @build NativeTestHelper CallGeneratorHelper TestUpcallBase 29 * 30 * @run testng/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-VerifyDependencies 31 * --enable-native-access=ALL-UNNAMED -Dgenerator.sample.factor=17 32 * TestUpcallScope 33 */ 34 35 import jdk.incubator.foreign.NativeSymbol; 36 import jdk.incubator.foreign.ResourceScope; 37 import jdk.incubator.foreign.SegmentAllocator; 38 import org.testng.annotations.Test; 39 40 import java.lang.invoke.MethodHandle; 41 import java.util.ArrayList; 42 import java.util.List; 43 import java.util.function.Consumer; 44 45 public class TestUpcallScope extends TestUpcallBase { 46 47 static { 48 System.loadLibrary("TestUpcall"); 49 } 50 51 @Test(dataProvider="functions", dataProviderClass=CallGeneratorHelper.class) 52 public void testUpcalls(int count, String fName, Ret ret, List<ParamType> paramTypes, List<StructFieldType> fields) throws Throwable { 53 List<Consumer<Object>> returnChecks = new ArrayList<>(); 54 List<Consumer<Object[]>> argChecks = new ArrayList<>(); 55 NativeSymbol addr = LOOKUP.lookup(fName).get(); 56 try (ResourceScope scope = ResourceScope.newConfinedScope()) { 57 SegmentAllocator allocator = SegmentAllocator.newNativeArena(scope); 58 MethodHandle mh = downcallHandle(ABI, addr, allocator, function(ret, paramTypes, fields)); 59 Object[] args = makeArgs(scope, ret, paramTypes, fields, returnChecks, argChecks); 60 Object[] callArgs = args; 61 Object res = mh.invokeWithArguments(callArgs); 62 argChecks.forEach(c -> c.accept(args)); 63 if (ret == Ret.NON_VOID) { 64 returnChecks.forEach(c -> c.accept(res)); 65 } 66 } 67 } 68 69 }