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,381 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
o32.S - Copyright (c) 1996, 1998, 2005 Red Hat, Inc.
|
3
|
+
|
4
|
+
MIPS Foreign Function Interface
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
``Software''), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included
|
15
|
+
in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
24
|
+
DEALINGS IN THE SOFTWARE.
|
25
|
+
----------------------------------------------------------------------- */
|
26
|
+
|
27
|
+
#define LIBFFI_ASM
|
28
|
+
#include <fficonfig.h>
|
29
|
+
#include <ffi.h>
|
30
|
+
|
31
|
+
/* Only build this code if we are compiling for o32 */
|
32
|
+
|
33
|
+
#if defined(FFI_MIPS_O32)
|
34
|
+
|
35
|
+
#define callback a0
|
36
|
+
#define bytes a2
|
37
|
+
#define flags a3
|
38
|
+
|
39
|
+
#define SIZEOF_FRAME (4 * FFI_SIZEOF_ARG + 2 * FFI_SIZEOF_ARG)
|
40
|
+
#define A3_OFF (SIZEOF_FRAME + 3 * FFI_SIZEOF_ARG)
|
41
|
+
#define FP_OFF (SIZEOF_FRAME - 2 * FFI_SIZEOF_ARG)
|
42
|
+
#define RA_OFF (SIZEOF_FRAME - 1 * FFI_SIZEOF_ARG)
|
43
|
+
|
44
|
+
.abicalls
|
45
|
+
.text
|
46
|
+
.align 2
|
47
|
+
.globl ffi_call_O32
|
48
|
+
.ent ffi_call_O32
|
49
|
+
ffi_call_O32:
|
50
|
+
$LFB0:
|
51
|
+
# Prologue
|
52
|
+
SUBU $sp, SIZEOF_FRAME # Frame size
|
53
|
+
$LCFI0:
|
54
|
+
REG_S $fp, FP_OFF($sp) # Save frame pointer
|
55
|
+
$LCFI1:
|
56
|
+
REG_S ra, RA_OFF($sp) # Save return address
|
57
|
+
$LCFI2:
|
58
|
+
move $fp, $sp
|
59
|
+
|
60
|
+
$LCFI3:
|
61
|
+
move t9, callback # callback function pointer
|
62
|
+
REG_S flags, A3_OFF($fp) # flags
|
63
|
+
|
64
|
+
# Allocate at least 4 words in the argstack
|
65
|
+
LI v0, 4 * FFI_SIZEOF_ARG
|
66
|
+
blt bytes, v0, sixteen
|
67
|
+
|
68
|
+
ADDU v0, bytes, 7 # make sure it is aligned
|
69
|
+
and v0, -8 # to an 8 byte boundry
|
70
|
+
|
71
|
+
sixteen:
|
72
|
+
SUBU $sp, v0 # move the stack pointer to reflect the
|
73
|
+
# arg space
|
74
|
+
|
75
|
+
ADDU a0, $sp, 4 * FFI_SIZEOF_ARG
|
76
|
+
|
77
|
+
jalr t9
|
78
|
+
|
79
|
+
REG_L t0, A3_OFF($fp) # load the flags word
|
80
|
+
SRL t2, t0, 4 # shift our arg info
|
81
|
+
and t0, ((1<<4)-1) # mask out the return type
|
82
|
+
|
83
|
+
ADDU $sp, 4 * FFI_SIZEOF_ARG # adjust $sp to new args
|
84
|
+
|
85
|
+
bnez t0, pass_d # make it quick for int
|
86
|
+
REG_L a0, 0*FFI_SIZEOF_ARG($sp) # just go ahead and load the
|
87
|
+
REG_L a1, 1*FFI_SIZEOF_ARG($sp) # four regs.
|
88
|
+
REG_L a2, 2*FFI_SIZEOF_ARG($sp)
|
89
|
+
REG_L a3, 3*FFI_SIZEOF_ARG($sp)
|
90
|
+
b call_it
|
91
|
+
|
92
|
+
pass_d:
|
93
|
+
bne t0, FFI_ARGS_D, pass_f
|
94
|
+
l.d $f12, 0*FFI_SIZEOF_ARG($sp) # load $fp regs from args
|
95
|
+
REG_L a2, 2*FFI_SIZEOF_ARG($sp) # passing a double
|
96
|
+
REG_L a3, 3*FFI_SIZEOF_ARG($sp)
|
97
|
+
b call_it
|
98
|
+
|
99
|
+
pass_f:
|
100
|
+
bne t0, FFI_ARGS_F, pass_d_d
|
101
|
+
l.s $f12, 0*FFI_SIZEOF_ARG($sp) # load $fp regs from args
|
102
|
+
REG_L a1, 1*FFI_SIZEOF_ARG($sp) # passing a float
|
103
|
+
REG_L a2, 2*FFI_SIZEOF_ARG($sp)
|
104
|
+
REG_L a3, 3*FFI_SIZEOF_ARG($sp)
|
105
|
+
b call_it
|
106
|
+
|
107
|
+
pass_d_d:
|
108
|
+
bne t0, FFI_ARGS_DD, pass_f_f
|
109
|
+
l.d $f12, 0*FFI_SIZEOF_ARG($sp) # load $fp regs from args
|
110
|
+
l.d $f14, 2*FFI_SIZEOF_ARG($sp) # passing two doubles
|
111
|
+
b call_it
|
112
|
+
|
113
|
+
pass_f_f:
|
114
|
+
bne t0, FFI_ARGS_FF, pass_d_f
|
115
|
+
l.s $f12, 0*FFI_SIZEOF_ARG($sp) # load $fp regs from args
|
116
|
+
l.s $f14, 1*FFI_SIZEOF_ARG($sp) # passing two floats
|
117
|
+
REG_L a2, 2*FFI_SIZEOF_ARG($sp)
|
118
|
+
REG_L a3, 3*FFI_SIZEOF_ARG($sp)
|
119
|
+
b call_it
|
120
|
+
|
121
|
+
pass_d_f:
|
122
|
+
bne t0, FFI_ARGS_DF, pass_f_d
|
123
|
+
l.d $f12, 0*FFI_SIZEOF_ARG($sp) # load $fp regs from args
|
124
|
+
l.s $f14, 2*FFI_SIZEOF_ARG($sp) # passing double and float
|
125
|
+
REG_L a3, 3*FFI_SIZEOF_ARG($sp)
|
126
|
+
b call_it
|
127
|
+
|
128
|
+
pass_f_d:
|
129
|
+
# assume that the only other combination must be float then double
|
130
|
+
# bne t0, FFI_ARGS_F_D, call_it
|
131
|
+
l.s $f12, 0*FFI_SIZEOF_ARG($sp) # load $fp regs from args
|
132
|
+
l.d $f14, 2*FFI_SIZEOF_ARG($sp) # passing double and float
|
133
|
+
|
134
|
+
call_it:
|
135
|
+
# Load the function pointer
|
136
|
+
REG_L t9, SIZEOF_FRAME + 5*FFI_SIZEOF_ARG($fp)
|
137
|
+
|
138
|
+
# If the return value pointer is NULL, assume no return value.
|
139
|
+
REG_L t1, SIZEOF_FRAME + 4*FFI_SIZEOF_ARG($fp)
|
140
|
+
beqz t1, noretval
|
141
|
+
|
142
|
+
bne t2, FFI_TYPE_INT, retlonglong
|
143
|
+
jalr t9
|
144
|
+
REG_L t0, SIZEOF_FRAME + 4*FFI_SIZEOF_ARG($fp)
|
145
|
+
REG_S v0, 0(t0)
|
146
|
+
b epilogue
|
147
|
+
|
148
|
+
retlonglong:
|
149
|
+
# Really any 64-bit int, signed or not.
|
150
|
+
bne t2, FFI_TYPE_UINT64, retfloat
|
151
|
+
jalr t9
|
152
|
+
REG_L t0, SIZEOF_FRAME + 4*FFI_SIZEOF_ARG($fp)
|
153
|
+
REG_S v1, 4(t0)
|
154
|
+
REG_S v0, 0(t0)
|
155
|
+
b epilogue
|
156
|
+
|
157
|
+
retfloat:
|
158
|
+
bne t2, FFI_TYPE_FLOAT, retdouble
|
159
|
+
jalr t9
|
160
|
+
REG_L t0, SIZEOF_FRAME + 4*FFI_SIZEOF_ARG($fp)
|
161
|
+
s.s $f0, 0(t0)
|
162
|
+
b epilogue
|
163
|
+
|
164
|
+
retdouble:
|
165
|
+
bne t2, FFI_TYPE_DOUBLE, noretval
|
166
|
+
jalr t9
|
167
|
+
REG_L t0, SIZEOF_FRAME + 4*FFI_SIZEOF_ARG($fp)
|
168
|
+
s.d $f0, 0(t0)
|
169
|
+
b epilogue
|
170
|
+
|
171
|
+
noretval:
|
172
|
+
jalr t9
|
173
|
+
|
174
|
+
# Epilogue
|
175
|
+
epilogue:
|
176
|
+
move $sp, $fp
|
177
|
+
REG_L $fp, FP_OFF($sp) # Restore frame pointer
|
178
|
+
REG_L ra, RA_OFF($sp) # Restore return address
|
179
|
+
ADDU $sp, SIZEOF_FRAME # Fix stack pointer
|
180
|
+
j ra
|
181
|
+
|
182
|
+
$LFE0:
|
183
|
+
.end ffi_call_O32
|
184
|
+
|
185
|
+
|
186
|
+
/* ffi_closure_O32. Expects address of the passed-in ffi_closure
|
187
|
+
in t4 ($12). Stores any arguments passed in registers onto the
|
188
|
+
stack, then calls ffi_closure_mips_inner_O32, which
|
189
|
+
then decodes them.
|
190
|
+
|
191
|
+
Stack layout:
|
192
|
+
|
193
|
+
3 - a3 save
|
194
|
+
2 - a2 save
|
195
|
+
1 - a1 save
|
196
|
+
0 - a0 save, original sp
|
197
|
+
-1 - ra save
|
198
|
+
-2 - fp save
|
199
|
+
-3 - $16 (s0) save
|
200
|
+
-4 - cprestore
|
201
|
+
-5 - return value high (v1)
|
202
|
+
-6 - return value low (v0)
|
203
|
+
-7 - f14 (le high, be low)
|
204
|
+
-8 - f14 (le low, be high)
|
205
|
+
-9 - f12 (le high, be low)
|
206
|
+
-10 - f12 (le low, be high)
|
207
|
+
-11 - Called function a3 save
|
208
|
+
-12 - Called function a2 save
|
209
|
+
-13 - Called function a1 save
|
210
|
+
-14 - Called function a0 save, our sp and fp point here
|
211
|
+
*/
|
212
|
+
|
213
|
+
#define SIZEOF_FRAME2 (14 * FFI_SIZEOF_ARG)
|
214
|
+
#define A3_OFF2 (SIZEOF_FRAME2 + 3 * FFI_SIZEOF_ARG)
|
215
|
+
#define A2_OFF2 (SIZEOF_FRAME2 + 2 * FFI_SIZEOF_ARG)
|
216
|
+
#define A1_OFF2 (SIZEOF_FRAME2 + 1 * FFI_SIZEOF_ARG)
|
217
|
+
#define A0_OFF2 (SIZEOF_FRAME2 + 0 * FFI_SIZEOF_ARG)
|
218
|
+
#define RA_OFF2 (SIZEOF_FRAME2 - 1 * FFI_SIZEOF_ARG)
|
219
|
+
#define FP_OFF2 (SIZEOF_FRAME2 - 2 * FFI_SIZEOF_ARG)
|
220
|
+
#define S0_OFF2 (SIZEOF_FRAME2 - 3 * FFI_SIZEOF_ARG)
|
221
|
+
#define GP_OFF2 (SIZEOF_FRAME2 - 4 * FFI_SIZEOF_ARG)
|
222
|
+
#define V1_OFF2 (SIZEOF_FRAME2 - 5 * FFI_SIZEOF_ARG)
|
223
|
+
#define V0_OFF2 (SIZEOF_FRAME2 - 6 * FFI_SIZEOF_ARG)
|
224
|
+
#define FA_1_1_OFF2 (SIZEOF_FRAME2 - 7 * FFI_SIZEOF_ARG)
|
225
|
+
#define FA_1_0_OFF2 (SIZEOF_FRAME2 - 8 * FFI_SIZEOF_ARG)
|
226
|
+
#define FA_0_1_OFF2 (SIZEOF_FRAME2 - 9 * FFI_SIZEOF_ARG)
|
227
|
+
#define FA_0_0_OFF2 (SIZEOF_FRAME2 - 10 * FFI_SIZEOF_ARG)
|
228
|
+
|
229
|
+
.text
|
230
|
+
.align 2
|
231
|
+
.globl ffi_closure_O32
|
232
|
+
.ent ffi_closure_O32
|
233
|
+
ffi_closure_O32:
|
234
|
+
$LFB1:
|
235
|
+
# Prologue
|
236
|
+
.frame $fp, SIZEOF_FRAME2, ra
|
237
|
+
.set noreorder
|
238
|
+
.cpload t9
|
239
|
+
.set reorder
|
240
|
+
SUBU $sp, SIZEOF_FRAME2
|
241
|
+
.cprestore GP_OFF2
|
242
|
+
$LCFI4:
|
243
|
+
REG_S $16, S0_OFF2($sp) # Save s0
|
244
|
+
REG_S $fp, FP_OFF2($sp) # Save frame pointer
|
245
|
+
REG_S ra, RA_OFF2($sp) # Save return address
|
246
|
+
$LCFI6:
|
247
|
+
move $fp, $sp
|
248
|
+
|
249
|
+
$LCFI7:
|
250
|
+
# Store all possible argument registers. If there are more than
|
251
|
+
# four arguments, then they are stored above where we put a3.
|
252
|
+
REG_S a0, A0_OFF2($fp)
|
253
|
+
REG_S a1, A1_OFF2($fp)
|
254
|
+
REG_S a2, A2_OFF2($fp)
|
255
|
+
REG_S a3, A3_OFF2($fp)
|
256
|
+
|
257
|
+
# Load ABI enum to s0
|
258
|
+
REG_L $16, 20($12) # cif pointer follows tramp.
|
259
|
+
REG_L $16, 0($16) # abi is first member.
|
260
|
+
|
261
|
+
li $13, 1 # FFI_O32
|
262
|
+
bne $16, $13, 1f # Skip fp save if FFI_O32_SOFT_FLOAT
|
263
|
+
|
264
|
+
# Store all possible float/double registers.
|
265
|
+
s.d $f12, FA_0_0_OFF2($fp)
|
266
|
+
s.d $f14, FA_1_0_OFF2($fp)
|
267
|
+
1:
|
268
|
+
# Call ffi_closure_mips_inner_O32 to do the work.
|
269
|
+
la t9, ffi_closure_mips_inner_O32
|
270
|
+
move a0, $12 # Pointer to the ffi_closure
|
271
|
+
addu a1, $fp, V0_OFF2
|
272
|
+
addu a2, $fp, A0_OFF2
|
273
|
+
addu a3, $fp, FA_0_0_OFF2
|
274
|
+
jalr t9
|
275
|
+
|
276
|
+
# Load the return value into the appropriate register.
|
277
|
+
move $8, $2
|
278
|
+
li $9, FFI_TYPE_VOID
|
279
|
+
beq $8, $9, closure_done
|
280
|
+
|
281
|
+
li $13, 1 # FFI_O32
|
282
|
+
bne $16, $13, 1f # Skip fp restore if FFI_O32_SOFT_FLOAT
|
283
|
+
|
284
|
+
li $9, FFI_TYPE_FLOAT
|
285
|
+
l.s $f0, V0_OFF2($fp)
|
286
|
+
beq $8, $9, closure_done
|
287
|
+
|
288
|
+
li $9, FFI_TYPE_DOUBLE
|
289
|
+
l.d $f0, V0_OFF2($fp)
|
290
|
+
beq $8, $9, closure_done
|
291
|
+
1:
|
292
|
+
REG_L $3, V1_OFF2($fp)
|
293
|
+
REG_L $2, V0_OFF2($fp)
|
294
|
+
|
295
|
+
closure_done:
|
296
|
+
# Epilogue
|
297
|
+
move $sp, $fp
|
298
|
+
REG_L $16, S0_OFF2($sp) # Restore s0
|
299
|
+
REG_L $fp, FP_OFF2($sp) # Restore frame pointer
|
300
|
+
REG_L ra, RA_OFF2($sp) # Restore return address
|
301
|
+
ADDU $sp, SIZEOF_FRAME2
|
302
|
+
j ra
|
303
|
+
$LFE1:
|
304
|
+
.end ffi_closure_O32
|
305
|
+
|
306
|
+
/* DWARF-2 unwind info. */
|
307
|
+
|
308
|
+
.section .eh_frame,"a",@progbits
|
309
|
+
$Lframe0:
|
310
|
+
.4byte $LECIE0-$LSCIE0 # Length of Common Information Entry
|
311
|
+
$LSCIE0:
|
312
|
+
.4byte 0x0 # CIE Identifier Tag
|
313
|
+
.byte 0x1 # CIE Version
|
314
|
+
.ascii "zR\0" # CIE Augmentation
|
315
|
+
.uleb128 0x1 # CIE Code Alignment Factor
|
316
|
+
.sleb128 4 # CIE Data Alignment Factor
|
317
|
+
.byte 0x1f # CIE RA Column
|
318
|
+
.uleb128 0x1 # Augmentation size
|
319
|
+
.byte 0x00 # FDE Encoding (absptr)
|
320
|
+
.byte 0xc # DW_CFA_def_cfa
|
321
|
+
.uleb128 0x1d
|
322
|
+
.uleb128 0x0
|
323
|
+
.align 2
|
324
|
+
$LECIE0:
|
325
|
+
$LSFDE0:
|
326
|
+
.4byte $LEFDE0-$LASFDE0 # FDE Length
|
327
|
+
$LASFDE0:
|
328
|
+
.4byte $LASFDE0-$Lframe0 # FDE CIE offset
|
329
|
+
.4byte $LFB0 # FDE initial location
|
330
|
+
.4byte $LFE0-$LFB0 # FDE address range
|
331
|
+
.uleb128 0x0 # Augmentation size
|
332
|
+
.byte 0x4 # DW_CFA_advance_loc4
|
333
|
+
.4byte $LCFI0-$LFB0
|
334
|
+
.byte 0xe # DW_CFA_def_cfa_offset
|
335
|
+
.uleb128 0x18
|
336
|
+
.byte 0x4 # DW_CFA_advance_loc4
|
337
|
+
.4byte $LCFI2-$LCFI0
|
338
|
+
.byte 0x11 # DW_CFA_offset_extended_sf
|
339
|
+
.uleb128 0x1e # $fp
|
340
|
+
.sleb128 -2 # SIZEOF_FRAME2 - 2*FFI_SIZEOF_ARG($sp)
|
341
|
+
.byte 0x11 # DW_CFA_offset_extended_sf
|
342
|
+
.uleb128 0x1f # $ra
|
343
|
+
.sleb128 -1 # SIZEOF_FRAME2 - 1*FFI_SIZEOF_ARG($sp)
|
344
|
+
.byte 0x4 # DW_CFA_advance_loc4
|
345
|
+
.4byte $LCFI3-$LCFI2
|
346
|
+
.byte 0xc # DW_CFA_def_cfa
|
347
|
+
.uleb128 0x1e
|
348
|
+
.uleb128 0x18
|
349
|
+
.align 2
|
350
|
+
$LEFDE0:
|
351
|
+
$LSFDE1:
|
352
|
+
.4byte $LEFDE1-$LASFDE1 # FDE Length
|
353
|
+
$LASFDE1:
|
354
|
+
.4byte $LASFDE1-$Lframe0 # FDE CIE offset
|
355
|
+
.4byte $LFB1 # FDE initial location
|
356
|
+
.4byte $LFE1-$LFB1 # FDE address range
|
357
|
+
.uleb128 0x0 # Augmentation size
|
358
|
+
.byte 0x4 # DW_CFA_advance_loc4
|
359
|
+
.4byte $LCFI4-$LFB1
|
360
|
+
.byte 0xe # DW_CFA_def_cfa_offset
|
361
|
+
.uleb128 0x38
|
362
|
+
.byte 0x4 # DW_CFA_advance_loc4
|
363
|
+
.4byte $LCFI6-$LCFI4
|
364
|
+
.byte 0x11 # DW_CFA_offset_extended_sf
|
365
|
+
.uleb128 0x10 # $16
|
366
|
+
.sleb128 -3 # SIZEOF_FRAME2 - 3*FFI_SIZEOF_ARG($sp)
|
367
|
+
.byte 0x11 # DW_CFA_offset_extended_sf
|
368
|
+
.uleb128 0x1e # $fp
|
369
|
+
.sleb128 -2 # SIZEOF_FRAME2 - 2*FFI_SIZEOF_ARG($sp)
|
370
|
+
.byte 0x11 # DW_CFA_offset_extended_sf
|
371
|
+
.uleb128 0x1f # $ra
|
372
|
+
.sleb128 -1 # SIZEOF_FRAME2 - 1*FFI_SIZEOF_ARG($sp)
|
373
|
+
.byte 0x4 # DW_CFA_advance_loc4
|
374
|
+
.4byte $LCFI7-$LCFI6
|
375
|
+
.byte 0xc # DW_CFA_def_cfa
|
376
|
+
.uleb128 0x1e
|
377
|
+
.uleb128 0x38
|
378
|
+
.align 2
|
379
|
+
$LEFDE1:
|
380
|
+
|
381
|
+
#endif
|
@@ -0,0 +1,128 @@
|
|
1
|
+
/* -----------------------------------------------------------------------
|
2
|
+
eabi.S - Copyright (c) 2004 Anthony Green
|
3
|
+
|
4
|
+
FR-V Assembly glue.
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
``Software''), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included
|
15
|
+
in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
18
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
20
|
+
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
21
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
22
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
23
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
24
|
+
----------------------------------------------------------------------- */
|
25
|
+
|
26
|
+
#define LIBFFI_ASM
|
27
|
+
#include <fficonfig.h>
|
28
|
+
#include <ffi.h>
|
29
|
+
|
30
|
+
.globl ffi_prep_args_EABI
|
31
|
+
|
32
|
+
.text
|
33
|
+
.p2align 4
|
34
|
+
.globl ffi_call_EABI
|
35
|
+
.type ffi_call_EABI, @function
|
36
|
+
|
37
|
+
# gr8 : ffi_prep_args
|
38
|
+
# gr9 : &ecif
|
39
|
+
# gr10: cif->bytes
|
40
|
+
# gr11: fig->flags
|
41
|
+
# gr12: ecif.rvalue
|
42
|
+
# gr13: fn
|
43
|
+
|
44
|
+
ffi_call_EABI:
|
45
|
+
addi sp, #-80, sp
|
46
|
+
sti fp, @(sp, #24)
|
47
|
+
addi sp, #24, fp
|
48
|
+
movsg lr, gr5
|
49
|
+
|
50
|
+
/* Make room for the new arguments. */
|
51
|
+
/* subi sp, fp, gr10 */
|
52
|
+
|
53
|
+
/* Store return address and incoming args on stack. */
|
54
|
+
sti gr5, @(fp, #8)
|
55
|
+
sti gr8, @(fp, #-4)
|
56
|
+
sti gr9, @(fp, #-8)
|
57
|
+
sti gr10, @(fp, #-12)
|
58
|
+
sti gr11, @(fp, #-16)
|
59
|
+
sti gr12, @(fp, #-20)
|
60
|
+
sti gr13, @(fp, #-24)
|
61
|
+
|
62
|
+
sub sp, gr10, sp
|
63
|
+
|
64
|
+
/* Call ffi_prep_args. */
|
65
|
+
ldi @(fp, #-4), gr4
|
66
|
+
addi sp, #0, gr8
|
67
|
+
ldi @(fp, #-8), gr9
|
68
|
+
#ifdef __FRV_FDPIC__
|
69
|
+
ldd @(gr4, gr0), gr14
|
70
|
+
calll @(gr14, gr0)
|
71
|
+
#else
|
72
|
+
calll @(gr4, gr0)
|
73
|
+
#endif
|
74
|
+
|
75
|
+
/* ffi_prep_args returns the new stack pointer. */
|
76
|
+
mov gr8, gr4
|
77
|
+
|
78
|
+
ldi @(sp, #0), gr8
|
79
|
+
ldi @(sp, #4), gr9
|
80
|
+
ldi @(sp, #8), gr10
|
81
|
+
ldi @(sp, #12), gr11
|
82
|
+
ldi @(sp, #16), gr12
|
83
|
+
ldi @(sp, #20), gr13
|
84
|
+
|
85
|
+
/* Always copy the return value pointer into the hidden
|
86
|
+
parameter register. This is only strictly necessary
|
87
|
+
when we're returning an aggregate type, but it doesn't
|
88
|
+
hurt to do this all the time, and it saves a branch. */
|
89
|
+
ldi @(fp, #-20), gr3
|
90
|
+
|
91
|
+
/* Use the ffi_prep_args return value for the new sp. */
|
92
|
+
mov gr4, sp
|
93
|
+
|
94
|
+
/* Call the target function. */
|
95
|
+
ldi @(fp, -24), gr4
|
96
|
+
#ifdef __FRV_FDPIC__
|
97
|
+
ldd @(gr4, gr0), gr14
|
98
|
+
calll @(gr14, gr0)
|
99
|
+
#else
|
100
|
+
calll @(gr4, gr0)
|
101
|
+
#endif
|
102
|
+
|
103
|
+
/* Store the result. */
|
104
|
+
ldi @(fp, #-16), gr10 /* fig->flags */
|
105
|
+
ldi @(fp, #-20), gr4 /* ecif.rvalue */
|
106
|
+
|
107
|
+
/* Is the return value stored in two registers? */
|
108
|
+
cmpi gr10, #8, icc0
|
109
|
+
bne icc0, 0, .L2
|
110
|
+
/* Yes, save them. */
|
111
|
+
sti gr8, @(gr4, #0)
|
112
|
+
sti gr9, @(gr4, #4)
|
113
|
+
bra .L3
|
114
|
+
.L2:
|
115
|
+
/* Is the return value a structure? */
|
116
|
+
cmpi gr10, #-1, icc0
|
117
|
+
beq icc0, 0, .L3
|
118
|
+
/* No, save a 4 byte return value. */
|
119
|
+
sti gr8, @(gr4, #0)
|
120
|
+
.L3:
|
121
|
+
|
122
|
+
/* Restore the stack, and return. */
|
123
|
+
ldi @(fp, 8), gr5
|
124
|
+
ld @(fp, gr0), fp
|
125
|
+
addi sp,#80,sp
|
126
|
+
jmpl @(gr5,gr0)
|
127
|
+
.size ffi_call_EABI, .-ffi_call_EABI
|
128
|
+
|