/* * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. * */ /* * @test * @requires ((os.arch == "amd64" | os.arch == "x86_64") & sun.arch.data.model == "64") | os.arch == "aarch64" * @run testng/othervm --enable-native-access=ALL-UNNAMED TestVarArgs */ import jdk.incubator.foreign.CLinker; import jdk.incubator.foreign.FunctionDescriptor; import jdk.incubator.foreign.LibraryLookup; import jdk.incubator.foreign.MemoryAddress; import jdk.incubator.foreign.MemoryLayout; import jdk.incubator.foreign.MemorySegment; import jdk.incubator.foreign.ResourceScope; import jdk.incubator.foreign.ValueLayout; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import java.lang.invoke.MethodHandle; import java.lang.invoke.MethodType; import java.lang.invoke.VarHandle; import java.util.ArrayList; import java.util.List; import static jdk.incubator.foreign.CLinker.*; import static jdk.incubator.foreign.MemoryLayout.PathElement.*; import static org.testng.Assert.assertEquals; public class TestVarArgs { static final MemoryLayout ML_CallInfo = MemoryLayout.structLayout( C_POINTER.withName("writeback"), // writeback C_POINTER.withName("argIDs")); // arg ids static final VarHandle VH_CallInfo_writeback = ML_CallInfo.varHandle(long.class, groupElement("writeback")); static final VarHandle VH_CallInfo_argIDs = ML_CallInfo.varHandle(long.class, groupElement("argIDs")); static final VarHandle VH_IntArray = MemoryLayout.sequenceLayout(C_INT).varHandle(int.class, sequenceElement()); static final CLinker abi = CLinker.getInstance(); static final MemoryAddress varargsAddr = LibraryLookup.ofLibrary("VarArgs") .lookup("varargs").get(); static final int WRITEBACK_BYTES_PER_ARG = 8; @Test(dataProvider = "args") public void testVarArgs(List args) throws Throwable { try (ResourceScope scope = ResourceScope.newConfinedScope()) { MemorySegment writeBack = MemorySegment.allocateNative(args.size() * WRITEBACK_BYTES_PER_ARG, WRITEBACK_BYTES_PER_ARG, scope); MemorySegment callInfo = MemorySegment.allocateNative(ML_CallInfo, scope); MemorySegment argIDs = MemorySegment.allocateNative(MemoryLayout.sequenceLayout(args.size(), C_INT), scope); MemoryAddress callInfoPtr = callInfo.address(); VH_CallInfo_writeback.set(callInfo, writeBack.address().toRawLongValue()); VH_CallInfo_argIDs.set(callInfo, argIDs.address().toRawLongValue()); for (int i = 0; i < args.size(); i++) { VH_IntArray.set(argIDs, (long) i, args.get(i).id.ordinal()); } List argLayouts = new ArrayList<>(); argLayouts.add(C_POINTER); // call info argLayouts.add(C_INT); // size args.forEach(a -> argLayouts.add(asVarArg(a.layout))); FunctionDescriptor desc = FunctionDescriptor.ofVoid(argLayouts.toArray(MemoryLayout[]::new)); List> carriers = new ArrayList<>(); carriers.add(MemoryAddress.class); // call info carriers.add(int.class); // size args.forEach(a -> carriers.add(a.carrier)); MethodType mt = MethodType.methodType(void.class, carriers); MethodHandle downcallHandle = abi.downcallHandle(varargsAddr, mt, desc); List argValues = new ArrayList<>(); argValues.add(callInfoPtr); // call info argValues.add(args.size()); // size args.forEach(a -> argValues.add(a.value)); downcallHandle.invokeWithArguments(argValues); for (int i = 0; i < args.size(); i++) { VarArg a = args.get(i); MemorySegment writtenPtr = writeBack.asSlice(i * WRITEBACK_BYTES_PER_ARG); Object written = a.vh.get(writtenPtr); assertEquals(written, a.value); } } } @DataProvider public static Object[][] args() { return new Object[][] { new Object[] { List.of(VarArg.intArg(5), VarArg.intArg(10), VarArg.intArg(15)) }, new Object[] { List.of(VarArg.doubleArg(5), VarArg.doubleArg(10), VarArg.doubleArg(15)) }, new Object[] { List.of(VarArg.intArg(5), VarArg.doubleArg(10), VarArg.intArg(15)) }, }; } private static final class VarArg { final NativeType id; final Object value; final ValueLayout layout; final Class carrier; final VarHandle vh; private VarArg(NativeType id, ValueLayout layout, Class carrier, Object value) { this.id = id; this.value = value; this.layout = layout; this.carrier = carrier; this.vh = layout.varHandle(carrier); } static VarArg intArg(int value) { return new VarArg(VarArg.NativeType.INT, C_INT, int.class, value); } static VarArg doubleArg(double value) { return new VarArg(VarArg.NativeType.DOUBLE, C_DOUBLE, double.class, value); } enum NativeType { INT, DOUBLE } } }