ffi 1.0.9-x86-mingw32 → 1.0.12.pre-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/Rakefile +16 -16
- data/ext/ffi_c/AbstractMemory.c +376 -14
- data/ext/ffi_c/AbstractMemory.h +8 -0
- data/ext/ffi_c/ArrayType.c +28 -0
- data/ext/ffi_c/Buffer.c +109 -25
- data/ext/ffi_c/Call.c +16 -5
- data/ext/ffi_c/ClosurePool.c +21 -8
- data/ext/ffi_c/DataConverter.c +29 -0
- data/ext/ffi_c/DynamicLibrary.c +71 -2
- data/ext/ffi_c/Function.c +122 -11
- data/ext/ffi_c/Function.h +6 -0
- data/ext/ffi_c/FunctionInfo.c +21 -1
- data/ext/ffi_c/LastError.c +24 -0
- data/ext/ffi_c/MappedType.c +22 -0
- data/ext/ffi_c/MemoryPointer.c +19 -1
- data/ext/ffi_c/MemoryPointer.h +6 -0
- data/ext/ffi_c/MethodHandle.c +26 -11
- data/ext/ffi_c/Platform.c +17 -3
- data/ext/ffi_c/Pointer.c +106 -0
- data/ext/ffi_c/Pointer.h +6 -0
- data/ext/ffi_c/Struct.c +10 -4
- data/ext/ffi_c/Struct.h +2 -1
- data/ext/ffi_c/StructByReference.c +8 -0
- data/ext/ffi_c/StructByValue.c +8 -0
- data/ext/ffi_c/StructLayout.c +8 -2
- data/ext/ffi_c/Thread.c +131 -1
- data/ext/ffi_c/Thread.h +6 -0
- data/ext/ffi_c/Type.c +111 -17
- data/ext/ffi_c/Types.c +9 -2
- data/ext/ffi_c/Types.h +4 -0
- data/ext/ffi_c/Variadic.c +13 -4
- data/ext/ffi_c/compat.h +8 -0
- data/ext/ffi_c/endian.h +10 -1
- data/ext/ffi_c/extconf.rb +51 -35
- data/ext/ffi_c/ffi.c +5 -0
- data/ext/ffi_c/libffi.darwin.mk +15 -15
- data/ext/ffi_c/libffi.gnu.mk +3 -3
- data/ext/ffi_c/libffi.mk +4 -4
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/ChangeLog +541 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +13 -87
- data/ext/ffi_c/libffi/LICENSE +3 -3
- data/ext/ffi_c/libffi/Makefile.am +41 -32
- data/ext/ffi_c/libffi/Makefile.in +95 -66
- data/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/ext/ffi_c/libffi/README +40 -4
- data/ext/ffi_c/libffi/aclocal.m4 +729 -7854
- data/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/ext/ffi_c/libffi/compile +11 -10
- data/ext/ffi_c/libffi/config.guess +4 -1
- data/ext/ffi_c/libffi/config.sub +6 -3
- data/ext/ffi_c/libffi/configure +6264 -6354
- data/ext/ffi_c/libffi/configure.ac +155 -63
- data/ext/ffi_c/libffi/depcomp +81 -35
- data/ext/ffi_c/libffi/doc/libffi.info +78 -18
- data/ext/ffi_c/libffi/doc/libffi.texi +64 -5
- data/ext/ffi_c/libffi/doc/stamp-vti +4 -4
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +18 -0
- data/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/ext/ffi_c/libffi/include/Makefile.in +21 -3
- data/ext/ffi_c/libffi/include/ffi.h.in +42 -14
- 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 +9 -5
- data/ext/ffi_c/libffi/install-sh +364 -167
- data/ext/ffi_c/libffi/ltmain.sh +2599 -1369
- 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 +1239 -768
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +7 -6
- data/ext/ffi_c/libffi/m4/ltversion.m4 +6 -6
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +9 -3
- data/ext/ffi_c/libffi/man/Makefile.in +21 -3
- data/ext/ffi_c/libffi/mdate-sh +0 -0
- data/ext/ffi_c/libffi/missing +60 -44
- data/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +39 -18
- data/ext/ffi_c/libffi/src/arm/ffi.c +443 -24
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +17 -1
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +206 -15
- data/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +4 -2
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/closures.c +17 -35
- data/ext/ffi_c/libffi/src/cris/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/dlmalloc.c +66 -4
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +2 -6
- data/ext/ffi_c/libffi/src/ia64/ffi.c +7 -5
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/java_raw_api.c +1 -1
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/m68k/ffi.c +10 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/m68k/sysv.S +36 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +12 -5
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +18 -11
- data/ext/ffi_c/libffi/src/mips/n32.S +4 -4
- 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 +7 -4
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +6 -5
- data/ext/ffi_c/libffi/src/powerpc/aix.S +5 -1
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +1 -1
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +215 -77
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +358 -100
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +11 -5
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +603 -172
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +17 -4
- data/ext/ffi_c/libffi/src/prep_cif.c +16 -13
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +4 -2
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/sparc/ffi.c +55 -11
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +5 -3
- data/ext/ffi_c/libffi/src/x86/ffi.c +54 -92
- data/ext/ffi_c/libffi/src/x86/ffi64.c +17 -8
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -14
- data/ext/ffi_c/libffi/src/x86/sysv.S +40 -26
- data/ext/ffi_c/libffi/src/x86/unix64.S +4 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +379 -191
- data/ext/ffi_c/libffi/src/x86/win64.S +15 -7
- data/ext/ffi_c/libffi/testsuite/Makefile.am +1 -1
- data/ext/ffi_c/libffi/testsuite/Makefile.in +22 -4
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +1 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +3 -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 +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +2 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +17 -17
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +1 -3
- data/ext/ffi_c/win32/stdint.h +199 -0
- data/gen/Rakefile +18 -2
- data/lib/1.8/ffi_c.so +0 -0
- data/lib/ffi.rb +13 -9
- data/lib/ffi/autopointer.rb +88 -26
- data/lib/ffi/enum.rb +42 -0
- data/lib/ffi/errno.rb +6 -1
- data/lib/ffi/ffi.rb +1 -0
- data/lib/ffi/io.rb +13 -2
- data/lib/ffi/library.rb +219 -24
- data/lib/ffi/memorypointer.rb +1 -33
- data/lib/ffi/platform.rb +21 -7
- data/lib/ffi/platform/arm-linux/types.conf +102 -0
- data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/lib/ffi/platform/i486-gnu/types.conf +107 -0
- data/lib/ffi/platform/ia64-linux/types.conf +102 -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-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/x86_64-freebsd/types.conf +126 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
- data/lib/ffi/pointer.rb +44 -0
- data/lib/ffi/struct.rb +2 -6
- data/lib/ffi/struct_layout_builder.rb +2 -1
- data/lib/ffi/tools/const_generator.rb +78 -26
- data/lib/ffi/tools/types_generator.rb +8 -1
- data/lib/ffi/types.rb +21 -1
- data/spec/ffi/async_callback_spec.rb +2 -2
- data/spec/ffi/bool_spec.rb +6 -6
- data/spec/ffi/buffer_spec.rb +23 -23
- data/spec/ffi/callback_spec.rb +101 -102
- data/spec/ffi/custom_type_spec.rb +20 -24
- data/spec/ffi/dup_spec.rb +7 -7
- data/spec/ffi/enum_spec.rb +127 -127
- data/spec/ffi/errno_spec.rb +2 -2
- data/spec/ffi/ffi_spec.rb +3 -3
- data/spec/ffi/function_spec.rb +10 -10
- data/spec/ffi/library_spec.rb +30 -12
- data/spec/ffi/managed_struct_spec.rb +4 -4
- data/spec/ffi/number_spec.rb +40 -40
- data/spec/ffi/pointer_spec.rb +21 -24
- data/spec/ffi/rbx/memory_pointer_spec.rb +17 -15
- data/spec/ffi/rbx/struct_spec.rb +2 -2
- data/spec/ffi/spec_helper.rb +1 -1
- data/spec/ffi/string_spec.rb +9 -9
- data/spec/ffi/strptr_spec.rb +3 -3
- data/spec/ffi/struct_callback_spec.rb +7 -7
- data/spec/ffi/struct_initialize_spec.rb +2 -2
- data/spec/ffi/struct_packed_spec.rb +6 -6
- data/spec/ffi/struct_spec.rb +94 -84
- data/spec/ffi/typedef_spec.rb +15 -4
- data/spec/ffi/union_spec.rb +3 -3
- data/spec/ffi/variadic_spec.rb +17 -14
- data/tasks/extension.rake +0 -1
- data/tasks/gem.rake +0 -1
- data/tasks/rdoc.rake +1 -1
- data/tasks/yard.rake +11 -0
- metadata +50 -11
- data/lib/1.9/ffi_c.so +0 -0
@@ -232,10 +232,18 @@ ret_void$:
|
|
232
232
|
ffi_call_win64 ENDP
|
233
233
|
_TEXT ENDS
|
234
234
|
END
|
235
|
-
|
235
|
+
|
236
|
+
#else
|
237
|
+
|
238
|
+
#ifdef SYMBOL_UNDERSCORE
|
239
|
+
#define SYMBOL_NAME(name) _##name
|
240
|
+
#else
|
241
|
+
#define SYMBOL_NAME(name) name
|
242
|
+
#endif
|
243
|
+
|
236
244
|
.text
|
237
245
|
|
238
|
-
.extern
|
246
|
+
.extern SYMBOL_NAME(ffi_closure_win64_inner)
|
239
247
|
|
240
248
|
# ffi_closure_win64 will be called with these registers set:
|
241
249
|
# rax points to 'closure'
|
@@ -246,8 +254,8 @@ END
|
|
246
254
|
# call ffi_closure_win64_inner for the actual work, then return the result.
|
247
255
|
#
|
248
256
|
.balign 16
|
249
|
-
.globl
|
250
|
-
|
257
|
+
.globl SYMBOL_NAME(ffi_closure_win64)
|
258
|
+
SYMBOL_NAME(ffi_closure_win64):
|
251
259
|
# copy register arguments onto stack
|
252
260
|
test $1,%r11
|
253
261
|
jne .Lfirst_is_float
|
@@ -287,7 +295,7 @@ _ffi_closure_win64:
|
|
287
295
|
mov %rax, %rcx # context is first parameter
|
288
296
|
mov %rsp, %rdx # stack is second parameter
|
289
297
|
add $48, %rdx # point to start of arguments
|
290
|
-
mov $
|
298
|
+
mov $SYMBOL_NAME(ffi_closure_win64_inner), %rax
|
291
299
|
callq *%rax # call the real closure function
|
292
300
|
add $40, %rsp
|
293
301
|
movq %rax, %xmm0 # If the closure returned a float,
|
@@ -296,8 +304,8 @@ _ffi_closure_win64:
|
|
296
304
|
.ffi_closure_win64_end:
|
297
305
|
|
298
306
|
.balign 16
|
299
|
-
.globl
|
300
|
-
|
307
|
+
.globl SYMBOL_NAME(ffi_call_win64)
|
308
|
+
SYMBOL_NAME(ffi_call_win64):
|
301
309
|
# copy registers onto stack
|
302
310
|
mov %r9,32(%rsp)
|
303
311
|
mov %r8,24(%rsp)
|
@@ -18,7 +18,7 @@ CLEANFILES = *.exe core* *.log *.sum
|
|
18
18
|
EXTRA_DIST = libffi.special/special.exp \
|
19
19
|
libffi.special/unwindtest_ffi_call.cc libffi.special/unwindtest.cc \
|
20
20
|
libffi.special/ffitestcxx.h config/default.exp lib/target-libpath.exp \
|
21
|
-
lib/libffi
|
21
|
+
lib/libffi.exp lib/wrapper.exp libffi.call/float.c \
|
22
22
|
libffi.call/cls_multi_schar.c libffi.call/float3.c \
|
23
23
|
libffi.call/cls_3_1byte.c libffi.call/stret_large2.c \
|
24
24
|
libffi.call/cls_5_1_byte.c libffi.call/stret_medium.c \
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Makefile.in generated by automake 1.11 from Makefile.am.
|
1
|
+
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
4
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
@@ -37,7 +37,17 @@ target_triplet = @target@
|
|
37
37
|
subdir = testsuite
|
38
38
|
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
39
39
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
40
|
-
am__aclocal_m4_deps = $(top_srcdir)/
|
40
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_cc_maxopt.m4 \
|
41
|
+
$(top_srcdir)/m4/ax_cflags_warn_all.m4 \
|
42
|
+
$(top_srcdir)/m4/ax_check_compiler_flags.m4 \
|
43
|
+
$(top_srcdir)/m4/ax_compiler_vendor.m4 \
|
44
|
+
$(top_srcdir)/m4/ax_configure_args.m4 \
|
45
|
+
$(top_srcdir)/m4/ax_enable_builddir.m4 \
|
46
|
+
$(top_srcdir)/m4/ax_gcc_archflag.m4 \
|
47
|
+
$(top_srcdir)/m4/ax_gcc_x86_cpuid.m4 \
|
48
|
+
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
49
|
+
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
50
|
+
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
|
41
51
|
$(top_srcdir)/configure.ac
|
42
52
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
43
53
|
$(ACLOCAL_M4)
|
@@ -53,6 +63,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
53
63
|
ACLOCAL = @ACLOCAL@
|
54
64
|
ALLOCA = @ALLOCA@
|
55
65
|
AMTAR = @AMTAR@
|
66
|
+
AM_LTLDFLAGS = @AM_LTLDFLAGS@
|
56
67
|
AM_RUNTESTFLAGS =
|
57
68
|
AR = @AR@
|
58
69
|
AUTOCONF = @AUTOCONF@
|
@@ -70,6 +81,7 @@ CPPFLAGS = @CPPFLAGS@
|
|
70
81
|
CYGPATH_W = @CYGPATH_W@
|
71
82
|
DEFS = @DEFS@
|
72
83
|
DEPDIR = @DEPDIR@
|
84
|
+
DLLTOOL = @DLLTOOL@
|
73
85
|
DSYMUTIL = @DSYMUTIL@
|
74
86
|
DUMPBIN = @DUMPBIN@
|
75
87
|
ECHO_C = @ECHO_C@
|
@@ -77,6 +89,7 @@ ECHO_N = @ECHO_N@
|
|
77
89
|
ECHO_T = @ECHO_T@
|
78
90
|
EGREP = @EGREP@
|
79
91
|
EXEEXT = @EXEEXT@
|
92
|
+
FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
|
80
93
|
FGREP = @FGREP@
|
81
94
|
GREP = @GREP@
|
82
95
|
HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
|
@@ -95,6 +108,7 @@ LN_S = @LN_S@
|
|
95
108
|
LTLIBOBJS = @LTLIBOBJS@
|
96
109
|
MAINT = @MAINT@
|
97
110
|
MAKEINFO = @MAKEINFO@
|
111
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
98
112
|
MKDIR_P = @MKDIR_P@
|
99
113
|
NM = @NM@
|
100
114
|
NMEDIT = @NMEDIT@
|
@@ -107,8 +121,10 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
107
121
|
PACKAGE_NAME = @PACKAGE_NAME@
|
108
122
|
PACKAGE_STRING = @PACKAGE_STRING@
|
109
123
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
124
|
+
PACKAGE_URL = @PACKAGE_URL@
|
110
125
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
111
126
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
127
|
+
PRTDIAG = @PRTDIAG@
|
112
128
|
RANLIB = @RANLIB@
|
113
129
|
SED = @SED@
|
114
130
|
SET_MAKE = @SET_MAKE@
|
@@ -121,6 +137,7 @@ abs_builddir = @abs_builddir@
|
|
121
137
|
abs_srcdir = @abs_srcdir@
|
122
138
|
abs_top_builddir = @abs_top_builddir@
|
123
139
|
abs_top_srcdir = @abs_top_srcdir@
|
140
|
+
ac_ct_AR = @ac_ct_AR@
|
124
141
|
ac_ct_CC = @ac_ct_CC@
|
125
142
|
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
126
143
|
am__include = @am__include@
|
@@ -128,6 +145,7 @@ am__leading_dot = @am__leading_dot@
|
|
128
145
|
am__quote = @am__quote@
|
129
146
|
am__tar = @am__tar@
|
130
147
|
am__untar = @am__untar@
|
148
|
+
ax_enable_builddir_sed = @ax_enable_builddir_sed@
|
131
149
|
bindir = @bindir@
|
132
150
|
build = @build@
|
133
151
|
build_alias = @build_alias@
|
@@ -153,7 +171,6 @@ libdir = @libdir@
|
|
153
171
|
libexecdir = @libexecdir@
|
154
172
|
localedir = @localedir@
|
155
173
|
localstatedir = @localstatedir@
|
156
|
-
lt_ECHO = @lt_ECHO@
|
157
174
|
mandir = @mandir@
|
158
175
|
mkdir_p = @mkdir_p@
|
159
176
|
oldincludedir = @oldincludedir@
|
@@ -164,6 +181,7 @@ psdir = @psdir@
|
|
164
181
|
sbindir = @sbindir@
|
165
182
|
sharedstatedir = @sharedstatedir@
|
166
183
|
srcdir = @srcdir@
|
184
|
+
sys_symbol_underscore = @sys_symbol_underscore@
|
167
185
|
sysconfdir = @sysconfdir@
|
168
186
|
target = @target@
|
169
187
|
target_alias = @target_alias@
|
@@ -190,7 +208,7 @@ CLEANFILES = *.exe core* *.log *.sum
|
|
190
208
|
EXTRA_DIST = libffi.special/special.exp \
|
191
209
|
libffi.special/unwindtest_ffi_call.cc libffi.special/unwindtest.cc \
|
192
210
|
libffi.special/ffitestcxx.h config/default.exp lib/target-libpath.exp \
|
193
|
-
lib/libffi
|
211
|
+
lib/libffi.exp lib/wrapper.exp libffi.call/float.c \
|
194
212
|
libffi.call/cls_multi_schar.c libffi.call/float3.c \
|
195
213
|
libffi.call/cls_3_1byte.c libffi.call/stret_large2.c \
|
196
214
|
libffi.call/cls_5_1_byte.c libffi.call/stret_medium.c \
|
@@ -0,0 +1,350 @@
|
|
1
|
+
# Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
2
|
+
|
3
|
+
# This program is free software; you can redistribute it and/or modify
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
5
|
+
# the Free Software Foundation; either version 3 of the License, or
|
6
|
+
# (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program; see the file COPYING3. If not see
|
15
|
+
# <http://www.gnu.org/licenses/>.
|
16
|
+
|
17
|
+
proc load_gcc_lib { filename } {
|
18
|
+
global srcdir
|
19
|
+
load_file $srcdir/lib/$filename
|
20
|
+
}
|
21
|
+
|
22
|
+
load_lib dg.exp
|
23
|
+
load_lib libgloss.exp
|
24
|
+
load_gcc_lib target-libpath.exp
|
25
|
+
load_gcc_lib wrapper.exp
|
26
|
+
|
27
|
+
|
28
|
+
# Define libffi callbacks for dg.exp.
|
29
|
+
|
30
|
+
proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
|
31
|
+
|
32
|
+
# To get all \n in dg-output test strings to match printf output
|
33
|
+
# in a system that outputs it as \015\012 (i.e. not just \012), we
|
34
|
+
# need to change all \n into \r?\n. As there is no dejagnu flag
|
35
|
+
# or hook to do that, we simply change the text being tested.
|
36
|
+
# Unfortunately, we have to know that the variable is called
|
37
|
+
# dg-output-text and lives in the caller of libffi-dg-test, which
|
38
|
+
# is two calls up. Overriding proc dg-output would be longer and
|
39
|
+
# would necessarily have the same assumption.
|
40
|
+
upvar 2 dg-output-text output_match
|
41
|
+
|
42
|
+
if { [llength $output_match] > 1 } {
|
43
|
+
regsub -all "\n" [lindex $output_match 1] "\r?\n" x
|
44
|
+
set output_match [lreplace $output_match 1 1 $x]
|
45
|
+
}
|
46
|
+
|
47
|
+
# Set up the compiler flags, based on what we're going to do.
|
48
|
+
|
49
|
+
set options [list]
|
50
|
+
switch $do_what {
|
51
|
+
"compile" {
|
52
|
+
set compile_type "assembly"
|
53
|
+
set output_file "[file rootname [file tail $prog]].s"
|
54
|
+
}
|
55
|
+
"link" {
|
56
|
+
set compile_type "executable"
|
57
|
+
set output_file "[file rootname [file tail $prog]].exe"
|
58
|
+
# The following line is needed for targets like the i960 where
|
59
|
+
# the default output file is b.out. Sigh.
|
60
|
+
}
|
61
|
+
"run" {
|
62
|
+
set compile_type "executable"
|
63
|
+
# FIXME: "./" is to cope with "." not being in $PATH.
|
64
|
+
# Should this be handled elsewhere?
|
65
|
+
# YES.
|
66
|
+
set output_file "./[file rootname [file tail $prog]].exe"
|
67
|
+
# This is the only place where we care if an executable was
|
68
|
+
# created or not. If it was, dg.exp will try to run it.
|
69
|
+
remote_file build delete $output_file;
|
70
|
+
}
|
71
|
+
default {
|
72
|
+
perror "$do_what: not a valid dg-do keyword"
|
73
|
+
return ""
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
if { $extra_tool_flags != "" } {
|
78
|
+
lappend options "additional_flags=$extra_tool_flags"
|
79
|
+
}
|
80
|
+
|
81
|
+
set comp_output [libffi_target_compile "$prog" "$output_file" "$compile_type" $options];
|
82
|
+
|
83
|
+
|
84
|
+
return [list $comp_output $output_file]
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
proc libffi-dg-test { prog do_what extra_tool_flags } {
|
89
|
+
return [libffi-dg-test-1 target_compile $prog $do_what $extra_tool_flags]
|
90
|
+
}
|
91
|
+
|
92
|
+
proc libffi-init { args } {
|
93
|
+
global gluefile wrap_flags;
|
94
|
+
global srcdir
|
95
|
+
global blddirffi
|
96
|
+
global objdir
|
97
|
+
global TOOL_OPTIONS
|
98
|
+
global tool
|
99
|
+
global libffi_include
|
100
|
+
global libffi_link_flags
|
101
|
+
global tool_root_dir
|
102
|
+
global ld_library_path
|
103
|
+
|
104
|
+
set blddirffi [pwd]/..
|
105
|
+
verbose "libffi $blddirffi"
|
106
|
+
|
107
|
+
set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
|
108
|
+
if {$gccdir != ""} {
|
109
|
+
set gccdir [file dirname $gccdir]
|
110
|
+
}
|
111
|
+
verbose "gccdir $gccdir"
|
112
|
+
|
113
|
+
set ld_library_path "."
|
114
|
+
append ld_library_path ":${gccdir}"
|
115
|
+
|
116
|
+
set compiler "${gccdir}/xgcc"
|
117
|
+
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
118
|
+
foreach i "[exec $compiler --print-multi-lib]" {
|
119
|
+
set mldir ""
|
120
|
+
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
121
|
+
set mldir [string trimright $mldir "\;@"]
|
122
|
+
if { "$mldir" == "." } {
|
123
|
+
continue
|
124
|
+
}
|
125
|
+
if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.so.*]] >= 1 } {
|
126
|
+
append ld_library_path ":${gccdir}/${mldir}"
|
127
|
+
}
|
128
|
+
}
|
129
|
+
}
|
130
|
+
# add the library path for libffi.
|
131
|
+
append ld_library_path ":${blddirffi}/.libs"
|
132
|
+
|
133
|
+
verbose "ld_library_path: $ld_library_path"
|
134
|
+
|
135
|
+
# Point to the Libffi headers in libffi.
|
136
|
+
set libffi_include "${blddirffi}/include"
|
137
|
+
verbose "libffi_include $libffi_include"
|
138
|
+
|
139
|
+
set libffi_dir "${blddirffi}/.libs"
|
140
|
+
verbose "libffi_dir $libffi_dir"
|
141
|
+
if { $libffi_dir != "" } {
|
142
|
+
set libffi_dir [file dirname ${libffi_dir}]
|
143
|
+
set libffi_link_flags "-L${libffi_dir}/.libs"
|
144
|
+
}
|
145
|
+
|
146
|
+
set_ld_library_path_env_vars
|
147
|
+
libffi_maybe_build_wrapper "${objdir}/testglue.o"
|
148
|
+
}
|
149
|
+
|
150
|
+
proc libffi_exit { } {
|
151
|
+
global gluefile;
|
152
|
+
|
153
|
+
if [info exists gluefile] {
|
154
|
+
file_on_build delete $gluefile;
|
155
|
+
unset gluefile;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
proc libffi_target_compile { source dest type options } {
|
160
|
+
global gluefile wrap_flags;
|
161
|
+
global srcdir
|
162
|
+
global blddirffi
|
163
|
+
global TOOL_OPTIONS
|
164
|
+
global libffi_link_flags
|
165
|
+
global libffi_include
|
166
|
+
global target_triplet
|
167
|
+
|
168
|
+
|
169
|
+
if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
|
170
|
+
lappend options "libs=${gluefile}"
|
171
|
+
lappend options "ldflags=$wrap_flags"
|
172
|
+
}
|
173
|
+
|
174
|
+
# TOOL_OPTIONS must come first, so that it doesn't override testcase
|
175
|
+
# specific options.
|
176
|
+
if [info exists TOOL_OPTIONS] {
|
177
|
+
lappend options [concat "additional_flags=$TOOL_OPTIONS" $options];
|
178
|
+
}
|
179
|
+
|
180
|
+
# search for ffi_mips.h in srcdir, too
|
181
|
+
lappend options "additional_flags=-I${libffi_include} -I${srcdir}/../include -I${libffi_include}/.."
|
182
|
+
lappend options "additional_flags=${libffi_link_flags}"
|
183
|
+
|
184
|
+
# Darwin needs a stack execution allowed flag.
|
185
|
+
|
186
|
+
if { [istarget "*-*-darwin9*"] || [istarget "*-*-darwin1*"]
|
187
|
+
|| [istarget "*-*-darwin2*"] } {
|
188
|
+
lappend options "additional_flags=-Wl,-allow_stack_execute"
|
189
|
+
}
|
190
|
+
|
191
|
+
# If you're building the compiler with --prefix set to a place
|
192
|
+
# where it's not yet installed, then the linker won't be able to
|
193
|
+
# find the libgcc used by libffi.dylib. We could pass the
|
194
|
+
# -dylib_file option, but that's complicated, and it's much easier
|
195
|
+
# to just make the linker find libgcc using -L options.
|
196
|
+
if { [string match "*-*-darwin*" $target_triplet] } {
|
197
|
+
lappend options "libs= -shared-libgcc"
|
198
|
+
}
|
199
|
+
|
200
|
+
if { [string match "*-*-openbsd*" $target_triplet] } {
|
201
|
+
lappend options "libs= -lpthread"
|
202
|
+
}
|
203
|
+
|
204
|
+
lappend options "libs= -lffi"
|
205
|
+
|
206
|
+
verbose "options: $options"
|
207
|
+
return [target_compile $source $dest $type $options]
|
208
|
+
}
|
209
|
+
|
210
|
+
# Utility routines.
|
211
|
+
|
212
|
+
#
|
213
|
+
# search_for -- looks for a string match in a file
|
214
|
+
#
|
215
|
+
proc search_for { file pattern } {
|
216
|
+
set fd [open $file r]
|
217
|
+
while { [gets $fd cur_line]>=0 } {
|
218
|
+
if [string match "*$pattern*" $cur_line] then {
|
219
|
+
close $fd
|
220
|
+
return 1
|
221
|
+
}
|
222
|
+
}
|
223
|
+
close $fd
|
224
|
+
return 0
|
225
|
+
}
|
226
|
+
|
227
|
+
# Modified dg-runtest that can cycle through a list of optimization options
|
228
|
+
# as c-torture does.
|
229
|
+
proc libffi-dg-runtest { testcases default-extra-flags } {
|
230
|
+
global runtests
|
231
|
+
|
232
|
+
foreach test $testcases {
|
233
|
+
# If we're only testing specific files and this isn't one of
|
234
|
+
# them, skip it.
|
235
|
+
if ![runtest_file_p $runtests $test] {
|
236
|
+
continue
|
237
|
+
}
|
238
|
+
|
239
|
+
# Look for a loop within the source code - if we don't find one,
|
240
|
+
# don't pass -funroll[-all]-loops.
|
241
|
+
global torture_with_loops torture_without_loops
|
242
|
+
if [expr [search_for $test "for*("]+[search_for $test "while*("]] {
|
243
|
+
set option_list $torture_with_loops
|
244
|
+
} else {
|
245
|
+
set option_list $torture_without_loops
|
246
|
+
}
|
247
|
+
|
248
|
+
set nshort [file tail [file dirname $test]]/[file tail $test]
|
249
|
+
|
250
|
+
foreach flags $option_list {
|
251
|
+
verbose "Testing $nshort, $flags" 1
|
252
|
+
dg-test $test $flags ${default-extra-flags}
|
253
|
+
}
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
# Like check_conditional_xfail, but callable from a dg test.
|
259
|
+
|
260
|
+
proc dg-xfail-if { args } {
|
261
|
+
set args [lreplace $args 0 0]
|
262
|
+
set selector "target [join [lindex $args 1]]"
|
263
|
+
if { [dg-process-target $selector] == "S" } {
|
264
|
+
global compiler_conditional_xfail_data
|
265
|
+
set compiler_conditional_xfail_data $args
|
266
|
+
}
|
267
|
+
}
|
268
|
+
|
269
|
+
proc check-flags { args } {
|
270
|
+
|
271
|
+
# The args are within another list; pull them out.
|
272
|
+
set args [lindex $args 0]
|
273
|
+
|
274
|
+
# The next two arguments are optional. If they were not specified,
|
275
|
+
# use the defaults.
|
276
|
+
if { [llength $args] == 2 } {
|
277
|
+
lappend $args [list "*"]
|
278
|
+
}
|
279
|
+
if { [llength $args] == 3 } {
|
280
|
+
lappend $args [list ""]
|
281
|
+
}
|
282
|
+
|
283
|
+
# If the option strings are the defaults, or the same as the
|
284
|
+
# defaults, there is no need to call check_conditional_xfail to
|
285
|
+
# compare them to the actual options.
|
286
|
+
if { [string compare [lindex $args 2] "*"] == 0
|
287
|
+
&& [string compare [lindex $args 3] "" ] == 0 } {
|
288
|
+
set result 1
|
289
|
+
} else {
|
290
|
+
# The target list might be an effective-target keyword, so replace
|
291
|
+
# the original list with "*-*-*", since we already know it matches.
|
292
|
+
set result [check_conditional_xfail [lreplace $args 1 1 "*-*-*"]]
|
293
|
+
}
|
294
|
+
|
295
|
+
return $result
|
296
|
+
}
|
297
|
+
|
298
|
+
proc dg-skip-if { args } {
|
299
|
+
# Verify the number of arguments. The last two are optional.
|
300
|
+
set args [lreplace $args 0 0]
|
301
|
+
if { [llength $args] < 2 || [llength $args] > 4 } {
|
302
|
+
error "dg-skip-if 2: need 2, 3, or 4 arguments"
|
303
|
+
}
|
304
|
+
|
305
|
+
# Don't bother if we're already skipping the test.
|
306
|
+
upvar dg-do-what dg-do-what
|
307
|
+
if { [lindex ${dg-do-what} 1] == "N" } {
|
308
|
+
return
|
309
|
+
}
|
310
|
+
|
311
|
+
set selector [list target [lindex $args 1]]
|
312
|
+
if { [dg-process-target $selector] == "S" } {
|
313
|
+
if [check-flags $args] {
|
314
|
+
upvar dg-do-what dg-do-what
|
315
|
+
set dg-do-what [list [lindex ${dg-do-what} 0] "N" "P"]
|
316
|
+
}
|
317
|
+
}
|
318
|
+
}
|
319
|
+
|
320
|
+
# We need to make sure that additional_files and additional_sources
|
321
|
+
# are both cleared out after every test. It is not enough to clear
|
322
|
+
# them out *before* the next test run because gcc-target-compile gets
|
323
|
+
# run directly from some .exp files (outside of any test). (Those
|
324
|
+
# uses should eventually be eliminated.)
|
325
|
+
|
326
|
+
# Because the DG framework doesn't provide a hook that is run at the
|
327
|
+
# end of a test, we must replace dg-test with a wrapper.
|
328
|
+
|
329
|
+
if { [info procs saved-dg-test] == [list] } {
|
330
|
+
rename dg-test saved-dg-test
|
331
|
+
|
332
|
+
proc dg-test { args } {
|
333
|
+
global additional_files
|
334
|
+
global additional_sources
|
335
|
+
global errorInfo
|
336
|
+
|
337
|
+
if { [ catch { eval saved-dg-test $args } errmsg ] } {
|
338
|
+
set saved_info $errorInfo
|
339
|
+
set additional_files ""
|
340
|
+
set additional_sources ""
|
341
|
+
error $errmsg $saved_info
|
342
|
+
}
|
343
|
+
set additional_files ""
|
344
|
+
set additional_sources ""
|
345
|
+
}
|
346
|
+
}
|
347
|
+
|
348
|
+
# Local Variables:
|
349
|
+
# tcl-indent-level:4
|
350
|
+
# End:
|