ffi 1.9.18 → 1.9.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +22 -0
- data/.gitmodules +3 -0
- data/.travis.yml +52 -0
- data/.yardopts +5 -0
- data/Gemfile +15 -0
- data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
- data/README.md +3 -4
- data/Rakefile +41 -5
- data/appveyor.yml +22 -0
- data/ext/ffi_c/AbstractMemory.c +6 -1
- data/ext/ffi_c/Call.c +1 -22
- data/ext/ffi_c/Call.h +0 -9
- data/ext/ffi_c/Closure.c +54 -0
- data/ext/ffi_c/{ClosurePool.h → Closure.h} +13 -23
- data/ext/ffi_c/Function.c +16 -25
- data/ext/ffi_c/Function.h +1 -2
- data/ext/ffi_c/FunctionInfo.c +0 -4
- data/ext/ffi_c/MethodHandle.c +33 -268
- data/ext/ffi_c/Platform.c +10 -2
- data/ext/ffi_c/extconf.rb +10 -5
- data/ext/ffi_c/ffi.c +2 -2
- data/ext/ffi_c/libffi/.appveyor.yml +48 -0
- data/ext/ffi_c/libffi/.gitignore +36 -0
- data/ext/ffi_c/libffi/.travis/install.sh +14 -0
- data/ext/ffi_c/libffi/.travis.yml +30 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +2 -2
- data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.libffi-3.1} +1402 -2
- data/ext/ffi_c/libffi/ChangeLog.v1 +1 -1
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +169 -158
- data/ext/ffi_c/libffi/Makefile.in +927 -938
- data/ext/ffi_c/libffi/README +164 -52
- data/ext/ffi_c/libffi/acinclude.m4 +387 -0
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/config.guess +336 -371
- data/ext/ffi_c/libffi/config.sub +246 -115
- data/ext/ffi_c/libffi/configure +6976 -2189
- data/ext/ffi_c/libffi/configure.ac +148 -256
- data/ext/ffi_c/libffi/configure.host +277 -4
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/Makefile.in +811 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +430 -45
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +24 -13
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
- data/ext/ffi_c/libffi/include/Makefile.am +3 -3
- data/ext/ffi_c/libffi/include/Makefile.in +188 -71
- data/ext/ffi_c/libffi/include/ffi.h.in +112 -50
- data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +32 -11
- data/ext/ffi_c/libffi/install-sh +190 -202
- data/ext/ffi_c/libffi/libffi.map.in +80 -0
- data/ext/ffi_c/libffi/libffi.pc.in +3 -2
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
- data/ext/ffi_c/libffi/libtool-ldflags +106 -0
- data/ext/ffi_c/libffi/libtool-version +1 -1
- data/ext/ffi_c/libffi/ltmain.sh +3553 -2033
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +69 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +13 -8
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +31 -104
- data/ext/ffi_c/libffi/m4/{ax_check_compiler_flags.m4 → ax_check_compile_flag.m4} +30 -34
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +32 -11
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +6 -5
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +31 -21
- data/ext/ffi_c/libffi/man/Makefile.am +2 -2
- data/ext/ffi_c/libffi/man/Makefile.in +141 -49
- data/ext/ffi_c/libffi/man/ffi.3 +10 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/missing +150 -311
- data/ext/ffi_c/libffi/msvcc.sh +72 -9
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +964 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
- data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +608 -517
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +24 -7
- data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +303 -417
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +366 -45
- data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/debug.c +6 -1
- data/ext/ffi_c/libffi/src/dlmalloc.c +16 -11
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +11 -7
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/unix.S +2 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
- data/ext/ffi_c/libffi/src/m32r/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +103 -28
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +10 -3
- data/ext/ffi_c/libffi/src/mips/n32.S +128 -56
- data/ext/ffi_c/libffi/src/mips/o32.S +148 -27
- data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
- data/ext/ffi_c/libffi/src/moxie/ffi.c +40 -44
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/powerpc/aix.S +245 -7
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +253 -4
- data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +103 -1378
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +111 -30
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +945 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +103 -44
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +100 -59
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +360 -108
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +68 -112
- data/ext/ffi_c/libffi/src/prep_cif.c +108 -24
- data/ext/ffi_c/libffi/src/raw_api.c +18 -5
- data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
- data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
- data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/types.c +43 -14
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +591 -500
- data/ext/ffi_c/libffi/src/x86/ffi64.c +359 -116
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +55 -35
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +287 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +975 -400
- data/ext/ffi_c/libffi/src/x86/unix64.S +398 -299
- data/ext/ffi_c/libffi/src/x86/win64.S +222 -458
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +253 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +79 -73
- data/ext/ffi_c/libffi/testsuite/Makefile.in +219 -111
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +121 -25
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/{closure_stdcall.c → closure_simple.c} +7 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +10 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +3 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +10 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +11 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +23 -40
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +6 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +18 -19
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +8 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest.cc +3 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest_ffi_call.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/libffi.bsd.mk +11 -5
- data/ext/ffi_c/libffi.darwin.mk +14 -4
- data/ext/ffi_c/libffi.gnu.mk +3 -2
- data/ext/ffi_c/libffi.mk +10 -5
- data/ext/ffi_c/libffi.vc.mk +1 -1
- data/ext/ffi_c/libffi.vc64.mk +1 -1
- data/ffi.gemspec +16 -3
- data/lib/ffi/enum.rb +124 -0
- data/lib/ffi/library.rb +66 -14
- data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +113 -20
- data/lib/ffi/platform.rb +7 -2
- data/lib/ffi/pointer.rb +1 -0
- data/lib/ffi/struct.rb +0 -2
- data/lib/ffi/version.rb +1 -2
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +7 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +76 -0
- data/samples/qsort.rb +21 -0
- data/samples/sample_helper.rb +6 -0
- metadata +164 -115
- data/ext/ffi_c/ClosurePool.c +0 -283
- data/ext/ffi_c/libffi/Makefile.vc +0 -141
- data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
- data/ext/ffi_c/libffi/aclocal.m4 +0 -1873
- data/ext/ffi_c/libffi/build-ios.sh +0 -67
- data/ext/ffi_c/libffi/compile +0 -143
- data/ext/ffi_c/libffi/depcomp +0 -630
- data/ext/ffi_c/libffi/doc/libffi.info +0 -593
- data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
- data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +0 -427
- data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7831
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -369
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
- data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -98
- data/ext/ffi_c/libffi/mdate-sh +0 -201
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
- data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
- data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
- data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
- data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
- data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
- data/ext/ffi_c/libffi/texinfo.tex +0 -7210
- data/gen/Rakefile +0 -30
- data/libtest/Benchmark.c +0 -52
- data/libtest/BoolTest.c +0 -34
- data/libtest/BufferTest.c +0 -31
- data/libtest/ClosureTest.c +0 -205
- data/libtest/EnumTest.c +0 -51
- data/libtest/FunctionTest.c +0 -70
- data/libtest/GNUmakefile +0 -149
- data/libtest/GlobalVariable.c +0 -62
- data/libtest/LastErrorTest.c +0 -21
- data/libtest/NumberTest.c +0 -132
- data/libtest/PointerTest.c +0 -63
- data/libtest/ReferenceTest.c +0 -23
- data/libtest/StringTest.c +0 -34
- data/libtest/StructTest.c +0 -243
- data/libtest/UnionTest.c +0 -43
- data/libtest/VariadicTest.c +0 -99
- data/spec/ffi/async_callback_spec.rb +0 -35
- data/spec/ffi/bool_spec.rb +0 -32
- data/spec/ffi/buffer_spec.rb +0 -279
- data/spec/ffi/callback_spec.rb +0 -773
- data/spec/ffi/custom_param_type.rb +0 -37
- data/spec/ffi/custom_type_spec.rb +0 -74
- data/spec/ffi/dup_spec.rb +0 -52
- data/spec/ffi/enum_spec.rb +0 -423
- data/spec/ffi/errno_spec.rb +0 -20
- data/spec/ffi/ffi_spec.rb +0 -28
- data/spec/ffi/fixtures/Benchmark.c +0 -52
- data/spec/ffi/fixtures/BoolTest.c +0 -34
- data/spec/ffi/fixtures/BufferTest.c +0 -31
- data/spec/ffi/fixtures/ClosureTest.c +0 -205
- data/spec/ffi/fixtures/EnumTest.c +0 -51
- data/spec/ffi/fixtures/FunctionTest.c +0 -142
- data/spec/ffi/fixtures/GNUmakefile +0 -149
- data/spec/ffi/fixtures/GlobalVariable.c +0 -62
- data/spec/ffi/fixtures/LastErrorTest.c +0 -21
- data/spec/ffi/fixtures/NumberTest.c +0 -132
- data/spec/ffi/fixtures/PipeHelper.h +0 -21
- data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
- data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
- data/spec/ffi/fixtures/PointerTest.c +0 -63
- data/spec/ffi/fixtures/ReferenceTest.c +0 -23
- data/spec/ffi/fixtures/StringTest.c +0 -34
- data/spec/ffi/fixtures/StructTest.c +0 -243
- data/spec/ffi/fixtures/UnionTest.c +0 -43
- data/spec/ffi/fixtures/VariadicTest.c +0 -99
- data/spec/ffi/fixtures/classes.rb +0 -438
- data/spec/ffi/function_spec.rb +0 -97
- data/spec/ffi/io_spec.rb +0 -16
- data/spec/ffi/library_spec.rb +0 -286
- data/spec/ffi/long_double.rb +0 -30
- data/spec/ffi/managed_struct_spec.rb +0 -68
- data/spec/ffi/memorypointer_spec.rb +0 -78
- data/spec/ffi/number_spec.rb +0 -247
- data/spec/ffi/platform_spec.rb +0 -114
- data/spec/ffi/pointer_spec.rb +0 -285
- data/spec/ffi/rbx/attach_function_spec.rb +0 -34
- data/spec/ffi/rbx/memory_pointer_spec.rb +0 -194
- data/spec/ffi/rbx/spec_helper.rb +0 -6
- data/spec/ffi/rbx/struct_spec.rb +0 -18
- data/spec/ffi/spec_helper.rb +0 -93
- data/spec/ffi/string_spec.rb +0 -118
- data/spec/ffi/strptr_spec.rb +0 -50
- data/spec/ffi/struct_by_ref_spec.rb +0 -43
- data/spec/ffi/struct_callback_spec.rb +0 -69
- data/spec/ffi/struct_initialize_spec.rb +0 -35
- data/spec/ffi/struct_packed_spec.rb +0 -50
- data/spec/ffi/struct_spec.rb +0 -886
- data/spec/ffi/typedef_spec.rb +0 -91
- data/spec/ffi/union_spec.rb +0 -67
- data/spec/ffi/variadic_spec.rb +0 -132
- data/spec/spec.opts +0 -4
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
#include <sys/types.h>
|
|
8
|
-
#include <stdio.h>
|
|
9
|
-
#include <stdint.h>
|
|
10
|
-
#include <string.h>
|
|
11
|
-
#include <stdarg.h>
|
|
12
|
-
|
|
13
|
-
typedef int8_t s8;
|
|
14
|
-
typedef uint8_t u8;
|
|
15
|
-
typedef int16_t s16;
|
|
16
|
-
typedef uint16_t u16;
|
|
17
|
-
typedef int32_t s32;
|
|
18
|
-
typedef uint32_t u32;
|
|
19
|
-
typedef int64_t s64;
|
|
20
|
-
typedef uint64_t u64;
|
|
21
|
-
typedef signed long sL;
|
|
22
|
-
typedef unsigned long uL;
|
|
23
|
-
typedef float F;
|
|
24
|
-
typedef double D;
|
|
25
|
-
|
|
26
|
-
void pack_varargs(s64* buf, const char* fmt, ...)
|
|
27
|
-
{
|
|
28
|
-
va_list ap;
|
|
29
|
-
int c;
|
|
30
|
-
double d;
|
|
31
|
-
va_start(ap, fmt);
|
|
32
|
-
while ((c = *fmt++)) {
|
|
33
|
-
switch (c) {
|
|
34
|
-
case 'c':
|
|
35
|
-
case 's':
|
|
36
|
-
case 'i':
|
|
37
|
-
*buf++ = va_arg(ap, s32);
|
|
38
|
-
break;
|
|
39
|
-
case 'l':
|
|
40
|
-
*buf++ = va_arg(ap, long);
|
|
41
|
-
break;
|
|
42
|
-
case 'j':
|
|
43
|
-
*buf++ = va_arg(ap, s64);
|
|
44
|
-
break;
|
|
45
|
-
case 'f':
|
|
46
|
-
case 'd':
|
|
47
|
-
d = va_arg(ap, double);
|
|
48
|
-
memcpy(buf++, &d, sizeof(d));
|
|
49
|
-
break;
|
|
50
|
-
case 'C':
|
|
51
|
-
case 'S':
|
|
52
|
-
case 'I':
|
|
53
|
-
*buf++ = va_arg(ap, u32);
|
|
54
|
-
break;
|
|
55
|
-
case 'L':
|
|
56
|
-
*buf++ = va_arg(ap, unsigned long);
|
|
57
|
-
break;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
va_end(ap);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
int pack_varargs2(s64* buf, int retval, const char* fmt, ...)
|
|
64
|
-
{
|
|
65
|
-
va_list ap;
|
|
66
|
-
int c;
|
|
67
|
-
double d;
|
|
68
|
-
va_start(ap, fmt);
|
|
69
|
-
while ((c = *fmt++)) {
|
|
70
|
-
switch (c) {
|
|
71
|
-
case 'c':
|
|
72
|
-
case 's':
|
|
73
|
-
case 'i':
|
|
74
|
-
*buf++ = va_arg(ap, s32);
|
|
75
|
-
break;
|
|
76
|
-
case 'l':
|
|
77
|
-
*buf++ = va_arg(ap, long);
|
|
78
|
-
break;
|
|
79
|
-
case 'j':
|
|
80
|
-
*buf++ = va_arg(ap, s64);
|
|
81
|
-
break;
|
|
82
|
-
case 'f':
|
|
83
|
-
case 'd':
|
|
84
|
-
d = va_arg(ap, double);
|
|
85
|
-
memcpy(buf++, &d, sizeof(d));
|
|
86
|
-
break;
|
|
87
|
-
case 'C':
|
|
88
|
-
case 'S':
|
|
89
|
-
case 'I':
|
|
90
|
-
*buf++ = va_arg(ap, u32);
|
|
91
|
-
break;
|
|
92
|
-
case 'L':
|
|
93
|
-
*buf++ = va_arg(ap, unsigned long);
|
|
94
|
-
break;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
va_end(ap);
|
|
98
|
-
return retval + 1;
|
|
99
|
-
}
|
|
@@ -1,438 +0,0 @@
|
|
|
1
|
-
module FFISpecs
|
|
2
|
-
#
|
|
3
|
-
# Callback fixtures
|
|
4
|
-
#
|
|
5
|
-
module LibTest
|
|
6
|
-
callback :cbVrS8, [ ], :char
|
|
7
|
-
callback :cbVrU8, [ ], :uchar
|
|
8
|
-
callback :cbVrS16, [ ], :short
|
|
9
|
-
callback :cbVrU16, [ ], :ushort
|
|
10
|
-
callback :cbVrS32, [ ], :int
|
|
11
|
-
callback :cbVrU32, [ ], :uint
|
|
12
|
-
callback :cbVrL, [ ], :long
|
|
13
|
-
callback :cbVrUL, [ ], :ulong
|
|
14
|
-
callback :cbVrS64, [ ], :long_long
|
|
15
|
-
callback :cbVrU64, [ ], :ulong_long
|
|
16
|
-
callback :cbVrP, [], :pointer
|
|
17
|
-
callback :cbCrV, [ :char ], :void
|
|
18
|
-
callback :cbSrV, [ :short ], :void
|
|
19
|
-
callback :cbIrV, [ :int ], :void
|
|
20
|
-
callback :cbLrV, [ :long ], :void
|
|
21
|
-
callback :cbULrV, [ :ulong ], :void
|
|
22
|
-
callback :cbLrV, [ :long_long ], :void
|
|
23
|
-
|
|
24
|
-
attach_function :testCallbackVrS8, :testClosureVrB, [ :cbVrS8 ], :char
|
|
25
|
-
attach_function :testCallbackVrU8, :testClosureVrB, [ :cbVrU8 ], :uchar
|
|
26
|
-
attach_function :testCallbackVrS16, :testClosureVrS, [ :cbVrS16 ], :short
|
|
27
|
-
attach_function :testCallbackVrU16, :testClosureVrS, [ :cbVrU16 ], :ushort
|
|
28
|
-
attach_function :testCallbackVrS32, :testClosureVrI, [ :cbVrS32 ], :int
|
|
29
|
-
attach_function :testCallbackVrU32, :testClosureVrI, [ :cbVrU32 ], :uint
|
|
30
|
-
attach_function :testCallbackVrL, :testClosureVrL, [ :cbVrL ], :long
|
|
31
|
-
attach_function :testCallbackVrUL, :testClosureVrL, [ :cbVrUL ], :ulong
|
|
32
|
-
attach_function :testCallbackVrS64, :testClosureVrLL, [ :cbVrS64 ], :long_long
|
|
33
|
-
attach_function :testCallbackVrU64, :testClosureVrLL, [ :cbVrU64 ], :ulong_long
|
|
34
|
-
attach_function :testCallbackVrP, :testClosureVrP, [ :cbVrP ], :pointer
|
|
35
|
-
attach_function :testCallbackCrV, :testClosureBrV, [ :cbCrV, :char ], :void
|
|
36
|
-
attach_variable :cbVrS8, :gvar_pointer, :cbVrS8
|
|
37
|
-
attach_variable :pVrS8, :gvar_pointer, :pointer
|
|
38
|
-
attach_function :testGVarCallbackVrS8, :testClosureVrB, [ :pointer ], :char
|
|
39
|
-
attach_function :testOptionalCallbackCrV, :testOptionalClosureBrV, [ :cbCrV, :char ], :void
|
|
40
|
-
|
|
41
|
-
attach_function :testCallbackVrS8, :testClosureVrB, [ callback([ ], :char) ], :char
|
|
42
|
-
|
|
43
|
-
callback :cb_return_type, [ :int ], :int
|
|
44
|
-
callback :cb_lookup, [ ], :cb_return_type
|
|
45
|
-
attach_function :testReturnsCallback, :testReturnsClosure, [ :cb_lookup, :int ], :int
|
|
46
|
-
|
|
47
|
-
callback :funcptr, [ :int ], :int
|
|
48
|
-
attach_function :testReturnsFunctionPointer, [ ], :funcptr
|
|
49
|
-
|
|
50
|
-
callback :cbS8rV, [ :char ], :void
|
|
51
|
-
callback :cbU8rV, [ :uchar ], :void
|
|
52
|
-
callback :cbS16rV, [ :short ], :void
|
|
53
|
-
callback :cbU16rV, [ :ushort ], :void
|
|
54
|
-
|
|
55
|
-
callback :cbS32rV, [ :int ], :void
|
|
56
|
-
callback :cbU32rV, [ :uint ], :void
|
|
57
|
-
|
|
58
|
-
callback :cbLrV, [ :long ], :void
|
|
59
|
-
callback :cbULrV, [ :ulong ], :void
|
|
60
|
-
|
|
61
|
-
callback :cbS64rV, [ :long_long ], :void
|
|
62
|
-
attach_function :testCallbackCrV, :testClosureBrV, [ :cbS8rV, :char ], :void
|
|
63
|
-
attach_function :testCallbackU8rV, :testClosureBrV, [ :cbU8rV, :uchar ], :void
|
|
64
|
-
attach_function :testCallbackSrV, :testClosureSrV, [ :cbS16rV, :short ], :void
|
|
65
|
-
attach_function :testCallbackU16rV, :testClosureSrV, [ :cbU16rV, :ushort ], :void
|
|
66
|
-
attach_function :testCallbackIrV, :testClosureIrV, [ :cbS32rV, :int ], :void
|
|
67
|
-
attach_function :testCallbackU32rV, :testClosureIrV, [ :cbU32rV, :uint ], :void
|
|
68
|
-
|
|
69
|
-
attach_function :testCallbackLrV, :testClosureLrV, [ :cbLrV, :long ], :void
|
|
70
|
-
attach_function :testCallbackULrV, :testClosureULrV, [ :cbULrV, :ulong ], :void
|
|
71
|
-
|
|
72
|
-
attach_function :testCallbackLLrV, :testClosureLLrV, [ :cbS64rV, :long_long ], :void
|
|
73
|
-
end
|
|
74
|
-
|
|
75
|
-
#
|
|
76
|
-
# Enum fixtures
|
|
77
|
-
#
|
|
78
|
-
module TestEnum0
|
|
79
|
-
extend FFI::Library
|
|
80
|
-
end
|
|
81
|
-
|
|
82
|
-
module TestEnum1
|
|
83
|
-
extend FFI::Library
|
|
84
|
-
ffi_lib LIBRARY
|
|
85
|
-
|
|
86
|
-
enum [:c1, :c2, :c3, :c4]
|
|
87
|
-
enum [:c5, 42, :c6, :c7, :c8]
|
|
88
|
-
enum [:c9, 42, :c10, :c11, 4242, :c12]
|
|
89
|
-
enum [:c13, 42, :c14, 4242, :c15, 424242, :c16, 42424242]
|
|
90
|
-
|
|
91
|
-
attach_function :test_untagged_enum, [:int], :int
|
|
92
|
-
end
|
|
93
|
-
|
|
94
|
-
module TestEnum3
|
|
95
|
-
extend FFI::Library
|
|
96
|
-
ffi_lib LIBRARY
|
|
97
|
-
|
|
98
|
-
enum :enum_type1, [:c1, :c2, :c3, :c4]
|
|
99
|
-
enum :enum_type2, [:c5, 42, :c6, :c7, :c8]
|
|
100
|
-
enum :enum_type3, [:c9, 42, :c10, :c11, 4242, :c12]
|
|
101
|
-
enum :enum_type4, [:c13, 42, :c14, 4242, :c15, 424242, :c16, 42424242]
|
|
102
|
-
|
|
103
|
-
attach_function :test_tagged_typedef_enum1, [:enum_type1], :enum_type1
|
|
104
|
-
attach_function :test_tagged_typedef_enum2, [:enum_type2], :enum_type2
|
|
105
|
-
attach_function :test_tagged_typedef_enum3, [:enum_type3], :enum_type3
|
|
106
|
-
attach_function :test_tagged_typedef_enum4, [:enum_type4], :enum_type4
|
|
107
|
-
end
|
|
108
|
-
|
|
109
|
-
#
|
|
110
|
-
# Errno fixtures
|
|
111
|
-
#
|
|
112
|
-
module LibTest
|
|
113
|
-
attach_function :setLastError, [ :int ], :void
|
|
114
|
-
end
|
|
115
|
-
|
|
116
|
-
#
|
|
117
|
-
# ManagedStruct fixtures
|
|
118
|
-
#
|
|
119
|
-
module LibTest
|
|
120
|
-
attach_function :ptr_from_address, [ FFI::Platform::ADDRESS_SIZE == 32 ? :uint : :ulong_long ], :pointer
|
|
121
|
-
end
|
|
122
|
-
|
|
123
|
-
class NoRelease < ManagedStruct
|
|
124
|
-
layout :i, :int
|
|
125
|
-
end
|
|
126
|
-
|
|
127
|
-
class WhatClassAmI < ManagedStruct
|
|
128
|
-
layout :i, :int
|
|
129
|
-
def self.release; end
|
|
130
|
-
end
|
|
131
|
-
|
|
132
|
-
class PleaseReleaseMe < ManagedStruct
|
|
133
|
-
layout :i, :int
|
|
134
|
-
@@count = 0
|
|
135
|
-
def self.release
|
|
136
|
-
@@count += 1
|
|
137
|
-
end
|
|
138
|
-
def self.wait_gc(count)
|
|
139
|
-
loop = 5
|
|
140
|
-
while loop > 0 && @@count < count
|
|
141
|
-
loop -= 1
|
|
142
|
-
if RUBY_PLATFORM =~ /java/
|
|
143
|
-
require 'java'
|
|
144
|
-
java.lang.System.gc
|
|
145
|
-
else
|
|
146
|
-
GC.start
|
|
147
|
-
end
|
|
148
|
-
sleep 0.05 if @@count < count
|
|
149
|
-
end
|
|
150
|
-
end
|
|
151
|
-
end
|
|
152
|
-
|
|
153
|
-
#
|
|
154
|
-
# Number fixtures
|
|
155
|
-
#
|
|
156
|
-
module LibTest
|
|
157
|
-
attach_function :ret_s8, [ :char ], :char
|
|
158
|
-
attach_function :ret_u8, [ :uchar ], :uchar
|
|
159
|
-
attach_function :ret_s16, [ :short ], :short
|
|
160
|
-
attach_function :ret_u16, [ :ushort ], :ushort
|
|
161
|
-
attach_function :ret_s32, [ :int ], :int
|
|
162
|
-
attach_function :ret_u32, [ :uint ], :uint
|
|
163
|
-
attach_function :ret_s64, [ :long_long ], :long_long
|
|
164
|
-
attach_function :ret_u64, [ :ulong_long ], :ulong_long
|
|
165
|
-
attach_function :ret_long, [ :long ], :long
|
|
166
|
-
attach_function :ret_ulong, [ :ulong ], :ulong
|
|
167
|
-
attach_function :set_s8, [ :char ], :void
|
|
168
|
-
attach_function :get_s8, [ ], :char
|
|
169
|
-
attach_function :set_float, [ :float ], :void
|
|
170
|
-
attach_function :get_float, [ ], :float
|
|
171
|
-
attach_function :set_double, [ :double ], :void
|
|
172
|
-
attach_function :get_double, [ ], :double
|
|
173
|
-
end
|
|
174
|
-
|
|
175
|
-
PACK_VALUES = {
|
|
176
|
-
's8' => [ 0x12 ],
|
|
177
|
-
'u8' => [ 0x34 ],
|
|
178
|
-
's16' => [ 0x5678 ],
|
|
179
|
-
'u16' => [ 0x9abc ],
|
|
180
|
-
's32' => [ 0x7654321f ],
|
|
181
|
-
'u32' => [ 0xfee1babe ],
|
|
182
|
-
'sL' => [ 0x1f2e3d4c ],
|
|
183
|
-
'uL' => [ 0xf7e8d9ca ],
|
|
184
|
-
's64' => [ 0x1eafdeadbeefa1b2 ],
|
|
185
|
-
#'f32' => [ 1.234567 ], # TODO: Why is this disabled?
|
|
186
|
-
'f64' => [ 9.87654321 ]
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
TYPE_MAP = {
|
|
190
|
-
's8' => :char, 'u8' => :uchar, 's16' => :short, 'u16' => :ushort,
|
|
191
|
-
's32' => :int, 'u32' => :uint, 's64' => :long_long, 'u64' => :ulong_long,
|
|
192
|
-
'sL' => :long, 'uL' => :ulong, 'f32' => :float, 'f64' => :double
|
|
193
|
-
}
|
|
194
|
-
TYPES = TYPE_MAP.keys
|
|
195
|
-
|
|
196
|
-
module LibTest
|
|
197
|
-
[ 's32', 'u32', 's64', 'u64' ].each do |rt|
|
|
198
|
-
TYPES.each do |t1|
|
|
199
|
-
TYPES.each do |t2|
|
|
200
|
-
TYPES.each do |t3|
|
|
201
|
-
begin
|
|
202
|
-
attach_function "pack_#{t1}#{t2}#{t3}_#{rt}",
|
|
203
|
-
[ TYPE_MAP[t1], TYPE_MAP[t2], TYPE_MAP[t3], :buffer_out ], :void
|
|
204
|
-
rescue FFI::NotFoundError
|
|
205
|
-
end
|
|
206
|
-
end
|
|
207
|
-
end
|
|
208
|
-
end
|
|
209
|
-
end
|
|
210
|
-
end
|
|
211
|
-
|
|
212
|
-
#
|
|
213
|
-
# Pointer fixtures
|
|
214
|
-
#
|
|
215
|
-
module LibTest
|
|
216
|
-
attach_function :ptr_ret_int32_t, [ :pointer, :int ], :int
|
|
217
|
-
attach_function :ptr_from_address, [ FFI::Platform::ADDRESS_SIZE == 32 ? :uint : :ulong_long ], :pointer
|
|
218
|
-
attach_function :ptr_set_pointer, [ :pointer, :int, :pointer ], :void
|
|
219
|
-
end
|
|
220
|
-
|
|
221
|
-
class ToPtrTest
|
|
222
|
-
def initialize(ptr)
|
|
223
|
-
@ptr = ptr
|
|
224
|
-
end
|
|
225
|
-
def to_ptr
|
|
226
|
-
@ptr
|
|
227
|
-
end
|
|
228
|
-
end
|
|
229
|
-
|
|
230
|
-
require 'delegate'
|
|
231
|
-
class PointerDelegate < DelegateClass(FFI::Pointer)
|
|
232
|
-
def initialize(ptr)
|
|
233
|
-
super
|
|
234
|
-
@ptr = ptr
|
|
235
|
-
end
|
|
236
|
-
def to_ptr
|
|
237
|
-
@ptr
|
|
238
|
-
end
|
|
239
|
-
end
|
|
240
|
-
|
|
241
|
-
class AutoPointerTestHelper
|
|
242
|
-
@@count = 0
|
|
243
|
-
def self.release
|
|
244
|
-
@@count += 1 if @@count > 0
|
|
245
|
-
end
|
|
246
|
-
def self.reset
|
|
247
|
-
@@count = 0
|
|
248
|
-
end
|
|
249
|
-
def self.gc_everything(count)
|
|
250
|
-
loop = 5
|
|
251
|
-
while @@count < count && loop > 0
|
|
252
|
-
loop -= 1
|
|
253
|
-
if RUBY_PLATFORM =~ /java/
|
|
254
|
-
require "java"
|
|
255
|
-
java.lang.System.gc
|
|
256
|
-
else
|
|
257
|
-
GC.start
|
|
258
|
-
end
|
|
259
|
-
sleep 0.05 unless @@count == count
|
|
260
|
-
end
|
|
261
|
-
@@count = 0
|
|
262
|
-
end
|
|
263
|
-
def self.finalizer
|
|
264
|
-
self.method(:release).to_proc
|
|
265
|
-
end
|
|
266
|
-
end
|
|
267
|
-
|
|
268
|
-
#
|
|
269
|
-
# String fixtures
|
|
270
|
-
#
|
|
271
|
-
module LibTest
|
|
272
|
-
attach_function :ptr_ret_pointer, [ :pointer, :int], :string
|
|
273
|
-
attach_function :string_equals, [ :string, :string ], :int
|
|
274
|
-
attach_function :string_dummy, [ :string ], :void
|
|
275
|
-
end
|
|
276
|
-
|
|
277
|
-
#
|
|
278
|
-
# Struct initialize fixtures
|
|
279
|
-
#
|
|
280
|
-
class StructWithInitialize < FFI::Struct
|
|
281
|
-
layout :string, :string
|
|
282
|
-
attr_accessor :magic
|
|
283
|
-
def initialize
|
|
284
|
-
super
|
|
285
|
-
self.magic = 42
|
|
286
|
-
end
|
|
287
|
-
end
|
|
288
|
-
|
|
289
|
-
#
|
|
290
|
-
# Struct fixtures
|
|
291
|
-
#
|
|
292
|
-
StructTypes = {
|
|
293
|
-
's8' => :char,
|
|
294
|
-
's16' => :short,
|
|
295
|
-
's32' => :int,
|
|
296
|
-
's64' => :long_long,
|
|
297
|
-
'long' => :long,
|
|
298
|
-
'f32' => :float,
|
|
299
|
-
'f64' => :double
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
module LibTest
|
|
303
|
-
attach_function :ptr_ret_pointer, [ :pointer, :int], :string
|
|
304
|
-
attach_function :ptr_ret_int32_t, [ :pointer, :int ], :int
|
|
305
|
-
attach_function :ptr_from_address, [ :ulong ], :pointer
|
|
306
|
-
attach_function :string_equals, [ :string, :string ], :int
|
|
307
|
-
[ 's8', 's16', 's32', 's64', 'f32', 'f64', 'long' ].each do |t|
|
|
308
|
-
attach_function "struct_align_#{t}", [ :pointer ], StructTypes[t]
|
|
309
|
-
end
|
|
310
|
-
end
|
|
311
|
-
|
|
312
|
-
class PointerMember < FFI::Struct
|
|
313
|
-
layout :pointer, :pointer
|
|
314
|
-
end
|
|
315
|
-
|
|
316
|
-
class StringMember < FFI::Struct
|
|
317
|
-
layout :string, :string
|
|
318
|
-
end
|
|
319
|
-
|
|
320
|
-
module CallbackMember
|
|
321
|
-
extend FFI::Library
|
|
322
|
-
ffi_lib LIBRARY
|
|
323
|
-
callback :add, [ :int, :int ], :int
|
|
324
|
-
callback :sub, [ :int, :int ], :int
|
|
325
|
-
|
|
326
|
-
class TestStruct < FFI::Struct
|
|
327
|
-
layout :add, :add,
|
|
328
|
-
:sub, :sub
|
|
329
|
-
end
|
|
330
|
-
|
|
331
|
-
attach_function :struct_call_add_cb, [TestStruct, :int, :int], :int
|
|
332
|
-
attach_function :struct_call_sub_cb, [TestStruct, :int, :int], :int
|
|
333
|
-
end
|
|
334
|
-
|
|
335
|
-
module LibTest
|
|
336
|
-
class NestedStruct < FFI::Struct
|
|
337
|
-
layout :i, :int
|
|
338
|
-
end
|
|
339
|
-
|
|
340
|
-
class ContainerStruct < FFI::Struct
|
|
341
|
-
layout :first, :char, :ns, NestedStruct
|
|
342
|
-
end
|
|
343
|
-
|
|
344
|
-
attach_function :struct_align_nested_struct, [ :pointer ], :int
|
|
345
|
-
attach_function :struct_make_container_struct, [ :int ], :pointer
|
|
346
|
-
|
|
347
|
-
class StructWithArray < FFI::Struct
|
|
348
|
-
layout :first, :char, :a, [:int, 5]
|
|
349
|
-
end
|
|
350
|
-
|
|
351
|
-
attach_function :struct_make_struct_with_array, [:int, :int, :int, :int, :int], :pointer
|
|
352
|
-
attach_function :struct_field_array, [:pointer], :pointer
|
|
353
|
-
|
|
354
|
-
class BuggedStruct < FFI::Struct
|
|
355
|
-
layout :visible, :uchar,
|
|
356
|
-
:x, :uint,
|
|
357
|
-
:y, :uint,
|
|
358
|
-
:rx, :short,
|
|
359
|
-
:ry, :short,
|
|
360
|
-
:order, :uchar,
|
|
361
|
-
:size, :uchar
|
|
362
|
-
end
|
|
363
|
-
|
|
364
|
-
attach_function :bugged_struct_size, [], :uint
|
|
365
|
-
end
|
|
366
|
-
|
|
367
|
-
module StructCustomTypedef
|
|
368
|
-
extend FFI::Library
|
|
369
|
-
ffi_lib LIBRARY
|
|
370
|
-
typedef :uint, :fubar3_t
|
|
371
|
-
|
|
372
|
-
class S < FFI::Struct
|
|
373
|
-
layout :a, :fubar3_t
|
|
374
|
-
end
|
|
375
|
-
end
|
|
376
|
-
|
|
377
|
-
#
|
|
378
|
-
# Union fixtures
|
|
379
|
-
#
|
|
380
|
-
module LibTest
|
|
381
|
-
Types = {
|
|
382
|
-
's8' => [:char, :c, 1],
|
|
383
|
-
's16' => [:short, :s, 0xff0],
|
|
384
|
-
's32' => [:int, :i, 0xff00],
|
|
385
|
-
's64' => [:long_long, :j, 0xffff00],
|
|
386
|
-
'long' => [:long, :l, 0xffff],
|
|
387
|
-
'f32' => [:float, :f, 1.0001],
|
|
388
|
-
'f64' => [:double, :d, 1.000000001]
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
class TestUnion < FFI::Union
|
|
392
|
-
layout( :a, [:char, 10],
|
|
393
|
-
:i, :int,
|
|
394
|
-
:f, :float,
|
|
395
|
-
:d, :double,
|
|
396
|
-
:s, :short,
|
|
397
|
-
:l, :long,
|
|
398
|
-
:j, :long_long,
|
|
399
|
-
:c, :char )
|
|
400
|
-
end
|
|
401
|
-
|
|
402
|
-
Types.keys.each do |k|
|
|
403
|
-
attach_function "union_align_#{k}", [ :pointer ], Types[k][0]
|
|
404
|
-
attach_function "union_make_union_with_#{k}", [ Types[k][0] ], :pointer
|
|
405
|
-
end
|
|
406
|
-
|
|
407
|
-
attach_function :union_size, [], :uint
|
|
408
|
-
end
|
|
409
|
-
|
|
410
|
-
#
|
|
411
|
-
# Variadic fixtures
|
|
412
|
-
#
|
|
413
|
-
module LibTest
|
|
414
|
-
attach_function :pack_varargs, [ :buffer_out, :string, :varargs ], :void
|
|
415
|
-
end
|
|
416
|
-
|
|
417
|
-
module Varargs
|
|
418
|
-
PACK_VALUES = {
|
|
419
|
-
'c' => [ 0x12 ],
|
|
420
|
-
'C' => [ 0x34 ],
|
|
421
|
-
's' => [ 0x5678 ],
|
|
422
|
-
'S' => [ 0x9abc ],
|
|
423
|
-
'i' => [ 0x7654321f ],
|
|
424
|
-
'I' => [ 0xfee1babe ],
|
|
425
|
-
'l' => [ 0x1f2e3d4c ],
|
|
426
|
-
'L' => [ 0xf7e8d9ca ],
|
|
427
|
-
'j' => [ 0x1eafdeadbeefa1b2 ],
|
|
428
|
-
'f' => [ 1.23456789 ],
|
|
429
|
-
'd' => [ 9.87654321 ]
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
TYPE_MAP = {
|
|
433
|
-
'c' => :char, 'C' => :uchar, 's' => :short, 'S' => :ushort,
|
|
434
|
-
'i' => :int, 'I' => :uint, 'j' => :long_long, 'J' => :ulong_long,
|
|
435
|
-
'l' => :long, 'L' => :ulong, 'f' => :float, 'd' => :double
|
|
436
|
-
}
|
|
437
|
-
end
|
|
438
|
-
end
|
data/spec/ffi/function_spec.rb
DELETED
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# This file is part of ruby-ffi.
|
|
3
|
-
# For licensing, see LICENSE.SPECS
|
|
4
|
-
#
|
|
5
|
-
|
|
6
|
-
require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
|
|
7
|
-
|
|
8
|
-
describe FFI::Function do
|
|
9
|
-
module LibTest
|
|
10
|
-
extend FFI::Library
|
|
11
|
-
ffi_lib TestLibrary::PATH
|
|
12
|
-
attach_function :testFunctionAdd, [:int, :int, :pointer], :int
|
|
13
|
-
end
|
|
14
|
-
before do
|
|
15
|
-
@libtest = FFI::DynamicLibrary.open(TestLibrary::PATH,
|
|
16
|
-
FFI::DynamicLibrary::RTLD_LAZY | FFI::DynamicLibrary::RTLD_GLOBAL)
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
it 'is initialized with a signature and a block' do
|
|
20
|
-
fn = FFI::Function.new(:int, []) { 5 }
|
|
21
|
-
expect(fn.call).to eql 5
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
it 'raises an error when passing a wrong signature' do
|
|
25
|
-
expect { FFI::Function.new([], :int).new { } }.to raise_error TypeError
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
it 'returns a native pointer' do
|
|
29
|
-
expect(FFI::Function.new(:int, []) { }).to be_a_kind_of FFI::Pointer
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
it 'can be used as callback from C passing to it a block' do
|
|
33
|
-
function_add = FFI::Function.new(:int, [:int, :int]) { |a, b| a + b }
|
|
34
|
-
expect(LibTest.testFunctionAdd(10, 10, function_add)).to eq(20)
|
|
35
|
-
end
|
|
36
|
-
|
|
37
|
-
it 'can be used as callback from C passing to it a Proc object' do
|
|
38
|
-
function_add = FFI::Function.new(:int, [:int, :int], Proc.new { |a, b| a + b })
|
|
39
|
-
expect(LibTest.testFunctionAdd(10, 10, function_add)).to eq(20)
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
it 'can be used to wrap an existing function pointer' do
|
|
43
|
-
expect(FFI::Function.new(:int, [:int, :int], @libtest.find_function('testAdd')).call(10, 10)).to eq(20)
|
|
44
|
-
end
|
|
45
|
-
|
|
46
|
-
it 'can be attached to a module' do
|
|
47
|
-
module Foo; end
|
|
48
|
-
fp = FFI::Function.new(:int, [:int, :int], @libtest.find_function('testAdd'))
|
|
49
|
-
fp.attach(Foo, 'add')
|
|
50
|
-
expect(Foo.add(10, 10)).to eq(20)
|
|
51
|
-
end
|
|
52
|
-
|
|
53
|
-
it 'can be used to extend an object' do
|
|
54
|
-
fp = FFI::Function.new(:int, [:int, :int], @libtest.find_function('testAdd'))
|
|
55
|
-
foo = Object.new
|
|
56
|
-
class << foo
|
|
57
|
-
def singleton_class
|
|
58
|
-
class << self; self; end
|
|
59
|
-
end
|
|
60
|
-
end
|
|
61
|
-
fp.attach(foo.singleton_class, 'add')
|
|
62
|
-
expect(foo.add(10, 10)).to eq(20)
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
it 'can wrap a blocking function' do
|
|
66
|
-
fpOpen = FFI::Function.new(:pointer, [ ], @libtest.find_function('testBlockingOpen'))
|
|
67
|
-
fpRW = FFI::Function.new(:char, [ :pointer, :char ], @libtest.find_function('testBlockingRW'), :blocking => true)
|
|
68
|
-
fpWR = FFI::Function.new(:char, [ :pointer, :char ], @libtest.find_function('testBlockingWR'), :blocking => true)
|
|
69
|
-
fpClose = FFI::Function.new(:void, [ :pointer ], @libtest.find_function('testBlockingClose'))
|
|
70
|
-
handle = fpOpen.call
|
|
71
|
-
expect(handle).not_to be_null
|
|
72
|
-
begin
|
|
73
|
-
thWR = Thread.new { fpWR.call(handle, 63) }
|
|
74
|
-
thRW = Thread.new { fpRW.call(handle, 64) }
|
|
75
|
-
expect(thWR.value).to eq(64)
|
|
76
|
-
expect(thRW.value).to eq(63)
|
|
77
|
-
ensure
|
|
78
|
-
fpClose.call(handle)
|
|
79
|
-
end
|
|
80
|
-
end
|
|
81
|
-
|
|
82
|
-
it 'autorelease flag is set to true by default' do
|
|
83
|
-
fp = FFI::Function.new(:int, [:int, :int], @libtest.find_function('testAdd'))
|
|
84
|
-
expect(fp.autorelease?).to be true
|
|
85
|
-
end
|
|
86
|
-
|
|
87
|
-
it 'can explicity free itself' do
|
|
88
|
-
fp = FFI::Function.new(:int, []) { }
|
|
89
|
-
fp.free
|
|
90
|
-
expect { fp.free }.to raise_error RuntimeError
|
|
91
|
-
end
|
|
92
|
-
|
|
93
|
-
it 'can\'t explicity free itself if not previously allocated' do
|
|
94
|
-
fp = FFI::Function.new(:int, [:int, :int], @libtest.find_function('testAdd'))
|
|
95
|
-
expect { fp.free }.to raise_error RuntimeError
|
|
96
|
-
end
|
|
97
|
-
end
|
data/spec/ffi/io_spec.rb
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# This file is part of ruby-ffi.
|
|
3
|
-
# For licensing, see LICENSE.SPECS
|
|
4
|
-
#
|
|
5
|
-
|
|
6
|
-
require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper"))
|
|
7
|
-
|
|
8
|
-
if false # disabled for #390
|
|
9
|
-
describe "FFI::IO.for_fd" do
|
|
10
|
-
it "produces an IO wrapping the specified file descriptor" do
|
|
11
|
-
expect do
|
|
12
|
-
FFI::IO.for_fd(2, "r")
|
|
13
|
-
end.to_not raise_error
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
end
|