|
| 1 | +/* |
| 2 | + * Copyright 2023-2024 secp256k1-jdk Developers. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.bitcoinj.secp.examples; |
| 17 | + |
| 18 | +import org.graalvm.nativeimage.hosted.Feature; |
| 19 | +import org.graalvm.nativeimage.hosted.RuntimeForeignAccess; |
| 20 | + |
| 21 | +import java.lang.foreign.FunctionDescriptor; |
| 22 | +import java.lang.foreign.Linker; |
| 23 | + |
| 24 | +import static java.lang.foreign.ValueLayout.*; |
| 25 | + |
| 26 | +/** |
| 27 | + * |
| 28 | + */ |
| 29 | +public class ForeignRegistrationFeature implements Feature { |
| 30 | + public void duringSetup(Feature.DuringSetupAccess access) { |
| 31 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.ofVoid()); |
| 32 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_INT, JAVA_INT)); |
| 33 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_LONG, JAVA_INT)); |
| 34 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_INT, JAVA_INT, JAVA_INT)); |
| 35 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_LONG, JAVA_LONG, JAVA_LONG)); |
| 36 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_LONG)); |
| 37 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_LONG)); |
| 38 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_LONG, JAVA_INT)); |
| 39 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(JAVA_INT, JAVA_LONG, JAVA_LONG)); |
| 40 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.ofVoid(JAVA_LONG, JAVA_LONG)); |
| 41 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.ofVoid(JAVA_LONG)); |
| 42 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.ofVoid(JAVA_INT, JAVA_INT)); |
| 43 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.of(ADDRESS, JAVA_INT, JAVA_INT), Linker.Option.firstVariadicArg(1)); |
| 44 | + RuntimeForeignAccess.registerForDowncall(FunctionDescriptor.ofVoid(JAVA_INT), Linker.Option.captureCallState("errno")); |
| 45 | + } |
| 46 | +} |
0 commit comments