X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ftarget-extensions.lisp;h=b80eb8d41bb5dfd33cdca72aef8b47782d5ac65a;hb=672ac5849b408281b5ca0dfc3fd58d418de2b272;hp=2daa462f9b877b2ea01f9c8cc5f0cf852c09163c;hpb=231721189e1e2431597dc013aaf5eee01bc41a51;p=sbcl.git diff --git a/src/code/target-extensions.lisp b/src/code/target-extensions.lisp index 2daa462..b80eb8d 100644 --- a/src/code/target-extensions.lisp +++ b/src/code/target-extensions.lisp @@ -1,10 +1,10 @@ -;;;; This file contains things for the extensions package which can't -;;;; be built at cross-compile time, and perhaps also some things -;;;; which might as well not be built at cross-compile time because -;;;; they're not needed then. Things which can't be built at -;;;; cross-compile time (e.g. because they need machinery which only -;;;; exists inside SBCL's implementation of the LISP package) do not -;;;; belong in this file. +;;;; This file contains things for the extensions packages (SB-EXT and +;;;; also "internal extensions" SB-INT) which can't be built at +;;;; cross-compile time, and perhaps also some things which might as +;;;; well not be built at cross-compile time because they're not +;;;; needed then. Things which can't be built at cross-compile time +;;;; (e.g. because they need machinery which only exists inside SBCL's +;;;; implementation of the LISP package) do not belong in this file. ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. @@ -44,3 +44,48 @@ (cond ((not (whitespace-char-p char)) (unread-char char stream) (return t))))) + +;;;; helpers for C library calls + +;;; Signal a SIMPLE-CONDITION/ERROR condition associated with an ANSI C +;;; errno problem, arranging for the condition's print representation +;;; to be similar to the ANSI C perror(3) style. +(defun simple-perror (prefix-string + &key + (errno (get-errno)) + (simple-error 'simple-error) + other-condition-args) + (declare (type symbol simple-error)) + (aver (subtypep simple-error 'simple-condition)) + (aver (subtypep simple-error 'error)) + (apply #'error + simple-error + :format-control "~@<~A: ~2I~_~A~:>" + :format-arguments (list prefix-string (strerror errno)) + other-condition-args)) + +;;;; optimization idioms + +(eval-when (:compile-toplevel :load-toplevel :execute) + + ;; Byte compile this thing if possible. + (defvar *optimize-byte-compilation* + '(optimize (speed 0) (safety 1))) + + ;; This thing is externally visible, so compiling meta-information + ;; is more important than byte-compiling it; but it's otherwise + ;; suitable for byte-compilation. + ;; + ;; (As long as the byte compiler isn't capable of compiling + ;; meta-information such as the argument list required by functions + ;; (as in sbcl-0.6.12, anyway), it's not suitable for compiling + ;; externally visible things like CL:INSPECT even if their speed + ;; requirements are small enough that it'd otherwise be OK. If some + ;; later version of the byte compiler learns to compile such + ;; meta-information, we'll probably change the implementation of + ;; this idiom so that it causes byte compilation of the thing after + ;; all.) + (defvar *optimize-external-despite-byte-compilation* + '(optimize (speed 1) + ;; still might as well be as small as possible.. + (space 3))))