mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* module/rnrs/bytevectors.scm: Rename to (rnrs bytevectors), from (rnrs bytevector), to match the name from the R6RS. * benchmark-suite/benchmarks/bytevectors.bm: * doc/ref/api-data.texi: * doc/ref/api-foreign.texi: * libguile/bytevectors.c: * module/6/rnrs.scm: * module/language/assembly.scm: * module/language/assembly/compile-bytecode.scm: * module/language/assembly/decompile-bytecode.scm: * module/language/glil/compile-assembly.scm: * module/language/tree-il/primitives.scm: * module/srfi/srfi-4.scm: * module/srfi/srfi-4/gnu.scm: * module/system/foreign.scm: * test-suite/standalone/test-ffi: * test-suite/tests/asm-to-bytecode.test: * test-suite/tests/bytevectors.test: * test-suite/tests/foreign.test: * test-suite/tests/r6rs-ports.test: Update all referrers.
106 lines
3.7 KiB
Scheme
106 lines
3.7 KiB
Scheme
;;;; Copyright (C) 2010 Free Software Foundation, Inc.
|
||
;;;;
|
||
;;;; This library is free software; you can redistribute it and/or
|
||
;;;; modify it under the terms of the GNU Lesser General Public
|
||
;;;; License as published by the Free Software Foundation; either
|
||
;;;; version 2.1 of the License, or (at your option) any later version.
|
||
;;;;
|
||
;;;; This library is distributed in the hope that it will be useful,
|
||
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
;;;; Lesser General Public License for more details.
|
||
;;;;
|
||
;;;; You should have received a copy of the GNU Lesser General Public
|
||
;;;; License along with this library; if not, write to the Free Software
|
||
;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
;;;;
|
||
|
||
|
||
(define-module (system foreign)
|
||
#:use-module (rnrs bytevectors)
|
||
#:export (void
|
||
float double
|
||
int unsigned-int long unsigned-long size_t
|
||
int8 uint8
|
||
uint16 int16
|
||
uint32 int32
|
||
uint64 int64
|
||
%null-pointer
|
||
|
||
sizeof alignof
|
||
|
||
foreign-ref foreign-set!
|
||
foreign->bytevector bytevector->foreign
|
||
foreign-set-finalizer!
|
||
make-foreign-function
|
||
make-c-struct parse-c-struct))
|
||
|
||
(load-extension (string-append "libguile-" (effective-version))
|
||
"scm_init_foreign")
|
||
|
||
(define *writers*
|
||
`((,float . ,bytevector-ieee-single-native-set!)
|
||
(,double . ,bytevector-ieee-double-native-set!)
|
||
(,int8 . ,bytevector-s8-set!)
|
||
(,uint8 . ,bytevector-u8-set!)
|
||
(,int16 . ,bytevector-s16-native-set!)
|
||
(,uint16 . ,bytevector-u16-native-set!)
|
||
(,int32 . ,bytevector-s32-native-set!)
|
||
(,uint32 . ,bytevector-u32-native-set!)
|
||
(,int64 . ,bytevector-s64-native-set!)
|
||
(,uint64 . ,bytevector-u64-native-set!)))
|
||
|
||
(define *readers*
|
||
`((,float . ,bytevector-ieee-single-native-ref)
|
||
(,double . ,bytevector-ieee-double-native-ref)
|
||
(,int8 . ,bytevector-s8-ref)
|
||
(,uint8 . ,bytevector-u8-ref)
|
||
(,int16 . ,bytevector-s16-native-ref)
|
||
(,uint16 . ,bytevector-u16-native-ref)
|
||
(,int32 . ,bytevector-s32-native-ref)
|
||
(,uint32 . ,bytevector-u32-native-ref)
|
||
(,int64 . ,bytevector-s64-native-ref)
|
||
(,uint64 . ,bytevector-u64-native-ref)))
|
||
|
||
(define (align off alignment)
|
||
(1+ (logior (1- off) (1- alignment))))
|
||
|
||
(define (write-c-struct bv offset types vals)
|
||
(let lp ((offset offset) (types types) (vals vals))
|
||
(cond
|
||
((not (pair? types))
|
||
(or (null? vals)
|
||
(error "too many values" vals)))
|
||
((not (pair? vals))
|
||
(error "too few values" types))
|
||
(else
|
||
;; alignof will error-check
|
||
(let* ((type (car types))
|
||
(offset (align offset (alignof type))))
|
||
(if (pair? type)
|
||
(write-c-struct bv offset (car types) (car vals))
|
||
((assv-ref *writers* type) bv offset (car vals)))
|
||
(lp (+ offset (sizeof type)) (cdr types) (cdr vals)))))))
|
||
|
||
(define (read-c-struct bv offset types)
|
||
(let lp ((offset offset) (types types) (vals '()))
|
||
(cond
|
||
((not (pair? types))
|
||
(reverse vals))
|
||
(else
|
||
;; alignof will error-check
|
||
(let* ((type (car types))
|
||
(offset (align offset (alignof type))))
|
||
(lp (+ offset (sizeof type)) (cdr types)
|
||
(cons (if (pair? type)
|
||
(read-c-struct bv offset (car types))
|
||
((assv-ref *readers* type) bv offset))
|
||
vals)))))))
|
||
|
||
(define (make-c-struct types vals)
|
||
(let ((bv (make-bytevector (sizeof types) 0)))
|
||
(write-c-struct bv 0 types vals)
|
||
(bytevector->foreign bv)))
|
||
|
||
(define (parse-c-struct foreign types)
|
||
(read-c-struct (foreign->bytevector foreign) 0 types))
|