ffi 1.15.4 → 1.16.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +90 -0
- data/Gemfile +1 -1
- data/README.md +3 -2
- data/Rakefile +28 -11
- data/ext/ffi_c/AbstractMemory.c +60 -36
- data/ext/ffi_c/AbstractMemory.h +3 -2
- data/ext/ffi_c/ArrayType.c +49 -13
- data/ext/ffi_c/ArrayType.h +1 -0
- data/ext/ffi_c/Buffer.c +86 -29
- data/ext/ffi_c/Call.c +18 -7
- data/ext/ffi_c/DynamicLibrary.c +89 -26
- data/ext/ffi_c/Function.c +244 -98
- data/ext/ffi_c/Function.h +1 -0
- data/ext/ffi_c/FunctionInfo.c +80 -24
- data/ext/ffi_c/LastError.c +25 -7
- data/ext/ffi_c/MappedType.c +66 -23
- data/ext/ffi_c/MappedType.h +0 -2
- data/ext/ffi_c/MemoryPointer.c +34 -7
- data/ext/ffi_c/MethodHandle.c +3 -1
- data/ext/ffi_c/Pointer.c +68 -29
- data/ext/ffi_c/Pointer.h +1 -0
- data/ext/ffi_c/Struct.c +155 -80
- data/ext/ffi_c/Struct.h +7 -4
- data/ext/ffi_c/StructByValue.c +48 -16
- data/ext/ffi_c/StructLayout.c +117 -48
- data/ext/ffi_c/Type.c +104 -36
- data/ext/ffi_c/Type.h +3 -1
- data/ext/ffi_c/Types.c +1 -1
- data/ext/ffi_c/Variadic.c +65 -23
- data/ext/ffi_c/compat.h +22 -22
- data/ext/ffi_c/extconf.rb +19 -2
- data/ext/ffi_c/ffi.c +4 -0
- data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/ext/ffi_c/libffi/.appveyor.yml +27 -9
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/build-in-container.sh +4 -6
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/install.sh +14 -7
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/site.exp +5 -3
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
- data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
- data/ext/ffi_c/libffi/.gitignore +10 -2
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +12 -5
- data/ext/ffi_c/libffi/Makefile.in +92 -34
- data/ext/ffi_c/libffi/README.md +144 -104
- data/ext/ffi_c/libffi/acinclude.m4 +10 -112
- data/ext/ffi_c/libffi/compile +348 -0
- data/ext/ffi_c/libffi/config.guess +623 -556
- data/ext/ffi_c/libffi/config.sub +75 -34
- data/ext/ffi_c/libffi/configure +4567 -3822
- data/ext/ffi_c/libffi/configure.ac +64 -28
- data/ext/ffi_c/libffi/configure.host +25 -6
- data/ext/ffi_c/libffi/doc/Makefile.in +9 -6
- data/ext/ffi_c/libffi/doc/libffi.texi +82 -33
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +12 -47
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +163 -52
- data/ext/ffi_c/libffi/include/Makefile.am +1 -1
- data/ext/ffi_c/libffi/include/Makefile.in +10 -9
- data/ext/ffi_c/libffi/include/ffi.h.in +54 -50
- data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +29 -0
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +512 -315
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -45
- data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/man/Makefile.in +9 -6
- data/ext/ffi_c/libffi/missing +1 -1
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +1 -1
- data/ext/ffi_c/libffi/msvcc.sh +1 -1
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +146 -42
- data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +134 -42
- data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
- data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +62 -17
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +3 -3
- data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +113 -42
- data/ext/ffi_c/libffi/src/closures.c +133 -47
- data/ext/ffi_c/libffi/src/dlmalloc.c +5 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
- data/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
- data/ext/ffi_c/libffi/src/mips/ffi.c +240 -65
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +137 -28
- data/ext/ffi_c/libffi/src/mips/o32.S +61 -4
- data/ext/ffi_c/libffi/src/moxie/ffi.c +47 -22
- data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
- data/ext/ffi_c/libffi/src/pa/ffi.c +32 -33
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +22 -8
- data/ext/ffi_c/libffi/src/pa/hpux32.S +83 -36
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +82 -35
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1 -1
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +22 -2
- data/ext/ffi_c/libffi/src/riscv/ffi.c +37 -4
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +16 -0
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
- data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +99 -37
- data/ext/ffi_c/libffi/src/x86/ffi64.c +67 -12
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +9 -5
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +43 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +172 -38
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +91 -88
- data/ext/ffi_c/libffi/src/x86/unix64.S +96 -6
- data/ext/ffi_c/libffi/src/x86/win64.S +20 -7
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
- data/ext/ffi_c/libffi/testsuite/Makefile.am +127 -114
- data/ext/ffi_c/libffi/testsuite/Makefile.in +136 -120
- data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +43 -21
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +3 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +6 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +18 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +29 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +35 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +19 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +18 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +29 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +28 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +24 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +39 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +25 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +14 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +14 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +14 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +20 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +40 -25
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +40 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +18 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +11 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +22 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -138
- data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +21 -21
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +32 -9
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +12 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +21 -5
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +10 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +10 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +6 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +1 -0
- data/ext/ffi_c/libffi.bsd.mk +2 -2
- data/ext/ffi_c/libffi.gnu.mk +2 -2
- data/ext/ffi_c/rbffi.h +1 -1
- data/ffi.gemspec +3 -3
- data/lib/ffi/autopointer.rb +7 -22
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +2 -2
- data/lib/ffi/dynamic_library.rb +89 -0
- data/lib/ffi/enum.rb +18 -11
- data/lib/ffi/ffi.rb +3 -0
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/library.rb +55 -71
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +1 -1
- data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
- data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/lib/ffi/platform.rb +15 -13
- data/lib/ffi/struct.rb +2 -1
- data/lib/ffi/struct_layout.rb +1 -1
- data/lib/ffi/struct_layout_builder.rb +1 -1
- data/lib/ffi/tools/const_generator.rb +5 -4
- data/lib/ffi/types.rb +32 -6
- data/lib/ffi/variadic.rb +19 -8
- data/lib/ffi/version.rb +1 -1
- data/rakelib/ffi_gem_helper.rb +1 -1
- data/samples/hello_ractor.rb +11 -0
- data/samples/qsort_ractor.rb +28 -0
- data.tar.gz.sig +0 -0
- metadata +103 -28
- metadata.gz.sig +0 -0
- data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
- data/ext/ffi_c/libffi/.travis/build.sh +0 -142
- data/ext/ffi_c/libffi/.travis.yml +0 -83
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- /data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/bfin-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/m32r-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/or1k-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/powerpc-eabisim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/wine-sim.exp +0 -0
- /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
- /data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +0 -0
@@ -0,0 +1,621 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - Copyright (c) 2022 Xu Chenghua <xuchenghua@loongson.cn>
|
3
|
+
2022 Cheng Lulu <chenglulu@loongson.cn>
|
4
|
+
Based on RISC-V port
|
5
|
+
|
6
|
+
LoongArch Foreign Function Interface
|
7
|
+
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
9
|
+
a copy of this software and associated documentation files (the
|
10
|
+
``Software''), to deal in the Software without restriction, including
|
11
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
12
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
13
|
+
permit persons to whom the Software is furnished to do so, subject to
|
14
|
+
the following conditions:
|
15
|
+
|
16
|
+
The above copyright notice and this permission notice shall be included
|
17
|
+
in all copies or substantial portions of the Software.
|
18
|
+
|
19
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
20
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
21
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
22
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
23
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
24
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
26
|
+
DEALINGS IN THE SOFTWARE.
|
27
|
+
----------------------------------------------------------------------- */
|
28
|
+
|
29
|
+
#include <ffi.h>
|
30
|
+
#include <ffi_common.h>
|
31
|
+
|
32
|
+
#include <stdlib.h>
|
33
|
+
#include <stdint.h>
|
34
|
+
|
35
|
+
#if defined(__loongarch_soft_float)
|
36
|
+
# define ABI_FRLEN 0
|
37
|
+
#elif defined(__loongarch_single_float)
|
38
|
+
# define ABI_FRLEN 32
|
39
|
+
# define ABI_FLOAT float
|
40
|
+
#elif defined(__loongarch_double_float)
|
41
|
+
# define ABI_FRLEN 64
|
42
|
+
# define ABI_FLOAT double
|
43
|
+
#else
|
44
|
+
#error unsupported LoongArch floating-point ABI
|
45
|
+
#endif
|
46
|
+
|
47
|
+
#define NARGREG 8
|
48
|
+
#define STKALIGN 16
|
49
|
+
#define MAXCOPYARG (2 * sizeof (double))
|
50
|
+
|
51
|
+
/* call_context registers
|
52
|
+
- 8 floating point parameter/result registers.
|
53
|
+
- 8 integer parameter/result registers.
|
54
|
+
- 2 registers used by the assembly code to in-place construct its own
|
55
|
+
stack frame
|
56
|
+
- frame register
|
57
|
+
- return register
|
58
|
+
*/
|
59
|
+
typedef struct call_context
|
60
|
+
{
|
61
|
+
ABI_FLOAT fa[8];
|
62
|
+
size_t a[10];
|
63
|
+
} call_context;
|
64
|
+
|
65
|
+
typedef struct call_builder
|
66
|
+
{
|
67
|
+
call_context *aregs;
|
68
|
+
int used_integer;
|
69
|
+
int used_float;
|
70
|
+
size_t *used_stack;
|
71
|
+
size_t *stack;
|
72
|
+
size_t next_struct_area;
|
73
|
+
} call_builder;
|
74
|
+
|
75
|
+
/* Integer (not pointer) less than ABI GRLEN. */
|
76
|
+
/* FFI_TYPE_INT does not appear to be used. */
|
77
|
+
#if __SIZEOF_POINTER__ == 8
|
78
|
+
# define IS_INT(type) ((type) >= FFI_TYPE_UINT8 && (type) <= FFI_TYPE_SINT64)
|
79
|
+
#else
|
80
|
+
# define IS_INT(type) ((type) >= FFI_TYPE_UINT8 && (type) <= FFI_TYPE_SINT32)
|
81
|
+
#endif
|
82
|
+
|
83
|
+
#if ABI_FRLEN
|
84
|
+
typedef struct float_struct_info
|
85
|
+
{
|
86
|
+
char as_elements;
|
87
|
+
char type1;
|
88
|
+
char offset2;
|
89
|
+
char type2;
|
90
|
+
} float_struct_info;
|
91
|
+
|
92
|
+
#if ABI_FRLEN >= 64
|
93
|
+
# define IS_FLOAT(type) ((type) >= FFI_TYPE_FLOAT && (type) <= FFI_TYPE_DOUBLE)
|
94
|
+
#else
|
95
|
+
# define IS_FLOAT(type) ((type) == FFI_TYPE_FLOAT)
|
96
|
+
#endif
|
97
|
+
|
98
|
+
static ffi_type **
|
99
|
+
flatten_struct (ffi_type *in, ffi_type **out, ffi_type **out_end)
|
100
|
+
{
|
101
|
+
int i;
|
102
|
+
|
103
|
+
if (out == out_end)
|
104
|
+
return out;
|
105
|
+
if (in->type != FFI_TYPE_STRUCT)
|
106
|
+
*(out++) = in;
|
107
|
+
else
|
108
|
+
for (i = 0; in->elements[i]; i++)
|
109
|
+
out = flatten_struct (in->elements[i], out, out_end);
|
110
|
+
return out;
|
111
|
+
}
|
112
|
+
|
113
|
+
/* Structs with at most two fields after flattening, one of which is of
|
114
|
+
floating point type, are passed in multiple registers if sufficient
|
115
|
+
registers are available. */
|
116
|
+
static float_struct_info
|
117
|
+
struct_passed_as_elements (call_builder *cb, ffi_type *top)
|
118
|
+
{
|
119
|
+
float_struct_info ret = {0, 0, 0, 0};
|
120
|
+
ffi_type *fields[3];
|
121
|
+
int num_floats, num_ints;
|
122
|
+
int num_fields = flatten_struct (top, fields, fields + 3) - fields;
|
123
|
+
|
124
|
+
if (num_fields == 1)
|
125
|
+
{
|
126
|
+
if (IS_FLOAT (fields[0]->type))
|
127
|
+
{
|
128
|
+
ret.as_elements = 1;
|
129
|
+
ret.type1 = fields[0]->type;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
else if (num_fields == 2)
|
133
|
+
{
|
134
|
+
num_floats = IS_FLOAT (fields[0]->type) + IS_FLOAT (fields[1]->type);
|
135
|
+
num_ints = IS_INT (fields[0]->type) + IS_INT (fields[1]->type);
|
136
|
+
if (num_floats == 0 || num_floats + num_ints != 2)
|
137
|
+
return ret;
|
138
|
+
if (cb->used_float + num_floats > NARGREG
|
139
|
+
|| cb->used_integer + (2 - num_floats) > NARGREG)
|
140
|
+
return ret;
|
141
|
+
if (!IS_FLOAT (fields[0]->type) && !IS_FLOAT (fields[1]->type))
|
142
|
+
return ret;
|
143
|
+
|
144
|
+
ret.type1 = fields[0]->type;
|
145
|
+
ret.type2 = fields[1]->type;
|
146
|
+
ret.offset2 = FFI_ALIGN (fields[0]->size, fields[1]->alignment);
|
147
|
+
ret.as_elements = 1;
|
148
|
+
}
|
149
|
+
return ret;
|
150
|
+
}
|
151
|
+
#endif
|
152
|
+
|
153
|
+
/* Allocates a single register, float register, or GRLEN-sized stack slot to a
|
154
|
+
datum. */
|
155
|
+
static void
|
156
|
+
marshal_atom (call_builder *cb, int type, void *data)
|
157
|
+
{
|
158
|
+
size_t value = 0;
|
159
|
+
switch (type)
|
160
|
+
{
|
161
|
+
case FFI_TYPE_UINT8:
|
162
|
+
value = *(uint8_t *) data;
|
163
|
+
break;
|
164
|
+
case FFI_TYPE_SINT8:
|
165
|
+
value = *(int8_t *) data;
|
166
|
+
break;
|
167
|
+
case FFI_TYPE_UINT16:
|
168
|
+
value = *(uint16_t *) data;
|
169
|
+
break;
|
170
|
+
case FFI_TYPE_SINT16:
|
171
|
+
value = *(int16_t *) data;
|
172
|
+
break;
|
173
|
+
/* 32-bit quantities are always sign-extended in the ABI. */
|
174
|
+
case FFI_TYPE_UINT32:
|
175
|
+
value = *(int32_t *) data;
|
176
|
+
break;
|
177
|
+
case FFI_TYPE_SINT32:
|
178
|
+
value = *(int32_t *) data;
|
179
|
+
break;
|
180
|
+
#if __SIZEOF_POINTER__ == 8
|
181
|
+
case FFI_TYPE_UINT64:
|
182
|
+
value = *(uint64_t *) data;
|
183
|
+
break;
|
184
|
+
case FFI_TYPE_SINT64:
|
185
|
+
value = *(int64_t *) data;
|
186
|
+
break;
|
187
|
+
#endif
|
188
|
+
case FFI_TYPE_POINTER:
|
189
|
+
value = *(size_t *) data;
|
190
|
+
break;
|
191
|
+
|
192
|
+
#if ABI_FRLEN >= 32
|
193
|
+
case FFI_TYPE_FLOAT:
|
194
|
+
*(float *)(cb->aregs->fa + cb->used_float++) = *(float *) data;
|
195
|
+
return;
|
196
|
+
#endif
|
197
|
+
#if ABI_FRLEN >= 64
|
198
|
+
case FFI_TYPE_DOUBLE:
|
199
|
+
(cb->aregs->fa[cb->used_float++]) = *(double *) data;
|
200
|
+
return;
|
201
|
+
#endif
|
202
|
+
default:
|
203
|
+
FFI_ASSERT (0);
|
204
|
+
break;
|
205
|
+
}
|
206
|
+
|
207
|
+
if (cb->used_integer == NARGREG)
|
208
|
+
*cb->used_stack++ = value;
|
209
|
+
else
|
210
|
+
cb->aregs->a[cb->used_integer++] = value;
|
211
|
+
}
|
212
|
+
|
213
|
+
static void
|
214
|
+
unmarshal_atom (call_builder *cb, int type, void *data)
|
215
|
+
{
|
216
|
+
size_t value;
|
217
|
+
switch (type)
|
218
|
+
{
|
219
|
+
#if ABI_FRLEN >= 32
|
220
|
+
case FFI_TYPE_FLOAT:
|
221
|
+
*(float *) data = *(float *)(cb->aregs->fa + cb->used_float++);
|
222
|
+
return;
|
223
|
+
#endif
|
224
|
+
#if ABI_FRLEN >= 64
|
225
|
+
case FFI_TYPE_DOUBLE:
|
226
|
+
*(double *) data = cb->aregs->fa[cb->used_float++];
|
227
|
+
return;
|
228
|
+
#endif
|
229
|
+
}
|
230
|
+
|
231
|
+
if (cb->used_integer == NARGREG)
|
232
|
+
value = *cb->used_stack++;
|
233
|
+
else
|
234
|
+
value = cb->aregs->a[cb->used_integer++];
|
235
|
+
|
236
|
+
switch (type)
|
237
|
+
{
|
238
|
+
case FFI_TYPE_UINT8:
|
239
|
+
case FFI_TYPE_SINT8:
|
240
|
+
case FFI_TYPE_UINT16:
|
241
|
+
case FFI_TYPE_SINT16:
|
242
|
+
case FFI_TYPE_UINT32:
|
243
|
+
case FFI_TYPE_SINT32:
|
244
|
+
#if __SIZEOF_POINTER__ == 8
|
245
|
+
case FFI_TYPE_UINT64:
|
246
|
+
case FFI_TYPE_SINT64:
|
247
|
+
#endif
|
248
|
+
case FFI_TYPE_POINTER:
|
249
|
+
*(ffi_arg *)data = value;
|
250
|
+
break;
|
251
|
+
default:
|
252
|
+
FFI_ASSERT (0);
|
253
|
+
break;
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
/* Allocate and copy a structure that is passed by value on the stack and
|
258
|
+
return a pointer to it. */
|
259
|
+
static void *
|
260
|
+
allocate_and_copy_struct_to_stack (call_builder *cb, void *data,
|
261
|
+
ffi_type *type)
|
262
|
+
{
|
263
|
+
size_t dest = cb->next_struct_area - type->size;
|
264
|
+
|
265
|
+
dest = FFI_ALIGN_DOWN (dest, type->alignment);
|
266
|
+
cb->next_struct_area = dest;
|
267
|
+
|
268
|
+
return memcpy ((char *)cb->stack + dest, data, type->size);
|
269
|
+
}
|
270
|
+
|
271
|
+
/* Adds an argument to a call, or a not by reference return value. */
|
272
|
+
static void
|
273
|
+
marshal (call_builder *cb, ffi_type *type, int var, void *data)
|
274
|
+
{
|
275
|
+
size_t realign[2];
|
276
|
+
|
277
|
+
#if ABI_FRLEN
|
278
|
+
if (!var && type->type == FFI_TYPE_STRUCT)
|
279
|
+
{
|
280
|
+
float_struct_info fsi = struct_passed_as_elements (cb, type);
|
281
|
+
if (fsi.as_elements)
|
282
|
+
{
|
283
|
+
marshal_atom (cb, fsi.type1, data);
|
284
|
+
if (fsi.offset2)
|
285
|
+
marshal_atom (cb, fsi.type2, ((char *) data) + fsi.offset2);
|
286
|
+
return;
|
287
|
+
}
|
288
|
+
}
|
289
|
+
|
290
|
+
if (!var && cb->used_float < NARGREG
|
291
|
+
&& IS_FLOAT (type->type))
|
292
|
+
{
|
293
|
+
marshal_atom (cb, type->type, data);
|
294
|
+
return;
|
295
|
+
}
|
296
|
+
|
297
|
+
double promoted;
|
298
|
+
if (var && type->type == FFI_TYPE_FLOAT)
|
299
|
+
{
|
300
|
+
/* C standard requires promoting float -> double for variable arg. */
|
301
|
+
promoted = *(float *) data;
|
302
|
+
type = &ffi_type_double;
|
303
|
+
data = &promoted;
|
304
|
+
}
|
305
|
+
#endif
|
306
|
+
|
307
|
+
if (type->size > 2 * __SIZEOF_POINTER__)
|
308
|
+
/* Pass by reference. */
|
309
|
+
{
|
310
|
+
allocate_and_copy_struct_to_stack (cb, data, type);
|
311
|
+
data = (char *)cb->stack + cb->next_struct_area;
|
312
|
+
marshal_atom (cb, FFI_TYPE_POINTER, &data);
|
313
|
+
}
|
314
|
+
else if (IS_INT (type->type) || type->type == FFI_TYPE_POINTER)
|
315
|
+
marshal_atom (cb, type->type, data);
|
316
|
+
else
|
317
|
+
{
|
318
|
+
/* Overlong integers, soft-float floats, and structs without special
|
319
|
+
float handling are treated identically from this point on. */
|
320
|
+
|
321
|
+
/* Variadics are aligned even in registers. */
|
322
|
+
if (type->alignment > __SIZEOF_POINTER__)
|
323
|
+
{
|
324
|
+
if (var)
|
325
|
+
cb->used_integer = FFI_ALIGN (cb->used_integer, 2);
|
326
|
+
cb->used_stack
|
327
|
+
= (size_t *) FFI_ALIGN (cb->used_stack, 2 * __SIZEOF_POINTER__);
|
328
|
+
}
|
329
|
+
|
330
|
+
memcpy (realign, data, type->size);
|
331
|
+
if (type->size > 0)
|
332
|
+
marshal_atom (cb, FFI_TYPE_POINTER, realign);
|
333
|
+
if (type->size > __SIZEOF_POINTER__)
|
334
|
+
marshal_atom (cb, FFI_TYPE_POINTER, realign + 1);
|
335
|
+
}
|
336
|
+
}
|
337
|
+
|
338
|
+
/* For arguments passed by reference returns the pointer, otherwise the arg
|
339
|
+
is copied (up to MAXCOPYARG bytes). */
|
340
|
+
static void *
|
341
|
+
unmarshal (call_builder *cb, ffi_type *type, int var, void *data)
|
342
|
+
{
|
343
|
+
size_t realign[2];
|
344
|
+
void *pointer;
|
345
|
+
|
346
|
+
#if ABI_FRLEN
|
347
|
+
if (!var && type->type == FFI_TYPE_STRUCT)
|
348
|
+
{
|
349
|
+
float_struct_info fsi = struct_passed_as_elements (cb, type);
|
350
|
+
if (fsi.as_elements)
|
351
|
+
{
|
352
|
+
unmarshal_atom (cb, fsi.type1, data);
|
353
|
+
if (fsi.offset2)
|
354
|
+
unmarshal_atom (cb, fsi.type2, ((char *) data) + fsi.offset2);
|
355
|
+
return data;
|
356
|
+
}
|
357
|
+
}
|
358
|
+
|
359
|
+
if (!var && cb->used_float < NARGREG
|
360
|
+
&& IS_FLOAT (type->type))
|
361
|
+
{
|
362
|
+
unmarshal_atom (cb, type->type, data);
|
363
|
+
return data;
|
364
|
+
}
|
365
|
+
|
366
|
+
if (var && type->type == FFI_TYPE_FLOAT)
|
367
|
+
{
|
368
|
+
int m = cb->used_integer;
|
369
|
+
void *promoted
|
370
|
+
= m < NARGREG ? cb->aregs->a + m : cb->used_stack + m - NARGREG + 1;
|
371
|
+
*(float *) promoted = *(double *) promoted;
|
372
|
+
}
|
373
|
+
#endif
|
374
|
+
|
375
|
+
if (type->size > 2 * __SIZEOF_POINTER__)
|
376
|
+
{
|
377
|
+
/* Pass by reference. */
|
378
|
+
unmarshal_atom (cb, FFI_TYPE_POINTER, (char *) &pointer);
|
379
|
+
return pointer;
|
380
|
+
}
|
381
|
+
else if (IS_INT (type->type) || type->type == FFI_TYPE_POINTER)
|
382
|
+
{
|
383
|
+
unmarshal_atom (cb, type->type, data);
|
384
|
+
return data;
|
385
|
+
}
|
386
|
+
else
|
387
|
+
{
|
388
|
+
/* Overlong integers, soft-float floats, and structs without special
|
389
|
+
float handling are treated identically from this point on. */
|
390
|
+
|
391
|
+
/* Variadics are aligned even in registers. */
|
392
|
+
if (type->alignment > __SIZEOF_POINTER__)
|
393
|
+
{
|
394
|
+
if (var)
|
395
|
+
cb->used_integer = FFI_ALIGN (cb->used_integer, 2);
|
396
|
+
cb->used_stack
|
397
|
+
= (size_t *) FFI_ALIGN (cb->used_stack, 2 * __SIZEOF_POINTER__);
|
398
|
+
}
|
399
|
+
|
400
|
+
if (type->size > 0)
|
401
|
+
unmarshal_atom (cb, FFI_TYPE_POINTER, realign);
|
402
|
+
if (type->size > __SIZEOF_POINTER__)
|
403
|
+
unmarshal_atom (cb, FFI_TYPE_POINTER, realign + 1);
|
404
|
+
memcpy (data, realign, type->size);
|
405
|
+
return data;
|
406
|
+
}
|
407
|
+
}
|
408
|
+
|
409
|
+
static int
|
410
|
+
passed_by_ref (call_builder *cb, ffi_type *type, int var)
|
411
|
+
{
|
412
|
+
#if ABI_FRLEN
|
413
|
+
if (!var && type->type == FFI_TYPE_STRUCT)
|
414
|
+
{
|
415
|
+
float_struct_info fsi = struct_passed_as_elements (cb, type);
|
416
|
+
if (fsi.as_elements)
|
417
|
+
return 0;
|
418
|
+
}
|
419
|
+
#endif
|
420
|
+
|
421
|
+
return type->size > 2 * __SIZEOF_POINTER__;
|
422
|
+
}
|
423
|
+
|
424
|
+
/* Perform machine dependent cif processing. */
|
425
|
+
ffi_status
|
426
|
+
ffi_prep_cif_machdep (ffi_cif *cif)
|
427
|
+
{
|
428
|
+
cif->loongarch_nfixedargs = cif->nargs;
|
429
|
+
return FFI_OK;
|
430
|
+
}
|
431
|
+
|
432
|
+
/* Perform machine dependent cif processing when we have a variadic
|
433
|
+
function. */
|
434
|
+
ffi_status
|
435
|
+
ffi_prep_cif_machdep_var (ffi_cif *cif, unsigned int nfixedargs,
|
436
|
+
unsigned int ntotalargs)
|
437
|
+
{
|
438
|
+
cif->loongarch_nfixedargs = nfixedargs;
|
439
|
+
return FFI_OK;
|
440
|
+
}
|
441
|
+
|
442
|
+
/* Low level routine for calling functions. */
|
443
|
+
extern void ffi_call_asm (void *stack, struct call_context *regs,
|
444
|
+
void (*fn) (void), void *closure) FFI_HIDDEN;
|
445
|
+
|
446
|
+
static void
|
447
|
+
ffi_call_int (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue,
|
448
|
+
void *closure)
|
449
|
+
{
|
450
|
+
/* This is a conservative estimate, assuming a complex return value and
|
451
|
+
that all remaining arguments are long long / __int128 */
|
452
|
+
size_t arg_bytes = cif->bytes;
|
453
|
+
size_t rval_bytes = 0;
|
454
|
+
if (rvalue == NULL && cif->rtype->size > 2 * __SIZEOF_POINTER__)
|
455
|
+
rval_bytes = FFI_ALIGN (cif->rtype->size, STKALIGN);
|
456
|
+
size_t alloc_size = arg_bytes + rval_bytes + sizeof (call_context);
|
457
|
+
|
458
|
+
/* The assembly code will deallocate all stack data at lower addresses
|
459
|
+
than the argument region, so we need to allocate the frame and the
|
460
|
+
return value after the arguments in a single allocation. */
|
461
|
+
size_t alloc_base;
|
462
|
+
/* Argument region must be 16-byte aligned in LP64 ABIs. */
|
463
|
+
if (_Alignof(max_align_t) >= STKALIGN)
|
464
|
+
/* Since sizeof long double is normally 16, the compiler will
|
465
|
+
guarantee alloca alignment to at least that much. */
|
466
|
+
alloc_base = (size_t) alloca (alloc_size);
|
467
|
+
else
|
468
|
+
alloc_base = FFI_ALIGN (alloca (alloc_size + STKALIGN - 1), STKALIGN);
|
469
|
+
|
470
|
+
if (rval_bytes)
|
471
|
+
rvalue = (void *) (alloc_base + arg_bytes);
|
472
|
+
|
473
|
+
call_builder cb;
|
474
|
+
cb.used_float = cb.used_integer = 0;
|
475
|
+
cb.aregs = (call_context *) (alloc_base + arg_bytes + rval_bytes);
|
476
|
+
cb.used_stack = (void *) alloc_base;
|
477
|
+
cb.stack = (void *) alloc_base;
|
478
|
+
cb.next_struct_area = arg_bytes;
|
479
|
+
|
480
|
+
int return_by_ref = passed_by_ref (&cb, cif->rtype, 0);
|
481
|
+
if (return_by_ref)
|
482
|
+
cb.aregs->a[cb.used_integer++] = (size_t)rvalue;
|
483
|
+
|
484
|
+
int i;
|
485
|
+
for (i = 0; i < cif->nargs; i++)
|
486
|
+
marshal (&cb, cif->arg_types[i], i >= cif->loongarch_nfixedargs,
|
487
|
+
avalue[i]);
|
488
|
+
|
489
|
+
ffi_call_asm ((void *) alloc_base, cb.aregs, fn, closure);
|
490
|
+
|
491
|
+
cb.used_float = cb.used_integer = 0;
|
492
|
+
if (!return_by_ref && rvalue)
|
493
|
+
unmarshal (&cb, cif->rtype, 0, rvalue);
|
494
|
+
}
|
495
|
+
|
496
|
+
void
|
497
|
+
ffi_call (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue)
|
498
|
+
{
|
499
|
+
ffi_call_int (cif, fn, rvalue, avalue, NULL);
|
500
|
+
}
|
501
|
+
|
502
|
+
void
|
503
|
+
ffi_call_go (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue,
|
504
|
+
void *closure)
|
505
|
+
{
|
506
|
+
ffi_call_int (cif, fn, rvalue, avalue, closure);
|
507
|
+
}
|
508
|
+
|
509
|
+
extern void ffi_closure_asm (void) FFI_HIDDEN;
|
510
|
+
|
511
|
+
ffi_status
|
512
|
+
ffi_prep_closure_loc (ffi_closure *closure, ffi_cif *cif,
|
513
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
514
|
+
void *user_data, void *codeloc)
|
515
|
+
{
|
516
|
+
uint32_t *tramp = (uint32_t *) &closure->tramp[0];
|
517
|
+
uint64_t fn = (uint64_t) (uintptr_t) ffi_closure_asm;
|
518
|
+
|
519
|
+
if (cif->abi <= FFI_FIRST_ABI || cif->abi >= FFI_LAST_ABI)
|
520
|
+
return FFI_BAD_ABI;
|
521
|
+
|
522
|
+
#if defined(FFI_EXEC_STATIC_TRAMP)
|
523
|
+
if (ffi_tramp_is_present(closure))
|
524
|
+
{
|
525
|
+
ffi_tramp_set_parms (closure->ftramp, ffi_closure_asm, closure);
|
526
|
+
goto out;
|
527
|
+
}
|
528
|
+
#endif
|
529
|
+
|
530
|
+
/* Fill the dynamic trampoline. We will call ffi_closure_inner with codeloc,
|
531
|
+
not closure, but as long as the memory is readable it should work. */
|
532
|
+
tramp[0] = 0x1800000c; /* pcaddi $t0, 0 (i.e. $t0 <- tramp) */
|
533
|
+
tramp[1] = 0x28c0418d; /* ld.d $t1, $t0, 16 */
|
534
|
+
tramp[2] = 0x4c0001a0; /* jirl $zero, $t1, 0 */
|
535
|
+
tramp[3] = 0x03400000; /* nop */
|
536
|
+
tramp[4] = fn;
|
537
|
+
tramp[5] = fn >> 32;
|
538
|
+
|
539
|
+
__builtin___clear_cache (codeloc, codeloc + FFI_TRAMPOLINE_SIZE);
|
540
|
+
|
541
|
+
#if defined(FFI_EXEC_STATIC_TRAMP)
|
542
|
+
out:
|
543
|
+
#endif
|
544
|
+
closure->cif = cif;
|
545
|
+
closure->fun = fun;
|
546
|
+
closure->user_data = user_data;
|
547
|
+
|
548
|
+
return FFI_OK;
|
549
|
+
}
|
550
|
+
|
551
|
+
extern void ffi_go_closure_asm (void) FFI_HIDDEN;
|
552
|
+
|
553
|
+
ffi_status
|
554
|
+
ffi_prep_go_closure (ffi_go_closure *closure, ffi_cif *cif,
|
555
|
+
void (*fun) (ffi_cif *, void *, void **, void *))
|
556
|
+
{
|
557
|
+
if (cif->abi <= FFI_FIRST_ABI || cif->abi >= FFI_LAST_ABI)
|
558
|
+
return FFI_BAD_ABI;
|
559
|
+
|
560
|
+
closure->tramp = (void *) ffi_go_closure_asm;
|
561
|
+
closure->cif = cif;
|
562
|
+
closure->fun = fun;
|
563
|
+
return FFI_OK;
|
564
|
+
}
|
565
|
+
|
566
|
+
/* Called by the assembly code with aregs pointing to saved argument registers
|
567
|
+
and stack pointing to the stacked arguments. Return values passed in
|
568
|
+
registers will be reloaded from aregs. */
|
569
|
+
void FFI_HIDDEN
|
570
|
+
ffi_closure_inner (ffi_cif *cif,
|
571
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
572
|
+
void *user_data, size_t *stack, call_context *aregs)
|
573
|
+
{
|
574
|
+
void **avalue = alloca (cif->nargs * sizeof (void *));
|
575
|
+
/* Storage for arguments which will be copied by unmarshal(). We could
|
576
|
+
theoretically avoid the copies in many cases and use at most 128 bytes
|
577
|
+
of memory, but allocating disjoint storage for each argument is
|
578
|
+
simpler. */
|
579
|
+
char *astorage = alloca (cif->nargs * MAXCOPYARG);
|
580
|
+
void *rvalue;
|
581
|
+
call_builder cb;
|
582
|
+
int return_by_ref;
|
583
|
+
int i;
|
584
|
+
|
585
|
+
cb.aregs = aregs;
|
586
|
+
cb.used_integer = cb.used_float = 0;
|
587
|
+
cb.used_stack = stack;
|
588
|
+
|
589
|
+
return_by_ref = passed_by_ref (&cb, cif->rtype, 0);
|
590
|
+
if (return_by_ref)
|
591
|
+
unmarshal (&cb, &ffi_type_pointer, 0, &rvalue);
|
592
|
+
else
|
593
|
+
rvalue = alloca (cif->rtype->size);
|
594
|
+
|
595
|
+
for (i = 0; i < cif->nargs; i++)
|
596
|
+
avalue[i]
|
597
|
+
= unmarshal (&cb, cif->arg_types[i], i >= cif->loongarch_nfixedargs,
|
598
|
+
astorage + i * MAXCOPYARG);
|
599
|
+
|
600
|
+
fun (cif, rvalue, avalue, user_data);
|
601
|
+
|
602
|
+
if (!return_by_ref && cif->rtype->type != FFI_TYPE_VOID)
|
603
|
+
{
|
604
|
+
cb.used_integer = cb.used_float = 0;
|
605
|
+
marshal (&cb, cif->rtype, 0, rvalue);
|
606
|
+
}
|
607
|
+
}
|
608
|
+
|
609
|
+
#if defined(FFI_EXEC_STATIC_TRAMP)
|
610
|
+
void *
|
611
|
+
ffi_tramp_arch (size_t *tramp_size, size_t *map_size)
|
612
|
+
{
|
613
|
+
extern void *trampoline_code_table;
|
614
|
+
|
615
|
+
*tramp_size = 16;
|
616
|
+
/* A mapping size of 64K is chosen to cover the page sizes of 4K, 16K, and
|
617
|
+
64K. */
|
618
|
+
*map_size = 1 << 16;
|
619
|
+
return &trampoline_code_table;
|
620
|
+
}
|
621
|
+
#endif
|
@@ -0,0 +1,82 @@
|
|
1
|
+
/* -----------------------------------------------------------------*-C-*-
|
2
|
+
ffitarget.h - Copyright (c) 2022 Xu Chenghua <xuchenghua@loongson.cn>
|
3
|
+
2022 Cheng Lulu <chenglulu@loongson.cn>
|
4
|
+
|
5
|
+
Target configuration macros for LoongArch.
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
a copy of this software and associated documentation files (the
|
9
|
+
``Software''), to deal in the Software without restriction, including
|
10
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be included
|
16
|
+
in all copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
19
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
21
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
22
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
23
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
25
|
+
DEALINGS IN THE SOFTWARE.
|
26
|
+
|
27
|
+
----------------------------------------------------------------------- */
|
28
|
+
|
29
|
+
#ifndef LIBFFI_TARGET_H
|
30
|
+
#define LIBFFI_TARGET_H
|
31
|
+
|
32
|
+
#ifndef LIBFFI_H
|
33
|
+
#error \
|
34
|
+
"Please do not include ffitarget.h directly into your source. Use ffi.h instead."
|
35
|
+
#endif
|
36
|
+
|
37
|
+
#ifndef __loongarch__
|
38
|
+
#error \
|
39
|
+
"libffi was configured for a LoongArch target but this does not appear to be a LoongArch compiler."
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#ifndef LIBFFI_ASM
|
43
|
+
|
44
|
+
typedef unsigned long ffi_arg;
|
45
|
+
typedef signed long ffi_sarg;
|
46
|
+
|
47
|
+
typedef enum ffi_abi
|
48
|
+
{
|
49
|
+
FFI_FIRST_ABI = 0,
|
50
|
+
FFI_LP64S,
|
51
|
+
FFI_LP64F,
|
52
|
+
FFI_LP64D,
|
53
|
+
FFI_LAST_ABI,
|
54
|
+
|
55
|
+
#if defined(__loongarch64)
|
56
|
+
#if defined(__loongarch_soft_float)
|
57
|
+
FFI_DEFAULT_ABI = FFI_LP64S
|
58
|
+
#elif defined(__loongarch_single_float)
|
59
|
+
FFI_DEFAULT_ABI = FFI_LP64F
|
60
|
+
#elif defined(__loongarch_double_float)
|
61
|
+
FFI_DEFAULT_ABI = FFI_LP64D
|
62
|
+
#else
|
63
|
+
#error unsupported LoongArch floating-point ABI
|
64
|
+
#endif
|
65
|
+
#else
|
66
|
+
#error unsupported LoongArch base architecture
|
67
|
+
#endif
|
68
|
+
} ffi_abi;
|
69
|
+
|
70
|
+
#endif /* LIBFFI_ASM */
|
71
|
+
|
72
|
+
/* ---- Definitions for closures ----------------------------------------- */
|
73
|
+
|
74
|
+
#define FFI_CLOSURES 1
|
75
|
+
#define FFI_GO_CLOSURES 1
|
76
|
+
#define FFI_TRAMPOLINE_SIZE 24
|
77
|
+
#define FFI_NATIVE_RAW_API 0
|
78
|
+
#define FFI_EXTRA_CIF_FIELDS \
|
79
|
+
unsigned loongarch_nfixedargs; \
|
80
|
+
unsigned loongarch_unused;
|
81
|
+
#define FFI_TARGET_SPECIFIC_VARIADIC
|
82
|
+
#endif
|