ffi 1.9.3 → 1.9.5

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.

Files changed (86) hide show
  1. checksums.yaml +6 -14
  2. data/Rakefile +12 -15
  3. data/ext/ffi_c/DynamicLibrary.c +9 -5
  4. data/ext/ffi_c/DynamicLibrary.h +49 -0
  5. data/ext/ffi_c/Function.c +4 -3
  6. data/ext/ffi_c/FunctionInfo.c +2 -2
  7. data/ext/ffi_c/Platform.c +2 -2
  8. data/ext/ffi_c/Struct.c +1 -0
  9. data/ext/ffi_c/Variadic.c +2 -2
  10. data/ffi.gemspec +5 -5
  11. data/lib/ffi/library.rb +7 -7
  12. data/lib/ffi/platform.rb +4 -1
  13. data/lib/ffi/platform/x86_64-netbsd/types.conf +2 -0
  14. data/lib/ffi/struct.rb +2 -2
  15. data/lib/ffi/version.rb +1 -1
  16. data/libtest/ClosureTest.c +15 -0
  17. data/libtest/FunctionTest.c +12 -0
  18. data/spec/ffi/LICENSE.SPECS +22 -0
  19. data/spec/ffi/async_callback_spec.rb +1 -0
  20. data/spec/ffi/bool_spec.rb +2 -0
  21. data/spec/ffi/buffer_spec.rb +1 -0
  22. data/spec/ffi/callback_spec.rb +31 -4
  23. data/spec/ffi/custom_param_type.rb +1 -0
  24. data/spec/ffi/custom_type_spec.rb +1 -0
  25. data/spec/ffi/dup_spec.rb +1 -1
  26. data/spec/ffi/enum_spec.rb +1 -0
  27. data/spec/ffi/errno_spec.rb +2 -0
  28. data/spec/ffi/ffi_spec.rb +1 -0
  29. data/spec/ffi/fixtures/Benchmark.c +52 -0
  30. data/spec/ffi/fixtures/Benchmark.o +0 -0
  31. data/spec/ffi/fixtures/BoolTest.c +34 -0
  32. data/spec/ffi/fixtures/BoolTest.o +0 -0
  33. data/spec/ffi/fixtures/BufferTest.c +31 -0
  34. data/spec/ffi/fixtures/BufferTest.o +0 -0
  35. data/spec/ffi/fixtures/ClosureTest.c +190 -0
  36. data/spec/ffi/fixtures/ClosureTest.o +0 -0
  37. data/spec/ffi/fixtures/EnumTest.c +34 -0
  38. data/spec/ffi/fixtures/EnumTest.o +0 -0
  39. data/spec/ffi/fixtures/FunctionTest.c +58 -0
  40. data/spec/ffi/fixtures/FunctionTest.o +0 -0
  41. data/spec/ffi/fixtures/GNUmakefile +149 -0
  42. data/spec/ffi/fixtures/GlobalVariable.c +62 -0
  43. data/spec/ffi/fixtures/GlobalVariable.o +0 -0
  44. data/spec/ffi/fixtures/LastErrorTest.c +21 -0
  45. data/spec/ffi/fixtures/LastErrorTest.o +0 -0
  46. data/spec/ffi/fixtures/NumberTest.c +132 -0
  47. data/spec/ffi/fixtures/NumberTest.o +0 -0
  48. data/spec/ffi/fixtures/PointerTest.c +63 -0
  49. data/spec/ffi/fixtures/PointerTest.o +0 -0
  50. data/spec/ffi/fixtures/ReferenceTest.c +23 -0
  51. data/spec/ffi/fixtures/ReferenceTest.o +0 -0
  52. data/spec/ffi/fixtures/StringTest.c +34 -0
  53. data/spec/ffi/fixtures/StringTest.o +0 -0
  54. data/spec/ffi/fixtures/StructTest.c +243 -0
  55. data/spec/ffi/fixtures/StructTest.o +0 -0
  56. data/spec/ffi/fixtures/UnionTest.c +43 -0
  57. data/spec/ffi/fixtures/UnionTest.o +0 -0
  58. data/spec/ffi/fixtures/VariadicTest.c +99 -0
  59. data/spec/ffi/fixtures/VariadicTest.o +0 -0
  60. data/spec/ffi/fixtures/classes.rb +438 -0
  61. data/spec/ffi/function_spec.rb +4 -2
  62. data/spec/ffi/io_spec.rb +17 -0
  63. data/spec/ffi/library_spec.rb +25 -0
  64. data/spec/ffi/long_double.rb +1 -0
  65. data/spec/ffi/managed_struct_spec.rb +1 -1
  66. data/spec/ffi/memorypointer_spec.rb +72 -0
  67. data/spec/ffi/number_spec.rb +2 -0
  68. data/spec/ffi/platform_spec.rb +97 -0
  69. data/spec/ffi/pointer_spec.rb +8 -2
  70. data/spec/ffi/rbx/attach_function_spec.rb +6 -0
  71. data/spec/ffi/rbx/memory_pointer_spec.rb +7 -2
  72. data/spec/ffi/rbx/spec_helper.rb +7 -1
  73. data/spec/ffi/rbx/struct_spec.rb +7 -1
  74. data/spec/ffi/spec_helper.rb +68 -9
  75. data/spec/ffi/string_spec.rb +3 -1
  76. data/spec/ffi/strptr_spec.rb +1 -0
  77. data/spec/ffi/struct_by_ref_spec.rb +4 -3
  78. data/spec/ffi/struct_callback_spec.rb +2 -1
  79. data/spec/ffi/struct_initialize_spec.rb +1 -0
  80. data/spec/ffi/struct_packed_spec.rb +1 -0
  81. data/spec/ffi/struct_spec.rb +99 -39
  82. data/spec/ffi/typedef_spec.rb +15 -3
  83. data/spec/ffi/union_spec.rb +1 -0
  84. data/spec/ffi/variadic_spec.rb +18 -0
  85. data/spec/spec.opts +1 -2
  86. metadata +129 -94
