ffi 1.9.3-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/COPYING +49 -0
- data/LICENSE +24 -0
- data/README.md +109 -0
- data/Rakefile +220 -0
- data/ext/ffi_c/AbstractMemory.c +1032 -0
- data/ext/ffi_c/AbstractMemory.h +175 -0
- data/ext/ffi_c/ArrayType.c +162 -0
- data/ext/ffi_c/ArrayType.h +59 -0
- data/ext/ffi_c/Buffer.c +365 -0
- data/ext/ffi_c/Call.c +465 -0
- data/ext/ffi_c/Call.h +93 -0
- data/ext/ffi_c/ClosurePool.c +283 -0
- data/ext/ffi_c/ClosurePool.h +57 -0
- data/ext/ffi_c/DataConverter.c +91 -0
- data/ext/ffi_c/DynamicLibrary.c +333 -0
- data/ext/ffi_c/DynamicLibrary.h +49 -0
- data/ext/ffi_c/Function.c +999 -0
- data/ext/ffi_c/Function.h +87 -0
- data/ext/ffi_c/FunctionInfo.c +271 -0
- data/ext/ffi_c/LastError.c +184 -0
- data/ext/ffi_c/LastError.h +47 -0
- data/ext/ffi_c/LongDouble.c +63 -0
- data/ext/ffi_c/LongDouble.h +51 -0
- data/ext/ffi_c/MappedType.c +168 -0
- data/ext/ffi_c/MappedType.h +59 -0
- data/ext/ffi_c/MemoryPointer.c +197 -0
- data/ext/ffi_c/MemoryPointer.h +53 -0
- data/ext/ffi_c/MethodHandle.c +360 -0
- data/ext/ffi_c/MethodHandle.h +55 -0
- data/ext/ffi_c/Platform.c +121 -0
- data/ext/ffi_c/Platform.h +45 -0
- data/ext/ffi_c/Pointer.c +508 -0
- data/ext/ffi_c/Pointer.h +63 -0
- data/ext/ffi_c/Struct.c +828 -0
- data/ext/ffi_c/Struct.h +106 -0
- data/ext/ffi_c/StructByReference.c +190 -0
- data/ext/ffi_c/StructByReference.h +50 -0
- data/ext/ffi_c/StructByValue.c +150 -0
- data/ext/ffi_c/StructByValue.h +55 -0
- data/ext/ffi_c/StructLayout.c +698 -0
- data/ext/ffi_c/Thread.c +352 -0
- data/ext/ffi_c/Thread.h +95 -0
- data/ext/ffi_c/Type.c +397 -0
- data/ext/ffi_c/Type.h +62 -0
- data/ext/ffi_c/Types.c +139 -0
- data/ext/ffi_c/Types.h +89 -0
- data/ext/ffi_c/Variadic.c +276 -0
- data/ext/ffi_c/compat.h +83 -0
- data/ext/ffi_c/extconf.rb +64 -0
- data/ext/ffi_c/ffi.c +98 -0
- data/ext/ffi_c/libffi.bsd.mk +34 -0
- data/ext/ffi_c/libffi.darwin.mk +95 -0
- data/ext/ffi_c/libffi.gnu.mk +31 -0
- data/ext/ffi_c/libffi.mk +13 -0
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/ChangeLog +4600 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/ext/ffi_c/libffi/LICENSE +21 -0
- data/ext/ffi_c/libffi/Makefile.am +196 -0
- data/ext/ffi_c/libffi/Makefile.in +1820 -0
- data/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/ext/ffi_c/libffi/README +342 -0
- data/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/ext/ffi_c/libffi/aclocal.m4 +1873 -0
- data/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/ext/ffi_c/libffi/compile +143 -0
- data/ext/ffi_c/libffi/config.guess +1501 -0
- data/ext/ffi_c/libffi/config.sub +1705 -0
- data/ext/ffi_c/libffi/configure +17191 -0
- data/ext/ffi_c/libffi/configure.ac +496 -0
- data/ext/ffi_c/libffi/configure.host +11 -0
- data/ext/ffi_c/libffi/depcomp +630 -0
- data/ext/ffi_c/libffi/doc/libffi.info +593 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +600 -0
- data/ext/ffi_c/libffi/doc/stamp-vti +4 -0
- data/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/ext/ffi_c/libffi/fficonfig.h.in +199 -0
- data/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/Makefile.in +487 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +126 -0
- data/ext/ffi_c/libffi/install-sh +520 -0
- data/ext/ffi_c/libffi/libffi.pc.in +10 -0
- data/ext/ffi_c/libffi/libtool-version +29 -0
- data/ext/ffi_c/libffi/ltmain.sh +9636 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
- data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
- data/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
- data/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/Makefile.in +466 -0
- data/ext/ffi_c/libffi/man/ffi.3 +31 -0
- data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
- data/ext/ffi_c/libffi/mdate-sh +201 -0
- data/ext/ffi_c/libffi/missing +376 -0
- data/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
- data/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
- data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/ext/ffi_c/libffi/src/closures.c +615 -0
- data/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
- data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/ext/ffi_c/libffi/src/debug.c +59 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
- data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
- data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
- data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +591 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
- data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +177 -0
- data/ext/ffi_c/libffi/src/raw_api.c +254 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
- data/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
- data/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
- data/ext/ffi_c/libffi/src/types.c +77 -0
- data/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
- data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
- data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
- data/ext/ffi_c/libffi/src/x86/win64.S +468 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
- data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/ext/ffi_c/libffi/texinfo.tex +7210 -0
- data/ext/ffi_c/rbffi.h +57 -0
- data/ext/ffi_c/rbffi_endian.h +59 -0
- data/ext/ffi_c/win32/stdbool.h +8 -0
- data/ext/ffi_c/win32/stdint.h +201 -0
- data/ffi.gemspec +22 -0
- data/gen/Rakefile +30 -0
- data/lib/ffi.rb +28 -0
- data/lib/ffi/autopointer.rb +194 -0
- data/lib/ffi/buffer.rb +4 -0
- data/lib/ffi/callback.rb +4 -0
- data/lib/ffi/enum.rb +173 -0
- data/lib/ffi/errno.rb +43 -0
- data/lib/ffi/ffi.rb +44 -0
- data/lib/ffi/io.rb +62 -0
- data/lib/ffi/library.rb +499 -0
- data/lib/ffi/managedstruct.rb +84 -0
- data/lib/ffi/memorypointer.rb +1 -0
- data/lib/ffi/platform.rb +148 -0
- data/lib/ffi/platform/arm-linux/types.conf +104 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
- data/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +27 -0
- data/lib/ffi/pointer.rb +134 -0
- data/lib/ffi/struct.rb +367 -0
- data/lib/ffi/struct_layout_builder.rb +222 -0
- data/lib/ffi/tools/const_generator.rb +229 -0
- data/lib/ffi/tools/generator.rb +60 -0
- data/lib/ffi/tools/generator_task.rb +36 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +135 -0
- data/lib/ffi/types.rb +190 -0
- data/lib/ffi/union.rb +43 -0
- data/lib/ffi/variadic.rb +78 -0
- data/lib/ffi/version.rb +4 -0
- data/lib/ffi_c.so +0 -0
- data/libtest/Benchmark.c +52 -0
- data/libtest/BoolTest.c +34 -0
- data/libtest/BufferTest.c +31 -0
- data/libtest/ClosureTest.c +190 -0
- data/libtest/EnumTest.c +34 -0
- data/libtest/FunctionTest.c +58 -0
- data/libtest/GNUmakefile +149 -0
- data/libtest/GlobalVariable.c +62 -0
- data/libtest/LastErrorTest.c +21 -0
- data/libtest/NumberTest.c +132 -0
- data/libtest/PointerTest.c +63 -0
- data/libtest/ReferenceTest.c +23 -0
- data/libtest/StringTest.c +34 -0
- data/libtest/StructTest.c +243 -0
- data/libtest/UnionTest.c +43 -0
- data/libtest/VariadicTest.c +62 -0
- data/spec/ffi/async_callback_spec.rb +35 -0
- data/spec/ffi/bool_spec.rb +29 -0
- data/spec/ffi/buffer_spec.rb +251 -0
- data/spec/ffi/callback_spec.rb +667 -0
- data/spec/ffi/custom_param_type.rb +36 -0
- data/spec/ffi/custom_type_spec.rb +74 -0
- data/spec/ffi/dup_spec.rb +54 -0
- data/spec/ffi/enum_spec.rb +220 -0
- data/spec/ffi/errno_spec.rb +18 -0
- data/spec/ffi/ffi_spec.rb +29 -0
- data/spec/ffi/function_spec.rb +76 -0
- data/spec/ffi/library_spec.rb +216 -0
- data/spec/ffi/long_double.rb +30 -0
- data/spec/ffi/managed_struct_spec.rb +57 -0
- data/spec/ffi/number_spec.rb +236 -0
- data/spec/ffi/pointer_spec.rb +265 -0
- data/spec/ffi/rbx/attach_function_spec.rb +28 -0
- data/spec/ffi/rbx/memory_pointer_spec.rb +123 -0
- data/spec/ffi/rbx/spec_helper.rb +1 -0
- data/spec/ffi/rbx/struct_spec.rb +13 -0
- data/spec/ffi/spec_helper.rb +33 -0
- data/spec/ffi/string_spec.rb +108 -0
- data/spec/ffi/strptr_spec.rb +50 -0
- data/spec/ffi/struct_by_ref_spec.rb +43 -0
- data/spec/ffi/struct_callback_spec.rb +69 -0
- data/spec/ffi/struct_initialize_spec.rb +35 -0
- data/spec/ffi/struct_packed_spec.rb +51 -0
- data/spec/ffi/struct_spec.rb +748 -0
- data/spec/ffi/typedef_spec.rb +78 -0
- data/spec/ffi/union_spec.rb +65 -0
- data/spec/ffi/variadic_spec.rb +92 -0
- data/spec/spec.opts +4 -0
- metadata +562 -0
@@ -0,0 +1,177 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
prep_cif.c - Copyright (c) 2011 Anthony Green
|
3
|
+
Copyright (c) 1996, 1998, 2007 Red Hat, Inc.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
``Software''), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included
|
14
|
+
in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
20
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
21
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
23
|
+
DEALINGS IN THE SOFTWARE.
|
24
|
+
----------------------------------------------------------------------- */
|
25
|
+
|
26
|
+
#include <ffi.h>
|
27
|
+
#include <ffi_common.h>
|
28
|
+
#include <stdlib.h>
|
29
|
+
|
30
|
+
/* Round up to FFI_SIZEOF_ARG. */
|
31
|
+
|
32
|
+
#define STACK_ARG_SIZE(x) ALIGN(x, FFI_SIZEOF_ARG)
|
33
|
+
|
34
|
+
/* Perform machine independent initialization of aggregate type
|
35
|
+
specifications. */
|
36
|
+
|
37
|
+
static ffi_status initialize_aggregate(ffi_type *arg)
|
38
|
+
{
|
39
|
+
ffi_type **ptr;
|
40
|
+
|
41
|
+
if (UNLIKELY(arg == NULL || arg->elements == NULL))
|
42
|
+
return FFI_BAD_TYPEDEF;
|
43
|
+
|
44
|
+
arg->size = 0;
|
45
|
+
arg->alignment = 0;
|
46
|
+
|
47
|
+
ptr = &(arg->elements[0]);
|
48
|
+
|
49
|
+
if (UNLIKELY(ptr == 0))
|
50
|
+
return FFI_BAD_TYPEDEF;
|
51
|
+
|
52
|
+
while ((*ptr) != NULL)
|
53
|
+
{
|
54
|
+
if (UNLIKELY(((*ptr)->size == 0)
|
55
|
+
&& (initialize_aggregate((*ptr)) != FFI_OK)))
|
56
|
+
return FFI_BAD_TYPEDEF;
|
57
|
+
|
58
|
+
/* Perform a sanity check on the argument type */
|
59
|
+
FFI_ASSERT_VALID_TYPE(*ptr);
|
60
|
+
|
61
|
+
arg->size = ALIGN(arg->size, (*ptr)->alignment);
|
62
|
+
arg->size += (*ptr)->size;
|
63
|
+
|
64
|
+
arg->alignment = (arg->alignment > (*ptr)->alignment) ?
|
65
|
+
arg->alignment : (*ptr)->alignment;
|
66
|
+
|
67
|
+
ptr++;
|
68
|
+
}
|
69
|
+
|
70
|
+
/* Structure size includes tail padding. This is important for
|
71
|
+
structures that fit in one register on ABIs like the PowerPC64
|
72
|
+
Linux ABI that right justify small structs in a register.
|
73
|
+
It's also needed for nested structure layout, for example
|
74
|
+
struct A { long a; char b; }; struct B { struct A x; char y; };
|
75
|
+
should find y at an offset of 2*sizeof(long) and result in a
|
76
|
+
total size of 3*sizeof(long). */
|
77
|
+
arg->size = ALIGN (arg->size, arg->alignment);
|
78
|
+
|
79
|
+
if (arg->size == 0)
|
80
|
+
return FFI_BAD_TYPEDEF;
|
81
|
+
else
|
82
|
+
return FFI_OK;
|
83
|
+
}
|
84
|
+
|
85
|
+
#ifndef __CRIS__
|
86
|
+
/* The CRIS ABI specifies structure elements to have byte
|
87
|
+
alignment only, so it completely overrides this functions,
|
88
|
+
which assumes "natural" alignment and padding. */
|
89
|
+
|
90
|
+
/* Perform machine independent ffi_cif preparation, then call
|
91
|
+
machine dependent routine. */
|
92
|
+
|
93
|
+
ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs,
|
94
|
+
ffi_type *rtype, ffi_type **atypes)
|
95
|
+
{
|
96
|
+
unsigned bytes = 0;
|
97
|
+
unsigned int i;
|
98
|
+
ffi_type **ptr;
|
99
|
+
|
100
|
+
FFI_ASSERT(cif != NULL);
|
101
|
+
if (! (abi > FFI_FIRST_ABI && abi < FFI_LAST_ABI))
|
102
|
+
return FFI_BAD_ABI;
|
103
|
+
|
104
|
+
cif->abi = abi;
|
105
|
+
cif->arg_types = atypes;
|
106
|
+
cif->nargs = nargs;
|
107
|
+
cif->rtype = rtype;
|
108
|
+
|
109
|
+
cif->flags = 0;
|
110
|
+
|
111
|
+
/* Initialize the return type if necessary */
|
112
|
+
if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
|
113
|
+
return FFI_BAD_TYPEDEF;
|
114
|
+
|
115
|
+
/* Perform a sanity check on the return type */
|
116
|
+
FFI_ASSERT_VALID_TYPE(cif->rtype);
|
117
|
+
|
118
|
+
/* x86, x86-64 and s390 stack space allocation is handled in prep_machdep. */
|
119
|
+
#if !defined M68K && !defined X86_ANY && !defined S390 && !defined PA
|
120
|
+
/* Make space for the return structure pointer */
|
121
|
+
if (cif->rtype->type == FFI_TYPE_STRUCT
|
122
|
+
#ifdef SPARC
|
123
|
+
&& (cif->abi != FFI_V9 || cif->rtype->size > 32)
|
124
|
+
#endif
|
125
|
+
)
|
126
|
+
bytes = STACK_ARG_SIZE(sizeof(void*));
|
127
|
+
#endif
|
128
|
+
|
129
|
+
for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
|
130
|
+
{
|
131
|
+
|
132
|
+
/* Initialize any uninitialized aggregate type definitions */
|
133
|
+
if (((*ptr)->size == 0) && (initialize_aggregate((*ptr)) != FFI_OK))
|
134
|
+
return FFI_BAD_TYPEDEF;
|
135
|
+
|
136
|
+
/* Perform a sanity check on the argument type, do this
|
137
|
+
check after the initialization. */
|
138
|
+
FFI_ASSERT_VALID_TYPE(*ptr);
|
139
|
+
|
140
|
+
#if !defined X86_ANY && !defined S390 && !defined PA
|
141
|
+
#ifdef SPARC
|
142
|
+
if (((*ptr)->type == FFI_TYPE_STRUCT
|
143
|
+
&& ((*ptr)->size > 16 || cif->abi != FFI_V9))
|
144
|
+
|| ((*ptr)->type == FFI_TYPE_LONGDOUBLE
|
145
|
+
&& cif->abi != FFI_V9))
|
146
|
+
bytes += sizeof(void*);
|
147
|
+
else
|
148
|
+
#endif
|
149
|
+
{
|
150
|
+
/* Add any padding if necessary */
|
151
|
+
if (((*ptr)->alignment - 1) & bytes)
|
152
|
+
bytes = ALIGN(bytes, (*ptr)->alignment);
|
153
|
+
|
154
|
+
bytes += STACK_ARG_SIZE((*ptr)->size);
|
155
|
+
}
|
156
|
+
#endif
|
157
|
+
}
|
158
|
+
|
159
|
+
cif->bytes = bytes;
|
160
|
+
|
161
|
+
/* Perform machine dependent cif processing */
|
162
|
+
return ffi_prep_cif_machdep(cif);
|
163
|
+
}
|
164
|
+
#endif /* not __CRIS__ */
|
165
|
+
|
166
|
+
#if FFI_CLOSURES
|
167
|
+
|
168
|
+
ffi_status
|
169
|
+
ffi_prep_closure (ffi_closure* closure,
|
170
|
+
ffi_cif* cif,
|
171
|
+
void (*fun)(ffi_cif*,void*,void**,void*),
|
172
|
+
void *user_data)
|
173
|
+
{
|
174
|
+
return ffi_prep_closure_loc (closure, cif, fun, user_data, closure);
|
175
|
+
}
|
176
|
+
|
177
|
+
#endif
|
@@ -0,0 +1,254 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
raw_api.c - Copyright (c) 1999, 2008 Red Hat, Inc.
|
3
|
+
|
4
|
+
Author: Kresten Krab Thorup <krab@gnu.org>
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
``Software''), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included
|
15
|
+
in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
24
|
+
DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
|
27
|
+
/* This file defines generic functions for use with the raw api. */
|
28
|
+
|
29
|
+
#include <ffi.h>
|
30
|
+
#include <ffi_common.h>
|
31
|
+
|
32
|
+
#if !FFI_NO_RAW_API
|
33
|
+
|
34
|
+
size_t
|
35
|
+
ffi_raw_size (ffi_cif *cif)
|
36
|
+
{
|
37
|
+
size_t result = 0;
|
38
|
+
int i;
|
39
|
+
|
40
|
+
ffi_type **at = cif->arg_types;
|
41
|
+
|
42
|
+
for (i = cif->nargs-1; i >= 0; i--, at++)
|
43
|
+
{
|
44
|
+
#if !FFI_NO_STRUCTS
|
45
|
+
if ((*at)->type == FFI_TYPE_STRUCT)
|
46
|
+
result += ALIGN (sizeof (void*), FFI_SIZEOF_ARG);
|
47
|
+
else
|
48
|
+
#endif
|
49
|
+
result += ALIGN ((*at)->size, FFI_SIZEOF_ARG);
|
50
|
+
}
|
51
|
+
|
52
|
+
return result;
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
void
|
57
|
+
ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args)
|
58
|
+
{
|
59
|
+
unsigned i;
|
60
|
+
ffi_type **tp = cif->arg_types;
|
61
|
+
|
62
|
+
#if WORDS_BIGENDIAN
|
63
|
+
|
64
|
+
for (i = 0; i < cif->nargs; i++, tp++, args++)
|
65
|
+
{
|
66
|
+
switch ((*tp)->type)
|
67
|
+
{
|
68
|
+
case FFI_TYPE_UINT8:
|
69
|
+
case FFI_TYPE_SINT8:
|
70
|
+
*args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 1);
|
71
|
+
break;
|
72
|
+
|
73
|
+
case FFI_TYPE_UINT16:
|
74
|
+
case FFI_TYPE_SINT16:
|
75
|
+
*args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 2);
|
76
|
+
break;
|
77
|
+
|
78
|
+
#if FFI_SIZEOF_ARG >= 4
|
79
|
+
case FFI_TYPE_UINT32:
|
80
|
+
case FFI_TYPE_SINT32:
|
81
|
+
*args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 4);
|
82
|
+
break;
|
83
|
+
#endif
|
84
|
+
|
85
|
+
#if !FFI_NO_STRUCTS
|
86
|
+
case FFI_TYPE_STRUCT:
|
87
|
+
*args = (raw++)->ptr;
|
88
|
+
break;
|
89
|
+
#endif
|
90
|
+
|
91
|
+
case FFI_TYPE_POINTER:
|
92
|
+
*args = (void*) &(raw++)->ptr;
|
93
|
+
break;
|
94
|
+
|
95
|
+
default:
|
96
|
+
*args = raw;
|
97
|
+
raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
#else /* WORDS_BIGENDIAN */
|
102
|
+
|
103
|
+
#if !PDP
|
104
|
+
|
105
|
+
/* then assume little endian */
|
106
|
+
for (i = 0; i < cif->nargs; i++, tp++, args++)
|
107
|
+
{
|
108
|
+
#if !FFI_NO_STRUCTS
|
109
|
+
if ((*tp)->type == FFI_TYPE_STRUCT)
|
110
|
+
{
|
111
|
+
*args = (raw++)->ptr;
|
112
|
+
}
|
113
|
+
else
|
114
|
+
#endif
|
115
|
+
{
|
116
|
+
*args = (void*) raw;
|
117
|
+
raw += ALIGN ((*tp)->size, sizeof (void*)) / sizeof (void*);
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
#else
|
122
|
+
#error "pdp endian not supported"
|
123
|
+
#endif /* ! PDP */
|
124
|
+
|
125
|
+
#endif /* WORDS_BIGENDIAN */
|
126
|
+
}
|
127
|
+
|
128
|
+
void
|
129
|
+
ffi_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_raw *raw)
|
130
|
+
{
|
131
|
+
unsigned i;
|
132
|
+
ffi_type **tp = cif->arg_types;
|
133
|
+
|
134
|
+
for (i = 0; i < cif->nargs; i++, tp++, args++)
|
135
|
+
{
|
136
|
+
switch ((*tp)->type)
|
137
|
+
{
|
138
|
+
case FFI_TYPE_UINT8:
|
139
|
+
(raw++)->uint = *(UINT8*) (*args);
|
140
|
+
break;
|
141
|
+
|
142
|
+
case FFI_TYPE_SINT8:
|
143
|
+
(raw++)->sint = *(SINT8*) (*args);
|
144
|
+
break;
|
145
|
+
|
146
|
+
case FFI_TYPE_UINT16:
|
147
|
+
(raw++)->uint = *(UINT16*) (*args);
|
148
|
+
break;
|
149
|
+
|
150
|
+
case FFI_TYPE_SINT16:
|
151
|
+
(raw++)->sint = *(SINT16*) (*args);
|
152
|
+
break;
|
153
|
+
|
154
|
+
#if FFI_SIZEOF_ARG >= 4
|
155
|
+
case FFI_TYPE_UINT32:
|
156
|
+
(raw++)->uint = *(UINT32*) (*args);
|
157
|
+
break;
|
158
|
+
|
159
|
+
case FFI_TYPE_SINT32:
|
160
|
+
(raw++)->sint = *(SINT32*) (*args);
|
161
|
+
break;
|
162
|
+
#endif
|
163
|
+
|
164
|
+
#if !FFI_NO_STRUCTS
|
165
|
+
case FFI_TYPE_STRUCT:
|
166
|
+
(raw++)->ptr = *args;
|
167
|
+
break;
|
168
|
+
#endif
|
169
|
+
|
170
|
+
case FFI_TYPE_POINTER:
|
171
|
+
(raw++)->ptr = **(void***) args;
|
172
|
+
break;
|
173
|
+
|
174
|
+
default:
|
175
|
+
memcpy ((void*) raw->data, (void*)*args, (*tp)->size);
|
176
|
+
raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
|
177
|
+
}
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
#if !FFI_NATIVE_RAW_API
|
182
|
+
|
183
|
+
|
184
|
+
/* This is a generic definition of ffi_raw_call, to be used if the
|
185
|
+
* native system does not provide a machine-specific implementation.
|
186
|
+
* Having this, allows code to be written for the raw API, without
|
187
|
+
* the need for system-specific code to handle input in that format;
|
188
|
+
* these following couple of functions will handle the translation forth
|
189
|
+
* and back automatically. */
|
190
|
+
|
191
|
+
void ffi_raw_call (ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_raw *raw)
|
192
|
+
{
|
193
|
+
void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
|
194
|
+
ffi_raw_to_ptrarray (cif, raw, avalue);
|
195
|
+
ffi_call (cif, fn, rvalue, avalue);
|
196
|
+
}
|
197
|
+
|
198
|
+
#if FFI_CLOSURES /* base system provides closures */
|
199
|
+
|
200
|
+
static void
|
201
|
+
ffi_translate_args (ffi_cif *cif, void *rvalue,
|
202
|
+
void **avalue, void *user_data)
|
203
|
+
{
|
204
|
+
ffi_raw *raw = (ffi_raw*)alloca (ffi_raw_size (cif));
|
205
|
+
ffi_raw_closure *cl = (ffi_raw_closure*)user_data;
|
206
|
+
|
207
|
+
ffi_ptrarray_to_raw (cif, avalue, raw);
|
208
|
+
(*cl->fun) (cif, rvalue, raw, cl->user_data);
|
209
|
+
}
|
210
|
+
|
211
|
+
ffi_status
|
212
|
+
ffi_prep_raw_closure_loc (ffi_raw_closure* cl,
|
213
|
+
ffi_cif *cif,
|
214
|
+
void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
|
215
|
+
void *user_data,
|
216
|
+
void *codeloc)
|
217
|
+
{
|
218
|
+
ffi_status status;
|
219
|
+
|
220
|
+
status = ffi_prep_closure_loc ((ffi_closure*) cl,
|
221
|
+
cif,
|
222
|
+
&ffi_translate_args,
|
223
|
+
codeloc,
|
224
|
+
codeloc);
|
225
|
+
if (status == FFI_OK)
|
226
|
+
{
|
227
|
+
cl->fun = fun;
|
228
|
+
cl->user_data = user_data;
|
229
|
+
}
|
230
|
+
|
231
|
+
return status;
|
232
|
+
}
|
233
|
+
|
234
|
+
#endif /* FFI_CLOSURES */
|
235
|
+
#endif /* !FFI_NATIVE_RAW_API */
|
236
|
+
|
237
|
+
#if FFI_CLOSURES
|
238
|
+
|
239
|
+
/* Again, here is the generic version of ffi_prep_raw_closure, which
|
240
|
+
* will install an intermediate "hub" for translation of arguments from
|
241
|
+
* the pointer-array format, to the raw format */
|
242
|
+
|
243
|
+
ffi_status
|
244
|
+
ffi_prep_raw_closure (ffi_raw_closure* cl,
|
245
|
+
ffi_cif *cif,
|
246
|
+
void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
|
247
|
+
void *user_data)
|
248
|
+
{
|
249
|
+
return ffi_prep_raw_closure_loc (cl, cif, fun, user_data, cl);
|
250
|
+
}
|
251
|
+
|
252
|
+
#endif /* FFI_CLOSURES */
|
253
|
+
|
254
|
+
#endif /* !FFI_NO_RAW_API */
|
@@ -0,0 +1,780 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
ffi.c - Copyright (c) 2000, 2007 Software AG
|
3
|
+
Copyright (c) 2008 Red Hat, Inc
|
4
|
+
|
5
|
+
S390 Foreign Function Interface
|
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, EXPRESS
|
19
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
21
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
22
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
23
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
24
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
/*====================================================================*/
|
27
|
+
/* Includes */
|
28
|
+
/* -------- */
|
29
|
+
/*====================================================================*/
|
30
|
+
|
31
|
+
#include <ffi.h>
|
32
|
+
#include <ffi_common.h>
|
33
|
+
|
34
|
+
#include <stdlib.h>
|
35
|
+
#include <stdio.h>
|
36
|
+
|
37
|
+
/*====================== End of Includes =============================*/
|
38
|
+
|
39
|
+
/*====================================================================*/
|
40
|
+
/* Defines */
|
41
|
+
/* ------- */
|
42
|
+
/*====================================================================*/
|
43
|
+
|
44
|
+
/* Maximum number of GPRs available for argument passing. */
|
45
|
+
#define MAX_GPRARGS 5
|
46
|
+
|
47
|
+
/* Maximum number of FPRs available for argument passing. */
|
48
|
+
#ifdef __s390x__
|
49
|
+
#define MAX_FPRARGS 4
|
50
|
+
#else
|
51
|
+
#define MAX_FPRARGS 2
|
52
|
+
#endif
|
53
|
+
|
54
|
+
/* Round to multiple of 16. */
|
55
|
+
#define ROUND_SIZE(size) (((size) + 15) & ~15)
|
56
|
+
|
57
|
+
/* If these values change, sysv.S must be adapted! */
|
58
|
+
#define FFI390_RET_VOID 0
|
59
|
+
#define FFI390_RET_STRUCT 1
|
60
|
+
#define FFI390_RET_FLOAT 2
|
61
|
+
#define FFI390_RET_DOUBLE 3
|
62
|
+
#define FFI390_RET_INT32 4
|
63
|
+
#define FFI390_RET_INT64 5
|
64
|
+
|
65
|
+
/*===================== End of Defines ===============================*/
|
66
|
+
|
67
|
+
/*====================================================================*/
|
68
|
+
/* Prototypes */
|
69
|
+
/* ---------- */
|
70
|
+
/*====================================================================*/
|
71
|
+
|
72
|
+
static void ffi_prep_args (unsigned char *, extended_cif *);
|
73
|
+
void
|
74
|
+
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 2)
|
75
|
+
__attribute__ ((visibility ("hidden")))
|
76
|
+
#endif
|
77
|
+
ffi_closure_helper_SYSV (ffi_closure *, unsigned long *,
|
78
|
+
unsigned long long *, unsigned long *);
|
79
|
+
|
80
|
+
/*====================== End of Prototypes ===========================*/
|
81
|
+
|
82
|
+
/*====================================================================*/
|
83
|
+
/* Externals */
|
84
|
+
/* --------- */
|
85
|
+
/*====================================================================*/
|
86
|
+
|
87
|
+
extern void ffi_call_SYSV(unsigned,
|
88
|
+
extended_cif *,
|
89
|
+
void (*)(unsigned char *, extended_cif *),
|
90
|
+
unsigned,
|
91
|
+
void *,
|
92
|
+
void (*fn)(void));
|
93
|
+
|
94
|
+
extern void ffi_closure_SYSV(void);
|
95
|
+
|
96
|
+
/*====================== End of Externals ============================*/
|
97
|
+
|
98
|
+
/*====================================================================*/
|
99
|
+
/* */
|
100
|
+
/* Name - ffi_check_struct_type. */
|
101
|
+
/* */
|
102
|
+
/* Function - Determine if a structure can be passed within a */
|
103
|
+
/* general purpose or floating point register. */
|
104
|
+
/* */
|
105
|
+
/*====================================================================*/
|
106
|
+
|
107
|
+
static int
|
108
|
+
ffi_check_struct_type (ffi_type *arg)
|
109
|
+
{
|
110
|
+
size_t size = arg->size;
|
111
|
+
|
112
|
+
/* If the struct has just one element, look at that element
|
113
|
+
to find out whether to consider the struct as floating point. */
|
114
|
+
while (arg->type == FFI_TYPE_STRUCT
|
115
|
+
&& arg->elements[0] && !arg->elements[1])
|
116
|
+
arg = arg->elements[0];
|
117
|
+
|
118
|
+
/* Structs of size 1, 2, 4, and 8 are passed in registers,
|
119
|
+
just like the corresponding int/float types. */
|
120
|
+
switch (size)
|
121
|
+
{
|
122
|
+
case 1:
|
123
|
+
return FFI_TYPE_UINT8;
|
124
|
+
|
125
|
+
case 2:
|
126
|
+
return FFI_TYPE_UINT16;
|
127
|
+
|
128
|
+
case 4:
|
129
|
+
if (arg->type == FFI_TYPE_FLOAT)
|
130
|
+
return FFI_TYPE_FLOAT;
|
131
|
+
else
|
132
|
+
return FFI_TYPE_UINT32;
|
133
|
+
|
134
|
+
case 8:
|
135
|
+
if (arg->type == FFI_TYPE_DOUBLE)
|
136
|
+
return FFI_TYPE_DOUBLE;
|
137
|
+
else
|
138
|
+
return FFI_TYPE_UINT64;
|
139
|
+
|
140
|
+
default:
|
141
|
+
break;
|
142
|
+
}
|
143
|
+
|
144
|
+
/* Other structs are passed via a pointer to the data. */
|
145
|
+
return FFI_TYPE_POINTER;
|
146
|
+
}
|
147
|
+
|
148
|
+
/*======================== End of Routine ============================*/
|
149
|
+
|
150
|
+
/*====================================================================*/
|
151
|
+
/* */
|
152
|
+
/* Name - ffi_prep_args. */
|
153
|
+
/* */
|
154
|
+
/* Function - Prepare parameters for call to function. */
|
155
|
+
/* */
|
156
|
+
/* ffi_prep_args is called by the assembly routine once stack space */
|
157
|
+
/* has been allocated for the function's arguments. */
|
158
|
+
/* */
|
159
|
+
/*====================================================================*/
|
160
|
+
|
161
|
+
static void
|
162
|
+
ffi_prep_args (unsigned char *stack, extended_cif *ecif)
|
163
|
+
{
|
164
|
+
/* The stack space will be filled with those areas:
|
165
|
+
|
166
|
+
FPR argument register save area (highest addresses)
|
167
|
+
GPR argument register save area
|
168
|
+
temporary struct copies
|
169
|
+
overflow argument area (lowest addresses)
|
170
|
+
|
171
|
+
We set up the following pointers:
|
172
|
+
|
173
|
+
p_fpr: bottom of the FPR area (growing upwards)
|
174
|
+
p_gpr: bottom of the GPR area (growing upwards)
|
175
|
+
p_ov: bottom of the overflow area (growing upwards)
|
176
|
+
p_struct: top of the struct copy area (growing downwards)
|
177
|
+
|
178
|
+
All areas are kept aligned to twice the word size. */
|
179
|
+
|
180
|
+
int gpr_off = ecif->cif->bytes;
|
181
|
+
int fpr_off = gpr_off + ROUND_SIZE (MAX_GPRARGS * sizeof (long));
|
182
|
+
|
183
|
+
unsigned long long *p_fpr = (unsigned long long *)(stack + fpr_off);
|
184
|
+
unsigned long *p_gpr = (unsigned long *)(stack + gpr_off);
|
185
|
+
unsigned char *p_struct = (unsigned char *)p_gpr;
|
186
|
+
unsigned long *p_ov = (unsigned long *)stack;
|
187
|
+
|
188
|
+
int n_fpr = 0;
|
189
|
+
int n_gpr = 0;
|
190
|
+
int n_ov = 0;
|
191
|
+
|
192
|
+
ffi_type **ptr;
|
193
|
+
void **p_argv = ecif->avalue;
|
194
|
+
int i;
|
195
|
+
|
196
|
+
/* If we returning a structure then we set the first parameter register
|
197
|
+
to the address of where we are returning this structure. */
|
198
|
+
|
199
|
+
if (ecif->cif->flags == FFI390_RET_STRUCT)
|
200
|
+
p_gpr[n_gpr++] = (unsigned long) ecif->rvalue;
|
201
|
+
|
202
|
+
/* Now for the arguments. */
|
203
|
+
|
204
|
+
for (ptr = ecif->cif->arg_types, i = ecif->cif->nargs;
|
205
|
+
i > 0;
|
206
|
+
i--, ptr++, p_argv++)
|
207
|
+
{
|
208
|
+
void *arg = *p_argv;
|
209
|
+
int type = (*ptr)->type;
|
210
|
+
|
211
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
212
|
+
/* 16-byte long double is passed like a struct. */
|
213
|
+
if (type == FFI_TYPE_LONGDOUBLE)
|
214
|
+
type = FFI_TYPE_STRUCT;
|
215
|
+
#endif
|
216
|
+
|
217
|
+
/* Check how a structure type is passed. */
|
218
|
+
if (type == FFI_TYPE_STRUCT)
|
219
|
+
{
|
220
|
+
type = ffi_check_struct_type (*ptr);
|
221
|
+
|
222
|
+
/* If we pass the struct via pointer, copy the data. */
|
223
|
+
if (type == FFI_TYPE_POINTER)
|
224
|
+
{
|
225
|
+
p_struct -= ROUND_SIZE ((*ptr)->size);
|
226
|
+
memcpy (p_struct, (char *)arg, (*ptr)->size);
|
227
|
+
arg = &p_struct;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
/* Now handle all primitive int/pointer/float data types. */
|
232
|
+
switch (type)
|
233
|
+
{
|
234
|
+
case FFI_TYPE_DOUBLE:
|
235
|
+
if (n_fpr < MAX_FPRARGS)
|
236
|
+
p_fpr[n_fpr++] = *(unsigned long long *) arg;
|
237
|
+
else
|
238
|
+
#ifdef __s390x__
|
239
|
+
p_ov[n_ov++] = *(unsigned long *) arg;
|
240
|
+
#else
|
241
|
+
p_ov[n_ov++] = ((unsigned long *) arg)[0],
|
242
|
+
p_ov[n_ov++] = ((unsigned long *) arg)[1];
|
243
|
+
#endif
|
244
|
+
break;
|
245
|
+
|
246
|
+
case FFI_TYPE_FLOAT:
|
247
|
+
if (n_fpr < MAX_FPRARGS)
|
248
|
+
p_fpr[n_fpr++] = (long long) *(unsigned int *) arg << 32;
|
249
|
+
else
|
250
|
+
p_ov[n_ov++] = *(unsigned int *) arg;
|
251
|
+
break;
|
252
|
+
|
253
|
+
case FFI_TYPE_POINTER:
|
254
|
+
if (n_gpr < MAX_GPRARGS)
|
255
|
+
p_gpr[n_gpr++] = (unsigned long)*(unsigned char **) arg;
|
256
|
+
else
|
257
|
+
p_ov[n_ov++] = (unsigned long)*(unsigned char **) arg;
|
258
|
+
break;
|
259
|
+
|
260
|
+
case FFI_TYPE_UINT64:
|
261
|
+
case FFI_TYPE_SINT64:
|
262
|
+
#ifdef __s390x__
|
263
|
+
if (n_gpr < MAX_GPRARGS)
|
264
|
+
p_gpr[n_gpr++] = *(unsigned long *) arg;
|
265
|
+
else
|
266
|
+
p_ov[n_ov++] = *(unsigned long *) arg;
|
267
|
+
#else
|
268
|
+
if (n_gpr == MAX_GPRARGS-1)
|
269
|
+
n_gpr = MAX_GPRARGS;
|
270
|
+
if (n_gpr < MAX_GPRARGS)
|
271
|
+
p_gpr[n_gpr++] = ((unsigned long *) arg)[0],
|
272
|
+
p_gpr[n_gpr++] = ((unsigned long *) arg)[1];
|
273
|
+
else
|
274
|
+
p_ov[n_ov++] = ((unsigned long *) arg)[0],
|
275
|
+
p_ov[n_ov++] = ((unsigned long *) arg)[1];
|
276
|
+
#endif
|
277
|
+
break;
|
278
|
+
|
279
|
+
case FFI_TYPE_UINT32:
|
280
|
+
if (n_gpr < MAX_GPRARGS)
|
281
|
+
p_gpr[n_gpr++] = *(unsigned int *) arg;
|
282
|
+
else
|
283
|
+
p_ov[n_ov++] = *(unsigned int *) arg;
|
284
|
+
break;
|
285
|
+
|
286
|
+
case FFI_TYPE_INT:
|
287
|
+
case FFI_TYPE_SINT32:
|
288
|
+
if (n_gpr < MAX_GPRARGS)
|
289
|
+
p_gpr[n_gpr++] = *(signed int *) arg;
|
290
|
+
else
|
291
|
+
p_ov[n_ov++] = *(signed int *) arg;
|
292
|
+
break;
|
293
|
+
|
294
|
+
case FFI_TYPE_UINT16:
|
295
|
+
if (n_gpr < MAX_GPRARGS)
|
296
|
+
p_gpr[n_gpr++] = *(unsigned short *) arg;
|
297
|
+
else
|
298
|
+
p_ov[n_ov++] = *(unsigned short *) arg;
|
299
|
+
break;
|
300
|
+
|
301
|
+
case FFI_TYPE_SINT16:
|
302
|
+
if (n_gpr < MAX_GPRARGS)
|
303
|
+
p_gpr[n_gpr++] = *(signed short *) arg;
|
304
|
+
else
|
305
|
+
p_ov[n_ov++] = *(signed short *) arg;
|
306
|
+
break;
|
307
|
+
|
308
|
+
case FFI_TYPE_UINT8:
|
309
|
+
if (n_gpr < MAX_GPRARGS)
|
310
|
+
p_gpr[n_gpr++] = *(unsigned char *) arg;
|
311
|
+
else
|
312
|
+
p_ov[n_ov++] = *(unsigned char *) arg;
|
313
|
+
break;
|
314
|
+
|
315
|
+
case FFI_TYPE_SINT8:
|
316
|
+
if (n_gpr < MAX_GPRARGS)
|
317
|
+
p_gpr[n_gpr++] = *(signed char *) arg;
|
318
|
+
else
|
319
|
+
p_ov[n_ov++] = *(signed char *) arg;
|
320
|
+
break;
|
321
|
+
|
322
|
+
default:
|
323
|
+
FFI_ASSERT (0);
|
324
|
+
break;
|
325
|
+
}
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
/*======================== End of Routine ============================*/
|
330
|
+
|
331
|
+
/*====================================================================*/
|
332
|
+
/* */
|
333
|
+
/* Name - ffi_prep_cif_machdep. */
|
334
|
+
/* */
|
335
|
+
/* Function - Perform machine dependent CIF processing. */
|
336
|
+
/* */
|
337
|
+
/*====================================================================*/
|
338
|
+
|
339
|
+
ffi_status
|
340
|
+
ffi_prep_cif_machdep(ffi_cif *cif)
|
341
|
+
{
|
342
|
+
size_t struct_size = 0;
|
343
|
+
int n_gpr = 0;
|
344
|
+
int n_fpr = 0;
|
345
|
+
int n_ov = 0;
|
346
|
+
|
347
|
+
ffi_type **ptr;
|
348
|
+
int i;
|
349
|
+
|
350
|
+
/* Determine return value handling. */
|
351
|
+
|
352
|
+
switch (cif->rtype->type)
|
353
|
+
{
|
354
|
+
/* Void is easy. */
|
355
|
+
case FFI_TYPE_VOID:
|
356
|
+
cif->flags = FFI390_RET_VOID;
|
357
|
+
break;
|
358
|
+
|
359
|
+
/* Structures are returned via a hidden pointer. */
|
360
|
+
case FFI_TYPE_STRUCT:
|
361
|
+
cif->flags = FFI390_RET_STRUCT;
|
362
|
+
n_gpr++; /* We need one GPR to pass the pointer. */
|
363
|
+
break;
|
364
|
+
|
365
|
+
/* Floating point values are returned in fpr 0. */
|
366
|
+
case FFI_TYPE_FLOAT:
|
367
|
+
cif->flags = FFI390_RET_FLOAT;
|
368
|
+
break;
|
369
|
+
|
370
|
+
case FFI_TYPE_DOUBLE:
|
371
|
+
cif->flags = FFI390_RET_DOUBLE;
|
372
|
+
break;
|
373
|
+
|
374
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
375
|
+
case FFI_TYPE_LONGDOUBLE:
|
376
|
+
cif->flags = FFI390_RET_STRUCT;
|
377
|
+
n_gpr++;
|
378
|
+
break;
|
379
|
+
#endif
|
380
|
+
/* Integer values are returned in gpr 2 (and gpr 3
|
381
|
+
for 64-bit values on 31-bit machines). */
|
382
|
+
case FFI_TYPE_UINT64:
|
383
|
+
case FFI_TYPE_SINT64:
|
384
|
+
cif->flags = FFI390_RET_INT64;
|
385
|
+
break;
|
386
|
+
|
387
|
+
case FFI_TYPE_POINTER:
|
388
|
+
case FFI_TYPE_INT:
|
389
|
+
case FFI_TYPE_UINT32:
|
390
|
+
case FFI_TYPE_SINT32:
|
391
|
+
case FFI_TYPE_UINT16:
|
392
|
+
case FFI_TYPE_SINT16:
|
393
|
+
case FFI_TYPE_UINT8:
|
394
|
+
case FFI_TYPE_SINT8:
|
395
|
+
/* These are to be extended to word size. */
|
396
|
+
#ifdef __s390x__
|
397
|
+
cif->flags = FFI390_RET_INT64;
|
398
|
+
#else
|
399
|
+
cif->flags = FFI390_RET_INT32;
|
400
|
+
#endif
|
401
|
+
break;
|
402
|
+
|
403
|
+
default:
|
404
|
+
FFI_ASSERT (0);
|
405
|
+
break;
|
406
|
+
}
|
407
|
+
|
408
|
+
/* Now for the arguments. */
|
409
|
+
|
410
|
+
for (ptr = cif->arg_types, i = cif->nargs;
|
411
|
+
i > 0;
|
412
|
+
i--, ptr++)
|
413
|
+
{
|
414
|
+
int type = (*ptr)->type;
|
415
|
+
|
416
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
417
|
+
/* 16-byte long double is passed like a struct. */
|
418
|
+
if (type == FFI_TYPE_LONGDOUBLE)
|
419
|
+
type = FFI_TYPE_STRUCT;
|
420
|
+
#endif
|
421
|
+
|
422
|
+
/* Check how a structure type is passed. */
|
423
|
+
if (type == FFI_TYPE_STRUCT)
|
424
|
+
{
|
425
|
+
type = ffi_check_struct_type (*ptr);
|
426
|
+
|
427
|
+
/* If we pass the struct via pointer, we must reserve space
|
428
|
+
to copy its data for proper call-by-value semantics. */
|
429
|
+
if (type == FFI_TYPE_POINTER)
|
430
|
+
struct_size += ROUND_SIZE ((*ptr)->size);
|
431
|
+
}
|
432
|
+
|
433
|
+
/* Now handle all primitive int/float data types. */
|
434
|
+
switch (type)
|
435
|
+
{
|
436
|
+
/* The first MAX_FPRARGS floating point arguments
|
437
|
+
go in FPRs, the rest overflow to the stack. */
|
438
|
+
|
439
|
+
case FFI_TYPE_DOUBLE:
|
440
|
+
if (n_fpr < MAX_FPRARGS)
|
441
|
+
n_fpr++;
|
442
|
+
else
|
443
|
+
n_ov += sizeof (double) / sizeof (long);
|
444
|
+
break;
|
445
|
+
|
446
|
+
case FFI_TYPE_FLOAT:
|
447
|
+
if (n_fpr < MAX_FPRARGS)
|
448
|
+
n_fpr++;
|
449
|
+
else
|
450
|
+
n_ov++;
|
451
|
+
break;
|
452
|
+
|
453
|
+
/* On 31-bit machines, 64-bit integers are passed in GPR pairs,
|
454
|
+
if one is still available, or else on the stack. If only one
|
455
|
+
register is free, skip the register (it won't be used for any
|
456
|
+
subsequent argument either). */
|
457
|
+
|
458
|
+
#ifndef __s390x__
|
459
|
+
case FFI_TYPE_UINT64:
|
460
|
+
case FFI_TYPE_SINT64:
|
461
|
+
if (n_gpr == MAX_GPRARGS-1)
|
462
|
+
n_gpr = MAX_GPRARGS;
|
463
|
+
if (n_gpr < MAX_GPRARGS)
|
464
|
+
n_gpr += 2;
|
465
|
+
else
|
466
|
+
n_ov += 2;
|
467
|
+
break;
|
468
|
+
#endif
|
469
|
+
|
470
|
+
/* Everything else is passed in GPRs (until MAX_GPRARGS
|
471
|
+
have been used) or overflows to the stack. */
|
472
|
+
|
473
|
+
default:
|
474
|
+
if (n_gpr < MAX_GPRARGS)
|
475
|
+
n_gpr++;
|
476
|
+
else
|
477
|
+
n_ov++;
|
478
|
+
break;
|
479
|
+
}
|
480
|
+
}
|
481
|
+
|
482
|
+
/* Total stack space as required for overflow arguments
|
483
|
+
and temporary structure copies. */
|
484
|
+
|
485
|
+
cif->bytes = ROUND_SIZE (n_ov * sizeof (long)) + struct_size;
|
486
|
+
|
487
|
+
return FFI_OK;
|
488
|
+
}
|
489
|
+
|
490
|
+
/*======================== End of Routine ============================*/
|
491
|
+
|
492
|
+
/*====================================================================*/
|
493
|
+
/* */
|
494
|
+
/* Name - ffi_call. */
|
495
|
+
/* */
|
496
|
+
/* Function - Call the FFI routine. */
|
497
|
+
/* */
|
498
|
+
/*====================================================================*/
|
499
|
+
|
500
|
+
void
|
501
|
+
ffi_call(ffi_cif *cif,
|
502
|
+
void (*fn)(void),
|
503
|
+
void *rvalue,
|
504
|
+
void **avalue)
|
505
|
+
{
|
506
|
+
int ret_type = cif->flags;
|
507
|
+
extended_cif ecif;
|
508
|
+
|
509
|
+
ecif.cif = cif;
|
510
|
+
ecif.avalue = avalue;
|
511
|
+
ecif.rvalue = rvalue;
|
512
|
+
|
513
|
+
/* If we don't have a return value, we need to fake one. */
|
514
|
+
if (rvalue == NULL)
|
515
|
+
{
|
516
|
+
if (ret_type == FFI390_RET_STRUCT)
|
517
|
+
ecif.rvalue = alloca (cif->rtype->size);
|
518
|
+
else
|
519
|
+
ret_type = FFI390_RET_VOID;
|
520
|
+
}
|
521
|
+
|
522
|
+
switch (cif->abi)
|
523
|
+
{
|
524
|
+
case FFI_SYSV:
|
525
|
+
ffi_call_SYSV (cif->bytes, &ecif, ffi_prep_args,
|
526
|
+
ret_type, ecif.rvalue, fn);
|
527
|
+
break;
|
528
|
+
|
529
|
+
default:
|
530
|
+
FFI_ASSERT (0);
|
531
|
+
break;
|
532
|
+
}
|
533
|
+
}
|
534
|
+
|
535
|
+
/*======================== End of Routine ============================*/
|
536
|
+
|
537
|
+
/*====================================================================*/
|
538
|
+
/* */
|
539
|
+
/* Name - ffi_closure_helper_SYSV. */
|
540
|
+
/* */
|
541
|
+
/* Function - Call a FFI closure target function. */
|
542
|
+
/* */
|
543
|
+
/*====================================================================*/
|
544
|
+
|
545
|
+
void
|
546
|
+
ffi_closure_helper_SYSV (ffi_closure *closure,
|
547
|
+
unsigned long *p_gpr,
|
548
|
+
unsigned long long *p_fpr,
|
549
|
+
unsigned long *p_ov)
|
550
|
+
{
|
551
|
+
unsigned long long ret_buffer;
|
552
|
+
|
553
|
+
void *rvalue = &ret_buffer;
|
554
|
+
void **avalue;
|
555
|
+
void **p_arg;
|
556
|
+
|
557
|
+
int n_gpr = 0;
|
558
|
+
int n_fpr = 0;
|
559
|
+
int n_ov = 0;
|
560
|
+
|
561
|
+
ffi_type **ptr;
|
562
|
+
int i;
|
563
|
+
|
564
|
+
/* Allocate buffer for argument list pointers. */
|
565
|
+
|
566
|
+
p_arg = avalue = alloca (closure->cif->nargs * sizeof (void *));
|
567
|
+
|
568
|
+
/* If we returning a structure, pass the structure address
|
569
|
+
directly to the target function. Otherwise, have the target
|
570
|
+
function store the return value to the GPR save area. */
|
571
|
+
|
572
|
+
if (closure->cif->flags == FFI390_RET_STRUCT)
|
573
|
+
rvalue = (void *) p_gpr[n_gpr++];
|
574
|
+
|
575
|
+
/* Now for the arguments. */
|
576
|
+
|
577
|
+
for (ptr = closure->cif->arg_types, i = closure->cif->nargs;
|
578
|
+
i > 0;
|
579
|
+
i--, p_arg++, ptr++)
|
580
|
+
{
|
581
|
+
int deref_struct_pointer = 0;
|
582
|
+
int type = (*ptr)->type;
|
583
|
+
|
584
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
585
|
+
/* 16-byte long double is passed like a struct. */
|
586
|
+
if (type == FFI_TYPE_LONGDOUBLE)
|
587
|
+
type = FFI_TYPE_STRUCT;
|
588
|
+
#endif
|
589
|
+
|
590
|
+
/* Check how a structure type is passed. */
|
591
|
+
if (type == FFI_TYPE_STRUCT)
|
592
|
+
{
|
593
|
+
type = ffi_check_struct_type (*ptr);
|
594
|
+
|
595
|
+
/* If we pass the struct via pointer, remember to
|
596
|
+
retrieve the pointer later. */
|
597
|
+
if (type == FFI_TYPE_POINTER)
|
598
|
+
deref_struct_pointer = 1;
|
599
|
+
}
|
600
|
+
|
601
|
+
/* Pointers are passed like UINTs of the same size. */
|
602
|
+
if (type == FFI_TYPE_POINTER)
|
603
|
+
#ifdef __s390x__
|
604
|
+
type = FFI_TYPE_UINT64;
|
605
|
+
#else
|
606
|
+
type = FFI_TYPE_UINT32;
|
607
|
+
#endif
|
608
|
+
|
609
|
+
/* Now handle all primitive int/float data types. */
|
610
|
+
switch (type)
|
611
|
+
{
|
612
|
+
case FFI_TYPE_DOUBLE:
|
613
|
+
if (n_fpr < MAX_FPRARGS)
|
614
|
+
*p_arg = &p_fpr[n_fpr++];
|
615
|
+
else
|
616
|
+
*p_arg = &p_ov[n_ov],
|
617
|
+
n_ov += sizeof (double) / sizeof (long);
|
618
|
+
break;
|
619
|
+
|
620
|
+
case FFI_TYPE_FLOAT:
|
621
|
+
if (n_fpr < MAX_FPRARGS)
|
622
|
+
*p_arg = &p_fpr[n_fpr++];
|
623
|
+
else
|
624
|
+
*p_arg = (char *)&p_ov[n_ov++] + sizeof (long) - 4;
|
625
|
+
break;
|
626
|
+
|
627
|
+
case FFI_TYPE_UINT64:
|
628
|
+
case FFI_TYPE_SINT64:
|
629
|
+
#ifdef __s390x__
|
630
|
+
if (n_gpr < MAX_GPRARGS)
|
631
|
+
*p_arg = &p_gpr[n_gpr++];
|
632
|
+
else
|
633
|
+
*p_arg = &p_ov[n_ov++];
|
634
|
+
#else
|
635
|
+
if (n_gpr == MAX_GPRARGS-1)
|
636
|
+
n_gpr = MAX_GPRARGS;
|
637
|
+
if (n_gpr < MAX_GPRARGS)
|
638
|
+
*p_arg = &p_gpr[n_gpr], n_gpr += 2;
|
639
|
+
else
|
640
|
+
*p_arg = &p_ov[n_ov], n_ov += 2;
|
641
|
+
#endif
|
642
|
+
break;
|
643
|
+
|
644
|
+
case FFI_TYPE_INT:
|
645
|
+
case FFI_TYPE_UINT32:
|
646
|
+
case FFI_TYPE_SINT32:
|
647
|
+
if (n_gpr < MAX_GPRARGS)
|
648
|
+
*p_arg = (char *)&p_gpr[n_gpr++] + sizeof (long) - 4;
|
649
|
+
else
|
650
|
+
*p_arg = (char *)&p_ov[n_ov++] + sizeof (long) - 4;
|
651
|
+
break;
|
652
|
+
|
653
|
+
case FFI_TYPE_UINT16:
|
654
|
+
case FFI_TYPE_SINT16:
|
655
|
+
if (n_gpr < MAX_GPRARGS)
|
656
|
+
*p_arg = (char *)&p_gpr[n_gpr++] + sizeof (long) - 2;
|
657
|
+
else
|
658
|
+
*p_arg = (char *)&p_ov[n_ov++] + sizeof (long) - 2;
|
659
|
+
break;
|
660
|
+
|
661
|
+
case FFI_TYPE_UINT8:
|
662
|
+
case FFI_TYPE_SINT8:
|
663
|
+
if (n_gpr < MAX_GPRARGS)
|
664
|
+
*p_arg = (char *)&p_gpr[n_gpr++] + sizeof (long) - 1;
|
665
|
+
else
|
666
|
+
*p_arg = (char *)&p_ov[n_ov++] + sizeof (long) - 1;
|
667
|
+
break;
|
668
|
+
|
669
|
+
default:
|
670
|
+
FFI_ASSERT (0);
|
671
|
+
break;
|
672
|
+
}
|
673
|
+
|
674
|
+
/* If this is a struct passed via pointer, we need to
|
675
|
+
actually retrieve that pointer. */
|
676
|
+
if (deref_struct_pointer)
|
677
|
+
*p_arg = *(void **)*p_arg;
|
678
|
+
}
|
679
|
+
|
680
|
+
|
681
|
+
/* Call the target function. */
|
682
|
+
(closure->fun) (closure->cif, rvalue, avalue, closure->user_data);
|
683
|
+
|
684
|
+
/* Convert the return value. */
|
685
|
+
switch (closure->cif->rtype->type)
|
686
|
+
{
|
687
|
+
/* Void is easy, and so is struct. */
|
688
|
+
case FFI_TYPE_VOID:
|
689
|
+
case FFI_TYPE_STRUCT:
|
690
|
+
#if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE
|
691
|
+
case FFI_TYPE_LONGDOUBLE:
|
692
|
+
#endif
|
693
|
+
break;
|
694
|
+
|
695
|
+
/* Floating point values are returned in fpr 0. */
|
696
|
+
case FFI_TYPE_FLOAT:
|
697
|
+
p_fpr[0] = (long long) *(unsigned int *) rvalue << 32;
|
698
|
+
break;
|
699
|
+
|
700
|
+
case FFI_TYPE_DOUBLE:
|
701
|
+
p_fpr[0] = *(unsigned long long *) rvalue;
|
702
|
+
break;
|
703
|
+
|
704
|
+
/* Integer values are returned in gpr 2 (and gpr 3
|
705
|
+
for 64-bit values on 31-bit machines). */
|
706
|
+
case FFI_TYPE_UINT64:
|
707
|
+
case FFI_TYPE_SINT64:
|
708
|
+
#ifdef __s390x__
|
709
|
+
p_gpr[0] = *(unsigned long *) rvalue;
|
710
|
+
#else
|
711
|
+
p_gpr[0] = ((unsigned long *) rvalue)[0],
|
712
|
+
p_gpr[1] = ((unsigned long *) rvalue)[1];
|
713
|
+
#endif
|
714
|
+
break;
|
715
|
+
|
716
|
+
case FFI_TYPE_POINTER:
|
717
|
+
case FFI_TYPE_UINT32:
|
718
|
+
case FFI_TYPE_UINT16:
|
719
|
+
case FFI_TYPE_UINT8:
|
720
|
+
p_gpr[0] = *(unsigned long *) rvalue;
|
721
|
+
break;
|
722
|
+
|
723
|
+
case FFI_TYPE_INT:
|
724
|
+
case FFI_TYPE_SINT32:
|
725
|
+
case FFI_TYPE_SINT16:
|
726
|
+
case FFI_TYPE_SINT8:
|
727
|
+
p_gpr[0] = *(signed long *) rvalue;
|
728
|
+
break;
|
729
|
+
|
730
|
+
default:
|
731
|
+
FFI_ASSERT (0);
|
732
|
+
break;
|
733
|
+
}
|
734
|
+
}
|
735
|
+
|
736
|
+
/*======================== End of Routine ============================*/
|
737
|
+
|
738
|
+
/*====================================================================*/
|
739
|
+
/* */
|
740
|
+
/* Name - ffi_prep_closure_loc. */
|
741
|
+
/* */
|
742
|
+
/* Function - Prepare a FFI closure. */
|
743
|
+
/* */
|
744
|
+
/*====================================================================*/
|
745
|
+
|
746
|
+
ffi_status
|
747
|
+
ffi_prep_closure_loc (ffi_closure *closure,
|
748
|
+
ffi_cif *cif,
|
749
|
+
void (*fun) (ffi_cif *, void *, void **, void *),
|
750
|
+
void *user_data,
|
751
|
+
void *codeloc)
|
752
|
+
{
|
753
|
+
FFI_ASSERT (cif->abi == FFI_SYSV);
|
754
|
+
|
755
|
+
#ifndef __s390x__
|
756
|
+
*(short *)&closure->tramp [0] = 0x0d10; /* basr %r1,0 */
|
757
|
+
*(short *)&closure->tramp [2] = 0x9801; /* lm %r0,%r1,6(%r1) */
|
758
|
+
*(short *)&closure->tramp [4] = 0x1006;
|
759
|
+
*(short *)&closure->tramp [6] = 0x07f1; /* br %r1 */
|
760
|
+
*(long *)&closure->tramp [8] = (long)codeloc;
|
761
|
+
*(long *)&closure->tramp[12] = (long)&ffi_closure_SYSV;
|
762
|
+
#else
|
763
|
+
*(short *)&closure->tramp [0] = 0x0d10; /* basr %r1,0 */
|
764
|
+
*(short *)&closure->tramp [2] = 0xeb01; /* lmg %r0,%r1,14(%r1) */
|
765
|
+
*(short *)&closure->tramp [4] = 0x100e;
|
766
|
+
*(short *)&closure->tramp [6] = 0x0004;
|
767
|
+
*(short *)&closure->tramp [8] = 0x07f1; /* br %r1 */
|
768
|
+
*(long *)&closure->tramp[16] = (long)codeloc;
|
769
|
+
*(long *)&closure->tramp[24] = (long)&ffi_closure_SYSV;
|
770
|
+
#endif
|
771
|
+
|
772
|
+
closure->cif = cif;
|
773
|
+
closure->user_data = user_data;
|
774
|
+
closure->fun = fun;
|
775
|
+
|
776
|
+
return FFI_OK;
|
777
|
+
}
|
778
|
+
|
779
|
+
/*======================== End of Routine ============================*/
|
780
|
+
|