Don't redundantly bind *allow-instrumenting* to nil twice
[sbcl.git] / src / cold / shebang.lisp
bloba10948ca534e43859f930f96d622bcf46e18ea64
1 ;;;; cold-boot-only readmacro syntax
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB-COLD")
14 ;;;; definition of #!+ and #!- as a mechanism analogous to #+/#-, but
15 ;;;; for *SHEBANG-FEATURES* instead of CL:*FEATURES*. (This is handy
16 ;;;; when cross-compiling, so that we can make a distinction between
17 ;;;; features of the host Common Lisp and features of the target
18 ;;;; SBCL.)
20 ;;; the feature list for the target system
21 (export '*shebang-features*)
22 (declaim (type list *shebang-features*))
23 (defvar *shebang-features*)
25 (defun target-platform-name ()
26 (let ((arch (intersection '(:alpha :arm :arm64 :hppa :mips :ppc :sparc :x86 :x86-64)
27 *shebang-features*)))
28 (cond ((not arch) (error "No architecture selected"))
29 ((> (length arch) 1) (error "More than one architecture selected")))
30 (string-downcase (car arch))))
32 ;;; Not necessarily the logical place to define BACKEND-ASM-PACKAGE-NAME,
33 ;;; but a convenient one, because *shebang-features* needs to have been
34 ;;; DEFVARed, and because 'chill' loads this and only this file.
35 (defun backend-asm-package-name ()
36 (concatenate 'string "SB!" (string-upcase (target-platform-name)) "-ASM"))
38 (defun feature-in-list-p (feature list)
39 (labels ((sane-expr-p (x)
40 (typecase x
41 (symbol (and (string/= x "SB-XC") (string/= x "SB-XC-HOST")))
42 ;; This allows you to write #!+(host-feature sbcl) <stuff>
43 ;; to muffle conditions, bypassing the "probable XC bug" check.
44 ;; Using the escape hatch is assumed never to be a mistake.
45 ((cons (eql :host-feature)) t)
46 (cons (every #'sane-expr-p (cdr x))))))
47 (unless (sane-expr-p feature)
48 (error "Target feature expression ~S looks screwy" feature)))
49 (etypecase feature
50 (symbol (member feature list :test #'eq))
51 (cons (flet ((subfeature-in-list-p (subfeature)
52 (feature-in-list-p subfeature list)))
53 (ecase (first feature)
54 (:or (some #'subfeature-in-list-p (rest feature)))
55 (:and (every #'subfeature-in-list-p (rest feature)))
56 ((:host-feature :not)
57 (destructuring-bind (subexpr) (cdr feature)
58 (cond ((eq (first feature) :host-feature)
59 ;; (:HOST-FEATURE :sym) looks in *FEATURES* for :SYM
60 (check-type subexpr symbol)
61 (member subexpr *features* :test #'eq))
63 (not (subfeature-in-list-p subexpr)))))))))))
64 (compile 'feature-in-list-p)
66 (defun shebang-reader (stream sub-character infix-parameter)
67 (declare (ignore sub-character))
68 (when infix-parameter
69 (error "illegal read syntax: #~D!" infix-parameter))
70 (let ((next-char (read-char stream)))
71 (unless (find next-char "+-")
72 (error "illegal read syntax: #!~C" next-char))
73 (if (char= (if (let* ((*package* (find-package "KEYWORD"))
74 (*read-suppress* nil)
75 (feature (read stream)))
76 (feature-in-list-p feature *shebang-features*))
77 #\+ #\-) next-char)
78 (read stream t nil t)
79 ;; Read (and discard) a form from input.
80 (let ((*read-suppress* t))
81 (read stream t nil t)
82 (values)))))
83 (compile 'shebang-reader)
85 (set-dispatch-macro-character #\# #\! #'shebang-reader)
86 ;;; while we are at it, let us write something which helps us sanity
87 ;;; check our own code; it is too easy to write #+ when meaning #!+,
88 ;;; and such mistakes can go undetected for a while.
89 ;;;
90 ;;; ideally we wouldn't use *SHEBANG-FEATURES* but
91 ;;; *ALL-POSSIBLE-SHEBANG-FEATURES*, but maintaining that variable
92 ;;; will not be easy.
93 (defun checked-feature-in-features-list-p (feature list)
94 (etypecase feature
95 (symbol (unless (member feature '(:ansi-cl :common-lisp :ieee-floating-point))
96 (when (member feature *shebang-features* :test #'eq)
97 (error "probable XC bug in host read-time conditional")))
98 (member feature list :test #'eq))
99 (cons (flet ((subfeature-in-list-p (subfeature)
100 (checked-feature-in-features-list-p subfeature list)))
101 (ecase (first feature)
102 (:or (some #'subfeature-in-list-p (rest feature)))
103 (:and (every #'subfeature-in-list-p (rest feature)))
104 (:not (let ((rest (cdr feature)))
105 (if (or (null (car rest)) (cdr rest))
106 (error "wrong number of terms in compound feature ~S"
107 feature)
108 (not (subfeature-in-list-p (second feature)))))))))))
109 (compile 'checked-feature-in-features-list-p)
111 (defun she-reader (stream sub-character infix-parameter)
112 (when infix-parameter
113 (error "illegal read syntax: #~D~C" infix-parameter sub-character))
114 (when (let* ((*package* (find-package "KEYWORD"))
115 (*read-suppress* nil)
116 (notp (eql sub-character #\-))
117 (feature (read stream)))
118 (if (checked-feature-in-features-list-p feature *features*)
119 notp
120 (not notp)))
121 (let ((*read-suppress* t))
122 (read stream t nil t)))
123 (values))
124 (compile 'she-reader)
126 ;;;; variables like *SHEBANG-FEATURES* but different
128 ;;; This variable is declared here (like *SHEBANG-FEATURES*) so that
129 ;;; things like chill.lisp work (because the variable has properties
130 ;;; similar to *SHEBANG-FEATURES*, and chill.lisp was set up to work
131 ;;; for that). For an explanation of what it really does, look
132 ;;; elsewhere.
133 (export '*shebang-backend-subfeatures*)
134 (declaim (type list *shebang-backend-subfeatures*))
135 (defvar *shebang-backend-subfeatures*)
137 ;;;; string checker, for catching non-portability early
138 (defun make-quote-reader (standard-quote-reader)
139 (lambda (stream char)
140 (let ((result (funcall standard-quote-reader stream char)))
141 (unless (every (lambda (x) (typep x 'standard-char)) result)
142 (warn "Found non-STANDARD-CHAR in ~S" result))
143 result)))
144 (compile 'make-quote-reader)
146 (set-macro-character #\" (make-quote-reader (get-macro-character #\" nil)))