Binary file
@@ -0,0 +1,34 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+ int test_untagged_enum(int val) {
8
+ return val;
9
+ }
10
+
11
+ int test_untagged_typedef_enum(int val) {
12
+ return val;
13
+ }
14
+
15
+ typedef enum {c1, c2, c3, c4} enum_type1;
16
+ enum_type1 test_tagged_typedef_enum1(enum_type1 val) {
17
+ return val;
18
+ }
19
+
20
+ typedef enum {c5 = 42, c6, c7, c8} enum_type2;
21
+ enum_type2 test_tagged_typedef_enum2(enum_type2 val) {
22
+ return val;
23
+ }
24
+
25
+ typedef enum {c9 = 42, c10, c11 = 4242, c12} enum_type3;
26
+ enum_type3 test_tagged_typedef_enum3(enum_type3 val) {
27
+ return val;
28
+ }
29
+
30
+ typedef enum {c13 = 42, c14 = 4242, c15 = 424242, c16 = 42424242} enum_type4;
31
+ enum_type4 test_tagged_typedef_enum4(enum_type4 val) {
32
+ return val;
33
+ }
34
+
Binary file
@@ -0,0 +1,58 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+ #ifdef _WIN32
8
+ #include <windows.h>
9
+ #define sleep(x) Sleep(x)
10
+ #endif
11
+
12
+ #ifndef _WIN32
13
+ #include <unistd.h>
14
+ #include <pthread.h>
15
+ #endif
16
+
17
+ int testAdd(int a, int b)
18
+ {
19
+ return a + b;
20
+ };
21
+
22
+ int testFunctionAdd(int a, int b, int (*f)(int, int))
23
+ {
24
+ return f(a, b);
25
+ };
26
+
27
+ void testBlocking(int seconds) {
28
+ sleep(seconds);
29
+ };
30
+
31
+ struct async_data {
32
+ void (*fn)(int);
33
+ int value;
34
+ };
35
+
36
+ static void* asyncThreadCall(void *data)
37
+ {
38
+ struct async_data* d = (struct async_data *) data;
39
+ if (d != NULL && d->fn != NULL) {
40
+ (*d->fn)(d->value);
41
+ }
42
+
43
+ return NULL;
44
+ }
45
+
46
+ void testAsyncCallback(void (*fn)(int), int value)
47
+ {
48
+ #ifndef _WIN32
49
+ pthread_t t;
50
+ struct async_data d;
51
+ d.fn = fn;
52
+ d.value = value;
53
+ pthread_create(&t, NULL, asyncThreadCall, &d);
54
+ pthread_join(t, NULL);
55
+ #else
56
+ (*fn)(value);
57
+ #endif
58
+ }
Binary file
@@ -0,0 +1,149 @@
1
+ # -*- makefile -*-
2
+
3
+ ifeq ($(OS),)
4
+ BUILD_OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
5
+ OS := $(BUILD_OS)
6
+ endif
7
+
8
+ ifeq ($(CPU),)
9
+ CPU := $(shell uname -m | sed -e 's/i[345678]86/i386/')
10
+ endif
11
+
12
+ PLATFORM = $(CPU)-$(OS)
13
+
14
+ ifeq ($(OS), sunos)
15
+ OS = solaris
16
+ endif
17
+
18
+ SRC_DIR = .
19
+ BUILD_DIR ?= .
20
+ TEST_BUILD_DIR = .
21
+ # Set defaults to unix (linux/solaris/bsd)
22
+ PREFIX = lib
23
+ LIBEXT ?= so
24
+ LIBNAME = $(PREFIX)test.$(LIBEXT)
25
+
26
+ export MACOSX_DEPLOYMENT_TARGET=10.4
27
+
28
+ CCACHE := $(strip $(realpath $(shell which ccache 2> /dev/null)))
29
+
30
+ TEST_SRCS = $(wildcard $(SRC_DIR)/*.c)
31
+ TEST_OBJS := $(patsubst $(SRC_DIR)/%.c, $(TEST_BUILD_DIR)/%.o, $(TEST_SRCS))
32
+
33
+ #
34
+ # Compiler/linker flags from:
35
+ # http://weblogs.java.net/blog/kellyohair/archive/2006/01/compilation_of_1.html
36
+ JFLAGS = -fno-omit-frame-pointer -fno-strict-aliasing
37
+ OFLAGS = -O2 $(JFLAGS)
38
+ WFLAGS = -W -Wall -Wno-unused -Wno-parentheses
39
+ PICFLAGS = -fPIC
40
+ SOFLAGS = -shared
41
+ LDFLAGS += $(SOFLAGS)
42
+
43
+ IFLAGS = -I"$(BUILD_DIR)"
44
+ CFLAGS = $(OFLAGS) $(WFLAGS) $(IFLAGS) $(PICFLAGS) -D_REENTRANT
45
+
46
+ ifneq ($(strip $(findstring $(OS), win32, mingw, cygwin)),)
47
+ # For cygwin => win32-native builds, strip out cygwin deps
48
+ ifneq ($(findstring cygwin, $(BUILD_OS)),)
49
+ CC += -mno-cygwin -mwin32
50
+ LDFLAGS += -mno-cygwin -Wl,--add-stdcall-alias
51
+ endif
52
+ PICFLAGS=
53
+ LIBEXT=dll
54
+ CC = gcc
55
+ endif
56
+
57
+ ifeq ($(OS), darwin)
58
+ ifneq ($(findstring $(CPU),ppc),)
59
+ ARCHFLAGS += -arch ppc
60
+ endif
61
+ ifneq ($(findstring $(CPU),i386 x86_64),)
62
+ ARCHFLAGS += -arch i386 -arch x86_64
63
+ endif
64
+ CFLAGS += $(ARCHFLAGS) -DTARGET_RT_MAC_CFM=0
65
+ CFLAGS += -fno-common
66
+ LDFLAGS = $(ARCHFLAGS) -dynamiclib
67
+ # link against the universal libraries on ppc machines
68
+ LDFLAGS += -L$(MACSDK)/usr/lib
69
+ LIBEXT = dylib
70
+ FFI_CFLAGS += -isysroot $(MACSDK)
71
+ PICFLAGS =
72
+ SOFLAGS =
73
+ endif
74
+
75
+ ifeq ($(OS), linux)
76
+ SOFLAGS += -Wl,-soname,$(LIBNAME)
77
+ endif
78
+
79
+ ifeq ($(OS), solaris)
80
+ CC = /usr/sfw/bin/gcc -std=c99
81
+ LD = /usr/ccs/bin/ld
82
+ SOFLAGS = -shared -static-libgcc
83
+ endif
84
+
85
+ ifeq ($(OS), aix)
86
+ LIBEXT = a
87
+ SOFLAGS = -shared -static-libgcc
88
+ PICFLAGS += -pthread
89
+ endif
90
+
91
+ ifneq ($(findstring bsd, $(OS)),)
92
+ SOFLAGS = -shared -static-libgcc
93
+ CFLAGS += -pthread
94
+ LDFLAGS += -pthread
95
+ endif
96
+
97
+ ifeq ($(CPU), i386)
98
+ MODEL = 32
99
+ endif
100
+
101
+ ifeq ($(CPU), sparcv9)
102
+ MODEL = 64
103
+ endif
104
+
105
+ ifeq ($(CPU), amd64)
106
+ MODEL = 64
107
+ endif
108
+
109
+ ifeq ($(CPU), x86_64)
110
+ MODEL = 64
111
+ endif
112
+
113
+ ifeq ($(CPU), ppc64)
114
+ MODEL = 64
115
+ endif
116
+
117
+ ifeq ($(CPU), powerpc64)
118
+ MODEL = 64
119
+ endif
120
+
121
+ MODELFLAG =
122
+ ifneq ($(MODEL),)
123
+ MODELFLAG = -m$(MODEL)
124
+ endif
125
+
126
+ # On platforms (linux, solaris) that support both 32bit and 64bit, force building for one or the other
127
+ ifneq ($(or $(findstring linux, $(OS)), $(findstring solaris, $(OS))),)
128
+ # Change the CC/LD instead of CFLAGS/LDFLAGS, incase other things in the flags
129
+ # makes the libffi build choke
130
+ CC += $(MODELFLAG)
131
+ LD += $(MODELFLAG)
132
+ endif
133
+
134
+ LIBTEST = $(LIBNAME)
135
+
136
+ all: $(LIBTEST)
137
+
138
+ $(TEST_BUILD_DIR)/%.o : $(SRC_DIR)/%.c
139
+ @mkdir -p $(@D)
140
+ $(CCACHE) $(CC) $(CFLAGS) -c $< -o $@
141
+
142
+ $(LIBTEST): $(TEST_OBJS)
143
+ $(CC) -o $@ $(LDFLAGS) $(TEST_OBJS) -lm
144
+
145
+ clean::
146
+ # nothing to do - ant will delete the build dir
147
+
148
+ debug::
149
+ @echo "SRCS=$(TEST_SRCS)"
@@ -0,0 +1,62 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+ #include <sys/types.h>
8
+ #include <stdint.h>
9
+
10
+ typedef int8_t s8;
11
+ typedef uint8_t u8;
12
+ typedef int16_t s16;
13
+ typedef uint16_t u16;
14
+ typedef int32_t s32;
15
+ typedef uint32_t u32;
16
+ typedef int64_t s64;
17
+ typedef uint64_t u64;
18
+ typedef signed long sL;
19
+ typedef unsigned long uL;
20
+ typedef float f32;
21
+ typedef double f64;
22
+ #if !defined(__OpenBSD__)
23
+ typedef unsigned long ulong;
24
+ #endif
25
+ typedef void* pointer;
26
+ typedef void* P;
27
+
28
+ #define GVAR(T) \
29
+ extern T gvar_##T; \
30
+ T gvar_##T = (T) -1; \
31
+ T gvar_##T##_get() { return gvar_##T; }; \
32
+ void gvar_##T##_set(T v) { gvar_##T = v; }
33
+
34
+ GVAR(s8);
35
+ GVAR(u8);
36
+ GVAR(s16);
37
+ GVAR(u16);
38
+ GVAR(s32);
39
+ GVAR(u32);
40
+ GVAR(s64);
41
+ GVAR(u64);
42
+ GVAR(long);
43
+ GVAR(ulong);
44
+ GVAR(pointer);
45
+
46
+ struct gstruct {
47
+ long data;
48
+ };
49
+
50
+ struct gstruct gvar_gstruct = { -1 };
51
+
52
+ struct gstruct*
53
+ gvar_gstruct_get(void)
54
+ {
55
+ return &gvar_gstruct;
56
+ }
57
+
58
+ void
59
+ gvar_gstruct_set(const struct gstruct* val)
60
+ {
61
+ gvar_gstruct = *val;
62
+ }
Binary file
@@ -0,0 +1,21 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+ #if defined(_WIN32) || defined(__WIN32__)
8
+ # include <windows.h>
9
+ #else
10
+ # include <errno.h>
11
+ #endif
12
+
13
+ int setLastError(int error) {
14
+ #if defined(_WIN32) || defined(__WIN32__)
15
+ SetLastError(error);
16
+ #else
17
+ errno = error;
18
+ #endif
19
+ return -1;
20
+ }
21
+
Binary file
@@ -0,0 +1,132 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+ #include <sys/types.h>
8
+ #include <stdio.h>
9
+ #include <string.h>
10
+ #include <stdint.h>
11
+
12
+ #if defined(__sparc) && defined(__sun__)
13
+ #define fix_mem_access __asm("ta 6")
14
+ #else
15
+ #define fix_mem_access
16
+ #endif
17
+
18
+ typedef int8_t s8;
19
+ typedef uint8_t u8;
20
+ typedef int16_t s16;
21
+ typedef uint16_t u16;
22
+ typedef int32_t s32;
23
+ typedef uint32_t u32;
24
+ typedef int64_t s64;
25
+ typedef uint64_t u64;
26
+ typedef signed long sL;
27
+ typedef unsigned long uL;
28
+ typedef float f32;
29
+ typedef double f64;
30
+ typedef long double f128;
31
+ #if !defined(__OpenBSD__)
32
+ typedef unsigned long ulong;
33
+ #endif
34
+
35
+ #define ADD(T) T add_##T(T arg1, T arg2) { return arg1 + arg2; }
36
+ #define SUB(T) T sub_##T(T arg1, T arg2) { return arg1 - arg2; }
37
+ #define MUL(T) T mul_##T(T arg1, T arg2) { return arg1 * arg2; }
38
+ #define DIV(T) T div_##T(T arg1, T arg2) { return arg1 / arg2; }
39
+ #define RET(T) T ret_##T(T arg1) { return arg1; }
40
+ #define SET(T) static T T##_;void set_##T(T arg1) { T##_ = arg1; }
41
+ #define GET(T) T get_##T() { return T##_; }
42
+ typedef char* ptr;
43
+ #define TEST(T) ADD(T) SUB(T) MUL(T) DIV(T) RET(T) SET(T) GET(T)
44
+ TEST(s8);
45
+ TEST(u8);
46
+ TEST(s16);
47
+ TEST(u16);
48
+ TEST(s32);
49
+ TEST(u32);
50
+ TEST(s64);
51
+ TEST(u64);
52
+ TEST(float);
53
+ TEST(double);
54
+ TEST(long);
55
+ TEST(ulong);
56
+ TEST(f128);
57
+
58
+ #define ADD2(R, T1, T2) R add_##T1##T2##_##R(T1 arg1, T2 arg2) { return arg1 + arg2; }
59
+ #define SUB2(R, T1, T2) R sub_##T1##T2##_##R(T1 arg1, T2 arg2) { return arg1 - arg2; }
60
+ #define MUL2(R, T1, T2) R mul_##T1##T2##_##R(T1 arg1, T2 arg2) { return arg1 * arg2; }
61
+ #define DIV2(R, T1, T2) R div_##T1##T2##_##R(T1 arg1, T2 arg2) { return arg1 / arg2; }
62
+
63
+ #define T2__(R, T1, T2) ADD2(R, T1, T2) SUB2(R, T1, T2) MUL2(R, T1, T2) DIV2(R, T1, T2)
64
+ #define T2_(R, T1) \
65
+ T2__(R, T1, s8) T2__(R, T1, u8) \
66
+ T2__(R, T1, s16) T2__(R, T1, u16) \
67
+ T2__(R, T1, s32) T2__(R, T1, u32) \
68
+ T2__(R, T1, sL) T2__(R, T1, uL) \
69
+ T2__(R, T1, s64) T2__(R, T1, u64) \
70
+
71
+ #define TEST2(R) \
72
+ T2_(R, s8) T2_(R, u8) T2_(R, s16) T2_(R, u16) T2_(R, s32) T2_(R, u32) \
73
+ T2_(R, sL) T2_(R, uL) T2_(R, s64) T2_(R, u64)
74
+
75
+ #ifdef notyet
76
+ TEST2(s32)
77
+ TEST2(u32)
78
+ TEST2(s64)
79
+ TEST2(u64)
80
+ #endif
81
+
82
+ #define ADD3(R, T1, T2, T3) R add_##T1##T2##T3##_##R(T1 arg1, T2 arg2, T3 arg3) { return arg1 + arg2 + arg3; }
83
+ #define pack_f32(buf, v) do { float f = v; memcpy((buf), &f, sizeof(f)); } while(0)
84
+ #define pack_f64(buf, v) do { double f = v; memcpy((buf), &f, sizeof(f)); } while(0)
85
+ #define pack_int(buf, v) do { *(buf) = v; } while(0)
86
+ #define pack_s8 pack_int
87
+ #define pack_u8 pack_int
88
+ #define pack_s16 pack_int
89
+ #define pack_u16 pack_int
90
+ #define pack_s32 pack_int
91
+ #define pack_u32 pack_int
92
+ #define pack_s64 pack_int
93
+ #define pack_u64 pack_int
94
+ #define pack_sL pack_int
95
+ #define pack_uL pack_int
96
+
97
+ #define PACK3(R, T1, T2, T3) void pack_##T1##T2##T3##_##R(T1 arg1, T2 arg2, T3 arg3, R* r) { \
98
+ fix_mem_access; \
99
+ pack_##T1(&r[0], arg1); \
100
+ pack_##T2(&r[1], arg2); \
101
+ pack_##T3(&r[2], arg3); \
102
+ }
103
+
104
+ #define T3___(R, T1, T2, T3) PACK3(R, T1, T2, T3) /* SUB2(R, T1, T2) MUL2(R, T1, T2) DIV2(R, T1, T2) */
105
+ #define T3__(R, T1, T2) \
106
+ T3___(R, T1, T2, s8) T3___(R, T1, T2, u8) \
107
+ T3___(R, T1, T2, s16) T3___(R, T1, T2, u16) \
108
+ T3___(R, T1, T2, s32) T3___(R, T1, T2, u32) \
109
+ T3___(R, T1, T2, sL) T3___(R, T1, T2, uL) \
110
+ T3___(R, T1, T2, s64) T3___(R, T1, T2, u64) \
111
+ T3___(R, T1, T2, f32) T3___(R, T1, T2, f64) \
112
+
113
+ #define T3_(R, T1) \
114
+ T3__(R, T1, s8) T3__(R, T1, u8) \
115
+ T3__(R, T1, s16) T3__(R, T1, u16) \
116
+ T3__(R, T1, s32) T3__(R, T1, u32) \
117
+ T3__(R, T1, sL) T3__(R, T1, uL) \
118
+ T3__(R, T1, s64) T3__(R, T1, u64) \
119
+ T3__(R, T1, f32) T3__(R, T1, f64) \
120
+
121
+ #define TEST3(R) \
122
+ T3_(R, s8) T3_(R, u8) T3_(R, s16) T3_(R, u16) T3_(R, s32) T3_(R, u32) \
123
+ T3_(R, sL) T3_(R, uL) T3_(R, s64) T3_(R, u64) T3_(R, f32) T3_(R, f64)
124
+
125
+ TEST3(s64)
126
+
127
+ void
128
+ foo6(intptr_t i1, intptr_t i2, intptr_t i3, intptr_t i4, intptr_t i5, intptr_t i6) { }
129
+
130
+ void
131
+ foo5(intptr_t i1, intptr_t i2, intptr_t i3, intptr_t i4, intptr_t i5) { }
132
+