ffi 0.5.0-x86-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/LICENSE +51 -0
- data/README.rdoc +69 -0
- data/Rakefile +191 -0
- data/ext/ffi_c/AbstractMemory.c +489 -0
- data/ext/ffi_c/AbstractMemory.h +160 -0
- data/ext/ffi_c/ArrayType.c +129 -0
- data/ext/ffi_c/ArrayType.h +58 -0
- data/ext/ffi_c/AutoPointer.c +61 -0
- data/ext/ffi_c/AutoPointer.h +18 -0
- data/ext/ffi_c/Buffer.c +187 -0
- data/ext/ffi_c/Call.c +853 -0
- data/ext/ffi_c/Call.h +86 -0
- data/ext/ffi_c/ClosurePool.c +302 -0
- data/ext/ffi_c/ClosurePool.h +29 -0
- data/ext/ffi_c/DynamicLibrary.c +216 -0
- data/ext/ffi_c/DynamicLibrary.h +22 -0
- data/ext/ffi_c/Function.c +478 -0
- data/ext/ffi_c/Function.h +80 -0
- data/ext/ffi_c/FunctionInfo.c +221 -0
- data/ext/ffi_c/LastError.c +159 -0
- data/ext/ffi_c/LastError.h +18 -0
- data/ext/ffi_c/MemoryPointer.c +178 -0
- data/ext/ffi_c/MemoryPointer.h +20 -0
- data/ext/ffi_c/MethodHandle.c +346 -0
- data/ext/ffi_c/MethodHandle.h +53 -0
- data/ext/ffi_c/Platform.c +59 -0
- data/ext/ffi_c/Platform.h +16 -0
- data/ext/ffi_c/Pointer.c +224 -0
- data/ext/ffi_c/Pointer.h +49 -0
- data/ext/ffi_c/Struct.c +770 -0
- data/ext/ffi_c/Struct.h +80 -0
- data/ext/ffi_c/StructByValue.c +140 -0
- data/ext/ffi_c/StructByValue.h +53 -0
- data/ext/ffi_c/StructLayout.c +450 -0
- data/ext/ffi_c/Type.c +329 -0
- data/ext/ffi_c/Type.h +57 -0
- data/ext/ffi_c/Types.c +103 -0
- data/ext/ffi_c/Types.h +85 -0
- data/ext/ffi_c/Variadic.c +260 -0
- data/ext/ffi_c/compat.h +72 -0
- data/ext/ffi_c/endian.h +40 -0
- data/ext/ffi_c/extconf.rb +30 -0
- data/ext/ffi_c/ffi.c +82 -0
- data/ext/ffi_c/libffi.bsd.mk +34 -0
- data/ext/ffi_c/libffi.darwin.mk +75 -0
- data/ext/ffi_c/libffi.gnu.mk +29 -0
- data/ext/ffi_c/libffi.mk +13 -0
- data/ext/ffi_c/libffi/ChangeLog +3243 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +347 -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 +177 -0
- data/ext/ffi_c/libffi/Makefile.in +1640 -0
- data/ext/ffi_c/libffi/README +328 -0
- data/ext/ffi_c/libffi/TODO +1 -0
- data/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/ext/ffi_c/libffi/aclocal.m4 +7516 -0
- data/ext/ffi_c/libffi/compile +142 -0
- data/ext/ffi_c/libffi/config.guess +1516 -0
- data/ext/ffi_c/libffi/config.sub +1626 -0
- data/ext/ffi_c/libffi/configure +24414 -0
- data/ext/ffi_c/libffi/configure.ac +365 -0
- data/ext/ffi_c/libffi/configure.host +11 -0
- data/ext/ffi_c/libffi/depcomp +584 -0
- data/ext/ffi_c/libffi/doc/libffi.info +533 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +541 -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 +160 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/Makefile.in +422 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +393 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +98 -0
- data/ext/ffi_c/libffi/install-sh +323 -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/ltcf-c.sh +861 -0
- data/ext/ffi_c/libffi/ltcf-cxx.sh +1069 -0
- data/ext/ffi_c/libffi/ltcf-gcj.sh +700 -0
- data/ext/ffi_c/libffi/ltconfig +2862 -0
- data/ext/ffi_c/libffi/ltmain.sh +6930 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/Makefile.in +395 -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 +353 -0
- data/ext/ffi_c/libffi/mkinstalldirs +158 -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 +366 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +309 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +299 -0
- data/ext/ffi_c/libffi/src/closures.c +596 -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 +5099 -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 +61 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +580 -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 +359 -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 +278 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +234 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +926 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +202 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +534 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +709 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +77 -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 +225 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +247 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +245 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +317 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +1429 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +800 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +118 -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 +230 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +174 -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 +60 -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 +453 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +530 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +610 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +66 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +272 -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 +443 -0
- data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +475 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +572 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +90 -0
- data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +437 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +418 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +391 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +71 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.in +447 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +289 -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 +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +72 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +103 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +104 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +103 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +106 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +106 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +132 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +105 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +100 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +100 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +52 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +54 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +86 -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 +57 -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/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 +160 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +169 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +141 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +118 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +120 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +139 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +139 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +139 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +98 -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 +42 -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/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.special/ffitestcxx.h +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/ext/ffi_c/libffi/texinfo.tex +7482 -0
- data/ext/ffi_c/rbffi.h +26 -0
- data/gen/Rakefile +12 -0
- data/lib/1.8/ffi_c.so +0 -0
- data/lib/1.9/ffi_c.so +0 -0
- data/lib/ffi.rb +11 -0
- data/lib/ffi/autopointer.rb +61 -0
- data/lib/ffi/buffer.rb +0 -0
- data/lib/ffi/callback.rb +10 -0
- data/lib/ffi/enum.rb +78 -0
- data/lib/ffi/errno.rb +8 -0
- data/lib/ffi/ffi.rb +99 -0
- data/lib/ffi/io.rb +21 -0
- data/lib/ffi/library.rb +218 -0
- data/lib/ffi/managedstruct.rb +55 -0
- data/lib/ffi/memorypointer.rb +73 -0
- data/lib/ffi/platform.rb +88 -0
- data/lib/ffi/pointer.rb +119 -0
- data/lib/ffi/struct.rb +183 -0
- data/lib/ffi/tools/const_generator.rb +177 -0
- data/lib/ffi/tools/generator.rb +58 -0
- data/lib/ffi/tools/generator_task.rb +35 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +123 -0
- data/lib/ffi/types.rb +153 -0
- data/lib/ffi/union.rb +12 -0
- data/lib/ffi/variadic.rb +25 -0
- data/spec/ffi/bool_spec.rb +24 -0
- data/spec/ffi/buffer_spec.rb +202 -0
- data/spec/ffi/callback_spec.rb +591 -0
- data/spec/ffi/enum_spec.rb +164 -0
- data/spec/ffi/errno_spec.rb +13 -0
- data/spec/ffi/function_spec.rb +73 -0
- data/spec/ffi/library_spec.rb +148 -0
- data/spec/ffi/managed_struct_spec.rb +56 -0
- data/spec/ffi/number_spec.rb +231 -0
- data/spec/ffi/pointer_spec.rb +195 -0
- data/spec/ffi/rbx/attach_function_spec.rb +27 -0
- data/spec/ffi/rbx/memory_pointer_spec.rb +102 -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 +17 -0
- data/spec/ffi/string_spec.rb +103 -0
- data/spec/ffi/struct_callback_spec.rb +64 -0
- data/spec/ffi/struct_initialize_spec.rb +30 -0
- data/spec/ffi/struct_spec.rb +529 -0
- data/spec/ffi/typedef_spec.rb +48 -0
- data/spec/ffi/union_spec.rb +60 -0
- data/spec/ffi/variadic_spec.rb +84 -0
- data/spec/spec.opts +4 -0
- metadata +396 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check return value unsigned char.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
static unsigned char return_uc(unsigned char uc)
|
11
|
+
{
|
12
|
+
return uc;
|
13
|
+
}
|
14
|
+
|
15
|
+
int main (void)
|
16
|
+
{
|
17
|
+
ffi_cif cif;
|
18
|
+
ffi_type *args[MAX_ARGS];
|
19
|
+
void *values[MAX_ARGS];
|
20
|
+
ffi_arg rint;
|
21
|
+
|
22
|
+
unsigned char uc;
|
23
|
+
|
24
|
+
args[0] = &ffi_type_uchar;
|
25
|
+
values[0] = &uc;
|
26
|
+
|
27
|
+
/* Initialize the cif */
|
28
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
|
29
|
+
&ffi_type_uchar, args) == FFI_OK);
|
30
|
+
|
31
|
+
for (uc = (unsigned char) '\x00';
|
32
|
+
uc < (unsigned char) '\xff'; uc++)
|
33
|
+
{
|
34
|
+
ffi_call(&cif, FFI_FN(return_uc), &rint, values);
|
35
|
+
CHECK(rint == (signed int) uc);
|
36
|
+
}
|
37
|
+
exit(0);
|
38
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check if unsigned long as return type is handled correctly.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: <kaffeetisch at gmx dot de> 20060724 */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
static unsigned long return_ul(unsigned long ul1, unsigned long ul2)
|
10
|
+
{
|
11
|
+
return ul1 + ul2;
|
12
|
+
}
|
13
|
+
|
14
|
+
int main (void)
|
15
|
+
{
|
16
|
+
ffi_cif cif;
|
17
|
+
ffi_type *args[MAX_ARGS];
|
18
|
+
void *values[MAX_ARGS];
|
19
|
+
ffi_arg res;
|
20
|
+
unsigned long ul1, ul2;
|
21
|
+
|
22
|
+
args[0] = &ffi_type_ulong;
|
23
|
+
args[1] = &ffi_type_ulong;
|
24
|
+
values[0] = &ul1;
|
25
|
+
values[1] = &ul2;
|
26
|
+
|
27
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2,
|
28
|
+
&ffi_type_ulong, args) == FFI_OK);
|
29
|
+
|
30
|
+
ul1 = 1073741823L;
|
31
|
+
ul2 = 1073741824L;
|
32
|
+
|
33
|
+
ffi_call(&cif, FFI_FN(return_ul), &res, values);
|
34
|
+
printf("res: %lu, %lu\n", (unsigned long)res, ul1 + ul2);
|
35
|
+
/* { dg-output "res: 2147483647, 2147483647" } */
|
36
|
+
|
37
|
+
exit(0);
|
38
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check strlen function call.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
static size_t my_strlen(char *s)
|
11
|
+
{
|
12
|
+
return (strlen(s));
|
13
|
+
}
|
14
|
+
|
15
|
+
int main (void)
|
16
|
+
{
|
17
|
+
ffi_cif cif;
|
18
|
+
ffi_type *args[MAX_ARGS];
|
19
|
+
void *values[MAX_ARGS];
|
20
|
+
ffi_arg rint;
|
21
|
+
char *s;
|
22
|
+
|
23
|
+
args[0] = &ffi_type_pointer;
|
24
|
+
values[0] = (void*) &s;
|
25
|
+
|
26
|
+
/* Initialize the cif */
|
27
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
|
28
|
+
&ffi_type_sint, args) == FFI_OK);
|
29
|
+
|
30
|
+
s = "a";
|
31
|
+
ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
|
32
|
+
CHECK(rint == 1);
|
33
|
+
|
34
|
+
s = "1234567";
|
35
|
+
ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
|
36
|
+
CHECK(rint == 7);
|
37
|
+
|
38
|
+
s = "1234567890123456789012345";
|
39
|
+
ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
|
40
|
+
CHECK(rint == 25);
|
41
|
+
|
42
|
+
exit (0);
|
43
|
+
}
|
44
|
+
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check stdcall strlen call on X86_WIN32 systems.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run { target i?86-*-cygwin* i?86-*-mingw* } } */
|
8
|
+
|
9
|
+
#include "ffitest.h"
|
10
|
+
|
11
|
+
static size_t __attribute__((stdcall)) my_stdcall_strlen(char *s)
|
12
|
+
{
|
13
|
+
return (strlen(s));
|
14
|
+
}
|
15
|
+
|
16
|
+
int main (void)
|
17
|
+
{
|
18
|
+
ffi_cif cif;
|
19
|
+
ffi_type *args[MAX_ARGS];
|
20
|
+
void *values[MAX_ARGS];
|
21
|
+
ffi_arg rint;
|
22
|
+
char *s;
|
23
|
+
args[0] = &ffi_type_pointer;
|
24
|
+
values[0] = (void*) &s;
|
25
|
+
|
26
|
+
/* Initialize the cif */
|
27
|
+
CHECK(ffi_prep_cif(&cif, FFI_STDCALL, 1,
|
28
|
+
&ffi_type_sint, args) == FFI_OK);
|
29
|
+
|
30
|
+
s = "a";
|
31
|
+
ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
|
32
|
+
CHECK(rint == 1);
|
33
|
+
|
34
|
+
s = "1234567";
|
35
|
+
ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
|
36
|
+
CHECK(rint == 7);
|
37
|
+
|
38
|
+
s = "1234567890123456789012345";
|
39
|
+
ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
|
40
|
+
CHECK(rint == 25);
|
41
|
+
|
42
|
+
printf("stdcall strlen tests passed\n");
|
43
|
+
exit(0);
|
44
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check structures.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct
|
11
|
+
{
|
12
|
+
unsigned char uc;
|
13
|
+
double d;
|
14
|
+
unsigned int ui;
|
15
|
+
} test_structure_1;
|
16
|
+
|
17
|
+
static test_structure_1 struct1(test_structure_1 ts)
|
18
|
+
{
|
19
|
+
ts.uc++;
|
20
|
+
ts.d--;
|
21
|
+
ts.ui++;
|
22
|
+
|
23
|
+
return ts;
|
24
|
+
}
|
25
|
+
|
26
|
+
int main (void)
|
27
|
+
{
|
28
|
+
ffi_cif cif;
|
29
|
+
ffi_type *args[MAX_ARGS];
|
30
|
+
void *values[MAX_ARGS];
|
31
|
+
ffi_type ts1_type;
|
32
|
+
ffi_type *ts1_type_elements[4];
|
33
|
+
ts1_type.size = 0;
|
34
|
+
ts1_type.alignment = 0;
|
35
|
+
ts1_type.type = FFI_TYPE_STRUCT;
|
36
|
+
ts1_type.elements = ts1_type_elements;
|
37
|
+
ts1_type_elements[0] = &ffi_type_uchar;
|
38
|
+
ts1_type_elements[1] = &ffi_type_double;
|
39
|
+
ts1_type_elements[2] = &ffi_type_uint;
|
40
|
+
ts1_type_elements[3] = NULL;
|
41
|
+
|
42
|
+
test_structure_1 ts1_arg;
|
43
|
+
/* This is a hack to get a properly aligned result buffer */
|
44
|
+
test_structure_1 *ts1_result =
|
45
|
+
(test_structure_1 *) malloc (sizeof(test_structure_1));
|
46
|
+
|
47
|
+
args[0] = &ts1_type;
|
48
|
+
values[0] = &ts1_arg;
|
49
|
+
|
50
|
+
/* Initialize the cif */
|
51
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
|
52
|
+
&ts1_type, args) == FFI_OK);
|
53
|
+
|
54
|
+
ts1_arg.uc = '\x01';
|
55
|
+
ts1_arg.d = 3.14159;
|
56
|
+
ts1_arg.ui = 555;
|
57
|
+
|
58
|
+
ffi_call(&cif, FFI_FN(struct1), ts1_result, values);
|
59
|
+
|
60
|
+
CHECK(ts1_result->ui == 556);
|
61
|
+
CHECK(ts1_result->d == 3.14159 - 1);
|
62
|
+
|
63
|
+
free (ts1_result);
|
64
|
+
exit(0);
|
65
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check structures.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct
|
11
|
+
{
|
12
|
+
double d1;
|
13
|
+
double d2;
|
14
|
+
} test_structure_2;
|
15
|
+
|
16
|
+
static test_structure_2 struct2(test_structure_2 ts)
|
17
|
+
{
|
18
|
+
ts.d1--;
|
19
|
+
ts.d2--;
|
20
|
+
|
21
|
+
return ts;
|
22
|
+
}
|
23
|
+
|
24
|
+
int main (void)
|
25
|
+
{
|
26
|
+
ffi_cif cif;
|
27
|
+
ffi_type *args[MAX_ARGS];
|
28
|
+
void *values[MAX_ARGS];
|
29
|
+
test_structure_2 ts2_arg;
|
30
|
+
ffi_type ts2_type;
|
31
|
+
ffi_type *ts2_type_elements[3];
|
32
|
+
ts2_type.size = 0;
|
33
|
+
ts2_type.alignment = 0;
|
34
|
+
ts2_type.type = FFI_TYPE_STRUCT;
|
35
|
+
ts2_type.elements = ts2_type_elements;
|
36
|
+
ts2_type_elements[0] = &ffi_type_double;
|
37
|
+
ts2_type_elements[1] = &ffi_type_double;
|
38
|
+
ts2_type_elements[2] = NULL;
|
39
|
+
|
40
|
+
|
41
|
+
/* This is a hack to get a properly aligned result buffer */
|
42
|
+
test_structure_2 *ts2_result =
|
43
|
+
(test_structure_2 *) malloc (sizeof(test_structure_2));
|
44
|
+
|
45
|
+
args[0] = &ts2_type;
|
46
|
+
values[0] = &ts2_arg;
|
47
|
+
|
48
|
+
/* Initialize the cif */
|
49
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, &ts2_type, args) == FFI_OK);
|
50
|
+
|
51
|
+
ts2_arg.d1 = 5.55;
|
52
|
+
ts2_arg.d2 = 6.66;
|
53
|
+
|
54
|
+
printf ("%g\n", ts2_arg.d1);
|
55
|
+
printf ("%g\n", ts2_arg.d2);
|
56
|
+
|
57
|
+
ffi_call(&cif, FFI_FN(struct2), ts2_result, values);
|
58
|
+
|
59
|
+
printf ("%g\n", ts2_result->d1);
|
60
|
+
printf ("%g\n", ts2_result->d2);
|
61
|
+
|
62
|
+
CHECK(ts2_result->d1 == 5.55 - 1);
|
63
|
+
CHECK(ts2_result->d2 == 6.66 - 1);
|
64
|
+
|
65
|
+
free (ts2_result);
|
66
|
+
exit(0);
|
67
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check structures.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct
|
11
|
+
{
|
12
|
+
int si;
|
13
|
+
} test_structure_3;
|
14
|
+
|
15
|
+
static test_structure_3 struct3(test_structure_3 ts)
|
16
|
+
{
|
17
|
+
ts.si = -(ts.si*2);
|
18
|
+
|
19
|
+
return ts;
|
20
|
+
}
|
21
|
+
|
22
|
+
int main (void)
|
23
|
+
{
|
24
|
+
ffi_cif cif;
|
25
|
+
ffi_type *args[MAX_ARGS];
|
26
|
+
void *values[MAX_ARGS];
|
27
|
+
int compare_value;
|
28
|
+
ffi_type ts3_type;
|
29
|
+
ffi_type *ts3_type_elements[2];
|
30
|
+
ts3_type.size = 0;
|
31
|
+
ts3_type.alignment = 0;
|
32
|
+
ts3_type.type = FFI_TYPE_STRUCT;
|
33
|
+
ts3_type.elements = ts3_type_elements;
|
34
|
+
ts3_type_elements[0] = &ffi_type_sint;
|
35
|
+
ts3_type_elements[1] = NULL;
|
36
|
+
|
37
|
+
test_structure_3 ts3_arg;
|
38
|
+
test_structure_3 *ts3_result =
|
39
|
+
(test_structure_3 *) malloc (sizeof(test_structure_3));
|
40
|
+
|
41
|
+
args[0] = &ts3_type;
|
42
|
+
values[0] = &ts3_arg;
|
43
|
+
|
44
|
+
/* Initialize the cif */
|
45
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1,
|
46
|
+
&ts3_type, args) == FFI_OK);
|
47
|
+
|
48
|
+
ts3_arg.si = -123;
|
49
|
+
compare_value = ts3_arg.si;
|
50
|
+
|
51
|
+
ffi_call(&cif, FFI_FN(struct3), ts3_result, values);
|
52
|
+
|
53
|
+
printf ("%d %d\n", ts3_result->si, -(compare_value*2));
|
54
|
+
|
55
|
+
CHECK(ts3_result->si == -(compare_value*2));
|
56
|
+
|
57
|
+
free (ts3_result);
|
58
|
+
exit(0);
|
59
|
+
}
|
@@ -0,0 +1,63 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check structures.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
|
10
|
+
typedef struct
|
11
|
+
{
|
12
|
+
unsigned ui1;
|
13
|
+
unsigned ui2;
|
14
|
+
unsigned ui3;
|
15
|
+
} test_structure_4;
|
16
|
+
|
17
|
+
static test_structure_4 struct4(test_structure_4 ts)
|
18
|
+
{
|
19
|
+
ts.ui3 = ts.ui1 * ts.ui2 * ts.ui3;
|
20
|
+
|
21
|
+
return ts;
|
22
|
+
}
|
23
|
+
|
24
|
+
int main (void)
|
25
|
+
{
|
26
|
+
ffi_cif cif;
|
27
|
+
ffi_type *args[MAX_ARGS];
|
28
|
+
void *values[MAX_ARGS];
|
29
|
+
ffi_type ts4_type;
|
30
|
+
ffi_type *ts4_type_elements[4];
|
31
|
+
ts4_type.size = 0;
|
32
|
+
ts4_type.alignment = 0;
|
33
|
+
ts4_type.type = FFI_TYPE_STRUCT;
|
34
|
+
test_structure_4 ts4_arg;
|
35
|
+
ts4_type.elements = ts4_type_elements;
|
36
|
+
ts4_type_elements[0] = &ffi_type_uint;
|
37
|
+
ts4_type_elements[1] = &ffi_type_uint;
|
38
|
+
ts4_type_elements[2] = &ffi_type_uint;
|
39
|
+
ts4_type_elements[3] = NULL;
|
40
|
+
|
41
|
+
|
42
|
+
/* This is a hack to get a properly aligned result buffer */
|
43
|
+
test_structure_4 *ts4_result =
|
44
|
+
(test_structure_4 *) malloc (sizeof(test_structure_4));
|
45
|
+
|
46
|
+
args[0] = &ts4_type;
|
47
|
+
values[0] = &ts4_arg;
|
48
|
+
|
49
|
+
/* Initialize the cif */
|
50
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 1, &ts4_type, args) == FFI_OK);
|
51
|
+
|
52
|
+
ts4_arg.ui1 = 2;
|
53
|
+
ts4_arg.ui2 = 3;
|
54
|
+
ts4_arg.ui3 = 4;
|
55
|
+
|
56
|
+
ffi_call (&cif, FFI_FN(struct4), ts4_result, values);
|
57
|
+
|
58
|
+
CHECK(ts4_result->ui3 == 2U * 3U * 4U);
|
59
|
+
|
60
|
+
|
61
|
+
free (ts4_result);
|
62
|
+
exit(0);
|
63
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/* Area: ffi_call
|
2
|
+
Purpose: Check structures.
|
3
|
+
Limitations: none.
|
4
|
+
PR: none.
|
5
|
+
Originator: From the original ffitest.c */
|
6
|
+
|
7
|
+
/* { dg-do run } */
|
8
|
+
#include "ffitest.h"
|
9
|
+
typedef struct
|
10
|
+
{
|
11
|
+
char c1;
|
12
|
+
char c2;
|
13
|
+
} test_structure_5;
|
14
|
+
|
15
|
+
static test_structure_5 struct5(test_structure_5 ts1, test_structure_5 ts2)
|
16
|
+
{
|
17
|
+
ts1.c1 += ts2.c1;
|
18
|
+
ts1.c2 -= ts2.c2;
|
19
|
+
|
20
|
+
return ts1;
|
21
|
+
}
|
22
|
+
|
23
|
+
int main (void)
|
24
|
+
{
|
25
|
+
ffi_cif cif;
|
26
|
+
ffi_type *args[MAX_ARGS];
|
27
|
+
void *values[MAX_ARGS];
|
28
|
+
ffi_type ts5_type;
|
29
|
+
ffi_type *ts5_type_elements[3];
|
30
|
+
ts5_type.size = 0;
|
31
|
+
ts5_type.alignment = 0;
|
32
|
+
ts5_type.type = FFI_TYPE_STRUCT;
|
33
|
+
ts5_type.elements = ts5_type_elements;
|
34
|
+
ts5_type_elements[0] = &ffi_type_schar;
|
35
|
+
ts5_type_elements[1] = &ffi_type_schar;
|
36
|
+
ts5_type_elements[2] = NULL;
|
37
|
+
|
38
|
+
test_structure_5 ts5_arg1, ts5_arg2;
|
39
|
+
|
40
|
+
/* This is a hack to get a properly aligned result buffer */
|
41
|
+
test_structure_5 *ts5_result =
|
42
|
+
(test_structure_5 *) malloc (sizeof(test_structure_5));
|
43
|
+
|
44
|
+
args[0] = &ts5_type;
|
45
|
+
args[1] = &ts5_type;
|
46
|
+
values[0] = &ts5_arg1;
|
47
|
+
values[1] = &ts5_arg2;
|
48
|
+
|
49
|
+
/* Initialize the cif */
|
50
|
+
CHECK(ffi_prep_cif(&cif, FFI_DEFAULT_ABI, 2, &ts5_type, args) == FFI_OK);
|
51
|
+
|
52
|
+
ts5_arg1.c1 = 2;
|
53
|
+
ts5_arg1.c2 = 6;
|
54
|
+
ts5_arg2.c1 = 5;
|
55
|
+
ts5_arg2.c2 = 3;
|
56
|
+
|
57
|
+
ffi_call (&cif, FFI_FN(struct5), ts5_result, values);
|
58
|
+
|
59
|
+
CHECK(ts5_result->c1 == 7);
|
60
|
+
CHECK(ts5_result->c2 == 3);
|
61
|
+
|
62
|
+
|
63
|
+
free (ts5_result);
|
64
|
+
exit(0);
|
65
|
+
}
|