X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fforeign.lisp;h=be46641abca9b94464611a23c67bd02e6fa0bf06;hb=52f174450abacd81963073b71af2ce7b62908178;hp=805c5abe9f765c1ef330b23be24ef7a91e380b78;hpb=127fd3d2fb843c6bb7ad0763e143d81877e760e8;p=sbcl.git diff --git a/src/code/foreign.lisp b/src/code/foreign.lisp index 805c5ab..be46641 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)))) @@ -34,10 +33,7 @@ (let ((extern (extern-alien-name name))) (values (or (gethash extern table) - (gethash (concatenate 'base-string - #!+(and darwin (or x86 x86-64)) "_ldso_stub__" - #!-(and darwin (or x86 x86-64)) "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 @@ -57,7 +53,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 +83,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. @@ -129,13 +127,11 @@ if the symbol isn't found." (when (<= sb!vm:linkage-table-space-start addr sb!vm:linkage-table-space-end) - (maphash (lambda (name-and-datap info) - (let ((table-addr (linkage-info-address info))) - (when (<= table-addr - addr - (+ table-addr sb!vm:linkage-table-entry-size)) - (return-from sap-foreign-symbol (car name-and-datap))))) - *linkage-info*)) + (dohash ((name-and-datap info) *linkage-info* :locked t) + (let ((table-addr (linkage-info-address info))) + (when (and (<= table-addr addr) + (< addr (+ table-addr sb!vm:linkage-table-entry-size))) + (return-from sap-foreign-symbol (car name-and-datap)))))) #!+os-provides-dladdr (with-alien ((info (struct dl-info (filename c-string) @@ -144,7 +140,10 @@ if the symbol isn't found." (symbol-address unsigned))) (dladdr (function unsigned unsigned (* (struct dl-info))) :extern "dladdr")) - (let ((err (alien-funcall dladdr addr (addr info)))) + (let ((err (without-gcing + ;; On eg. Darwin GC can could otherwise interrupt + ;; the call while dladdr is holding a lock. + (alien-funcall dladdr addr (addr info))))) (if (zerop err) nil (slot info 'symbol)))) @@ -157,9 +156,17 @@ if the symbol isn't found." #-sb-xc-host (defun !foreign-cold-init () + #!-sb-dynamic-core (dolist (symbol *!initial-foreign-symbols*) (setf (gethash (car symbol) *static-foreign-symbols*) (cdr symbol))) - #!+(and os-provides-dlopen (not win32)) + #!+sb-dynamic-core + (loop for table-address from sb!vm::linkage-table-space-start + by sb!vm::linkage-table-entry-size + and reference in sb!vm::*required-runtime-c-symbols* + do (setf (gethash reference *linkage-info*) + (make-linkage-info :datap (cdr reference) + :address table-address))) + #!+os-provides-dlopen (setf *runtime-dlhandle* (dlopen-or-lose)) #!+os-provides-dlopen (setf *shared-objects* nil))