ffi 1.11.3 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.appveyor.yml +3 -0
- data/.github/workflows/ci.yml +64 -0
- data/.travis.yml +21 -5
- data/CHANGELOG.md +68 -0
- data/Gemfile +6 -4
- data/README.md +10 -1
- data/Rakefile +24 -43
- data/ext/ffi_c/Buffer.c +2 -2
- data/ext/ffi_c/Call.c +1 -7
- data/ext/ffi_c/ClosurePool.c +11 -14
- data/ext/ffi_c/Function.c +8 -23
- data/ext/ffi_c/FunctionInfo.c +1 -2
- data/ext/ffi_c/LongDouble.c +5 -3
- data/ext/ffi_c/LongDouble.h +0 -4
- data/ext/ffi_c/MemoryPointer.c +1 -1
- data/ext/ffi_c/MethodHandle.c +18 -24
- data/ext/ffi_c/MethodHandle.h +3 -2
- data/ext/ffi_c/Platform.c +1 -0
- data/ext/ffi_c/Pointer.c +1 -1
- data/ext/ffi_c/Struct.c +47 -51
- data/ext/ffi_c/Struct.h +12 -6
- data/ext/ffi_c/StructLayout.c +20 -14
- data/ext/ffi_c/Thread.c +0 -3
- data/ext/ffi_c/Thread.h +0 -3
- data/ext/ffi_c/compat.h +4 -0
- data/ext/ffi_c/extconf.rb +16 -20
- data/ext/ffi_c/libffi/.travis.yml +32 -12
- data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
- data/ext/ffi_c/libffi/.travis/build-in-container.sh +2 -12
- data/ext/ffi_c/libffi/.travis/build.sh +62 -30
- data/ext/ffi_c/libffi/.travis/install.sh +65 -37
- data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/site.exp +10 -1
- data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +6 -4
- data/ext/ffi_c/libffi/README.md +18 -6
- data/ext/ffi_c/libffi/configure.ac +26 -10
- data/ext/ffi_c/libffi/configure.host +5 -2
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -3
- data/ext/ffi_c/libffi/include/ffi.h.in +15 -7
- data/ext/ffi_c/libffi/libffi.map.in +8 -12
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
- data/ext/ffi_c/libffi/libtool-version +1 -1
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +6 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +13 -2
- data/ext/ffi_c/libffi/src/closures.c +20 -6
- data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
- data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
- data/ext/ffi_c/libffi/src/pa/linux.S +4 -2
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +3 -2
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +154 -8
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +83 -28
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +67 -3
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
- data/ext/ffi_c/libffi/src/x86/ffi.c +7 -4
- data/ext/ffi_c/libffi/src/x86/ffi64.c +10 -8
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +10 -8
- data/ext/ffi_c/libffi/src/x86/sysv.S +13 -4
- data/ext/ffi_c/libffi/src/x86/unix64.S +58 -2
- data/ext/ffi_c/libffi/src/x86/win64.S +4 -1
- data/ext/ffi_c/libffi/testsuite/Makefile.am +78 -75
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +1 -18
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
- data/ffi.gemspec +3 -3
- data/lib/ffi.rb +10 -2
- data/lib/ffi/ffi.rb +1 -0
- data/lib/ffi/library.rb +5 -1
- data/lib/ffi/platform.rb +6 -2
- data/lib/ffi/platform/arm-linux/types.conf +32 -4
- data/lib/ffi/platform/i386-windows/types.conf +26 -79
- data/lib/ffi/platform/powerpc-linux/types.conf +32 -2
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +4 -0
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +4 -22
- data/lib/ffi/platform/x86_64-linux/types.conf +21 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +10 -78
- data/lib/ffi/pointer.rb +19 -12
- data/lib/ffi/struct.rb +10 -5
- data/lib/ffi/tools/types_generator.rb +2 -0
- data/lib/ffi/version.rb +1 -1
- data/samples/getlogin.rb +1 -1
- data/samples/getpid.rb +1 -1
- data/samples/gettimeofday.rb +8 -8
- data/samples/hello.rb +2 -1
- data/samples/inotify.rb +1 -1
- data/samples/pty.rb +1 -2
- data/samples/qsort.rb +0 -1
- metadata +116 -110
- data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
- data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
- data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
- data/samples/sample_helper.rb +0 -6
@@ -19,7 +19,6 @@ libffi-init
|
|
19
19
|
|
20
20
|
global srcdir subdir
|
21
21
|
global compiler_vendor
|
22
|
-
global has_gccbug
|
23
22
|
|
24
23
|
# The conversion of this testsuite into a dejagnu compatible testsuite
|
25
24
|
# was done in a pretty lazy fashion, and requires the use of compiler
|
@@ -48,7 +47,13 @@ for {set i 1} {$i < 82} {incr i} {
|
|
48
47
|
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/test-callback.c]]
|
49
48
|
|
50
49
|
for {set i 1} {$i < 81} {incr i} {
|
51
|
-
|
50
|
+
if { [libffi_feature_test "#if FFI_CLOSURES"] } {
|
51
|
+
run-many-tests $tlist [format "-DDGTEST=%d %s" $i $warning_options]
|
52
|
+
} else {
|
53
|
+
foreach test $tlist {
|
54
|
+
unsupported [format "%s -DDGTEST=%d %s" $test $i $warning_options]
|
55
|
+
}
|
56
|
+
}
|
52
57
|
}
|
53
58
|
|
54
59
|
dg-finish
|
@@ -32,10 +32,21 @@ if { [string match $compiler_vendor "microsoft"] } {
|
|
32
32
|
set additional_options "";
|
33
33
|
}
|
34
34
|
|
35
|
-
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.
|
35
|
+
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.c]]
|
36
36
|
|
37
37
|
run-many-tests $tlist $additional_options
|
38
38
|
|
39
|
+
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.cc]]
|
40
|
+
|
41
|
+
# No C++ for or1k
|
42
|
+
if { [istarget "or1k-*-*"] } {
|
43
|
+
foreach test $tlist {
|
44
|
+
unsupported "$test"
|
45
|
+
}
|
46
|
+
} else {
|
47
|
+
run-many-tests $tlist $additional_options
|
48
|
+
}
|
49
|
+
|
39
50
|
dg-finish
|
40
51
|
|
41
52
|
# Local Variables:
|
@@ -0,0 +1,67 @@
|
|
1
|
+
# Copyright (C) 2003, 2006, 2009, 2010, 2014, 2019 Free Software Foundation, Inc.
|
2
|
+
# Copyright (C) 2019 Anthony Green
|
3
|
+
|
4
|
+
# This program is free software; you can redistribute it and/or modify
|
5
|
+
# it under the terms of the GNU General Public License as published by
|
6
|
+
# the Free Software Foundation; either version 3 of the License, or
|
7
|
+
# (at your option) any later version.
|
8
|
+
#
|
9
|
+
# This program is distributed in the hope that it will be useful,
|
10
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
11
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
12
|
+
# GNU General Public License for more details.
|
13
|
+
#
|
14
|
+
# You should have received a copy of the GNU General Public License
|
15
|
+
# along with this program; see the file COPYING3. If not see
|
16
|
+
# <http://www.gnu.org/licenses/>.
|
17
|
+
|
18
|
+
dg-init
|
19
|
+
libffi-init
|
20
|
+
|
21
|
+
global srcdir subdir
|
22
|
+
|
23
|
+
if { [string match $compiler_vendor "microsoft"] } {
|
24
|
+
# -wd4005 macro redefinition
|
25
|
+
# -wd4244 implicit conversion to type of smaller size
|
26
|
+
# -wd4305 truncation to smaller type
|
27
|
+
# -wd4477 printf %lu of uintptr_t
|
28
|
+
# -wd4312 implicit conversion to type of greater size
|
29
|
+
# -wd4311 pointer truncation to unsigned long
|
30
|
+
# -EHsc C++ Exception Handling (no SEH exceptions)
|
31
|
+
set additional_options "-wd4005 -wd4244 -wd4305 -wd4477 -wd4312 -wd4311 -EHsc";
|
32
|
+
} else {
|
33
|
+
set additional_options "";
|
34
|
+
}
|
35
|
+
|
36
|
+
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.c]]
|
37
|
+
|
38
|
+
if { [libffi_feature_test "#if FFI_CLOSURES"] } {
|
39
|
+
run-many-tests $tlist ""
|
40
|
+
} else {
|
41
|
+
foreach test $tlist {
|
42
|
+
unsupported "$test"
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.cc]]
|
47
|
+
|
48
|
+
# No C++ for or1k
|
49
|
+
if { [istarget "or1k-*-*"] } {
|
50
|
+
foreach test $tlist {
|
51
|
+
unsupported "$test"
|
52
|
+
}
|
53
|
+
} else {
|
54
|
+
if { [libffi_feature_test "#if FFI_CLOSURES"] } {
|
55
|
+
run-many-tests $tlist $additional_options
|
56
|
+
} else {
|
57
|
+
foreach test $tlist {
|
58
|
+
unsupported "$test"
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
dg-finish
|
64
|
+
|
65
|
+
# Local Variables:
|
66
|
+
# tcl-indent-level:4
|
67
|
+
# End:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c
RENAMED
File without changes
|
data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,138 @@
|
|
1
|
+
#include <stdlib.h>
|
2
|
+
#include <stdio.h>
|
3
|
+
#include <string.h>
|
4
|
+
#include <fcntl.h>
|
5
|
+
#include <ffi.h>
|
6
|
+
#include "fficonfig.h"
|
7
|
+
|
8
|
+
#if defined HAVE_STDINT_H
|
9
|
+
#include <stdint.h>
|
10
|
+
#endif
|
11
|
+
|
12
|
+
#if defined HAVE_INTTYPES_H
|
13
|
+
#include <inttypes.h>
|
14
|
+
#endif
|
15
|
+
|
16
|
+
#define MAX_ARGS 256
|
17
|
+
|
18
|
+
#define CHECK(x) (void)(!(x) ? (abort(), 1) : 0)
|
19
|
+
|
20
|
+
/* Define macros so that compilers other than gcc can run the tests. */
|
21
|
+
#undef __UNUSED__
|
22
|
+
#if defined(__GNUC__)
|
23
|
+
#define __UNUSED__ __attribute__((__unused__))
|
24
|
+
#define __STDCALL__ __attribute__((stdcall))
|
25
|
+
#define __THISCALL__ __attribute__((thiscall))
|
26
|
+
#define __FASTCALL__ __attribute__((fastcall))
|
27
|
+
#define __MSABI__ __attribute__((ms_abi))
|
28
|
+
#else
|
29
|
+
#define __UNUSED__
|
30
|
+
#define __STDCALL__ __stdcall
|
31
|
+
#define __THISCALL__ __thiscall
|
32
|
+
#define __FASTCALL__ __fastcall
|
33
|
+
#endif
|
34
|
+
|
35
|
+
#ifndef ABI_NUM
|
36
|
+
#define ABI_NUM FFI_DEFAULT_ABI
|
37
|
+
#define ABI_ATTR
|
38
|
+
#endif
|
39
|
+
|
40
|
+
/* Prefer MAP_ANON(YMOUS) to /dev/zero, since we don't need to keep a
|
41
|
+
file open. */
|
42
|
+
#ifdef HAVE_MMAP_ANON
|
43
|
+
# undef HAVE_MMAP_DEV_ZERO
|
44
|
+
|
45
|
+
# include <sys/mman.h>
|
46
|
+
# ifndef MAP_FAILED
|
47
|
+
# define MAP_FAILED -1
|
48
|
+
# endif
|
49
|
+
# if !defined (MAP_ANONYMOUS) && defined (MAP_ANON)
|
50
|
+
# define MAP_ANONYMOUS MAP_ANON
|
51
|
+
# endif
|
52
|
+
# define USING_MMAP
|
53
|
+
|
54
|
+
#endif
|
55
|
+
|
56
|
+
#ifdef HAVE_MMAP_DEV_ZERO
|
57
|
+
|
58
|
+
# include <sys/mman.h>
|
59
|
+
# ifndef MAP_FAILED
|
60
|
+
# define MAP_FAILED -1
|
61
|
+
# endif
|
62
|
+
# define USING_MMAP
|
63
|
+
|
64
|
+
#endif
|
65
|
+
|
66
|
+
/* MinGW kludge. */
|
67
|
+
#if defined(_WIN64) | defined(_WIN32)
|
68
|
+
#define PRIdLL "I64d"
|
69
|
+
#define PRIuLL "I64u"
|
70
|
+
#else
|
71
|
+
#define PRIdLL "lld"
|
72
|
+
#define PRIuLL "llu"
|
73
|
+
#endif
|
74
|
+
|
75
|
+
/* Tru64 UNIX kludge. */
|
76
|
+
#if defined(__alpha__) && defined(__osf__)
|
77
|
+
/* Tru64 UNIX V4.0 doesn't support %lld/%lld, but long is 64-bit. */
|
78
|
+
#undef PRIdLL
|
79
|
+
#define PRIdLL "ld"
|
80
|
+
#undef PRIuLL
|
81
|
+
#define PRIuLL "lu"
|
82
|
+
#define PRId8 "hd"
|
83
|
+
#define PRIu8 "hu"
|
84
|
+
#define PRId64 "ld"
|
85
|
+
#define PRIu64 "lu"
|
86
|
+
#define PRIuPTR "lu"
|
87
|
+
#endif
|
88
|
+
|
89
|
+
/* PA HP-UX kludge. */
|
90
|
+
#if defined(__hppa__) && defined(__hpux__) && !defined(PRIuPTR)
|
91
|
+
#define PRIuPTR "lu"
|
92
|
+
#endif
|
93
|
+
|
94
|
+
/* IRIX kludge. */
|
95
|
+
#if defined(__sgi)
|
96
|
+
/* IRIX 6.5 <inttypes.h> provides all definitions, but only for C99
|
97
|
+
compilations. */
|
98
|
+
#define PRId8 "hhd"
|
99
|
+
#define PRIu8 "hhu"
|
100
|
+
#if (_MIPS_SZLONG == 32)
|
101
|
+
#define PRId64 "lld"
|
102
|
+
#define PRIu64 "llu"
|
103
|
+
#endif
|
104
|
+
/* This doesn't match <inttypes.h>, which always has "lld" here, but the
|
105
|
+
arguments are uint64_t, int64_t, which are unsigned long, long for
|
106
|
+
64-bit in <sgidefs.h>. */
|
107
|
+
#if (_MIPS_SZLONG == 64)
|
108
|
+
#define PRId64 "ld"
|
109
|
+
#define PRIu64 "lu"
|
110
|
+
#endif
|
111
|
+
/* This doesn't match <inttypes.h>, which has "u" here, but the arguments
|
112
|
+
are uintptr_t, which is always unsigned long. */
|
113
|
+
#define PRIuPTR "lu"
|
114
|
+
#endif
|
115
|
+
|
116
|
+
/* Solaris < 10 kludge. */
|
117
|
+
#if defined(__sun__) && defined(__svr4__) && !defined(PRIuPTR)
|
118
|
+
#if defined(__arch64__) || defined (__x86_64__)
|
119
|
+
#define PRIuPTR "lu"
|
120
|
+
#else
|
121
|
+
#define PRIuPTR "u"
|
122
|
+
#endif
|
123
|
+
#endif
|
124
|
+
|
125
|
+
/* MSVC kludge. */
|
126
|
+
#if defined _MSC_VER
|
127
|
+
#if !defined(__cplusplus) || defined(__STDC_FORMAT_MACROS)
|
128
|
+
#define PRIuPTR "lu"
|
129
|
+
#define PRIu8 "u"
|
130
|
+
#define PRId8 "d"
|
131
|
+
#define PRIu64 "I64u"
|
132
|
+
#define PRId64 "I64d"
|
133
|
+
#endif
|
134
|
+
#endif
|
135
|
+
|
136
|
+
#ifndef PRIuPTR
|
137
|
+
#define PRIuPTR "u"
|
138
|
+
#endif
|
@@ -7,7 +7,7 @@
|
|
7
7
|
|
8
8
|
/* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
|
9
9
|
/* { dg-options -mlong-double-128 { target powerpc64*-*-linux* } } */
|
10
|
-
/* { dg-options -Wformat=0 { target moxie*-*-elf } } */
|
10
|
+
/* { dg-options -Wformat=0 { target moxie*-*-elf or1k-*-* } } */
|
11
11
|
|
12
12
|
#include "ffitest.h"
|
13
13
|
|
File without changes
|
File without changes
|