;;; Foreign function interface for CLISP
;;; Bruno Haible 19.2.1995

(in-package "FFI" :use '("LISP"))

(export '(def-c-type def-c-var def-c-call-out def-call-out def-c-call-in def-call-in
          nil boolean character char uchar short ushort int uint long ulong
          uint8 sint8 uint16 sint16 uint32 sint32 uint64 sint64
          single-float double-float
          c-pointer c-string c-struct c-union c-array c-array-max c-function c-ptr c-ptr-null c-array-ptr
          def-c-enum def-c-struct element deref slot cast typeof sizeof bitsizeof
          validp
          #+AMIGA def-lib-call-out
)        )

(eval-when (load compile eval)
  (import (find-symbol "*COUTPUT-FILE*" "COMPILER"))
  (import (find-symbol "*COUTPUT-STREAM*" "COMPILER"))
  (import (find-symbol "*FFI-MODULE*" "COMPILER"))
  (import (find-symbol "FINALIZE-COUTPUT-FILE" "COMPILER"))
  (import (find-symbol "DEPARSE-C-TYPE" "SYSTEM")) ; called by DESCRIBE
  (import (find-symbol "FOREIGN-FUNCTION-SIGNATURE" "SYSTEM")) ; called by SYS::FUNCTION-SIGNATURE
)

;; These constants are defined in spvw.d.
;; We declare them here only to avoid warnings.
#-FFI
(progn
  (defvar fv-flag-readonly)
  (defvar fv-flag-malloc-free)
  (defvar ff-flag-alloca)
  (defvar ff-flag-malloc-free)
  (defvar ff-flag-out)
  (defvar ff-flag-in-out)
  (defvar ff-language-asm)
  (defvar ff-language-c)
  (defvar ff-language-ansi-c)
)

;; ============================ helper functions ============================

