alinta-ffi 1.9.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (195) hide show
  1. checksums.yaml +7 -0
  2. data/COPYING +49 -0
  3. data/LICENSE +24 -0
  4. data/README.md +112 -0
  5. data/Rakefile +243 -0
  6. data/ext/ffi_c/AbstractMemory.c +1109 -0
  7. data/ext/ffi_c/AbstractMemory.h +175 -0
  8. data/ext/ffi_c/ArrayType.c +162 -0
  9. data/ext/ffi_c/ArrayType.h +59 -0
  10. data/ext/ffi_c/Buffer.c +365 -0
  11. data/ext/ffi_c/Call.c +517 -0
  12. data/ext/ffi_c/Call.h +110 -0
  13. data/ext/ffi_c/ClosurePool.c +283 -0
  14. data/ext/ffi_c/ClosurePool.h +57 -0
  15. data/ext/ffi_c/DataConverter.c +91 -0
  16. data/ext/ffi_c/DynamicLibrary.c +339 -0
  17. data/ext/ffi_c/DynamicLibrary.h +98 -0
  18. data/ext/ffi_c/Function.c +998 -0
  19. data/ext/ffi_c/Function.h +87 -0
  20. data/ext/ffi_c/FunctionInfo.c +271 -0
  21. data/ext/ffi_c/LastError.c +184 -0
  22. data/ext/ffi_c/LastError.h +47 -0
  23. data/ext/ffi_c/LongDouble.c +63 -0
  24. data/ext/ffi_c/LongDouble.h +51 -0
  25. data/ext/ffi_c/MappedType.c +168 -0
  26. data/ext/ffi_c/MappedType.h +59 -0
  27. data/ext/ffi_c/MemoryPointer.c +197 -0
  28. data/ext/ffi_c/MemoryPointer.h +53 -0
  29. data/ext/ffi_c/MethodHandle.c +358 -0
  30. data/ext/ffi_c/MethodHandle.h +55 -0
  31. data/ext/ffi_c/Platform.c +129 -0
  32. data/ext/ffi_c/Platform.h +45 -0
  33. data/ext/ffi_c/Pointer.c +508 -0
  34. data/ext/ffi_c/Pointer.h +63 -0
  35. data/ext/ffi_c/Struct.c +829 -0
  36. data/ext/ffi_c/Struct.h +106 -0
  37. data/ext/ffi_c/StructByReference.c +190 -0
  38. data/ext/ffi_c/StructByReference.h +50 -0
  39. data/ext/ffi_c/StructByValue.c +150 -0
  40. data/ext/ffi_c/StructByValue.h +55 -0
  41. data/ext/ffi_c/StructLayout.c +698 -0
  42. data/ext/ffi_c/Thread.c +352 -0
  43. data/ext/ffi_c/Thread.h +95 -0
  44. data/ext/ffi_c/Type.c +397 -0
  45. data/ext/ffi_c/Type.h +62 -0
  46. data/ext/ffi_c/Types.c +139 -0
  47. data/ext/ffi_c/Types.h +89 -0
  48. data/ext/ffi_c/Variadic.c +304 -0
  49. data/ext/ffi_c/compat.h +78 -0
  50. data/ext/ffi_c/extconf.rb +71 -0
  51. data/ext/ffi_c/ffi.c +98 -0
  52. data/ext/ffi_c/libffi.bsd.mk +40 -0
  53. data/ext/ffi_c/libffi.darwin.mk +105 -0
  54. data/ext/ffi_c/libffi.gnu.mk +32 -0
  55. data/ext/ffi_c/libffi.mk +18 -0
  56. data/ext/ffi_c/libffi.vc.mk +26 -0
  57. data/ext/ffi_c/libffi.vc64.mk +26 -0
  58. data/ext/ffi_c/rbffi.h +57 -0
  59. data/ext/ffi_c/rbffi_endian.h +59 -0
  60. data/ext/ffi_c/win32/stdbool.h +8 -0
  61. data/ext/ffi_c/win32/stdint.h +201 -0
  62. data/ffi.gemspec +23 -0
  63. data/gen/Rakefile +30 -0
  64. data/lib/ffi.rb +20 -0
  65. data/lib/ffi/autopointer.rb +203 -0
  66. data/lib/ffi/buffer.rb +4 -0
  67. data/lib/ffi/callback.rb +4 -0
  68. data/lib/ffi/enum.rb +296 -0
  69. data/lib/ffi/errno.rb +43 -0
  70. data/lib/ffi/ffi.rb +44 -0
  71. data/lib/ffi/io.rb +62 -0
  72. data/lib/ffi/library.rb +590 -0
  73. data/lib/ffi/managedstruct.rb +84 -0
  74. data/lib/ffi/memorypointer.rb +1 -0
  75. data/lib/ffi/platform.rb +164 -0
  76. data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  77. data/lib/ffi/platform/arm-linux/types.conf +104 -0
  78. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  79. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  80. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  81. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  82. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  83. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  84. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  85. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  86. data/lib/ffi/platform/i386-windows/types.conf +105 -0
  87. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  88. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  89. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  90. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  91. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  92. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  93. data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  94. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  95. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  96. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  97. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  98. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  99. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  100. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  101. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  102. data/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
  103. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  104. data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
  105. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  106. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  107. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  108. data/lib/ffi/platform/x86_64-windows/types.conf +120 -0
  109. data/lib/ffi/pointer.rb +161 -0
  110. data/lib/ffi/struct.rb +371 -0
  111. data/lib/ffi/struct_layout_builder.rb +227 -0
  112. data/lib/ffi/tools/const_generator.rb +229 -0
  113. data/lib/ffi/tools/generator.rb +60 -0
  114. data/lib/ffi/tools/generator_task.rb +36 -0
  115. data/lib/ffi/tools/struct_generator.rb +194 -0
  116. data/lib/ffi/tools/types_generator.rb +134 -0
  117. data/lib/ffi/types.rb +194 -0
  118. data/lib/ffi/union.rb +43 -0
  119. data/lib/ffi/variadic.rb +78 -0
  120. data/lib/ffi/version.rb +4 -0
  121. data/libtest/Benchmark.c +52 -0
  122. data/libtest/BoolTest.c +34 -0
  123. data/libtest/BufferTest.c +31 -0
  124. data/libtest/ClosureTest.c +205 -0
  125. data/libtest/EnumTest.c +51 -0
  126. data/libtest/FunctionTest.c +70 -0
  127. data/libtest/GNUmakefile +149 -0
  128. data/libtest/GlobalVariable.c +62 -0
  129. data/libtest/LastErrorTest.c +21 -0
  130. data/libtest/NumberTest.c +132 -0
  131. data/libtest/PointerTest.c +63 -0
  132. data/libtest/ReferenceTest.c +23 -0
  133. data/libtest/StringTest.c +34 -0
  134. data/libtest/StructTest.c +243 -0
  135. data/libtest/UnionTest.c +43 -0
  136. data/libtest/VariadicTest.c +99 -0
  137. data/spec/ffi/LICENSE.SPECS +22 -0
  138. data/spec/ffi/async_callback_spec.rb +35 -0
  139. data/spec/ffi/bitmask_spec.rb +575 -0
  140. data/spec/ffi/bool_spec.rb +32 -0
  141. data/spec/ffi/buffer_spec.rb +279 -0
  142. data/spec/ffi/callback_spec.rb +773 -0
  143. data/spec/ffi/custom_param_type.rb +37 -0
  144. data/spec/ffi/custom_type_spec.rb +74 -0
  145. data/spec/ffi/dup_spec.rb +52 -0
  146. data/spec/ffi/enum_spec.rb +423 -0
  147. data/spec/ffi/errno_spec.rb +20 -0
  148. data/spec/ffi/ffi_spec.rb +28 -0
  149. data/spec/ffi/fixtures/Benchmark.c +52 -0
  150. data/spec/ffi/fixtures/BitmaskTest.c +51 -0
  151. data/spec/ffi/fixtures/BoolTest.c +34 -0
  152. data/spec/ffi/fixtures/BufferTest.c +31 -0
  153. data/spec/ffi/fixtures/ClosureTest.c +205 -0
  154. data/spec/ffi/fixtures/EnumTest.c +51 -0
  155. data/spec/ffi/fixtures/FunctionTest.c +142 -0
  156. data/spec/ffi/fixtures/GNUmakefile +149 -0
  157. data/spec/ffi/fixtures/GlobalVariable.c +62 -0
  158. data/spec/ffi/fixtures/LastErrorTest.c +21 -0
  159. data/spec/ffi/fixtures/NumberTest.c +132 -0
  160. data/spec/ffi/fixtures/PipeHelper.h +21 -0
  161. data/spec/ffi/fixtures/PipeHelperPosix.c +41 -0
  162. data/spec/ffi/fixtures/PipeHelperWindows.c +72 -0
  163. data/spec/ffi/fixtures/PointerTest.c +63 -0
  164. data/spec/ffi/fixtures/ReferenceTest.c +23 -0
  165. data/spec/ffi/fixtures/StringTest.c +34 -0
  166. data/spec/ffi/fixtures/StructTest.c +243 -0
  167. data/spec/ffi/fixtures/UnionTest.c +43 -0
  168. data/spec/ffi/fixtures/VariadicTest.c +99 -0
  169. data/spec/ffi/fixtures/classes.rb +438 -0
  170. data/spec/ffi/function_spec.rb +97 -0
  171. data/spec/ffi/io_spec.rb +16 -0
  172. data/spec/ffi/library_spec.rb +286 -0
  173. data/spec/ffi/long_double.rb +30 -0
  174. data/spec/ffi/managed_struct_spec.rb +68 -0
  175. data/spec/ffi/memorypointer_spec.rb +78 -0
  176. data/spec/ffi/number_spec.rb +247 -0
  177. data/spec/ffi/platform_spec.rb +114 -0
  178. data/spec/ffi/pointer_spec.rb +285 -0
  179. data/spec/ffi/rbx/attach_function_spec.rb +34 -0
  180. data/spec/ffi/rbx/memory_pointer_spec.rb +198 -0
  181. data/spec/ffi/rbx/spec_helper.rb +6 -0
  182. data/spec/ffi/rbx/struct_spec.rb +18 -0
  183. data/spec/ffi/spec_helper.rb +93 -0
  184. data/spec/ffi/string_spec.rb +118 -0
  185. data/spec/ffi/strptr_spec.rb +50 -0
  186. data/spec/ffi/struct_by_ref_spec.rb +43 -0
  187. data/spec/ffi/struct_callback_spec.rb +69 -0
  188. data/spec/ffi/struct_initialize_spec.rb +35 -0
  189. data/spec/ffi/struct_packed_spec.rb +50 -0
  190. data/spec/ffi/struct_spec.rb +882 -0
  191. data/spec/ffi/typedef_spec.rb +91 -0
  192. data/spec/ffi/union_spec.rb +67 -0
  193. data/spec/ffi/variadic_spec.rb +132 -0
  194. data/spec/spec.opts +4 -0
  195. metadata +309 -0
