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,109 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing with different structure size.
|
3
|
+
Depending on the ABI. Check overlapping.
|
4
|
+
Limitations: none.
|
5
|
+
PR: none.
|
6
|
+
Originator: <andreast@gcc.gnu.org> 20050708 */
|
7
|
+
|
8
|
+
/* { dg-do run } */
|
9
|
+
#include "ffitest.h"
|
10
|
+
|
11
|
+
typedef struct cls_struct_5byte {
|
12
|
+
unsigned char a;
|
13
|
+
unsigned char b;
|
14
|
+
unsigned char c;
|
15
|
+
unsigned char d;
|
16
|
+
unsigned char e;
|
17
|
+
} cls_struct_5byte;
|
18
|
+
|
19
|
+
cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
20
|
+
struct cls_struct_5byte a2)
|
21
|
+
{
|
22
|
+
struct cls_struct_5byte result;
|
23
|
+
|
24
|
+
result.a = a1.a + a2.a;
|
25
|
+
result.b = a1.b + a2.b;
|
26
|
+
result.c = a1.c + a2.c;
|
27
|
+
result.d = a1.d + a2.d;
|
28
|
+
result.e = a1.e + a2.e;
|
29
|
+
|
30
|
+
printf("%d %d %d %d %d %d %d %d %d %d: %d %d %d %d %d\n",
|
31
|
+
a1.a, a1.b, a1.c, a1.d, a1.e,
|
32
|
+
a2.a, a2.b, a2.c, a2.d, a2.e,
|
33
|
+
result.a, result.b, result.c, result.d, result.e);
|
34
|
+
|
35
|
+
return result;
|
36
|
+
}
|
37
|
+
|
38
|
+
static void
|
39
|
+
cls_struct_5byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
40
|
+
void* userdata __UNUSED__)
|
41
|
+
{
|
42
|
+
|
43
|
+
struct cls_struct_5byte a1, a2;
|
44
|
+
|
45
|
+
a1 = *(struct cls_struct_5byte*)(args[0]);
|
46
|
+
a2 = *(struct cls_struct_5byte*)(args[1]);
|
47
|
+
|
48
|
+
*(cls_struct_5byte*)resp = cls_struct_5byte_fn(a1, a2);
|
49
|
+
}
|
50
|
+
|
51
|
+
int main (void)
|
52
|
+
{
|
53
|
+
ffi_cif cif;
|
54
|
+
void *code;
|
55
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
56
|
+
void* args_dbl[5];
|
57
|
+
ffi_type* cls_struct_fields[6];
|
58
|
+
ffi_type cls_struct_type;
|
59
|
+
ffi_type* dbl_arg_types[5];
|
60
|
+
|
61
|
+
cls_struct_type.size = 0;
|
62
|
+
cls_struct_type.alignment = 0;
|
63
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
64
|
+
cls_struct_type.elements = cls_struct_fields;
|
65
|
+
|
66
|
+
struct cls_struct_5byte g_dbl = { 127, 120, 1, 3, 4 };
|
67
|
+
struct cls_struct_5byte f_dbl = { 12, 128, 9, 3, 4 };
|
68
|
+
struct cls_struct_5byte res_dbl = { 0, 0, 0, 0, 0 };
|
69
|
+
|
70
|
+
cls_struct_fields[0] = &ffi_type_uchar;
|
71
|
+
cls_struct_fields[1] = &ffi_type_uchar;
|
72
|
+
cls_struct_fields[2] = &ffi_type_uchar;
|
73
|
+
cls_struct_fields[3] = &ffi_type_uchar;
|
74
|
+
cls_struct_fields[4] = &ffi_type_uchar;
|
75
|
+
cls_struct_fields[5] = NULL;
|
76
|
+
|
77
|
+
dbl_arg_types[0] = &cls_struct_type;
|
78
|
+
dbl_arg_types[1] = &cls_struct_type;
|
79
|
+
dbl_arg_types[2] = NULL;
|
80
|
+
|
81
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
82
|
+
dbl_arg_types) == FFI_OK);
|
83
|
+
|
84
|
+
args_dbl[0] = &g_dbl;
|
85
|
+
args_dbl[1] = &f_dbl;
|
86
|
+
args_dbl[2] = NULL;
|
87
|
+
|
88
|
+
ffi_call(&cif, FFI_FN(cls_struct_5byte_fn), &res_dbl, args_dbl);
|
89
|
+
/* { dg-output "127 120 1 3 4 12 128 9 3 4: 139 248 10 6 8" } */
|
90
|
+
printf("res: %d %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
91
|
+
res_dbl.d, res_dbl.e);
|
92
|
+
/* { dg-output "\nres: 139 248 10 6 8" } */
|
93
|
+
|
94
|
+
res_dbl.a = 0;
|
95
|
+
res_dbl.b = 0;
|
96
|
+
res_dbl.c = 0;
|
97
|
+
res_dbl.d = 0;
|
98
|
+
res_dbl.e = 0;
|
99
|
+
|
100
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_5byte_gn, NULL, code) == FFI_OK);
|
101
|
+
|
102
|
+
res_dbl = ((cls_struct_5byte(*)(cls_struct_5byte, cls_struct_5byte))(code))(g_dbl, f_dbl);
|
103
|
+
/* { dg-output "\n127 120 1 3 4 12 128 9 3 4: 139 248 10 6 8" } */
|
104
|
+
printf("res: %d %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
105
|
+
res_dbl.d, res_dbl.e);
|
106
|
+
/* { dg-output "\nres: 139 248 10 6 8" } */
|
107
|
+
|
108
|
+
exit(0);
|
109
|
+
}
|
@@ -0,0 +1,98 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing with different structure size.
|
3
|
+
Depending on the ABI. Check overlapping.
|
4
|
+
Limitations: none.
|
5
|
+
PR: none.
|
6
|
+
Originator: <andreast@gcc.gnu.org> 20030828 */
|
7
|
+
|
8
|
+
/* { dg-do run } */
|
9
|
+
#include "ffitest.h"
|
10
|
+
|
11
|
+
typedef struct cls_struct_5byte {
|
12
|
+
unsigned short a;
|
13
|
+
unsigned short b;
|
14
|
+
unsigned char c;
|
15
|
+
} cls_struct_5byte;
|
16
|
+
|
17
|
+
cls_struct_5byte cls_struct_5byte_fn(struct cls_struct_5byte a1,
|
18
|
+
struct cls_struct_5byte a2)
|
19
|
+
{
|
20
|
+
struct cls_struct_5byte result;
|
21
|
+
|
22
|
+
result.a = a1.a + a2.a;
|
23
|
+
result.b = a1.b + a2.b;
|
24
|
+
result.c = a1.c + a2.c;
|
25
|
+
|
26
|
+
printf("%d %d %d %d %d %d: %d %d %d\n", a1.a, a1.b, a1.c,
|
27
|
+
a2.a, a2.b, a2.c,
|
28
|
+
result.a, result.b, result.c);
|
29
|
+
|
30
|
+
return result;
|
31
|
+
}
|
32
|
+
|
33
|
+
static void
|
34
|
+
cls_struct_5byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
35
|
+
void* userdata __UNUSED__)
|
36
|
+
{
|
37
|
+
|
38
|
+
struct cls_struct_5byte a1, a2;
|
39
|
+
|
40
|
+
a1 = *(struct cls_struct_5byte*)(args[0]);
|
41
|
+
a2 = *(struct cls_struct_5byte*)(args[1]);
|
42
|
+
|
43
|
+
*(cls_struct_5byte*)resp = cls_struct_5byte_fn(a1, a2);
|
44
|
+
}
|
45
|
+
|
46
|
+
int main (void)
|
47
|
+
{
|
48
|
+
ffi_cif cif;
|
49
|
+
void *code;
|
50
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
51
|
+
void* args_dbl[5];
|
52
|
+
ffi_type* cls_struct_fields[4];
|
53
|
+
ffi_type cls_struct_type;
|
54
|
+
ffi_type* dbl_arg_types[5];
|
55
|
+
|
56
|
+
cls_struct_type.size = 0;
|
57
|
+
cls_struct_type.alignment = 0;
|
58
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
59
|
+
cls_struct_type.elements = cls_struct_fields;
|
60
|
+
|
61
|
+
struct cls_struct_5byte g_dbl = { 127, 120, 1 };
|
62
|
+
struct cls_struct_5byte f_dbl = { 12, 128, 9 };
|
63
|
+
struct cls_struct_5byte res_dbl = { 0, 0, 0 };
|
64
|
+
|
65
|
+
cls_struct_fields[0] = &ffi_type_ushort;
|
66
|
+
cls_struct_fields[1] = &ffi_type_ushort;
|
67
|
+
cls_struct_fields[2] = &ffi_type_uchar;
|
68
|
+
cls_struct_fields[3] = NULL;
|
69
|
+
|
70
|
+
dbl_arg_types[0] = &cls_struct_type;
|
71
|
+
dbl_arg_types[1] = &cls_struct_type;
|
72
|
+
dbl_arg_types[2] = NULL;
|
73
|
+
|
74
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
75
|
+
dbl_arg_types) == FFI_OK);
|
76
|
+
|
77
|
+
args_dbl[0] = &g_dbl;
|
78
|
+
args_dbl[1] = &f_dbl;
|
79
|
+
args_dbl[2] = NULL;
|
80
|
+
|
81
|
+
ffi_call(&cif, FFI_FN(cls_struct_5byte_fn), &res_dbl, args_dbl);
|
82
|
+
/* { dg-output "127 120 1 12 128 9: 139 248 10" } */
|
83
|
+
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
84
|
+
/* { dg-output "\nres: 139 248 10" } */
|
85
|
+
|
86
|
+
res_dbl.a = 0;
|
87
|
+
res_dbl.b = 0;
|
88
|
+
res_dbl.c = 0;
|
89
|
+
|
90
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_5byte_gn, NULL, code) == FFI_OK);
|
91
|
+
|
92
|
+
res_dbl = ((cls_struct_5byte(*)(cls_struct_5byte, cls_struct_5byte))(code))(g_dbl, f_dbl);
|
93
|
+
/* { dg-output "\n127 120 1 12 128 9: 139 248 10" } */
|
94
|
+
printf("res: %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c);
|
95
|
+
/* { dg-output "\nres: 139 248 10" } */
|
96
|
+
|
97
|
+
exit(0);
|
98
|
+
}
|
@@ -0,0 +1,124 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing with different structure size.
|
3
|
+
Depending on the ABI. Check bigger struct which overlaps
|
4
|
+
the gp and fp register count on Darwin/AIX/ppc64.
|
5
|
+
Limitations: none.
|
6
|
+
PR: none.
|
7
|
+
Originator: <andreast@gcc.gnu.org> 20030828 */
|
8
|
+
|
9
|
+
/* { dg-do run } */
|
10
|
+
#include "ffitest.h"
|
11
|
+
|
12
|
+
typedef struct cls_struct_64byte {
|
13
|
+
double a;
|
14
|
+
double b;
|
15
|
+
double c;
|
16
|
+
double d;
|
17
|
+
double e;
|
18
|
+
double f;
|
19
|
+
double g;
|
20
|
+
double h;
|
21
|
+
} cls_struct_64byte;
|
22
|
+
|
23
|
+
cls_struct_64byte cls_struct_64byte_fn(struct cls_struct_64byte b0,
|
24
|
+
struct cls_struct_64byte b1,
|
25
|
+
struct cls_struct_64byte b2,
|
26
|
+
struct cls_struct_64byte b3)
|
27
|
+
{
|
28
|
+
struct cls_struct_64byte result;
|
29
|
+
|
30
|
+
result.a = b0.a + b1.a + b2.a + b3.a;
|
31
|
+
result.b = b0.b + b1.b + b2.b + b3.b;
|
32
|
+
result.c = b0.c + b1.c + b2.c + b3.c;
|
33
|
+
result.d = b0.d + b1.d + b2.d + b3.d;
|
34
|
+
result.e = b0.e + b1.e + b2.e + b3.e;
|
35
|
+
result.f = b0.f + b1.f + b2.f + b3.f;
|
36
|
+
result.g = b0.g + b1.g + b2.g + b3.g;
|
37
|
+
result.h = b0.h + b1.h + b2.h + b3.h;
|
38
|
+
|
39
|
+
printf("%g %g %g %g %g %g %g %g\n", result.a, result.b, result.c,
|
40
|
+
result.d, result.e, result.f, result.g, result.h);
|
41
|
+
|
42
|
+
return result;
|
43
|
+
}
|
44
|
+
|
45
|
+
static void
|
46
|
+
cls_struct_64byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
47
|
+
void* userdata __UNUSED__)
|
48
|
+
{
|
49
|
+
struct cls_struct_64byte b0, b1, b2, b3;
|
50
|
+
|
51
|
+
b0 = *(struct cls_struct_64byte*)(args[0]);
|
52
|
+
b1 = *(struct cls_struct_64byte*)(args[1]);
|
53
|
+
b2 = *(struct cls_struct_64byte*)(args[2]);
|
54
|
+
b3 = *(struct cls_struct_64byte*)(args[3]);
|
55
|
+
|
56
|
+
*(cls_struct_64byte*)resp = cls_struct_64byte_fn(b0, b1, b2, b3);
|
57
|
+
}
|
58
|
+
|
59
|
+
int main (void)
|
60
|
+
{
|
61
|
+
ffi_cif cif;
|
62
|
+
void *code;
|
63
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
64
|
+
void* args_dbl[5];
|
65
|
+
ffi_type* cls_struct_fields[9];
|
66
|
+
ffi_type cls_struct_type;
|
67
|
+
ffi_type* dbl_arg_types[5];
|
68
|
+
|
69
|
+
cls_struct_type.size = 0;
|
70
|
+
cls_struct_type.alignment = 0;
|
71
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
72
|
+
cls_struct_type.elements = cls_struct_fields;
|
73
|
+
|
74
|
+
struct cls_struct_64byte e_dbl = { 9.0, 2.0, 6.0, 5.0, 3.0, 4.0, 8.0, 1.0 };
|
75
|
+
struct cls_struct_64byte f_dbl = { 1.0, 2.0, 3.0, 7.0, 2.0, 5.0, 6.0, 7.0 };
|
76
|
+
struct cls_struct_64byte g_dbl = { 4.0, 5.0, 7.0, 9.0, 1.0, 1.0, 2.0, 9.0 };
|
77
|
+
struct cls_struct_64byte h_dbl = { 8.0, 6.0, 1.0, 4.0, 0.0, 3.0, 3.0, 1.0 };
|
78
|
+
struct cls_struct_64byte res_dbl;
|
79
|
+
|
80
|
+
cls_struct_fields[0] = &ffi_type_double;
|
81
|
+
cls_struct_fields[1] = &ffi_type_double;
|
82
|
+
cls_struct_fields[2] = &ffi_type_double;
|
83
|
+
cls_struct_fields[3] = &ffi_type_double;
|
84
|
+
cls_struct_fields[4] = &ffi_type_double;
|
85
|
+
cls_struct_fields[5] = &ffi_type_double;
|
86
|
+
cls_struct_fields[6] = &ffi_type_double;
|
87
|
+
cls_struct_fields[7] = &ffi_type_double;
|
88
|
+
cls_struct_fields[8] = NULL;
|
89
|
+
|
90
|
+
dbl_arg_types[0] = &cls_struct_type;
|
91
|
+
dbl_arg_types[1] = &cls_struct_type;
|
92
|
+
dbl_arg_types[2] = &cls_struct_type;
|
93
|
+
dbl_arg_types[3] = &cls_struct_type;
|
94
|
+
dbl_arg_types[4] = NULL;
|
95
|
+
|
96
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 4, &cls_struct_type,
|
97
|
+
dbl_arg_types) == FFI_OK);
|
98
|
+
|
99
|
+
args_dbl[0] = &e_dbl;
|
100
|
+
args_dbl[1] = &f_dbl;
|
101
|
+
args_dbl[2] = &g_dbl;
|
102
|
+
args_dbl[3] = &h_dbl;
|
103
|
+
args_dbl[4] = NULL;
|
104
|
+
|
105
|
+
ffi_call(&cif, FFI_FN(cls_struct_64byte_fn), &res_dbl, args_dbl);
|
106
|
+
/* { dg-output "22 15 17 25 6 13 19 18" } */
|
107
|
+
printf("res: %g %g %g %g %g %g %g %g\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
108
|
+
res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h);
|
109
|
+
/* { dg-output "\nres: 22 15 17 25 6 13 19 18" } */
|
110
|
+
|
111
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_64byte_gn, NULL, code) == FFI_OK);
|
112
|
+
|
113
|
+
res_dbl = ((cls_struct_64byte(*)(cls_struct_64byte,
|
114
|
+
cls_struct_64byte,
|
115
|
+
cls_struct_64byte,
|
116
|
+
cls_struct_64byte))
|
117
|
+
(code))(e_dbl, f_dbl, g_dbl, h_dbl);
|
118
|
+
/* { dg-output "\n22 15 17 25 6 13 19 18" } */
|
119
|
+
printf("res: %g %g %g %g %g %g %g %g\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
120
|
+
res_dbl.d, res_dbl.e, res_dbl.f, res_dbl.g, res_dbl.h);
|
121
|
+
/* { dg-output "\nres: 22 15 17 25 6 13 19 18" } */
|
122
|
+
|
123
|
+
exit(0);
|
124
|
+
}
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing with different structure size.
|
3
|
+
Depending on the ABI. Check overlapping.
|
4
|
+
Limitations: none.
|
5
|
+
PR: none.
|
6
|
+
Originator: <andreast@gcc.gnu.org> 20050708 */
|
7
|
+
|
8
|
+
/* { dg-do run } */
|
9
|
+
#include "ffitest.h"
|
10
|
+
|
11
|
+
typedef struct cls_struct_6byte {
|
12
|
+
unsigned char a;
|
13
|
+
unsigned char b;
|
14
|
+
unsigned char c;
|
15
|
+
unsigned char d;
|
16
|
+
unsigned char e;
|
17
|
+
unsigned char f;
|
18
|
+
} cls_struct_6byte;
|
19
|
+
|
20
|
+
cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
21
|
+
struct cls_struct_6byte a2)
|
22
|
+
{
|
23
|
+
struct cls_struct_6byte result;
|
24
|
+
|
25
|
+
result.a = a1.a + a2.a;
|
26
|
+
result.b = a1.b + a2.b;
|
27
|
+
result.c = a1.c + a2.c;
|
28
|
+
result.d = a1.d + a2.d;
|
29
|
+
result.e = a1.e + a2.e;
|
30
|
+
result.f = a1.f + a2.f;
|
31
|
+
|
32
|
+
printf("%d %d %d %d %d %d %d %d %d %d %d %d: %d %d %d %d %d %d\n",
|
33
|
+
a1.a, a1.b, a1.c, a1.d, a1.e, a1.f,
|
34
|
+
a2.a, a2.b, a2.c, a2.d, a2.e, a2.f,
|
35
|
+
result.a, result.b, result.c, result.d, result.e, result.f);
|
36
|
+
|
37
|
+
return result;
|
38
|
+
}
|
39
|
+
|
40
|
+
static void
|
41
|
+
cls_struct_6byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
42
|
+
void* userdata __UNUSED__)
|
43
|
+
{
|
44
|
+
|
45
|
+
struct cls_struct_6byte a1, a2;
|
46
|
+
|
47
|
+
a1 = *(struct cls_struct_6byte*)(args[0]);
|
48
|
+
a2 = *(struct cls_struct_6byte*)(args[1]);
|
49
|
+
|
50
|
+
*(cls_struct_6byte*)resp = cls_struct_6byte_fn(a1, a2);
|
51
|
+
}
|
52
|
+
|
53
|
+
int main (void)
|
54
|
+
{
|
55
|
+
ffi_cif cif;
|
56
|
+
void *code;
|
57
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
58
|
+
void* args_dbl[5];
|
59
|
+
ffi_type* cls_struct_fields[7];
|
60
|
+
ffi_type cls_struct_type;
|
61
|
+
ffi_type* dbl_arg_types[5];
|
62
|
+
|
63
|
+
cls_struct_type.size = 0;
|
64
|
+
cls_struct_type.alignment = 0;
|
65
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
66
|
+
cls_struct_type.elements = cls_struct_fields;
|
67
|
+
|
68
|
+
struct cls_struct_6byte g_dbl = { 127, 120, 1, 3, 4, 5 };
|
69
|
+
struct cls_struct_6byte f_dbl = { 12, 128, 9, 3, 4, 5 };
|
70
|
+
struct cls_struct_6byte res_dbl = { 0, 0, 0, 0, 0, 0 };
|
71
|
+
|
72
|
+
cls_struct_fields[0] = &ffi_type_uchar;
|
73
|
+
cls_struct_fields[1] = &ffi_type_uchar;
|
74
|
+
cls_struct_fields[2] = &ffi_type_uchar;
|
75
|
+
cls_struct_fields[3] = &ffi_type_uchar;
|
76
|
+
cls_struct_fields[4] = &ffi_type_uchar;
|
77
|
+
cls_struct_fields[5] = &ffi_type_uchar;
|
78
|
+
cls_struct_fields[6] = NULL;
|
79
|
+
|
80
|
+
dbl_arg_types[0] = &cls_struct_type;
|
81
|
+
dbl_arg_types[1] = &cls_struct_type;
|
82
|
+
dbl_arg_types[2] = NULL;
|
83
|
+
|
84
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
85
|
+
dbl_arg_types) == FFI_OK);
|
86
|
+
|
87
|
+
args_dbl[0] = &g_dbl;
|
88
|
+
args_dbl[1] = &f_dbl;
|
89
|
+
args_dbl[2] = NULL;
|
90
|
+
|
91
|
+
ffi_call(&cif, FFI_FN(cls_struct_6byte_fn), &res_dbl, args_dbl);
|
92
|
+
/* { dg-output "127 120 1 3 4 5 12 128 9 3 4 5: 139 248 10 6 8 10" } */
|
93
|
+
printf("res: %d %d %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
94
|
+
res_dbl.d, res_dbl.e, res_dbl.f);
|
95
|
+
/* { dg-output "\nres: 139 248 10 6 8 10" } */
|
96
|
+
|
97
|
+
res_dbl.a = 0;
|
98
|
+
res_dbl.b = 0;
|
99
|
+
res_dbl.c = 0;
|
100
|
+
res_dbl.d = 0;
|
101
|
+
res_dbl.e = 0;
|
102
|
+
res_dbl.f = 0;
|
103
|
+
|
104
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_6byte_gn, NULL, code) == FFI_OK);
|
105
|
+
|
106
|
+
res_dbl = ((cls_struct_6byte(*)(cls_struct_6byte, cls_struct_6byte))(code))(g_dbl, f_dbl);
|
107
|
+
/* { dg-output "\n127 120 1 3 4 5 12 128 9 3 4 5: 139 248 10 6 8 10" } */
|
108
|
+
printf("res: %d %d %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c,
|
109
|
+
res_dbl.d, res_dbl.e, res_dbl.f);
|
110
|
+
/* { dg-output "\nres: 139 248 10 6 8 10" } */
|
111
|
+
|
112
|
+
exit(0);
|
113
|
+
}
|
@@ -0,0 +1,99 @@
|
|
1
|
+
/* Area: ffi_call, closure_call
|
2
|
+
Purpose: Check structure passing with different structure size.
|
3
|
+
Depending on the ABI. Check overlapping.
|
4
|
+
Limitations: none.
|
5
|
+
PR: none.
|
6
|
+
Originator: <andreast@gcc.gnu.org> 20030828 */
|
7
|
+
|
8
|
+
|
9
|
+
/* { dg-do run } */
|
10
|
+
#include "ffitest.h"
|
11
|
+
|
12
|
+
typedef struct cls_struct_6byte {
|
13
|
+
unsigned short a;
|
14
|
+
unsigned short b;
|
15
|
+
unsigned char c;
|
16
|
+
unsigned char d;
|
17
|
+
} cls_struct_6byte;
|
18
|
+
|
19
|
+
cls_struct_6byte cls_struct_6byte_fn(struct cls_struct_6byte a1,
|
20
|
+
struct cls_struct_6byte a2)
|
21
|
+
{
|
22
|
+
struct cls_struct_6byte result;
|
23
|
+
|
24
|
+
result.a = a1.a + a2.a;
|
25
|
+
result.b = a1.b + a2.b;
|
26
|
+
result.c = a1.c + a2.c;
|
27
|
+
result.d = a1.d + a2.d;
|
28
|
+
|
29
|
+
printf("%d %d %d %d %d %d %d %d: %d %d %d %d\n", a1.a, a1.b, a1.c, a1.d,
|
30
|
+
a2.a, a2.b, a2.c, a2.d,
|
31
|
+
result.a, result.b, result.c, result.d);
|
32
|
+
|
33
|
+
return result;
|
34
|
+
}
|
35
|
+
|
36
|
+
static void
|
37
|
+
cls_struct_6byte_gn(ffi_cif* cif __UNUSED__, void* resp, void** args,
|
38
|
+
void* userdata __UNUSED__)
|
39
|
+
{
|
40
|
+
|
41
|
+
struct cls_struct_6byte a1, a2;
|
42
|
+
|
43
|
+
a1 = *(struct cls_struct_6byte*)(args[0]);
|
44
|
+
a2 = *(struct cls_struct_6byte*)(args[1]);
|
45
|
+
|
46
|
+
*(cls_struct_6byte*)resp = cls_struct_6byte_fn(a1, a2);
|
47
|
+
}
|
48
|
+
|
49
|
+
int main (void)
|
50
|
+
{
|
51
|
+
ffi_cif cif;
|
52
|
+
void *code;
|
53
|
+
ffi_closure *pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
|
54
|
+
void* args_dbl[5];
|
55
|
+
ffi_type* cls_struct_fields[5];
|
56
|
+
ffi_type cls_struct_type;
|
57
|
+
ffi_type* dbl_arg_types[5];
|
58
|
+
|
59
|
+
cls_struct_type.size = 0;
|
60
|
+
cls_struct_type.alignment = 0;
|
61
|
+
cls_struct_type.type = FFI_TYPE_STRUCT;
|
62
|
+
cls_struct_type.elements = cls_struct_fields;
|
63
|
+
|
64
|
+
struct cls_struct_6byte g_dbl = { 127, 120, 1, 128 };
|
65
|
+
struct cls_struct_6byte f_dbl = { 12, 128, 9, 127 };
|
66
|
+
struct cls_struct_6byte res_dbl;
|
67
|
+
|
68
|
+
cls_struct_fields[0] = &ffi_type_ushort;
|
69
|
+
cls_struct_fields[1] = &ffi_type_ushort;
|
70
|
+
cls_struct_fields[2] = &ffi_type_uchar;
|
71
|
+
cls_struct_fields[3] = &ffi_type_uchar;
|
72
|
+
cls_struct_fields[4] = NULL;
|
73
|
+
|
74
|
+
dbl_arg_types[0] = &cls_struct_type;
|
75
|
+
dbl_arg_types[1] = &cls_struct_type;
|
76
|
+
dbl_arg_types[2] = NULL;
|
77
|
+
|
78
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &cls_struct_type,
|
79
|
+
dbl_arg_types) == FFI_OK);
|
80
|
+
|
81
|
+
args_dbl[0] = &g_dbl;
|
82
|
+
args_dbl[1] = &f_dbl;
|
83
|
+
args_dbl[2] = NULL;
|
84
|
+
|
85
|
+
ffi_call(&cif, FFI_FN(cls_struct_6byte_fn), &res_dbl, args_dbl);
|
86
|
+
/* { dg-output "127 120 1 128 12 128 9 127: 139 248 10 255" } */
|
87
|
+
printf("res: %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
|
88
|
+
/* { dg-output "\nres: 139 248 10 255" } */
|
89
|
+
|
90
|
+
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_6byte_gn, NULL, code) == FFI_OK);
|
91
|
+
|
92
|
+
res_dbl = ((cls_struct_6byte(*)(cls_struct_6byte, cls_struct_6byte))(code))(g_dbl, f_dbl);
|
93
|
+
/* { dg-output "\n127 120 1 128 12 128 9 127: 139 248 10 255" } */
|
94
|
+
printf("res: %d %d %d %d\n", res_dbl.a, res_dbl.b, res_dbl.c, res_dbl.d);
|
95
|
+
/* { dg-output "\nres: 139 248 10 255" } */
|
96
|
+
|
97
|
+
|
98
|
+
exit(0);
|
99
|
+
}
|