; Determines whether a name is a valid C identifier.
(defun c-ident-p (name)
  (and (> (length name) 0)
       (every #'(lambda (c)
                 ;(and (standard-char-p ch)
                 ;     (or (alphanumericp ch) (eql ch #\_)) ; don't allow #\$
                 ;)
                  (or (char<= #\A c #\Z) (char<= #\a c #\z) (char<= #\0 c #\9)
                      (char= #\_ c)
                ) )
              name
       )
       (not (char<= #\0 (char name 0) #\9))
       ; must not be a reserved word:
       (not (gethash name
                     (load-time-value
                       (let* ((reserved-list
                                '("auto" "break" "case" "char" "continue"
                                  "default" "do" "double" "else" "enum" "extern"
                                  "float" "for" "goto" "if" "int" "long"
                                  "register" "return" "short" "sizeof" "static"
                                  "struct" "switch" "typedef" "union" "unsigned"
                                  "void" "while"
                              )  )
                              (reserved-table (make-hash-table :test #'equal)))
                         (dolist (w reserved-list)
                           (setf (gethash w reserved-table) 'T)
                         )
                         reserved-table
       )    )        ) )
) )

; Given a string, return it in C syntax.
(defun to-c-string (string)
  (with-output-to-string (s)
    (write-char #\" s)
    (map nil #'(lambda (c)
                 (cond ((eql c #\Null)
                        (error 
                         #L{
                         DEUTSCH "Kann String ~S nicht nach C abbilden, denn es enthält ein Zeichen ~S."
                         ENGLISH "Cannot map string ~S to C since it contains a character ~S"
                         FRANCAIS "Ne peux convertir la chaîne ~S en langage C à cause d'un caractère ~S."
                         }
                         string c
                       ))
                       ((eq c #\Newline)
                        (write-char #\\ s) (write-char #\n s)
                       )
                       ((or (eql c #\") (eql c #\\))
                        (write-char #\\ s) (write-char c s)
                       )
                       (t (write-char c s))
               ) )
             string
    )
    (write-char #\" s)
) )

#+AMIGA
(defconstant *registers*
  '#(:D0 :D1 :D2 :D3 :D4 :D5 :D6 :D7 :A0 :A1 :A2 :A3 :A4 :A5 :A6)
)

;; ============================ C types ============================

;: The table of C types.
(defvar *c-type-table* (make-hash-table :test #'eq))

; simple C types
(dolist (c-type
          '(nil boolean character char uchar short ushort int uint long ulong
            uint8 sint8 uint16 sint16 uint32 sint32 uint64 sint64
            single-float double-float
            c-pointer c-string
        )  )
  (setf (gethash c-type *c-type-table*) c-type)
)

; Parse a C type specification. If name is /= NIL, it will be assigned to name.
(defun parse-c-type (typespec &optional (name nil))
  (if (atom typespec)
    (if (symbolp typespec)
      (multiple-value-bind (c-type found) (gethash typespec *c-type-table*)
        (unless found
          (error 
           #L{
           DEUTSCH "Unvollständiger FFI-Typ ~S ist hier nicht erlaubt."
           ENGLISH "Incomplete FFI type ~S is not allowed here."
           FRANCAIS "Le type de FFI ~S n'est pas complet, ce qui n'est pas permis ici."
           }
           typespec
        ) )
        (when name (setf (gethash name *c-type-table*) c-type))
        c-type
      )
      (error 
       #L{
       DEUTSCH "FFI-Typ muß ein Symbol sein, nicht ~S."
       ENGLISH "FFI type should be a symbol, not ~S"
       FRANCAIS "Un type FFi doit être un symbole et non ~S"
       }
       typespec
    ) )
    (flet ((invalid (typespec)
             (error 
              #L{
              DEUTSCH "Ungültiger FFI-Typ: ~S"
              ENGLISH "Invalid FFI type: ~S"
              FRANCAIS "Type FFI inadmissible: ~S"
              }
              typespec
          )) )
      (case (first typespec)
        (C-STRUCT
          (let* ((n (- (length typespec) 2))
                 (c-type (make-array (+ n 3))))
            (unwind-protect
              (progn
                (when name (setf (gethash name *c-type-table*) c-type))
                (setf (svref c-type 0) (first typespec))
                (setf (subseq c-type 3)
                      (mapcar #'(lambda (subspec)
                                  (unless (and (consp subspec)
                                               (eql (length subspec) 2)
                                               (symbolp (first subspec))
                                          )
                                    (error 
                                     #L{
                                     DEUTSCH "Ungültige ~S-Komponente: ~S"
                                     ENGLISH "Invalid ~S component: ~S"
                                     FRANCAIS "Composant de ~S inadmissible: ~S"
                                     }
                                     'c-struct subspec
                                  ) )
                                  (parse-c-type (second subspec))
                                )
                              (cddr typespec)
                )     )
                (setf (svref c-type 1) ; slots
                      (map 'vector #'first (cddr typespec))
                )
                (setf (svref c-type 2) ; constructor
                      (let ((class (second typespec)))
                        (case (second typespec)
                          (VECTOR #'vector)
                          (LIST #'list)
                          (t (let* ((slots (mapcar #'first (cddr typespec)))
                                    (vars (mapcar #'(lambda (x) (declare (ignore x)) (gensym)) slots))
                                    h
                                   )
                               (eval `(FUNCTION
                                        (LAMBDA ,vars
                                          (DECLARE (COMPILE))
                                          ,(if (and (setq h (get class 'sys::defstruct-description))
                                                    (setq h (svref h 2))
                                               )
                                             ; h is the keyword constructor for the structure
                                             `(,h ,@(mapcan #'(lambda (s v)
                                                                (list (intern (symbol-name s) compiler::*keyword-package*)
                                                                      v
                                                              ) )
                                                            slots vars
                                                    )
                                              )
                                             ; no keyword constructor found -> use CLOS:SLOT-VALUE instead
                                             (let ((ivar (gensym)))
                                               `(LET ((,ivar (CLOS:MAKE-INSTANCE ',class)))
                                                  ,@(mapcar #'(lambda (s v)
                                                                `(SETF (CLOS:SLOT-VALUE ,ivar ',s) ,v)
                                                              )
                                                            slots vars
                                                    )
                                                  ,ivar
                                                )
                                           ) )
                                      ) )
                )     ) ) )  ) )
              )
              (when name (setf (gethash name *c-type-table*) nil))
            )
            (when name (setf (gethash name *c-type-table*) c-type))
            c-type
        ) )
        (C-UNION
          (let* ((n (1- (length typespec)))
                 (c-type (make-array (+ n 2))))
            (unwind-protect
              (progn
                (when name (setf (gethash name *c-type-table*) c-type))
                (setf (svref c-type 0) (first typespec))
                (setf (subseq c-type 2)
                      (mapcar #'(lambda (subspec)
                                  (unless (and (consp subspec)
                                               (eql (length subspec) 2)
                                               (symbolp (first subspec))
                                          )
                                    (error 
                                     #L{
                                     DEUTSCH "Ungültige ~S-Komponente: ~S"
                                     ENGLISH "Invalid ~S component: ~S"
                                     FRANCAIS "Composant de ~S inadmissible: ~S"
                                     }
                                     'c-union subspec
                                  ) )
                                  (parse-c-type (second subspec))
                                )
                              (rest typespec)
                )     )
                (setf (svref c-type 1) (map 'vector #'first (rest typespec)))
              )
              (when name (setf (gethash name *c-type-table*) nil))
            )
            (when name (setf (gethash name *c-type-table*) c-type))
            c-type
        ) )
        (C-ARRAY
          (unless (eql (length typespec) 3) (invalid typespec))
          (let ((dimensions (third typespec)))
            (unless (listp dimensions) (setq dimensions (list dimensions)))
            (unless (every #'(lambda (dim) (typep dim '(integer 0 *))) dimensions)
              (invalid typespec)
            )
            (let ((c-type (make-array (+ 2 (length dimensions)))))
              (unwind-protect
                (progn
                  (when name (setf (gethash name *c-type-table*) c-type))
                  (setf (svref c-type 0) 'C-ARRAY)
                  (setf (svref c-type 1) (parse-c-type (second typespec)))
                  (setf (subseq c-type 2) dimensions)
                )
                (when name (setf (gethash name *c-type-table*) nil))
              )
              (when name (setf (gethash name *c-type-table*) c-type))
              c-type
        ) ) )
        (C-ARRAY-MAX
          (unless (eql (length typespec) 3) (invalid typespec))
          (let ((maxdim (third typespec)))
            (unless (typep maxdim '(integer 0 *)) (invalid typespec))
            (let ((c-type (make-array 3)))
              (unwind-protect
                (progn
                  (when name (setf (gethash name *c-type-table*) c-type))
                  (setf (svref c-type 0) 'C-ARRAY-MAX)
                  (setf (svref c-type 1) (parse-c-type (second typespec)))
                  (setf (svref c-type 2) maxdim)
                )
                (when name (setf (gethash name *c-type-table*) nil))
              )
              (when name (setf (gethash name *c-type-table*) c-type))
              c-type
        ) ) )
        (C-FUNCTION
          (let ((c-type (parse-c-function
                          (parse-options (rest typespec) '(:arguments :return-type :language) typespec)
                          typespec
               ))       )
            (when name (setf (gethash name *c-type-table*) c-type))
            c-type
        ) )
        (C-PTR
          (unless (eql (length typespec) 2) (invalid typespec))
          (let ((c-type (make-array 2)))
            (unwind-protect
              (progn
                (when name (setf (gethash name *c-type-table*) c-type))
                (setf (svref c-type 0) 'C-PTR)
                (setf (svref c-type 1) (parse-c-type (second typespec)))
              )
              (when name (setf (gethash name *c-type-table*) nil))
            )
            (when name (setf (gethash name *c-type-table*) c-type))
            c-type
        ) )
        (C-PTR-NULL
          (unless (eql (length typespec) 2) (invalid typespec))
          (let ((c-type (make-array 2)))
            (unwind-protect
              (progn
                (when name (setf (gethash name *c-type-table*) c-type))
                (setf (svref c-type 0) 'C-PTR-NULL)
                (setf (svref c-type 1) (parse-c-type (second typespec)))
              )
              (when name (setf (gethash name *c-type-table*) nil))
            )
            (when name (setf (gethash name *c-type-table*) c-type))
            c-type
        ) )
        (C-ARRAY-PTR
          (unless (eql (length typespec) 2) (invalid typespec))
          (let ((c-type (make-array 2)))
            (unwind-protect
              (progn
                (when name (setf (gethash name *c-type-table*) c-type))
                (setf (svref c-type 0) 'C-ARRAY-PTR)
                (setf (svref c-type 1) (parse-c-type (second typespec)))
              )
              (when name (setf (gethash name *c-type-table*) nil))
            )
            (when name (setf (gethash name *c-type-table*) c-type))
            c-type
        ) )
        (t (invalid typespec))
      )
) ) )

(defun parse-options (options keywords whole)
  (let ((alist '()))
    (dolist (option options)
      (unless (and (consp option) (member (first option) keywords))
        (error 
         #L{
         DEUTSCH "Ungültige Option in ~S: ~S"
         ENGLISH "Invalid option in ~S: ~S"
         FRANCAIS "Option invalide dans ~S: ~S"
         }
         whole option
      ) )
      (when (assoc (first option) alist)
        (error 
         #L{
         DEUTSCH "Nur eine ~S-Option ist erlaubt: ~S"
         ENGLISH "Only one ~S option is allowed: ~S"
         FRANCAIS "Une seule option ~S est permise: ~S"
         }
         (first option) whole
      ) )
      (push option alist)
    )
    alist
) )

(defun parse-c-function (alist whole)
  (vector
    'C-FUNCTION
    (parse-c-type (or (second (assoc ':return-type alist)) 'nil))
    (coerce (mapcap #'(lambda (argspec)
                        (unless (and (listp argspec)
                                     (symbolp (first argspec))
                                     (<= 2 (length argspec) #-AMIGA 4 #+AMIGA 5)
                                )
                          (error 
                           #L{
                           DEUTSCH "Ungültige Parameter-Spezifikation in ~S: ~S"
                           ENGLISH "Invalid parameter specification in ~S: ~S"
                           FRANCAIS "Spécification invalide d'argument dans ~S: ~S"
                           }
                           whole argspec
                        ) )
                        (let* ((argtype (parse-c-type (second argspec)))
                               (argmode (if (cddr argspec) (third argspec) ':IN))
                               (argalloc (if (cdddr argspec)
                                           (fourth argspec)
                                           (if (or (eq argtype 'C-STRING)
                                                   (and (simple-vector-p argtype)
                                                        (case (svref argtype 0) ((C-PTR C-PTR-NULL C-ARRAY-PTR) t))
                                                   )
                                                   (eq argmode ':OUT)
                                               )
                                             ':ALLOCA
                                             ':NONE
                              ))         ) )
                          (list argtype
                                (+ (ecase argmode
                                     ((:IN :READ-ONLY) 0)
                                     ((:OUT :WRITE-ONLY) ff-flag-out)
                                     ((:IN-OUT :READ-WRITE) ff-flag-in-out)
                                   )
                                   (ecase argalloc
                                     (:NONE 0)
                                     (:ALLOCA ff-flag-alloca)
                                     (:MALLOC-FREE ff-flag-malloc-free)
                                   )
                                   #+AMIGA
                                   (if (cddddr argspec)
                                     (ash (1+ (position (fifth argspec) *registers*)) 8)
                                     0
                                   )
                      ) ) )     )
                    (or (rest (assoc ':arguments alist)) '())
            )
            'simple-vector
    )
    (+ (let ((rettype (assoc ':return-type alist)))
         (if (cddr rettype)
           (ecase (third rettype)
             (:NONE 0)
             (:MALLOC-FREE ff-flag-malloc-free)
           )
           0
       ) )
       (let ((languages (assoc ':language alist)))
         (if languages
           (reduce #'+ (rest languages)
                   :key #'(lambda (lang)
                            (ecase lang
                              (:C ff-language-c)
                              (:STDC ff-language-ansi-c)
           )              ) )
           ff-language-c ; Default is K&R C
       ) )
    )
) )

(defun parse-foreign-name (name)
  (unless (stringp name)
    (error 
     #L{
     DEUTSCH "Der Name muß ein String sein, nicht ~S."
     ENGLISH "The name must be a string, not ~S"
     FRANCAIS "Le nom doit être une chaîne et non ~S."
     }
     name
  ) )
  (if (c-ident-p name)
    name
    (error 
     #L{
     DEUTSCH "Der Name ~S ist kein gültiger C-Identifier."
     ENGLISH "The name ~S is not a valid C identifier"
     FRANCAIS "Le nom ~S n'est pas valable en langage C."
     }
     name
) ) )

(defun check-symbol (whole &optional (name (second whole)))
  (unless (symbolp name)
    (sys::error-of-type 'program-error
      #L{
      DEUTSCH "~S: Das ist kein Symbol: ~S"
      ENGLISH "~S: this is not a symbol: ~S"
      FRANCAIS "~S : Ceci n'est pas un symbole: ~S"
      }
      (first whole) name
) ) )

(defmacro DEF-C-TYPE (&whole whole name typespec)
  (check-symbol whole)
  `(EVAL-WHEN (LOAD COMPILE EVAL)
     (PARSE-C-TYPE ',typespec ',name)
     ',name
   )
)

; Convert back a C type from internal (vector) to external (list)
; representation. Both representations may be circular.
(defun deparse-c-type (ctype)
  (let ((alist '()))
    (labels ((deparse (ctype)
               (or (cdr (assoc ctype alist :test #'eq))
                   (if (symbolp ctype)
                     ; <simple-c-type>, c-pointer, c-string
                     (progn (push (cons ctype ctype) alist) ctype)
                     (let ((typespec (list (svref ctype 0))))
                       (push (cons ctype typespec) alist)
                       (ecase (svref ctype 0)
                         ; #(c-struct slots constructor <c-type>*)
                         (C-STRUCT
                           (setf (rest typespec)
                                 (cons (let ((constructor (svref ctype 2)))
                                         (cond ((eql constructor #'vector) 'vector)
                                               ((eql constructor #'list) 'list)
                                               (t 'nil)
                                       ) )
                                       (map 'list #'(lambda (slot slottype)
                                                      (list slot (deparse slottype))
                                                    )
                                            (svref ctype 1) (subseq ctype 3)
                         ) )     )     )
                         ; #(c-union alternatives <c-type>*)
                         (C-UNION
                           (setf (rest typespec)
                                 (map 'list #'(lambda (alt alttype)
                                                (list alt (deparse alttype))
                                              )
                                      (svref ctype 1) (subseq ctype 2)
                         ) )     )
                         ; #(c-array <c-type> number*)
                         (C-ARRAY
                           (setf (rest typespec)
                                 (list (deparse (svref ctype 1))
                                       (let ((dimensions (subseq ctype 2)))
                                         (if (eql (length dimensions) 1)
                                           (elt dimensions 0)
                                           (coerce dimensions 'list)
                         ) )     )     ) )
                         ; #(c-array-max <c-type> number)
                         (C-ARRAY-MAX
                           (setf (rest typespec)
                                 (list (deparse (svref ctype 1)) (svref ctype 2))
                         ) )
                         ; #(c-function <c-type> #({<c-type> flags}*) flags)
                         (C-FUNCTION
                           (setf (rest typespec)
                                 (list (list ':arguments
                                             (do ((args (coerce (svref ctype 2) 'list) (cddr args))
                                                  (i 1 (+ i 1))
                                                  (argspecs '()))
                                                 ((null args) (nreverse argspecs))
                                               (let ((argtype (first args))
                                                     (argflags (second args)))
                                                 (push `(,(intern (format nil "arg~D" i) compiler::*keyword-package*)
                                                         ,(deparse argtype)
                                                         ,(cond ((not (zerop (logand argflags ff-flag-out))) ':OUT)
                                                                ((not (zerop (logand argflags ff-flag-in-out))) ':IN-OUT)
                                                                (t ':IN)
                                                          )
                                                         ,(cond ((not (zerop (logand argflags ff-flag-alloca))) ':ALLOCA)
                                                                ((not (zerop (logand argflags ff-flag-malloc-free))) ':MALLOC-FREE)
                                                                (t ':NONE)
                                                          )
                                                         #+AMIGA
                                                         ,@(let ((h (logand (ash argflags -8) #xF)))
                                                             (if (not (zerop h))
                                                               (list (svref *registers* (- h 1)))
                                                               '()
                                                           ) )
                                                        )
                                                       argspecs
                                       )     ) ) )
                                       (list ':return-type
                                             (deparse (svref ctype 1))
                                             (if (zerop (logand (svref ctype 3) ff-flag-malloc-free)) ':NONE ':MALLOC-FREE)
                                       )
                                       (cons ':language
                                             (append
                                               (if (not (zerop (logand (svref ctype 3) ff-language-c))) '(:C) '())
                                               (if (not (zerop (logand (svref ctype 3) ff-language-ansi-c))) '(:STDC) '())
                                 )     )     )
                         ) )
                         ; #(c-ptr <c-type>)
                         (C-PTR
                           (setf (rest typespec) (list (deparse (svref ctype 1))))
                         )
                         ; #(c-ptr-null <c-type>)
                         (C-PTR-NULL
                           (setf (rest typespec) (list (deparse (svref ctype 1))))
                         )
                         ; #(c-array-ptr <c-type>)
                         (C-ARRAY-PTR
                           (setf (rest typespec) (list (deparse (svref ctype 1))))
                         )
                       )
                       typespec
            )) )   ) )
      (deparse ctype)
) ) )

;; ============================ module ============================

; Data belonging to the FFI module being compiled:
(defvar *ffi-module* nil)

; We put everything into a structure, so that COMPILE-FILE needs to bind only
; a single variable at compile time.
(defstruct ffi-module
  name
  c-name
  (object-table (make-hash-table :test #'equal))
  (variable-list '())
  (function-list '())
)
(define-symbol-macro *name*
          (ffi-module-name *ffi-module*)
)
(define-symbol-macro *c-name*
          (ffi-module-c-name *ffi-module*)
)
(define-symbol-macro *object-table*
          (ffi-module-object-table *ffi-module*)
)
(define-symbol-macro *variable-list*
          (ffi-module-variable-list *ffi-module*)
)
(define-symbol-macro *function-list*
          (ffi-module-function-list *ffi-module*)
)

; Convert a file name to a C module name.
; This must agree with some sed command in clisp-link.in.
(defun to-module-name (name)
  (map 'string #'(lambda (c)
                   (if (or (char<= #\A c #\Z) (char<= #\a c #\z) (char<= #\0 c #\9) (char= c #\_))
                     c
                     #\_
                 ) )
       name
) )

; Convert a Lisp name to a C name.
; (Doesn't really matter how. This must just be a deterministic function.)
(defun to-c-name (name)
  (setq name (string name))
  (unless (some #'lower-case-p name) (setq name (string-downcase name)))
  (if (c-ident-p name)
    name
    (with-output-to-string (s)
      (format s "_lisp__")
      (map nil
           #'(lambda (ch)
               (if (and (standard-char-p ch) (alphanumericp ch))
                 (write-char ch s)
                 (format s "_~2X" (char-code ch))
             ) )
           name
) ) ) )


(defun complex-c-type-value (c-type)
  (and (simple-vector-p c-type) (plusp (length c-type))
       (svref c-type 0)))

(defun struct-c-type-p (c-type)
  (let ((complex-type (complex-c-type-value c-type)))
    (eq 'c-struct complex-type)))

(defun union-c-type-p (c-type)
  (let ((complex-type (complex-c-type-value c-type)))
    (eq 'c-union complex-type)))

; Convert a C type to its C representation, only for the purpose of taking
; "sizeof".
(defun to-c-typedecl (c-type name &optional typename)
  (case c-type
    ((nil) (format nil "void ~A" name))
    (boolean (format nil "int ~A" name))
    (character (format nil "char ~A" name))
    ((char sint8) (format nil "sint8 ~A" name))
    ((uchar uint8) (format nil "uint8 ~A" name))
    ((short sint16) (format nil "sint16 ~A" name))
    ((ushort uint16) (format nil "uint16 ~A" name))
    (int (format nil "int ~A" name))
    (uint (format nil "unsigned int ~A" name))
    (long (format nil "long ~A" name))
    (ulong (format nil "unsigned long ~A" name))
    (sint32 (format nil "sint32 ~A" name))
    (uint32 (format nil "uint32 ~A" name))
    (sint64 (format nil "sint64 ~A" name))
    (uint64 (format nil "uint64 ~A" name))
    (single-float (format nil "float ~A" name))
    (double-float (format nil "double ~A" name))
    ((c-pointer c-string) (format nil "void* ~A" name))
    (t (case (complex-c-type-value c-type)
         (c-struct
           (format nil "struct ~A { ~{~A; ~}} ~A"
                       (if typename typename "")
                       (mapcar #'(lambda (subtype)
                                   (to-c-typedecl subtype (symbol-name (gensym "g")))
                                 )
                               (cdddr (coerce c-type 'list))
                       )
                       name
         ) )
         (c-union
           (format nil "union ~A { ~{~A; ~}} ~A"
                       (if typename typename "")
                       (mapcar #'(lambda (subtype)
                                   (to-c-typedecl subtype (symbol-name (gensym "g")))
                                 )
                               (cddr (coerce c-type 'list))
                       )
                       name
         ) )
         (c-array
           (to-c-typedecl (svref c-type 1)
                          (format nil "(~A)~{[~D]~}" name (cddr (coerce c-type 'list)))
         ) )
         (c-array-max
           (to-c-typedecl (svref c-type 1)
                          (format nil "(~A)[~D]" name (svref c-type 2))
         ) )
         ((c-function c-ptr c-ptr-null c-array-ptr) (format nil "void* ~A" name))
         (t (error 
             #L{
             DEUTSCH "ungültiger Typ für externe Daten: ~S"
             ENGLISH "illegal foreign data type ~S"
             FRANCAIS "type invalide de données externes : ~S"
             }
             c-type
) ) )  ) )  )

(defun prepare-module ()
  (unless *ffi-module*
    (setq *ffi-module*
          (let ((module-name (pathname-name *coutput-file*)))
            (make-ffi-module :name module-name
                             :c-name (to-module-name module-name))
    ) )
    (format *coutput-stream* "extern object module__~A__object_tab[];~%" *c-name*)
) )
(defun finalize-coutput-file ()
  (when *ffi-module*
    (format *coutput-stream* "~%")
    (format *coutput-stream* "subr_ module__~A__subr_tab[1];~%" *c-name*)
    (format *coutput-stream* "uintC module__~A__subr_tab_size = 0;~%" *c-name*)
    (format *coutput-stream* "subr_initdata module__~A__subr_tab_initdata[1];~%" *c-name*)
    (format *coutput-stream* "~%")
    (let ((count (hash-table-count *object-table*)))
      (if (zerop count)
        (progn
          (format *coutput-stream* "object module__~A__object_tab[1];~%" *c-name*)
          (format *coutput-stream* "object_initdata module__~A__object_tab_initdata[1];~%" *c-name*)
        )
        (let ((v (make-array count)))
          (format *coutput-stream* "object module__~A__object_tab[~D];~%" *c-name* count)
          (format *coutput-stream* "object_initdata module__~A__object_tab_initdata[~D] = {~%" *c-name* count)
          (dohash (key value *object-table*)
            (declare (ignore key))
            (setf (svref v (cdr value)) (car value))
          )
          (map nil #'(lambda (initstring)
                       (format *coutput-stream* "  { ~A },~%" (to-c-string initstring))
                     )
                   v
          )
          (format *coutput-stream* "};~%")
      ) )
      (format *coutput-stream* "uintC module__~A__object_tab_size = ~D;~%" *c-name* count)
    )
    (format *coutput-stream* "~%")
    (setq *variable-list* (nreverse (delete-duplicates *variable-list* :key #'first :test #'equal)))
    (dolist (variable *variable-list*)
      (format *coutput-stream* "extern ~A;~%"
              (to-c-typedecl (second variable) (first variable))
    ) )
    (setq *function-list* (nreverse (delete-duplicates *function-list* :key #'first :test #'equal)))
    (dolist (function *function-list*)
      (format *coutput-stream* "extern ~A;~%"
              (to-c-typedecl (svref (second function) 1)
                             (format nil "(~A)()" (first function))
    ) )       )
    (format *coutput-stream* "
void module__~A__init_function_1(module)
  var module_* module;
{ }~%"
            *c-name*
    )
    (format *coutput-stream* "
void module__~A__init_function_2(module)
  var module_* module;
{~%"
            *c-name*
    )
    (dolist (variable *variable-list*)
      (format *coutput-stream* "  register_foreign_variable(&~A,~A,~D,sizeof(~A));~%"
              (first variable) (to-c-string (first variable)) (third variable) (first variable)
    ) )
    (dolist (function *function-list*)
      (format *coutput-stream* "  register_foreign_function(&~A,~A,~D);~%"
              (first function) (to-c-string (first function)) (svref (second function) 3)
    ) )
    (format *coutput-stream* "}~%")
) )

; Allocate a new object in the module's object_tab.
(defun new-object (read-only-p initstring)
  (when read-only-p
    (let ((h (gethash initstring *object-table*)))
      (when h
        (return-from new-object (cdr h)) ; no need to allocate a new one
  ) ) )
  (let ((index (hash-table-count *object-table*)))
    (setf (gethash (if read-only-p initstring (gensym)) *object-table*)
          (cons initstring index)
    )
    index
) )

; Pass an object from the compilation environment to the module.
(defun pass-object (object)
  (new-object t
              (let ((*package* compiler::*keyword-package*))
                (write-to-string object :readably t :pretty nil)
) )           )

; Convert an object's index to a C lvalue.
(defun object-to-c-value (index)
  (format nil "module__~A__object_tab[~D]" *c-name* index)
)

;; ============================ named C variables ============================

(defun foreign-name (lisp-name name-option)
  (if name-option
    (parse-foreign-name (second name-option))
    (to-c-name lisp-name)
) )

(defmacro DEF-C-VAR (&whole whole name &rest options)
  (check-symbol whole)
  (let* ((alist (parse-options options '(:name :type :read-only :alloc) whole))
         (c-name (foreign-name name (assoc ':name alist)))
         (type (second (or (assoc ':type alist)
                           (sys::error-of-type 'program-error
                             #L{
                             DEUTSCH "~S: ~S-Option fehlt in ~S."
                             ENGLISH "~S: ~S option missing in ~S"
                             FRANCAIS "~S: option ~S manque dans ~S"
                             }
                             'def-c-var ':type whole
         )     )       )   )
         (read-only (second (assoc ':read-only alist)))
         (flags (+ (if read-only fv-flag-readonly 0)
                   (let ((alloc (assoc ':alloc alist)))
                     (if (cdr alloc)
                       (ecase (second alloc)
                         (:NONE 0)
                         (:MALLOC-FREE fv-flag-malloc-free)
                       )
                       0
                   ) )
         )      )
         #|
         (getter-function-name (sys::symbol-suffix name "%GETTER%"))
         (setter-function-name (sys::symbol-suffix name "%SETTER%"))
         |#
        )
    `(PROGN
       (EVAL-WHEN (COMPILER::COMPILE-ONCE-ONLY) (NOTE-C-VAR ',c-name ',type ',flags))
       #|
       (LET ((FVAR (FFI::LOOKUP-FOREIGN-VARIABLE ',c-name (PARSE-C-TYPE ',type))))
         (DEFUN ,getter-function-name () (FFI::FOREIGN-VALUE FVAR))
         ; Install a setter even if the variable is read-only.
         ; When called, it will print a comprehensible error message.
         (DEFUN ,setter-function-name (VALUE) (FFI::SET-FOREIGN-VALUE FVAR VALUE))
       )
       (DEFSETF ,getter-function-name ,setter-function-name)
       (DEFINE-SYMBOL-MACRO ,name (,getter-function-name))
       |#
       (SYSTEM::%PUT ',name 'FOREIGN-VARIABLE
         (LOAD-TIME-VALUE
           (FFI::LOOKUP-FOREIGN-VARIABLE ',c-name (PARSE-C-TYPE ',type))
       ) )
       (DEFINE-SYMBOL-MACRO ,name
         (FFI::FOREIGN-VALUE (LOAD-TIME-VALUE (GET ',name 'FOREIGN-VARIABLE)))
       )
       ',name
     )
) )

(defun note-c-var (c-name type flags)
  (when (compiler::prepare-coutput-file)
    (prepare-module)
    (push (list c-name (parse-c-type type) flags) *variable-list*)
) )

(defsetf ffi::foreign-value ffi::set-foreign-value)

;; ============================ named C functions ============================

(defmacro DEF-C-CALL-OUT (name &rest options)
  `(DEF-CALL-OUT ,name ,@options (:LANGUAGE :C))
)

(defmacro DEF-CALL-OUT (&whole whole name &rest options)
  (check-symbol whole)
  (let* ((alist (parse-options options '(:name :arguments :return-type :language) whole))
         (c-name (foreign-name name (assoc ':name alist))))
    (setq alist (remove (assoc ':name alist) alist))
    `(PROGN
       (EVAL-WHEN (COMPILER::COMPILE-ONCE-ONLY) (NOTE-C-FUN ',c-name ',alist ',whole))
       (LET ()
         (SYSTEM::REMOVE-OLD-DEFINITIONS ',name)
         (EVAL-WHEN (COMPILE) (COMPILER::C-DEFUN ',name))
         (SYSTEM::%PUTD ',name
           (FFI::LOOKUP-FOREIGN-FUNCTION ',c-name
                                         (PARSE-C-FUNCTION ',alist ',whole)
       ) ) )
       ',name
     )
) )

(defun note-c-fun (c-name alist whole)
  (when (compiler::prepare-coutput-file)
    (prepare-module)
    (push (list c-name (parse-c-function alist whole)) *function-list*)
) )

#+AMIGA
(defmacro DEF-LIB-CALL-OUT (&whole whole name library &rest options)
  (check-symbol whole)
  (let* ((alist (parse-options options '(:name :offset :arguments :return-type) whole))
         (c-name (foreign-name name (assoc ':name alist)))
         (offset (second (assoc ':offset alist))))
    `(LET ()
       (SYSTEM::REMOVE-OLD-DEFINITIONS ',name)
       (EVAL-WHEN (COMPILE) (COMPILER::C-DEFUN ',name))
       (SYSTEM::%PUTD ',name
         (FFI::FOREIGN-LIBRARY-FUNCTION ',c-name
          (FFI::FOREIGN-LIBRARY ',library)
          ',offset
          (PARSE-C-FUNCTION ',(remove (assoc ':name alist) alist) ',whole)))
       ',name
) )  )

(defmacro DEF-C-CALL-IN (name &rest options)
  `(DEF-CALL-IN ,name ,@options (:LANGUAGE :C))
)

(defmacro DEF-CALL-IN (&whole whole name &rest options)
  (check-symbol whole)
  (let* ((alist (parse-options options '(:name :arguments :return-type :language) whole))
         (c-name (foreign-name name (assoc ':name alist))))
    (setq alist (remove (assoc ':name alist) alist))
    `(PROGN
       (EVAL-WHEN (COMPILER::COMPILE-ONCE-ONLY) (NOTE-C-CALL-IN ',name ',c-name ',alist ',whole))
       ',name
     )
) )

(defun return-typename (c-name)
  (format nil "~A_return" c-name))

(defun note-c-call-in (name c-name alist whole)
  (when (compiler::prepare-coutput-file)
    (prepare-module)
    (let* ((fvd (parse-c-function alist whole))
           (rettype (svref fvd 1))
           (args (svref fvd 2))
           (flags (svref fvd 3))
           (argtypes (do ((i 0 (+ i 2))
                          (l '()))
                         ((>= i (length args)) (nreverse l))
                       (push (svref args i) l)
           )         )
           (argflags (do ((i 1 (+ i 2))
                          (l '()))
                         ((>= i (length args)) (nreverse l))
                       (push (svref args i) l)
           )         )
           (argnames (mapcar #'(lambda (argtype) (declare (ignore argtype))
                                 (symbol-name (gensym "g"))
                               )
                             argtypes
          ))         )
      (terpri *coutput-stream*)
      (flet ((print-complex-typedef (keyword)
               (format *coutput-stream* "~A;~%" (to-c-typedecl rettype "" (return-typename c-name)))
               (format *coutput-stream* "~%global ~A ~A ~A " keyword (return-typename c-name) c-name)))
        (cond ((struct-c-type-p rettype) (print-complex-typedef "struct"))
              ((union-c-type-p rettype) (print-complex-typedef "union"))
              (t (format *coutput-stream* "~%global ~A "
                         (to-c-typedecl rettype (format nil "(~A)" c-name))))))
      (if (not (zerop (logand flags ff-language-ansi-c)))
        ; ANSI C parameter declarations
        (progn
          (format *coutput-stream* "(")
          (if argtypes
            (do ((argtypesr argtypes (cdr argtypesr))
                 (argnamesr argnames (cdr argnamesr)))
                ((null argtypesr))
              (format *coutput-stream* "~A" (to-c-typedecl (car argtypesr) (car argnamesr)))
              (when (cdr argtypesr) (format *coutput-stream* ", "))
            )
            (format *coutput-stream* "void")
          )
          (format *coutput-stream* ")")
        )
        ; K&R C parameter declarations
        (progn
          (format *coutput-stream* "(")
          (do ((argnamesr argnames (cdr argnamesr)))
              ((null argnamesr))
            (format *coutput-stream* "~A" (car argnamesr))
            (when (cdr argnamesr) (format *coutput-stream* ", "))
          )
          (format *coutput-stream* ")")
          (do ((argtypesr argtypes (cdr argtypesr))
               (argnamesr argnames (cdr argnamesr)))
              ((null argtypesr))
            (format *coutput-stream* "~%  ~A;" (to-c-typedecl (car argtypesr) (car argnamesr)))
        ) )
      )
      (format *coutput-stream* "~%{~%")
      (let ((inargcount 0) (outargcount (if (eq rettype 'NIL) 0 1)))
        (mapc #'(lambda (argtype argflag argname)
                  (when (zerop (logand argflag ff-flag-out))
                    (format *coutput-stream* "  pushSTACK(convert_from_foreign(~A,&~A));~%" (object-to-c-value (pass-object argtype)) argname)
                    (incf inargcount)
                  )
                  (unless (zerop (logand argflag (logior ff-flag-out ff-flag-in-out)))
                    (incf outargcount)
                ) )
              argtypes argflags argnames
        )
        (format *coutput-stream* "  funcall(~A,~D);~%" (object-to-c-value (pass-object name)) inargcount)
        (unless (eq rettype 'NIL)
          (format *coutput-stream* " {~%")
          (cond ((struct-c-type-p rettype)
                 (format *coutput-stream* "  var struct ~A ~A;~%" (return-typename c-name) "retval"))
                ((union-c-type-p rettype)
                 (format *coutput-stream* "  var union ~A ~A;~%" (return-typename c-name) "retval"))
                (t (format *coutput-stream* "  var ~A;~%" (to-c-typedecl rettype "retval"))))
          (format *coutput-stream* "  ~A(~A,value1,&retval);~%"
                  (if (zerop (logand flags ff-flag-malloc-free)) "convert_to_foreign_nomalloc" "convert_to_foreign_mallocing")
                  (object-to-c-value (pass-object rettype))
        ) )
        (let ((outargcount (if (eq rettype 'NIL) 0 1)))
          (mapc #'(lambda (argtype argflag argname)
                    (unless (zerop (logand argflag (logior ff-flag-out ff-flag-in-out)))
                      (unless (and (simple-vector-p argtype) (eql (length argtype) 2) 
                                   (or (eq (svref argtype 0) 'C-PTR) (eq (svref argtype 0) 'C-PTR-NULL)))
                        (error 
                         #L{
                         DEUTSCH "~S: :OUT-Argument ist kein Pointer: ~S"
                         ENGLISH "~S: :OUT argument is not a pointer: ~S"
                         FRANCAIS "~S : paramètre :OUT n'est pas indirecte: ~S"
                         }
                         'DEF-CALL-IN argtype
                      ) )
                      (format *coutput-stream* "  ~A~A(~A,~A,~A);~%"
                              (if (eql outargcount 0) "" (format nil "if (mv_count >= ~D) " (+ outargcount 1)))
                              (if (zerop (logand argflag ff-flag-malloc-free)) "convert_to_foreign_nomalloc" "convert_to_foreign_mallocing")
                              (object-to-c-value (pass-object (svref argtype 1)))
                              (if (eql outargcount 0) "value1" (format nil "mv_space[~D]" outargcount))
                              argname
                      )
                      (incf outargcount)
                  ) )
                argtypes argflags argnames
        ) )
        (unless (eq rettype 'NIL)
          (format *coutput-stream* "  return retval;~%")
          (format *coutput-stream* " }~%")
      ) )
      (format *coutput-stream* "}~%")
) ) )

;; ===========================================================================

; Called by SYS::FUNCTION-SIGNATURE.
(defun foreign-function-signature (obj)
  (let* ((arg-vector (sys::%record-ref obj 3))
         (l (length arg-vector))
         (inargcount 0))
    (do ((i 1 (+ i 2)))
        ((>= i l))
      (when (zerop (logand ff-flag-out (svref arg-vector i))) (incf inargcount))
    )
    inargcount
) )

(defmacro def-c-enum (&whole whole name &rest items)
  (check-symbol whole)
  (let ((forms '())
        (next-value 0))
    (dolist (item items)
      (when (consp item)
        (when (rest item) (setq next-value (second item)))
        (setq item (first item))
      )
      (push `(DEFCONSTANT ,item ,next-value) forms)
      (setq next-value `(1+ ,item))
    )
    `(PROGN ,@(nreverse forms) ',name)
) )

(defmacro def-c-struct (name &rest slots)
  `(PROGN
     (DEFSTRUCT ,name ,@(mapcar #'first slots))
     (DEF-C-TYPE ,name (C-STRUCT ,name ,@slots))
   )
)

; In order for ELEMENT, DEREF, SLOT to be SETFable, I make them macros.
; (element (foreign-value x) ...) --> (foreign-value (%element x ...))
; (deref (foreign-value x))       --> (foreign-value (%deref x))
; (slot (foreign-value x) ...)    --> (foreign-value (%slot x ...))
(flet ((err (whole)
         (sys::error-of-type 'program-error
           #L{
           DEUTSCH "~S ist nur nach ~S erlaubt: ~S"
           ENGLISH "~S is only allowed after ~S: ~S"
           FRANCAIS "~S n'est permis qu'après ~S: ~S"
           }
           (first whole) 'FOREIGN-VALUE whole
      )) )
  (defmacro element (place &rest indices &environment env)
    (setq place (macroexpand place env))
    (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
      `(FOREIGN-VALUE (%ELEMENT ,(second place) ,@indices))
      (err `(element ,place ,@indices))
  ) )
  (defmacro deref (place &environment env)
    (setq place (macroexpand place env))
    (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
      `(FOREIGN-VALUE (%DEREF ,(second place)))
      (err `(deref ,place))
  ) )
  (defmacro slot (place slotname &environment env)
    (setq place (macroexpand place env))
    (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
      `(FOREIGN-VALUE (%SLOT ,(second place) ,slotname))
      (err `(slot ,place ,slotname))
  ) )
  (defmacro cast (place type &environment env)
    (setq place (macroexpand place env))
    (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
      `(FOREIGN-VALUE (%CAST ,(second place) (PARSE-C-TYPE ,type)))
      (err `(cast ,place ,type))
  ) )
  ; Similarly for TYPEOF.
  ; (typeof (foreign-value x)) --> (deparse-c-type (foreign-type x))
  (defmacro typeof (place &environment env)
    (setq place (macroexpand place env))
    (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
      `(DEPARSE-C-TYPE (FOREIGN-TYPE ,(second place)))
      (err `(typeof ,place))
  ) )
)

; Similar tricks are being played for SIZEOF, BITSIZEOF. They are macros which
; work on <c-place>s. If the argument is not a <c-place>, they behave like
; ordinary functions.
; (sizeof (foreign-value x))  --> (sizeof (typeof (foreign-value x)))
;                             --> (sizeof (deparse-c-type (foreign-type x)))
;                             --> (%sizeof (foreign-type x))
; (sizeof (deparse-c-type y)) --> (%sizeof y)
; (sizeof z)                  --> (%sizeof (parse-c-type z))
(defmacro sizeof (place &environment env)
  (setq place (macroexpand place env))
  (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
    `(%SIZEOF (FOREIGN-TYPE ,(second place)))
    (if (and (consp place) (eq (first place) 'DEPARSE-C-TYPE) (eql (length place) 2))
      `(%SIZEOF ,(second place))
      `(%SIZEOF (PARSE-C-TYPE ,place))
) ) )
(defmacro bitsizeof (place &environment env)
  (setq place (macroexpand place env))
  (if (and (consp place) (eq (first place) 'FOREIGN-VALUE) (eql (length place) 2))
    `(%BITSIZEOF (FOREIGN-TYPE ,(second place)))
    (if (and (consp place) (eq (first place) 'DEPARSE-C-TYPE) (eql (length place) 2))
      `(%BITSIZEOF ,(second place))
      `(%BITSIZEOF (PARSE-C-TYPE ,place))
) ) )

;; ===========================================================================