@@ -0,0 +1,4 @@
1
+ module FFI
2
+ VERSION = '1.9.19'
3
+ end
4
+
@@ -0,0 +1,52 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+ #include <sys/types.h>
7
+ #include <stdint.h>
8
+
9
+ void returnVoid() {
10
+
11
+ }
12
+
13
+ void returnVoidI(int arg) {
14
+
15
+ }
16
+ int returnInt() {
17
+ return 0;
18
+ }
19
+
20
+ int returnIntI(int arg) {
21
+ return arg;
22
+ }
23
+
24
+ typedef int8_t s8;
25
+ typedef uint8_t u8;
26
+ typedef int16_t s16;
27
+ typedef uint16_t u16;
28
+ typedef int32_t s32;
29
+ typedef uint32_t u32;
30
+ typedef int64_t s64;
31
+ typedef uint64_t u64;
32
+ typedef float f32;
33
+ typedef double f64;
34
+ typedef void v;
35
+ typedef char* S;
36
+ typedef void* P;
37
+
38
+ #define B6(R, T1, T2, T3, T4, T5, T6) R bench_##T1##T2##T3##T4##T5##T6##_##R(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6) {}
39
+ #define B5(R, T1, T2, T3, T4, T5) R bench_##T1##T2##T3##T4##T5##_##R(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) {}
40
+ #define B4(R, T1, T2, T3, T4) R bench_##T1##T2##T3##T4##_##R(T1 a1, T2 a2, T3 a3, T4 a4) {}
41
+ #define B3(R, T1, T2, T3) R bench_##T1##T2##T3##_##R(T1 a1, T2 a2, T3 a3) {}
42
+ #define B2(R, T1, T2) R bench_##T1##T2##_##R(T1 a1, T2 a2) {}
43
+ #define B1(R, T1) R bench_##T1##_##R(T1 a1) {}
44
+ #define BrV(T) B1(v, T); B2(v, T, T); B3(v, T, T, T); B4(v, T, T, T, T); B5(v, T, T, T, T, T); B6(v, T, T, T, T, T, T);
45
+ BrV(u32);
46
+ BrV(s32);
47
+ BrV(s64);
48
+ BrV(u64);
49
+ BrV(f32);
50
+ BrV(f64);
51
+ BrV(S);
52
+ BrV(P);
@@ -0,0 +1,34 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner.
3
+ * Copyright (c) 2009 Aman Gupta.
4
+ *
5
+ * All rights reserved.
6
+ *
7
+ * For licensing, see LICENSE.SPECS
8
+ */
9
+
10
+ #include <stdbool.h>
11
+
12
+ bool
13
+ bool_return_true()
14
+ {
15
+ return true;
16
+ }
17
+
18
+ bool
19
+ bool_return_false()
20
+ {
21
+ return false;
22
+ }
23
+
24
+ bool
25
+ bool_return_val(bool value)
26
+ {
27
+ return value;
28
+ }
29
+
30
+ bool
31
+ bool_reverse_val(bool value)
32
+ {
33
+ return value ? false : true;
34
+ }
@@ -0,0 +1,31 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+
8
+ #define MEMSET(buf, value, size) do { \
9
+ int i; for (i = 0; i < size; ++i) buf[i] = value; \
10
+ } while(0)
11
+ #define MEMCPY(dst, src, size) do { \
12
+ int i; for (i = 0; i < size; ++i) dst[i] = src[i]; \
13
+ } while(0)
14
+
15
+ #define FILL(JTYPE, CTYPE) \
16
+ void fill##JTYPE##Buffer(CTYPE* buf, CTYPE value, int size) { MEMSET(buf, value, size); }
17
+
18
+ #define COPY(JTYPE, CTYPE) \
19
+ void copy##JTYPE##Buffer(CTYPE* dst, CTYPE* src, int size) { MEMCPY(dst, src, size); }
20
+
21
+ #define FUNC(JTYPE, CTYPE) \
22
+ FILL(JTYPE, CTYPE); \
23
+ COPY(JTYPE, CTYPE)
24
+
25
+ FUNC(Byte, char);
26
+ FUNC(Short, short);
27
+ FUNC(Int, int);
28
+ FUNC(Long, long long);
29
+ FUNC(Float, float);
30
+ FUNC(Double, double);
31
+
@@ -0,0 +1,205 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+
7
+ #include <stdlib.h>
8
+ #include <stdbool.h>
9
+ #ifndef _WIN32
10
+ # include <pthread.h>
11
+ #else
12
+ # include <windows.h>
13
+ # include <process.h>
14
+ #endif
15
+
16
+ #define R(T, rtype) rtype testClosureVr##T(rtype (*closure)(void)) { \
17
+ return closure != NULL ? (*closure)() : (rtype) 0; \
18
+ }
19
+
20
+ #define P(T, ptype) void testClosure##T##rV(void (*closure)(ptype), ptype a1) { \
21
+ if (closure != NULL) (*closure)(a1); \
22
+ }
23
+
24
+ void testClosureVrV(void (*closure)(void))
25
+ {
26
+ (*closure)();
27
+ }
28
+
29
+ R(Z, bool);
30
+ R(B, char);
31
+ R(S, short);
32
+ R(I, int);
33
+ R(L, long);
34
+ R(J, long long);
35
+ R(LL, long long);
36
+ R(F, float);
37
+ R(D, double);
38
+ R(P, const void*);
39
+
40
+
41
+ P(Z, bool);
42
+ P(B, char);
43
+ P(S, short);
44
+ P(I, int);
45
+ P(L, long);
46
+ P(J, long long);
47
+ P(LL, long long);
48
+ P(F, float);
49
+ P(D, double);
50
+ P(P, const void*);
51
+ P(UL, unsigned long);
52
+
53
+ #if defined(_WIN32) && !defined(_WIN64)
54
+ bool __stdcall testClosureStdcall(long *a1, void __stdcall(*closure)(void *, long), long a2) { \
55
+ void* sp_pre;
56
+ void* sp_post;
57
+
58
+ asm volatile (" movl %%esp,%0" : "=g" (sp_pre));
59
+ (*closure)(a1, a2);
60
+ asm volatile (" movl %%esp,%0" : "=g" (sp_post));
61
+
62
+ /* %esp before pushing parameters on the stack and after the call returns
63
+ * should be equal, if both sides respects the stdcall convention */
64
+ return sp_pre == sp_post;
65
+ }
66
+ #endif
67
+
68
+ void testOptionalClosureBrV(void (*closure)(char), char a1)
69
+ {
70
+ if (closure) {
71
+ (*closure)(a1);
72
+ }
73
+ }
74
+
75
+
76
+ struct ThreadVrV {
77
+ void (*closure)(void);
78
+ int count;
79
+ };
80
+
81
+ static void *
82
+ threadVrV(void *arg)
83
+ {
84
+ struct ThreadVrV* t = (struct ThreadVrV *) arg;
85
+
86
+ int i;
87
+ for (i = 0; i < t->count; i++) {
88
+ (*t->closure)();
89
+ }
90
+
91
+ return NULL;
92
+ }
93
+
94
+ void testThreadedClosureVrV(void (*closure)(void), int n)
95
+ {
96
+ struct ThreadVrV arg = {closure, n};
97
+ #ifndef _WIN32
98
+ pthread_t t;
99
+ pthread_create(&t, NULL, threadVrV, &arg);
100
+ pthread_join(t, NULL);
101
+ #else
102
+ HANDLE hThread = (HANDLE) _beginthread((void (*)(void *))threadVrV, 0, &arg);
103
+ WaitForSingleObject(hThread, INFINITE);
104
+ #endif
105
+ }
106
+
107
+ struct s8f32s32 {
108
+ char s8;
109
+ float f32;
110
+ int s32;
111
+ };
112
+
113
+ // Takes a struct argument
114
+ void testClosureTrV(void (*closure)(struct s8f32s32 s), struct s8f32s32* s)
115
+ {
116
+ (*closure)(*s);
117
+ }
118
+
119
+ // Returns a struct value
120
+ struct s8f32s32 testClosureVrT(struct s8f32s32 (*closure)())
121
+ {
122
+ return (*closure)();
123
+ }
124
+
125
+ typedef int (*returnTypeClosure_t)(int) ;
126
+ typedef returnTypeClosure_t (*lookupClosure_t)();
127
+
128
+ int testReturnsClosure(lookupClosure_t lookup, int val)
129
+ {
130
+ returnTypeClosure_t func = lookup ? (*lookup)() : NULL;
131
+ return func ? (*func)(val) : 0;
132
+ }
133
+
134
+ static int multiplyByTwo(int value)
135
+ {
136
+ return value * 2;
137
+ }
138
+
139
+ returnTypeClosure_t testReturnsFunctionPointer()
140
+ {
141
+ return multiplyByTwo;
142
+ }
143
+
144
+ typedef int (*argumentClosure_t)(int);
145
+ typedef int (*withArgumentClosure_t)(argumentClosure_t, int);
146
+
147
+ int testArgumentClosure(withArgumentClosure_t closure_with, argumentClosure_t closure_arg, int val)
148
+ {
149
+ return (*closure_with)(closure_arg, val);
150
+ }
151
+
152
+
153
+ //
154
+ // These macros produce functions of the form:
155
+ // testClosureBIrV(void (*closure)(char, int), char a1, int a2) {}
156
+ //
157
+ #define C2_(J1, J2, N1, N2) \
158
+ void testClosure##J1##J2##rV(void (*closure)(N1, N2), N1 a1, N2 a2) \
159
+ { \
160
+ if (closure != NULL) (*closure)(a1, a2); \
161
+ }
162
+
163
+ #define C2(J, N) \
164
+ C2_(B, J, char, N) \
165
+ C2_(S, J, short, N) \
166
+ C2_(I, J, int, N) \
167
+ C2_(LL, J, long long, N) \
168
+ C2_(F, J, float, N) \
169
+ C2_(D, J, double, N) \
170
+
171
+
172
+ C2(B, char);
173
+ C2(S, short);
174
+ C2(I, int);
175
+ C2(LL, long long);
176
+ C2(F, float);
177
+ C2(D, double);
178
+
179
+ #define C3_(J1, J2, J3, N1, N2, N3) \
180
+ void testClosure##J1##J2##J3##rV(void (*closure)(N1, N2, N3), N1 a1, N2 a2, N3 a3) \
181
+ { \
182
+ (*closure)(a1, a2, a3); \
183
+ }
184
+
185
+
186
+ #define C3(J, N) \
187
+ C3_(B, J, B, char, N, char) \
188
+ C3_(S, J, S, short, N, short) \
189
+ C3_(I, J, I, int, N, int) \
190
+ C3_(LL, J, LL, long long, N, long long) \
191
+ C3_(F, J, F, float, N, float) \
192
+ C3_(D, J, D, double, N, double) \
193
+
194
+ C3(B, char);
195
+ C3(S, short);
196
+ C3(I, int);
197
+ C3(LL, long long);
198
+ C3(F, float);
199
+ C3(D, double);
200
+ C3_(B, S, I, char, short, int);
201
+ C3_(B, S, LL, char, short, long long);
202
+ C3_(LL, S, B, long long, short, char);
203
+ C3_(LL, B, S, long long, char, short);
204
+
205
+
@@ -0,0 +1,51 @@
1
+ /*
2
+ * Copyright (c) 2007 Wayne Meissner. All rights reserved.
3
+ *
4
+ * For licensing, see LICENSE.SPECS
5
+ */
6
+ #include <stdint.h>
7
+
8
+ int test_untagged_enum(int val) {
9
+ return val;
10
+ }
11
+
12
+ int test_untagged_typedef_enum(int val) {
13
+ return val;
14
+ }
15
+
16
+ uint8_t test_untagged_nonint_enum(uint8_t val) {
17
+ return val;
18
+ }
19
+
20
+ uint16_t test_tagged_nonint_enum1(uint16_t val) {
21
+ return val;
22
+ }
23
+
24
+ uint32_t test_tagged_nonint_enum2(uint32_t val) {
25
+ return val;
26
+ }
27
+
28
+ uint64_t test_tagged_nonint_enum3(uint64_t val) {
29
+ return val;
30
+ }
31
+
32
+ typedef enum {c1, c2, c3, c4} enum_type1;
33
+ enum_type1 test_tagged_typedef_enum1(enum_type1 val) {
34
+ return val;
35
+ }
36
+
37
+ typedef enum {c5 = 42, c6, c7, c8} enum_type2;
38
+ enum_type2 test_tagged_typedef_enum2(enum_type2 val) {
39
+ return val;
40
+ }
41
+
42
+ typedef enum {c9 = 42, c10, c11 = 4242, c12} enum_type3;
43
+ enum_type3 test_tagged_typedef_enum3(enum_type3 val) {
44
+ return val;
45
+ }
46
+
47
+ typedef enum {c13 = 42, c14 = 4242, c15 = 424242, c16 = 42424242} enum_type4;
48
+ enum_type4 test_tagged_typedef_enum4(enum_type4 val) {
49
+ return val;
50
+ }
51
+
@@ -0,0 +1,70 @@
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)*1000)
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
+ }
59
+
60
+ #if defined(_WIN32) && !defined(_WIN64)
61
+ struct StructUCDP {
62
+ unsigned char a1;
63
+ double a2;
64
+ void *a3;
65
+ };
66
+
67
+ void __stdcall testStdcallManyParams(long *a1, char a2, short int a3, int a4, __int64 a5,
68
+ struct StructUCDP a6, struct StructUCDP *a7, float a8, double a9) {
69
+ }
70
+ #endif