Merge remote-tracking branch 'local-2.0/stable-2.0'
[bpt/guile.git] / libguile / foreign.c
1 /* Copyright (C) 2010, 2011 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
17 */
18
19 #if HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include <ffi.h>
24
25 #include <alloca.h>
26 #include <alignof.h>
27 #include <string.h>
28 #include <assert.h>
29
30 #include "libguile/_scm.h"
31 #include "libguile/bytevectors.h"
32 #include "libguile/instructions.h"
33 #include "libguile/threads.h"
34 #include "libguile/foreign.h"
35
36 \f
37
38 SCM_SYMBOL (sym_void, "void");
39 SCM_SYMBOL (sym_float, "float");
40 SCM_SYMBOL (sym_double, "double");
41 SCM_SYMBOL (sym_uint8, "uint8");
42 SCM_SYMBOL (sym_int8, "int8");
43 SCM_SYMBOL (sym_uint16, "uint16");
44 SCM_SYMBOL (sym_int16, "int16");
45 SCM_SYMBOL (sym_uint32, "uint32");
46 SCM_SYMBOL (sym_int32, "int32");
47 SCM_SYMBOL (sym_uint64, "uint64");
48 SCM_SYMBOL (sym_int64, "int64");
49 SCM_SYMBOL (sym_short, "short");
50 SCM_SYMBOL (sym_int, "int");
51 SCM_SYMBOL (sym_long, "long");
52 SCM_SYMBOL (sym_unsigned_short, "unsigned-short");
53 SCM_SYMBOL (sym_unsigned_int, "unsigned-int");
54 SCM_SYMBOL (sym_unsigned_long, "unsigned-long");
55 SCM_SYMBOL (sym_size_t, "size_t");
56
57 /* that's for pointers, you know. */
58 SCM_SYMBOL (sym_asterisk, "*");
59
60 SCM_SYMBOL (sym_null, "%null-pointer");
61 SCM_SYMBOL (sym_null_pointer_error, "null-pointer-error");
62
63 /* The cell representing the null pointer. */
64 static SCM null_pointer;
65
66 #if SIZEOF_VOID_P == 4
67 # define scm_to_uintptr scm_to_uint32
68 # define scm_from_uintptr scm_from_uint32
69 #elif SIZEOF_VOID_P == 8
70 # define scm_to_uintptr scm_to_uint64
71 # define scm_from_uintptr scm_from_uint64
72 #else
73 # error unsupported pointer size
74 #endif
75
76
77 /* Raise a null pointer dereference error. */
78 static void
79 null_pointer_error (const char *func_name)
80 {
81 scm_error (sym_null_pointer_error, func_name,
82 "null pointer dereference", SCM_EOL, SCM_EOL);
83 }
84
85 \f
86 static SCM cif_to_procedure (SCM cif, SCM func_ptr);
87
88
89 static SCM pointer_weak_refs = SCM_BOOL_F;
90 static scm_i_pthread_mutex_t weak_refs_lock = SCM_I_PTHREAD_MUTEX_INITIALIZER;
91
92
93 static void
94 register_weak_reference (SCM from, SCM to)
95 {
96 scm_i_pthread_mutex_lock (&weak_refs_lock);
97 scm_hashq_set_x (pointer_weak_refs, from, to);
98 scm_i_pthread_mutex_unlock (&weak_refs_lock);
99 }
100
101 static void
102 pointer_finalizer_trampoline (GC_PTR ptr, GC_PTR data)
103 {
104 scm_t_pointer_finalizer finalizer = data;
105 finalizer (SCM_POINTER_VALUE (PTR2SCM (ptr)));
106 }
107
108 SCM_DEFINE (scm_pointer_p, "pointer?", 1, 0, 0,
109 (SCM obj),
110 "Return @code{#t} if @var{obj} is a pointer object, "
111 "@code{#f} otherwise.\n")
112 #define FUNC_NAME s_scm_pointer_p
113 {
114 return scm_from_bool (SCM_POINTER_P (obj));
115 }
116 #undef FUNC_NAME
117
118 SCM_DEFINE (scm_make_pointer, "make-pointer", 1, 1, 0,
119 (SCM address, SCM finalizer),
120 "Return a foreign pointer object pointing to @var{address}. "
121 "If @var{finalizer} is passed, it should be a pointer to a "
122 "one-argument C function that will be called when the pointer "
123 "object becomes unreachable.")
124 #define FUNC_NAME s_scm_make_pointer
125 {
126 void *c_finalizer;
127 scm_t_uintptr c_address;
128
129 c_address = scm_to_uintptr (address);
130 if (SCM_UNBNDP (finalizer))
131 c_finalizer = NULL;
132 else
133 {
134 SCM_VALIDATE_POINTER (2, finalizer);
135 c_finalizer = SCM_POINTER_VALUE (finalizer);
136 }
137
138 return scm_from_pointer ((void *) c_address, c_finalizer);
139 }
140 #undef FUNC_NAME
141
142 SCM
143 scm_from_pointer (void *ptr, scm_t_pointer_finalizer finalizer)
144 {
145 SCM ret;
146
147 if (ptr == NULL && finalizer == NULL)
148 ret = null_pointer;
149 else
150 {
151 ret = scm_cell (scm_tc7_pointer, (scm_t_bits) ptr);
152
153 if (finalizer)
154 {
155 /* Register a finalizer for the newly created instance. */
156 GC_finalization_proc prev_finalizer;
157 GC_PTR prev_finalizer_data;
158 GC_REGISTER_FINALIZER_NO_ORDER (SCM2PTR (ret),
159 pointer_finalizer_trampoline,
160 finalizer,
161 &prev_finalizer,
162 &prev_finalizer_data);
163 }
164 }
165
166 return ret;
167 }
168
169 SCM_DEFINE (scm_pointer_address, "pointer-address", 1, 0, 0,
170 (SCM pointer),
171 "Return the numerical value of @var{pointer}.")
172 #define FUNC_NAME s_scm_pointer_address
173 {
174 SCM_VALIDATE_POINTER (1, pointer);
175
176 return scm_from_uintptr ((scm_t_uintptr) SCM_POINTER_VALUE (pointer));
177 }
178 #undef FUNC_NAME
179
180 SCM_DEFINE (scm_pointer_to_scm, "pointer->scm", 1, 0, 0,
181 (SCM pointer),
182 "Unsafely cast @var{pointer} to a Scheme object.\n"
183 "Cross your fingers!")
184 #define FUNC_NAME s_scm_pointer_to_scm
185 {
186 SCM_VALIDATE_POINTER (1, pointer);
187
188 return SCM_PACK ((scm_t_bits) SCM_POINTER_VALUE (pointer));
189 }
190 #undef FUNC_NAME
191
192 SCM_DEFINE (scm_scm_to_pointer, "scm->pointer", 1, 0, 0,
193 (SCM scm),
194 "Return a foreign pointer object with the @code{object-address}\n"
195 "of @var{scm}.")
196 #define FUNC_NAME s_scm_scm_to_pointer
197 {
198 SCM ret;
199
200 ret = scm_from_pointer ((void*) SCM_UNPACK (scm), NULL);
201 if (SCM_NIMP (ret))
202 register_weak_reference (ret, scm);
203
204 return ret;
205 }
206 #undef FUNC_NAME
207
208 SCM_DEFINE (scm_pointer_to_bytevector, "pointer->bytevector", 2, 2, 0,
209 (SCM pointer, SCM len, SCM offset, SCM uvec_type),
210 "Return a bytevector aliasing the @var{len} bytes pointed\n"
211 "to by @var{pointer}.\n\n"
212 "The user may specify an alternate default interpretation for\n"
213 "the memory by passing the @var{uvec_type} argument, to indicate\n"
214 "that the memory is an array of elements of that type.\n"
215 "@var{uvec_type} should be something that\n"
216 "@code{uniform-vector-element-type} would return, like @code{f32}\n"
217 "or @code{s16}.\n\n"
218 "When @var{offset} is passed, it specifies the offset in bytes\n"
219 "relative to @var{pointer} of the memory region aliased by the\n"
220 "returned bytevector.")
221 #define FUNC_NAME s_scm_pointer_to_bytevector
222 {
223 SCM ret;
224 scm_t_int8 *ptr;
225 size_t boffset, blen;
226 scm_t_array_element_type btype;
227
228 SCM_VALIDATE_POINTER (1, pointer);
229 ptr = SCM_POINTER_VALUE (pointer);
230
231 if (SCM_UNLIKELY (ptr == NULL))
232 null_pointer_error (FUNC_NAME);
233
234 if (SCM_UNBNDP (uvec_type))
235 btype = SCM_ARRAY_ELEMENT_TYPE_VU8;
236 else
237 {
238 int i;
239 for (i = 0; i <= SCM_ARRAY_ELEMENT_TYPE_LAST; i++)
240 if (scm_is_eq (uvec_type, scm_i_array_element_types[i]))
241 break;
242 switch (i)
243 {
244 case SCM_ARRAY_ELEMENT_TYPE_VU8:
245 case SCM_ARRAY_ELEMENT_TYPE_U8:
246 case SCM_ARRAY_ELEMENT_TYPE_S8:
247 case SCM_ARRAY_ELEMENT_TYPE_U16:
248 case SCM_ARRAY_ELEMENT_TYPE_S16:
249 case SCM_ARRAY_ELEMENT_TYPE_U32:
250 case SCM_ARRAY_ELEMENT_TYPE_S32:
251 case SCM_ARRAY_ELEMENT_TYPE_U64:
252 case SCM_ARRAY_ELEMENT_TYPE_S64:
253 case SCM_ARRAY_ELEMENT_TYPE_F32:
254 case SCM_ARRAY_ELEMENT_TYPE_F64:
255 case SCM_ARRAY_ELEMENT_TYPE_C32:
256 case SCM_ARRAY_ELEMENT_TYPE_C64:
257 btype = i;
258 break;
259 default:
260 scm_wrong_type_arg_msg (FUNC_NAME, SCM_ARG1, uvec_type,
261 "uniform vector type");
262 }
263 }
264
265 if (SCM_UNBNDP (offset))
266 boffset = 0;
267 else
268 boffset = scm_to_size_t (offset);
269
270 blen = scm_to_size_t (len);
271
272 ret = scm_c_take_typed_bytevector (ptr + boffset, blen, btype, pointer);
273
274 return ret;
275 }
276 #undef FUNC_NAME
277
278 SCM_DEFINE (scm_bytevector_to_pointer, "bytevector->pointer", 1, 1, 0,
279 (SCM bv, SCM offset),
280 "Return a pointer pointer aliasing the memory pointed to by\n"
281 "@var{bv} or @var{offset} bytes after @var{bv} when @var{offset}\n"
282 "is passed.")
283 #define FUNC_NAME s_scm_bytevector_to_pointer
284 {
285 SCM ret;
286 scm_t_int8 *ptr;
287 size_t boffset;
288
289 SCM_VALIDATE_BYTEVECTOR (1, bv);
290 ptr = SCM_BYTEVECTOR_CONTENTS (bv);
291
292 if (SCM_UNBNDP (offset))
293 boffset = 0;
294 else
295 boffset = scm_to_unsigned_integer (offset, 0,
296 SCM_BYTEVECTOR_LENGTH (bv) - 1);
297
298 ret = scm_from_pointer (ptr + boffset, NULL);
299 register_weak_reference (ret, bv);
300 return ret;
301 }
302 #undef FUNC_NAME
303
304 SCM_DEFINE (scm_set_pointer_finalizer_x, "set-pointer-finalizer!", 2, 0, 0,
305 (SCM pointer, SCM finalizer),
306 "Arrange for the C procedure wrapped by @var{finalizer} to be\n"
307 "called on the pointer wrapped by @var{pointer} when @var{pointer}\n"
308 "becomes unreachable. Note: the C procedure should not call into\n"
309 "Scheme. If you need a Scheme finalizer, use guardians.")
310 #define FUNC_NAME s_scm_set_pointer_finalizer_x
311 {
312 void *c_finalizer;
313 GC_finalization_proc prev_finalizer;
314 GC_PTR prev_finalizer_data;
315
316 SCM_VALIDATE_POINTER (1, pointer);
317 SCM_VALIDATE_POINTER (2, finalizer);
318
319 c_finalizer = SCM_POINTER_VALUE (finalizer);
320
321 SCM_SET_CELL_WORD_0 (pointer, SCM_CELL_WORD_0 (pointer) | (1 << 16UL));
322
323 GC_REGISTER_FINALIZER_NO_ORDER (SCM2PTR (pointer),
324 pointer_finalizer_trampoline,
325 c_finalizer,
326 &prev_finalizer,
327 &prev_finalizer_data);
328
329 return SCM_UNSPECIFIED;
330 }
331 #undef FUNC_NAME
332
333 void
334 scm_i_pointer_print (SCM pointer, SCM port, scm_print_state *pstate)
335 {
336 scm_puts ("#<pointer 0x", port);
337 scm_uintprint (scm_to_uintptr (scm_pointer_address (pointer)), 16, port);
338 scm_putc ('>', port);
339 }
340
341 \f
342 /* Non-primitive helpers functions. These procedures could be
343 implemented in terms of the primitives above but would be inefficient
344 (heap allocation overhead, Scheme/C round trips, etc.) */
345
346 SCM_DEFINE (scm_dereference_pointer, "dereference-pointer", 1, 0, 0,
347 (SCM pointer),
348 "Assuming @var{pointer} points to a memory region that\n"
349 "holds a pointer, return this pointer.")
350 #define FUNC_NAME s_scm_dereference_pointer
351 {
352 SCM_VALIDATE_POINTER (1, pointer);
353
354 return scm_from_pointer (* (void **) SCM_POINTER_VALUE (pointer), NULL);
355 }
356 #undef FUNC_NAME
357
358 SCM_DEFINE (scm_string_to_pointer, "string->pointer", 1, 1, 0,
359 (SCM string, SCM encoding),
360 "Return a foreign pointer to a nul-terminated copy of\n"
361 "@var{string} in the given @var{encoding}, defaulting to\n"
362 "the current locale encoding. The C string is freed when\n"
363 "the returned foreign pointer becomes unreachable.\n\n"
364 "This is the Scheme equivalent of @code{scm_to_stringn}.")
365 #define FUNC_NAME s_scm_string_to_pointer
366 {
367 SCM_VALIDATE_STRING (1, string);
368
369 /* XXX: Finalizers slow down libgc; they could be avoided if
370 `scm_to_string' & co. were able to use libgc-allocated memory. */
371
372 if (SCM_UNBNDP (encoding))
373 return scm_from_pointer (scm_to_locale_string (string), free);
374 else
375 {
376 char *enc;
377 SCM ret;
378
379 SCM_VALIDATE_STRING (2, encoding);
380
381 enc = scm_to_locale_string (encoding);
382 scm_dynwind_begin (0);
383 scm_dynwind_free (enc);
384
385 ret = scm_from_pointer
386 (scm_to_stringn (string, NULL, enc,
387 scm_i_get_conversion_strategy (SCM_BOOL_F)),
388 free);
389
390 scm_dynwind_end ();
391
392 return ret;
393 }
394 }
395 #undef FUNC_NAME
396
397 SCM_DEFINE (scm_pointer_to_string, "pointer->string", 1, 2, 0,
398 (SCM pointer, SCM length, SCM encoding),
399 "Return the string representing the C string pointed to by\n"
400 "@var{pointer}. If @var{length} is omitted or @code{-1}, the\n"
401 "string is assumed to be nul-terminated. Otherwise\n"
402 "@var{length} is the number of bytes in memory pointed to by\n"
403 "@var{pointer}. The C string is assumed to be in the given\n"
404 "@var{encoding}, defaulting to the current locale encoding.\n\n"
405 "This is the Scheme equivalent of @code{scm_from_stringn}.")
406 #define FUNC_NAME s_scm_pointer_to_string
407 {
408 size_t len;
409
410 SCM_VALIDATE_POINTER (1, pointer);
411
412 if (SCM_UNBNDP (length)
413 || scm_is_true (scm_eqv_p (length, scm_from_int (-1))))
414 len = (size_t)-1;
415 else
416 len = scm_to_size_t (length);
417
418 if (SCM_UNBNDP (encoding))
419 return scm_from_locale_stringn (SCM_POINTER_VALUE (pointer), len);
420 else
421 {
422 char *enc;
423 SCM ret;
424
425 SCM_VALIDATE_STRING (3, encoding);
426
427 enc = scm_to_locale_string (encoding);
428 scm_dynwind_begin (0);
429 scm_dynwind_free (enc);
430
431 ret = scm_from_stringn (SCM_POINTER_VALUE (pointer), len, enc,
432 scm_i_get_conversion_strategy (SCM_BOOL_F));
433
434 scm_dynwind_end ();
435
436 return ret;
437 }
438 }
439 #undef FUNC_NAME
440
441 \f
442
443 SCM_DEFINE (scm_alignof, "alignof", 1, 0, 0, (SCM type),
444 "Return the alignment of @var{type}, in bytes.\n\n"
445 "@var{type} should be a valid C type, like @code{int}.\n"
446 "Alternately @var{type} may be the symbol @code{*}, in which\n"
447 "case the alignment of a pointer is returned. @var{type} may\n"
448 "also be a list of types, in which case the alignment of a\n"
449 "@code{struct} with ABI-conventional packing is returned.")
450 #define FUNC_NAME s_scm_alignof
451 {
452 if (SCM_I_INUMP (type))
453 {
454 switch (SCM_I_INUM (type))
455 {
456 case SCM_FOREIGN_TYPE_FLOAT:
457 return scm_from_size_t (alignof (float));
458 case SCM_FOREIGN_TYPE_DOUBLE:
459 return scm_from_size_t (alignof (double));
460 case SCM_FOREIGN_TYPE_UINT8:
461 return scm_from_size_t (alignof (scm_t_uint8));
462 case SCM_FOREIGN_TYPE_INT8:
463 return scm_from_size_t (alignof (scm_t_int8));
464 case SCM_FOREIGN_TYPE_UINT16:
465 return scm_from_size_t (alignof (scm_t_uint16));
466 case SCM_FOREIGN_TYPE_INT16:
467 return scm_from_size_t (alignof (scm_t_int16));
468 case SCM_FOREIGN_TYPE_UINT32:
469 return scm_from_size_t (alignof (scm_t_uint32));
470 case SCM_FOREIGN_TYPE_INT32:
471 return scm_from_size_t (alignof (scm_t_int32));
472 case SCM_FOREIGN_TYPE_UINT64:
473 return scm_from_size_t (alignof (scm_t_uint64));
474 case SCM_FOREIGN_TYPE_INT64:
475 return scm_from_size_t (alignof (scm_t_int64));
476 default:
477 scm_wrong_type_arg (FUNC_NAME, 1, type);
478 }
479 }
480 else if (scm_is_eq (type, sym_asterisk))
481 /* a pointer */
482 return scm_from_size_t (alignof (void*));
483 else if (scm_is_pair (type))
484 {
485 /* TYPE is a structure. Section 3-3 of the i386, x86_64, PowerPC,
486 and SPARC P.S. of the System V ABI all say: "Aggregates
487 (structures and arrays) and unions assume the alignment of
488 their most strictly aligned component." */
489 size_t max;
490
491 for (max = 0; scm_is_pair (type); type = SCM_CDR (type))
492 {
493 size_t align;
494
495 align = scm_to_size_t (scm_alignof (SCM_CAR (type)));
496 if (align > max)
497 max = align;
498 }
499
500 return scm_from_size_t (max);
501 }
502 else
503 scm_wrong_type_arg (FUNC_NAME, 1, type);
504 }
505 #undef FUNC_NAME
506
507 SCM_DEFINE (scm_sizeof, "sizeof", 1, 0, 0, (SCM type),
508 "Return the size of @var{type}, in bytes.\n\n"
509 "@var{type} should be a valid C type, like @code{int}.\n"
510 "Alternately @var{type} may be the symbol @code{*}, in which\n"
511 "case the size of a pointer is returned. @var{type} may also\n"
512 "be a list of types, in which case the size of a @code{struct}\n"
513 "with ABI-conventional packing is returned.")
514 #define FUNC_NAME s_scm_sizeof
515 {
516 if (SCM_I_INUMP (type))
517 {
518 switch (SCM_I_INUM (type))
519 {
520 case SCM_FOREIGN_TYPE_FLOAT:
521 return scm_from_size_t (sizeof (float));
522 case SCM_FOREIGN_TYPE_DOUBLE:
523 return scm_from_size_t (sizeof (double));
524 case SCM_FOREIGN_TYPE_UINT8:
525 return scm_from_size_t (sizeof (scm_t_uint8));
526 case SCM_FOREIGN_TYPE_INT8:
527 return scm_from_size_t (sizeof (scm_t_int8));
528 case SCM_FOREIGN_TYPE_UINT16:
529 return scm_from_size_t (sizeof (scm_t_uint16));
530 case SCM_FOREIGN_TYPE_INT16:
531 return scm_from_size_t (sizeof (scm_t_int16));
532 case SCM_FOREIGN_TYPE_UINT32:
533 return scm_from_size_t (sizeof (scm_t_uint32));
534 case SCM_FOREIGN_TYPE_INT32:
535 return scm_from_size_t (sizeof (scm_t_int32));
536 case SCM_FOREIGN_TYPE_UINT64:
537 return scm_from_size_t (sizeof (scm_t_uint64));
538 case SCM_FOREIGN_TYPE_INT64:
539 return scm_from_size_t (sizeof (scm_t_int64));
540 default:
541 scm_wrong_type_arg (FUNC_NAME, 1, type);
542 }
543 }
544 else if (scm_is_eq (type, sym_asterisk))
545 /* a pointer */
546 return scm_from_size_t (sizeof (void*));
547 else if (scm_is_pair (type))
548 {
549 /* a struct */
550 size_t off = 0;
551 while (scm_is_pair (type))
552 {
553 off = ROUND_UP (off, scm_to_size_t (scm_alignof (scm_car (type))));
554 off += scm_to_size_t (scm_sizeof (scm_car (type)));
555 type = scm_cdr (type);
556 }
557 return scm_from_size_t (off);
558 }
559 else
560 scm_wrong_type_arg (FUNC_NAME, 1, type);
561 }
562 #undef FUNC_NAME
563
564
565 /* return 1 on success, 0 on failure */
566 static int
567 parse_ffi_type (SCM type, int return_p, long *n_structs, long *n_struct_elts)
568 {
569 if (SCM_I_INUMP (type))
570 {
571 if ((SCM_I_INUM (type) < 0 )
572 || (SCM_I_INUM (type) > SCM_FOREIGN_TYPE_LAST))
573 return 0;
574 else if (SCM_I_INUM (type) == SCM_FOREIGN_TYPE_VOID && !return_p)
575 return 0;
576 else
577 return 1;
578 }
579 else if (scm_is_eq (type, sym_asterisk))
580 /* a pointer */
581 return 1;
582 else
583 {
584 long len;
585
586 len = scm_ilength (type);
587 if (len < 1)
588 return 0;
589 while (len--)
590 {
591 if (!parse_ffi_type (scm_car (type), 0, n_structs, n_struct_elts))
592 return 0;
593 (*n_struct_elts)++;
594 type = scm_cdr (type);
595 }
596 (*n_structs)++;
597 return 1;
598 }
599 }
600
601 static void
602 fill_ffi_type (SCM type, ffi_type *ftype, ffi_type ***type_ptrs,
603 ffi_type **types)
604 {
605 if (SCM_I_INUMP (type))
606 {
607 switch (SCM_I_INUM (type))
608 {
609 case SCM_FOREIGN_TYPE_FLOAT:
610 *ftype = ffi_type_float;
611 return;
612 case SCM_FOREIGN_TYPE_DOUBLE:
613 *ftype = ffi_type_double;
614 return;
615 case SCM_FOREIGN_TYPE_UINT8:
616 *ftype = ffi_type_uint8;
617 return;
618 case SCM_FOREIGN_TYPE_INT8:
619 *ftype = ffi_type_sint8;
620 return;
621 case SCM_FOREIGN_TYPE_UINT16:
622 *ftype = ffi_type_uint16;
623 return;
624 case SCM_FOREIGN_TYPE_INT16:
625 *ftype = ffi_type_sint16;
626 return;
627 case SCM_FOREIGN_TYPE_UINT32:
628 *ftype = ffi_type_uint32;
629 return;
630 case SCM_FOREIGN_TYPE_INT32:
631 *ftype = ffi_type_sint32;
632 return;
633 case SCM_FOREIGN_TYPE_UINT64:
634 *ftype = ffi_type_uint64;
635 return;
636 case SCM_FOREIGN_TYPE_INT64:
637 *ftype = ffi_type_sint64;
638 return;
639 case SCM_FOREIGN_TYPE_VOID:
640 *ftype = ffi_type_void;
641 return;
642 default:
643 scm_wrong_type_arg_msg ("pointer->procedure", 0, type,
644 "foreign type");
645 }
646 }
647 else if (scm_is_eq (type, sym_asterisk))
648 /* a pointer */
649 {
650 *ftype = ffi_type_pointer;
651 return;
652 }
653 else
654 {
655 long i, len;
656
657 len = scm_ilength (type);
658
659 ftype->size = 0;
660 ftype->alignment = 0;
661 ftype->type = FFI_TYPE_STRUCT;
662 ftype->elements = *type_ptrs;
663 *type_ptrs += len + 1;
664
665 for (i = 0; i < len; i++)
666 {
667 ftype->elements[i] = *types;
668 *types += 1;
669 fill_ffi_type (scm_car (type), ftype->elements[i],
670 type_ptrs, types);
671 type = scm_cdr (type);
672 }
673 ftype->elements[i] = NULL;
674 }
675 }
676
677 /* Return a "cif" (call interface) for the given RETURN_TYPE and
678 ARG_TYPES. */
679 static ffi_cif *
680 make_cif (SCM return_type, SCM arg_types, const char *caller)
681 #define FUNC_NAME caller
682 {
683 SCM walk;
684 long i, nargs, n_structs, n_struct_elts;
685 size_t cif_len;
686 char *mem;
687 ffi_cif *cif;
688 ffi_type **type_ptrs;
689 ffi_type *types;
690
691 nargs = scm_ilength (arg_types);
692 SCM_ASSERT (nargs >= 0, arg_types, 3, FUNC_NAME);
693 /* fixme: assert nargs < 1<<32 */
694 n_structs = n_struct_elts = 0;
695
696 /* For want of talloc, we're going to have to do this in two passes: first we
697 figure out how much memory is needed for all types, then we allocate the
698 cif and the types all in one block. */
699 if (!parse_ffi_type (return_type, 1, &n_structs, &n_struct_elts))
700 scm_wrong_type_arg (FUNC_NAME, 1, return_type);
701 for (walk = arg_types; scm_is_pair (walk); walk = scm_cdr (walk))
702 if (!parse_ffi_type (scm_car (walk), 0, &n_structs, &n_struct_elts))
703 scm_wrong_type_arg (FUNC_NAME, 3, scm_car (walk));
704
705 /* the memory: with space for the cif itself */
706 cif_len = sizeof (ffi_cif);
707
708 /* then ffi_type pointers: one for each arg, one for each struct
709 element, and one for each struct (for null-termination) */
710 cif_len = (ROUND_UP (cif_len, alignof(void*))
711 + (nargs + n_structs + n_struct_elts)*sizeof(void*));
712
713 /* then the ffi_type structs themselves, one per arg and struct element, and
714 one for the return val */
715 cif_len = (ROUND_UP (cif_len, alignof(ffi_type))
716 + (nargs + n_struct_elts + 1)*sizeof(ffi_type));
717
718 mem = scm_gc_malloc_pointerless (cif_len, "foreign");
719 /* ensure all the memory is initialized, even the holes */
720 memset (mem, 0, cif_len);
721 cif = (ffi_cif *) mem;
722
723 /* reuse cif_len to walk through the mem */
724 cif_len = ROUND_UP (sizeof (ffi_cif), alignof(void*));
725 type_ptrs = (ffi_type**)(mem + cif_len);
726 cif_len = ROUND_UP (cif_len
727 + (nargs + n_structs + n_struct_elts)*sizeof(void*),
728 alignof(ffi_type));
729 types = (ffi_type*)(mem + cif_len);
730
731 /* whew. now knit the pointers together. */
732 cif->rtype = types++;
733 fill_ffi_type (return_type, cif->rtype, &type_ptrs, &types);
734 cif->arg_types = type_ptrs;
735 type_ptrs += nargs;
736 for (walk = arg_types, i = 0; scm_is_pair (walk); walk = scm_cdr (walk), i++)
737 {
738 cif->arg_types[i] = types++;
739 fill_ffi_type (scm_car (walk), cif->arg_types[i], &type_ptrs, &types);
740 }
741
742 /* round out the cif, and we're done. */
743 cif->abi = FFI_DEFAULT_ABI;
744 cif->nargs = nargs;
745 cif->bytes = 0;
746 cif->flags = 0;
747
748 if (FFI_OK != ffi_prep_cif (cif, FFI_DEFAULT_ABI, cif->nargs, cif->rtype,
749 cif->arg_types))
750 SCM_MISC_ERROR ("ffi_prep_cif failed", SCM_EOL);
751
752 return cif;
753 }
754 #undef FUNC_NAME
755
756 SCM_DEFINE (scm_pointer_to_procedure, "pointer->procedure", 3, 0, 0,
757 (SCM return_type, SCM func_ptr, SCM arg_types),
758 "Make a foreign function.\n\n"
759 "Given the foreign void pointer @var{func_ptr}, its argument and\n"
760 "return types @var{arg_types} and @var{return_type}, return a\n"
761 "procedure that will pass arguments to the foreign function\n"
762 "and return appropriate values.\n\n"
763 "@var{arg_types} should be a list of foreign types.\n"
764 "@code{return_type} should be a foreign type.")
765 #define FUNC_NAME s_scm_pointer_to_procedure
766 {
767 ffi_cif *cif;
768
769 SCM_VALIDATE_POINTER (2, func_ptr);
770
771 cif = make_cif (return_type, arg_types, FUNC_NAME);
772
773 return cif_to_procedure (scm_from_pointer (cif, NULL), func_ptr);
774 }
775 #undef FUNC_NAME
776
777 \f
778
779 /* Pre-generate trampolines for less than 10 arguments. */
780
781 #ifdef WORDS_BIGENDIAN
782 #define OBJCODE_HEADER 0, 0, 0, 8, 0, 0, 0, 40
783 #define META_HEADER 0, 0, 0, 32, 0, 0, 0, 0
784 #else
785 #define OBJCODE_HEADER 8, 0, 0, 0, 40, 0, 0, 0
786 #define META_HEADER 32, 0, 0, 0, 0, 0, 0, 0
787 #endif
788
789 #define CODE(nreq) \
790 OBJCODE_HEADER, \
791 /* 0 */ scm_op_assert_nargs_ee, 0, nreq, /* assert number of args */ \
792 /* 3 */ scm_op_object_ref, 0, /* push the pair with the cif and the function pointer */ \
793 /* 5 */ scm_op_foreign_call, nreq, /* and call (will return value as well) */ \
794 /* 7 */ scm_op_nop, \
795 /* 8 */ META (3, 7, nreq)
796
797 #define META(start, end, nreq) \
798 META_HEADER, \
799 /* 0 */ scm_op_make_eol, /* bindings */ \
800 /* 1 */ scm_op_make_eol, /* sources */ \
801 /* 2 */ scm_op_make_int8, start, scm_op_make_int8, end, /* arity: from ip N to ip N */ \
802 /* 6 */ scm_op_make_int8, nreq, /* the arity is N required args */ \
803 /* 8 */ scm_op_list, 0, 3, /* make a list of those 3 vals */ \
804 /* 11 */ scm_op_list, 0, 1, /* and the arities will be a list of that one list */ \
805 /* 14 */ scm_op_load_symbol, 0, 0, 4, 'n', 'a', 'm', 'e', /* `name' */ \
806 /* 22 */ scm_op_object_ref, 1, /* the name from the object table */ \
807 /* 24 */ scm_op_cons, /* make a pair for the properties */ \
808 /* 25 */ scm_op_list, 0, 4, /* pack bindings, sources, and arities into list */ \
809 /* 28 */ scm_op_return, /* and return */ \
810 /* 29 */ scm_op_nop, scm_op_nop, scm_op_nop \
811 /* 32 */
812
813 static const struct
814 {
815 scm_t_uint64 dummy; /* ensure 8-byte alignment; perhaps there's a better way */
816 const scm_t_uint8 bytes[10 * (sizeof (struct scm_objcode) + 8
817 + sizeof (struct scm_objcode) + 32)];
818 } raw_bytecode = {
819 0,
820 {
821 CODE (0), CODE (1), CODE (2), CODE (3), CODE (4),
822 CODE (5), CODE (6), CODE (7), CODE (8), CODE (9)
823 }
824 };
825
826 #undef CODE
827 #undef META
828 #undef OBJCODE_HEADER
829 #undef META_HEADER
830
831 /*
832 (defun generate-objcode-cells (n)
833 "Generate objcode cells for up to N arguments"
834 (interactive "p")
835 (let ((i 0))
836 (while (< i n)
837 (insert
838 (format " { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + %d) },\n"
839 (* (+ 4 4 8 4 4 32) i)))
840 (insert " { SCM_BOOL_F, SCM_PACK (0) },\n")
841 (setq i (1+ i)))))
842 */
843 #define STATIC_OBJCODE_TAG \
844 SCM_PACK (SCM_MAKE_OBJCODE_TAG (SCM_OBJCODE_TYPE_STATIC, 0))
845
846 static const struct
847 {
848 scm_t_uint64 dummy; /* alignment */
849 scm_t_cell cells[10 * 2]; /* 10 double cells */
850 } objcode_cells = {
851 0,
852 /* C-u 1 0 M-x generate-objcode-cells RET */
853 {
854 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 0) },
855 { SCM_BOOL_F, SCM_PACK (0) },
856 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 56) },
857 { SCM_BOOL_F, SCM_PACK (0) },
858 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 112) },
859 { SCM_BOOL_F, SCM_PACK (0) },
860 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 168) },
861 { SCM_BOOL_F, SCM_PACK (0) },
862 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 224) },
863 { SCM_BOOL_F, SCM_PACK (0) },
864 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 280) },
865 { SCM_BOOL_F, SCM_PACK (0) },
866 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 336) },
867 { SCM_BOOL_F, SCM_PACK (0) },
868 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 392) },
869 { SCM_BOOL_F, SCM_PACK (0) },
870 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 448) },
871 { SCM_BOOL_F, SCM_PACK (0) },
872 { STATIC_OBJCODE_TAG, SCM_PACK (raw_bytecode.bytes + 504) },
873 { SCM_BOOL_F, SCM_PACK (0) }
874 }
875 };
876
877 static const SCM objcode_trampolines[10] = {
878 SCM_PACK (objcode_cells.cells+0),
879 SCM_PACK (objcode_cells.cells+2),
880 SCM_PACK (objcode_cells.cells+4),
881 SCM_PACK (objcode_cells.cells+6),
882 SCM_PACK (objcode_cells.cells+8),
883 SCM_PACK (objcode_cells.cells+10),
884 SCM_PACK (objcode_cells.cells+12),
885 SCM_PACK (objcode_cells.cells+14),
886 SCM_PACK (objcode_cells.cells+16),
887 SCM_PACK (objcode_cells.cells+18),
888 };
889
890 static SCM
891 cif_to_procedure (SCM cif, SCM func_ptr)
892 {
893 ffi_cif *c_cif;
894 unsigned int nargs;
895 SCM objcode, table, ret;
896
897 c_cif = (ffi_cif *) SCM_POINTER_VALUE (cif);
898 nargs = c_cif->nargs;
899
900 if (nargs < 10)
901 objcode = objcode_trampolines[nargs];
902 else
903 scm_misc_error ("make-foreign-function", "args >= 10 currently unimplemented",
904 SCM_EOL);
905
906 table = scm_c_make_vector (2, SCM_UNDEFINED);
907 SCM_SIMPLE_VECTOR_SET (table, 0, scm_cons (cif, func_ptr));
908 SCM_SIMPLE_VECTOR_SET (table, 1, SCM_BOOL_F); /* name */
909 ret = scm_make_program (objcode, table, SCM_BOOL_F);
910
911 return ret;
912 }
913
914 /* Set *LOC to the foreign representation of X with TYPE. */
915 static void
916 unpack (const ffi_type *type, void *loc, SCM x)
917 #define FUNC_NAME "scm_i_foreign_call"
918 {
919 switch (type->type)
920 {
921 case FFI_TYPE_FLOAT:
922 *(float *) loc = scm_to_double (x);
923 break;
924 case FFI_TYPE_DOUBLE:
925 *(double *) loc = scm_to_double (x);
926 break;
927 case FFI_TYPE_UINT8:
928 *(scm_t_uint8 *) loc = scm_to_uint8 (x);
929 break;
930 case FFI_TYPE_SINT8:
931 *(scm_t_int8 *) loc = scm_to_int8 (x);
932 break;
933 case FFI_TYPE_UINT16:
934 *(scm_t_uint16 *) loc = scm_to_uint16 (x);
935 break;
936 case FFI_TYPE_SINT16:
937 *(scm_t_int16 *) loc = scm_to_int16 (x);
938 break;
939 case FFI_TYPE_UINT32:
940 *(scm_t_uint32 *) loc = scm_to_uint32 (x);
941 break;
942 case FFI_TYPE_SINT32:
943 *(scm_t_int32 *) loc = scm_to_int32 (x);
944 break;
945 case FFI_TYPE_UINT64:
946 *(scm_t_uint64 *) loc = scm_to_uint64 (x);
947 break;
948 case FFI_TYPE_SINT64:
949 *(scm_t_int64 *) loc = scm_to_int64 (x);
950 break;
951 case FFI_TYPE_STRUCT:
952 SCM_VALIDATE_POINTER (1, x);
953 memcpy (loc, SCM_POINTER_VALUE (x), type->size);
954 break;
955 case FFI_TYPE_POINTER:
956 SCM_VALIDATE_POINTER (1, x);
957 *(void **) loc = SCM_POINTER_VALUE (x);
958 break;
959 case FFI_TYPE_VOID:
960 /* Do nothing. */
961 break;
962 default:
963 abort ();
964 }
965 }
966 #undef FUNC_NAME
967
968 /* Return a Scheme representation of the foreign value at LOC of type
969 TYPE. When RETURN_VALUE_P is true, LOC is assumed to point to a
970 return value buffer; otherwise LOC is assumed to point to an
971 argument buffer. */
972 static SCM
973 pack (const ffi_type * type, const void *loc, int return_value_p)
974 {
975 switch (type->type)
976 {
977 case FFI_TYPE_VOID:
978 return SCM_UNSPECIFIED;
979 case FFI_TYPE_FLOAT:
980 return scm_from_double (*(float *) loc);
981 case FFI_TYPE_DOUBLE:
982 return scm_from_double (*(double *) loc);
983
984 /* For integer return values smaller than `int', libffi stores the
985 result in an `ffi_arg'-long buffer, of which only the
986 significant bits must be kept---hence the pair of casts below.
987 See <http://thread.gmane.org/gmane.comp.lib.ffi.general/406>
988 for details. */
989
990 case FFI_TYPE_UINT8:
991 if (return_value_p)
992 return scm_from_uint8 ((scm_t_uint8) *(ffi_arg *) loc);
993 else
994 return scm_from_uint8 (* (scm_t_uint8 *) loc);
995 case FFI_TYPE_SINT8:
996 if (return_value_p)
997 return scm_from_int8 ((scm_t_int8) *(ffi_arg *) loc);
998 else
999 return scm_from_int8 (* (scm_t_int8 *) loc);
1000 case FFI_TYPE_UINT16:
1001 if (return_value_p)
1002 return scm_from_uint16 ((scm_t_uint16) *(ffi_arg *) loc);
1003 else
1004 return scm_from_uint16 (* (scm_t_uint16 *) loc);
1005 case FFI_TYPE_SINT16:
1006 if (return_value_p)
1007 return scm_from_int16 ((scm_t_int16) *(ffi_arg *) loc);
1008 else
1009 return scm_from_int16 (* (scm_t_int16 *) loc);
1010 case FFI_TYPE_UINT32:
1011 if (return_value_p)
1012 return scm_from_uint32 ((scm_t_uint32) *(ffi_arg *) loc);
1013 else
1014 return scm_from_uint32 (* (scm_t_uint32 *) loc);
1015 case FFI_TYPE_SINT32:
1016 if (return_value_p)
1017 return scm_from_int32 ((scm_t_int32) *(ffi_arg *) loc);
1018 else
1019 return scm_from_int32 (* (scm_t_int32 *) loc);
1020 case FFI_TYPE_UINT64:
1021 return scm_from_uint64 (*(scm_t_uint64 *) loc);
1022 case FFI_TYPE_SINT64:
1023 return scm_from_int64 (*(scm_t_int64 *) loc);
1024
1025 case FFI_TYPE_STRUCT:
1026 {
1027 void *mem = scm_gc_malloc_pointerless (type->size, "foreign");
1028 memcpy (mem, loc, type->size);
1029 return scm_from_pointer (mem, NULL);
1030 }
1031 case FFI_TYPE_POINTER:
1032 return scm_from_pointer (*(void **) loc, NULL);
1033 default:
1034 abort ();
1035 }
1036 }
1037
1038
1039 SCM
1040 scm_i_foreign_call (SCM foreign, const SCM *argv)
1041 {
1042 /* FOREIGN is the pair that cif_to_procedure set as the 0th element of the
1043 objtable. */
1044 ffi_cif *cif;
1045 void (*func) (void);
1046 scm_t_uint8 *data;
1047 void *rvalue;
1048 void **args;
1049 unsigned i;
1050 size_t arg_size;
1051 scm_t_ptrdiff off;
1052
1053 cif = SCM_POINTER_VALUE (SCM_CAR (foreign));
1054 func = SCM_POINTER_VALUE (SCM_CDR (foreign));
1055
1056 /* Argument pointers. */
1057 args = alloca (sizeof (void *) * cif->nargs);
1058
1059 /* Compute the worst-case amount of memory needed to store all the argument
1060 values. Note: as of libffi 3.0.9 `cif->bytes' is undocumented and is zero,
1061 so it can't be used for that purpose. */
1062 for (i = 0, arg_size = 0; i < cif->nargs; i++)
1063 arg_size += cif->arg_types[i]->size + cif->arg_types[i]->alignment - 1;
1064
1065 /* Space for argument values, followed by return value. */
1066 data = alloca (arg_size + cif->rtype->size
1067 + max (sizeof (void *), cif->rtype->alignment));
1068
1069 /* Unpack ARGV to native values, setting ARGV pointers. */
1070 for (i = 0, off = 0;
1071 i < cif->nargs;
1072 off = (scm_t_uint8 *) args[i] - data + cif->arg_types[i]->size,
1073 i++)
1074 {
1075 /* Suitably align the storage area for argument I. */
1076 args[i] = (void *) ROUND_UP ((scm_t_uintptr) data + off,
1077 cif->arg_types[i]->alignment);
1078 assert ((scm_t_uintptr) args[i] % cif->arg_types[i]->alignment == 0);
1079 unpack (cif->arg_types[i], args[i], argv[i]);
1080 }
1081
1082 /* Prepare space for the return value. On some platforms, such as
1083 `armv5tel-*-linux-gnueabi', the return value has to be at least
1084 word-aligned, even if its type doesn't have any alignment requirement as is
1085 the case with `char'. */
1086 rvalue = (void *) ROUND_UP ((scm_t_uintptr) data + off,
1087 max (sizeof (void *), cif->rtype->alignment));
1088
1089 /* off we go! */
1090 ffi_call (cif, func, rvalue, args);
1091
1092 return pack (cif->rtype, rvalue, 1);
1093 }
1094
1095 \f
1096 /* Function pointers aka. "callbacks" or "closures". */
1097
1098 #ifdef FFI_CLOSURES
1099
1100 /* Trampoline to invoke a libffi closure that wraps a Scheme
1101 procedure. */
1102 static void
1103 invoke_closure (ffi_cif *cif, void *ret, void **args, void *data)
1104 {
1105 size_t i;
1106 SCM proc, *argv, result;
1107
1108 proc = PTR2SCM (data);
1109
1110 argv = alloca (cif->nargs * sizeof (*argv));
1111
1112 /* Pack ARGS to SCM values, setting ARGV pointers. */
1113 for (i = 0; i < cif->nargs; i++)
1114 argv[i] = pack (cif->arg_types[i], args[i], 0);
1115
1116 result = scm_call_n (proc, argv, cif->nargs);
1117
1118 unpack (cif->rtype, ret, result);
1119 }
1120
1121 SCM_DEFINE (scm_procedure_to_pointer, "procedure->pointer", 3, 0, 0,
1122 (SCM return_type, SCM proc, SCM arg_types),
1123 "Return a pointer to a C function of type @var{return-type}\n"
1124 "taking arguments of types @var{arg-types} (a list) and\n"
1125 "behaving as a proxy to procedure @var{proc}. Thus\n"
1126 "@var{proc}'s arity, supported argument types, and return\n"
1127 "type should match @var{return-type} and @var{arg-types}.\n")
1128 #define FUNC_NAME s_scm_procedure_to_pointer
1129 {
1130 SCM pointer;
1131 ffi_cif *cif;
1132 ffi_status err;
1133 void *closure, *executable;
1134
1135 cif = make_cif (return_type, arg_types, FUNC_NAME);
1136
1137 closure = ffi_closure_alloc (sizeof (ffi_closure), &executable);
1138 err = ffi_prep_closure_loc ((ffi_closure *) closure, cif,
1139 invoke_closure, SCM2PTR (proc),
1140 executable);
1141 if (err != FFI_OK)
1142 {
1143 ffi_closure_free (closure);
1144 SCM_MISC_ERROR ("`ffi_prep_closure_loc' failed", SCM_EOL);
1145 }
1146
1147 if (closure == executable)
1148 pointer = scm_from_pointer (executable, ffi_closure_free);
1149 else
1150 {
1151 /* CLOSURE needs to be freed eventually. However, since
1152 `GC_all_interior_pointers' is disabled, we can't just register
1153 a finalizer for CLOSURE. Instead, we create a pointer object
1154 for CLOSURE, with a finalizer, and register it as a weak
1155 reference of POINTER. */
1156 SCM friend;
1157
1158 pointer = scm_from_pointer (executable, NULL);
1159 friend = scm_from_pointer (closure, ffi_closure_free);
1160
1161 register_weak_reference (pointer, friend);
1162 }
1163
1164 return pointer;
1165 }
1166 #undef FUNC_NAME
1167
1168 #endif /* FFI_CLOSURES */
1169
1170 \f
1171
1172 static void
1173 scm_init_foreign (void)
1174 {
1175 #ifndef SCM_MAGIC_SNARFER
1176 #include "libguile/foreign.x"
1177 #endif
1178 scm_define (sym_void, scm_from_uint8 (SCM_FOREIGN_TYPE_VOID));
1179 scm_define (sym_float, scm_from_uint8 (SCM_FOREIGN_TYPE_FLOAT));
1180 scm_define (sym_double, scm_from_uint8 (SCM_FOREIGN_TYPE_DOUBLE));
1181 scm_define (sym_uint8, scm_from_uint8 (SCM_FOREIGN_TYPE_UINT8));
1182 scm_define (sym_int8, scm_from_uint8 (SCM_FOREIGN_TYPE_INT8));
1183 scm_define (sym_uint16, scm_from_uint8 (SCM_FOREIGN_TYPE_UINT16));
1184 scm_define (sym_int16, scm_from_uint8 (SCM_FOREIGN_TYPE_INT16));
1185 scm_define (sym_uint32, scm_from_uint8 (SCM_FOREIGN_TYPE_UINT32));
1186 scm_define (sym_int32, scm_from_uint8 (SCM_FOREIGN_TYPE_INT32));
1187 scm_define (sym_uint64, scm_from_uint8 (SCM_FOREIGN_TYPE_UINT64));
1188 scm_define (sym_int64, scm_from_uint8 (SCM_FOREIGN_TYPE_INT64));
1189
1190 scm_define (sym_short,
1191 #if SIZEOF_SHORT == 8
1192 scm_from_uint8 (SCM_FOREIGN_TYPE_INT64)
1193 #elif SIZEOF_SHORT == 4
1194 scm_from_uint8 (SCM_FOREIGN_TYPE_INT32)
1195 #elif SIZEOF_SHORT == 2
1196 scm_from_uint8 (SCM_FOREIGN_TYPE_INT16)
1197 #else
1198 # error unsupported sizeof (short)
1199 #endif
1200 );
1201
1202 scm_define (sym_unsigned_short,
1203 #if SIZEOF_SHORT == 8
1204 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT64)
1205 #elif SIZEOF_SHORT == 4
1206 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT32)
1207 #elif SIZEOF_SHORT == 2
1208 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT16)
1209 #else
1210 # error unsupported sizeof (short)
1211 #endif
1212 );
1213
1214 scm_define (sym_int,
1215 #if SIZEOF_INT == 8
1216 scm_from_uint8 (SCM_FOREIGN_TYPE_INT64)
1217 #elif SIZEOF_INT == 4
1218 scm_from_uint8 (SCM_FOREIGN_TYPE_INT32)
1219 #else
1220 # error unsupported sizeof (int)
1221 #endif
1222 );
1223
1224 scm_define (sym_unsigned_int,
1225 #if SIZEOF_UNSIGNED_INT == 8
1226 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT64)
1227 #elif SIZEOF_UNSIGNED_INT == 4
1228 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT32)
1229 #else
1230 # error unsupported sizeof (unsigned int)
1231 #endif
1232 );
1233
1234 scm_define (sym_long,
1235 #if SIZEOF_LONG == 8
1236 scm_from_uint8 (SCM_FOREIGN_TYPE_INT64)
1237 #elif SIZEOF_LONG == 4
1238 scm_from_uint8 (SCM_FOREIGN_TYPE_INT32)
1239 #else
1240 # error unsupported sizeof (long)
1241 #endif
1242 );
1243
1244 scm_define (sym_unsigned_long,
1245 #if SIZEOF_UNSIGNED_LONG == 8
1246 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT64)
1247 #elif SIZEOF_UNSIGNED_LONG == 4
1248 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT32)
1249 #else
1250 # error unsupported sizeof (unsigned long)
1251 #endif
1252 );
1253
1254 scm_define (sym_size_t,
1255 #if SIZEOF_SIZE_T == 8
1256 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT64)
1257 #elif SIZEOF_SIZE_T == 4
1258 scm_from_uint8 (SCM_FOREIGN_TYPE_UINT32)
1259 #else
1260 # error unsupported sizeof (size_t)
1261 #endif
1262 );
1263
1264 null_pointer = scm_cell (scm_tc7_pointer, 0);
1265 scm_define (sym_null, null_pointer);
1266 }
1267
1268 void
1269 scm_register_foreign (void)
1270 {
1271 scm_c_register_extension ("libguile-" SCM_EFFECTIVE_VERSION,
1272 "scm_init_foreign",
1273 (scm_t_extension_init_func)scm_init_foreign,
1274 NULL);
1275 pointer_weak_refs = scm_make_weak_key_hash_table (SCM_UNDEFINED);
1276 }
1277
1278 /*
1279 Local Variables:
1280 c-file-style: "gnu"
1281 End:
1282 */