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,142 @@
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
+ #endif
10
+
11
+ #ifndef _WIN32
12
+ #include <unistd.h>
13
+ #include <pthread.h>
14
+ #include <stdarg.h>
15
+ #include <stdlib.h>
16
+ #endif
17
+
18
+ #include "PipeHelper.h"
19
+
20
+ int testAdd(int a, int b)
21
+ {
22
+ return a + b;
23
+ };
24
+
25
+ int testFunctionAdd(int a, int b, int (*f)(int, int))
26
+ {
27
+ return f(a, b);
28
+ };
29
+
30
+ struct testBlockingData {
31
+ FD_TYPE pipe1[2];
32
+ FD_TYPE pipe2[2];
33
+ };
34
+
35
+ struct testBlockingData *testBlockingOpen()
36
+ {
37
+ struct testBlockingData *self = malloc(sizeof(struct testBlockingData));
38
+
39
+ if( pipeHelperCreatePipe(self->pipe1) == -1 ) return NULL;
40
+ if( pipeHelperCreatePipe(self->pipe2) == -1 ) return NULL;
41
+ return self;
42
+ }
43
+
44
+ char testBlockingWR(struct testBlockingData *self, char c) {
45
+ if( pipeHelperWriteChar(self->pipe1[1], c) != 1)
46
+ return 0;
47
+ return pipeHelperReadChar(self->pipe2[0], 10);
48
+ }
49
+
50
+ char testBlockingRW(struct testBlockingData *self, char c) {
51
+ char d = pipeHelperReadChar(self->pipe1[0], 10);
52
+ if( pipeHelperWriteChar(self->pipe2[1], c) != 1)
53
+ return 0;
54
+ return d;
55
+ }
56
+
57
+ void testBlockingClose(struct testBlockingData *self) {
58
+ pipeHelperClosePipe(self->pipe1[0]);
59
+ pipeHelperClosePipe(self->pipe1[1]);
60
+ pipeHelperClosePipe(self->pipe2[0]);
61
+ pipeHelperClosePipe(self->pipe2[1]);
62
+ free(self);
63
+ }
64
+
65
+ static int sum_varargs(va_list args) {
66
+ char sum = 0;
67
+ int arg;
68
+ while ((arg = va_arg(args, int)) != 0) {
69
+ sum += arg;
70
+ }
71
+ va_end(args);
72
+ return sum;
73
+ }
74
+
75
+ /* Write c to pipe1 and return the value read from pipe2, or 0 if there’s
76
+ * an error such as a timeout, or if c does not equal the sum of the
77
+ * zero-terminated list of char arguments. */
78
+ char testBlockingWRva(struct testBlockingData *self, char c, ...) {
79
+ va_list args;
80
+ va_start(args, c);
81
+ if (sum_varargs(args) != c) {
82
+ return 0;
83
+ }
84
+
85
+ if( pipeHelperWriteChar(self->pipe1[1], c) != 1)
86
+ return 0;
87
+ return pipeHelperReadChar(self->pipe2[0], 10);
88
+ }
89
+
90
+ char testBlockingRWva(struct testBlockingData *self, char c, ...) {
91
+ va_list args;
92
+ va_start(args, c);
93
+ if (sum_varargs(args) != c) {
94
+ return 0;
95
+ }
96
+
97
+ char d = pipeHelperReadChar(self->pipe1[0], 10);
98
+ if( pipeHelperWriteChar(self->pipe2[1], c) != 1)
99
+ return 0;
100
+ return d;
101
+ }
102
+
103
+ struct async_data {
104
+ void (*fn)(int);
105
+ int value;
106
+ };
107
+
108
+ static void* asyncThreadCall(void *data)
109
+ {
110
+ struct async_data* d = (struct async_data *) data;
111
+ if (d != NULL && d->fn != NULL) {
112
+ (*d->fn)(d->value);
113
+ }
114
+
115
+ return NULL;
116
+ }
117
+
118
+ void testAsyncCallback(void (*fn)(int), int value)
119
+ {
120
+ #ifndef _WIN32
121
+ pthread_t t;
122
+ struct async_data d;
123
+ d.fn = fn;
124
+ d.value = value;
125
+ pthread_create(&t, NULL, asyncThreadCall, &d);
126
+ pthread_join(t, NULL);
127
+ #else
128
+ (*fn)(value);
129
+ #endif
130
+ }
131
+
132
+ #if defined(_WIN32) && !defined(_WIN64)
133
+ struct StructUCDP {
134
+ unsigned char a1;
135
+ double a2;
136
+ void *a3;
137
+ };
138
+
139
+ void __stdcall testStdcallManyParams(long *a1, char a2, short int a3, int a4, __int64 a5,
140
+ struct StructUCDP a6, struct StructUCDP *a7, float a8, double a9) {
141
+ }
142
+ #endif
@@ -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
+ }
@@ -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
+
@@ -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
+