X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fforeign.lisp;h=f46b03d76fd9b8ffd952a31a1997f7030a69a751;hb=b14a61c6af3e3005c94e633e727177346240066e;hp=bd89cd83e8e977a0cfa38553a93a0ab36f06cebd;hpb=fe19212267bef96fedb712ebb43abc91631aea18;p=sbcl.git diff --git a/src/code/foreign.lisp b/src/code/foreign.lisp index bd89cd8..f46b03d 100644 --- a/src/code/foreign.lisp +++ b/src/code/foreign.lisp @@ -16,8 +16,7 @@ (defun extern-alien-name (name) (handler-case - #!+elf (coerce name 'base-string) - #!+(or mach-o win32) (concatenate 'base-string "_" name) + (coerce name 'base-string) (error () (error "invalid external alien name: ~S" name)))) @@ -25,7 +24,9 @@ ;;; as opposed to C's "extern"). The table contains symbols known at ;;; the time that the program was built, but not symbols defined in ;;; object files which have been loaded dynamically since then. +#!-sb-dynamic-core (declaim (type hash-table *static-foreign-symbols*)) +#!-sb-dynamic-core (defvar *static-foreign-symbols* (make-hash-table :test 'equal)) (declaim @@ -34,15 +35,13 @@ (let ((extern (extern-alien-name name))) (values (or (gethash extern table) - (gethash (concatenate 'base-string - #!+(and darwin (or x86 x86-64 ppc)) "_ldso_stub__" - #!-(and darwin (or x86 x86-64 ppc)) "ldso_stub__" - extern) table))))) + (gethash (concatenate 'base-string "ldso_stub__" extern) table))))) (defun find-foreign-symbol-address (name) "Returns the address of the foreign symbol NAME, or NIL. Does not enter the symbol in the linkage table, and never returns an address in the linkage-table." - (or (find-foreign-symbol-in-table name *static-foreign-symbols*) + (or #!-sb-dynamic-core + (find-foreign-symbol-in-table name *static-foreign-symbols*) (find-dynamic-foreign-symbol-address name))) (defun foreign-symbol-address (name &optional datap) @@ -57,7 +56,10 @@ Dynamic symbols are entered into the linkage-table if they aren't there already. On non-linkage-table ports signals an error if the symbol isn't found." (declare (ignorable datap)) - (let ((static (find-foreign-symbol-in-table name *static-foreign-symbols*))) + #!+sb-dynamic-core + (values (ensure-foreign-symbol-linkage name datap) t) + #!-sb-dynamic-core + (let ((static (find-foreign-symbol-in-table name *static-foreign-symbols*))) (if static (values static nil) #!+os-provides-dlopen @@ -84,8 +86,7 @@ if the symbol isn't found." #!+linkage-table (multiple-value-bind (addr sharedp) (foreign-symbol-address symbol datap) - #+sb-xc-host - (aver (not sharedp)) + #+sb-xc-host #!-sb-dynamic-core (aver (not sharedp)) () ;; If the address is from linkage-table and refers to data ;; we need to do a bit of juggling. It is not the address of the ;; variable, but the address where the real address is stored. @@ -107,7 +108,7 @@ if the symbol isn't found." ;;; Cleanups before saving a core #-sb-xc-host (defun foreign-deinit () - #!+(and os-provides-dlopen (or (not linkage-table) win32)) + #!+(and os-provides-dlopen (not linkage-table)) (when (dynamic-foreign-symbols-p) (warn "~@