1 ;;;; miscellaneous system hacking macros
3 ;;;; This software is part of the SBCL system. See the README file for
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!IMPL")
14 (defmacro atomic-incf/symbol (symbol-name &optional (delta 1))
16 `(incf ,symbol-name ,delta)
19 (declare (optimize (safety 0) (speed 3)))
20 (sb!vm::locked-symbol-global-value-add ',symbol-name ,delta)))
22 (defvar *gc-inhibit*) ; initialized in cold init
24 ;;; When the dynamic usage increases beyond this amount, the system
25 ;;; notes that a garbage collection needs to occur by setting
26 ;;; *GC-PENDING* to T. It starts out as NIL meaning nobody has figured
27 ;;; out what it should be yet.
28 (defvar *gc-pending* nil)
31 (defvar *stop-for-gc-pending* nil)
33 (defmacro without-gcing (&body body)
35 "Executes the forms in the body without doing a garbage
36 collection. It inhibits both automatically and explicitly triggered
37 gcs. Finally, upon leaving the BODY if gc is not inhibited it runs the
38 pending gc. Similarly, if gc is triggered in another thread then it
39 waits until gc is enabled in this thread."
41 (let ((*gc-inhibit* t))
43 ;; the test is racy, but it can err only on the overeager side
44 (sb!kernel::maybe-handle-pending-gc)))
47 ;;; EOF-OR-LOSE is a useful macro that handles EOF.
48 (defmacro eof-or-lose (stream eof-error-p eof-value)
50 (error 'end-of-file :stream ,stream)
53 ;;; These macros handle the special cases of T and NIL for input and
56 ;;; FIXME: Shouldn't these be functions instead of macros?
57 (defmacro in-synonym-of (stream &optional check-type)
58 (let ((svar (gensym)))
59 `(let ((,svar ,stream))
60 (cond ((null ,svar) *standard-input*)
61 ((eq ,svar t) *terminal-io*)
62 (t ,@(when check-type `((enforce-type ,svar ,check-type))) ;
64 (unless (input-stream-p ,svar)
65 (error 'simple-type-error
67 :expected-type '(satisfies input-stream-p)
68 :format-control "~S isn't an input stream"
69 :format-arguments (list ,svar)))
71 (defmacro out-synonym-of (stream &optional check-type)
72 (let ((svar (gensym)))
73 `(let ((,svar ,stream))
74 (cond ((null ,svar) *standard-output*)
75 ((eq ,svar t) *terminal-io*)
76 (t ,@(when check-type `((check-type ,svar ,check-type)))
78 (unless (output-stream-p ,svar)
79 (error 'simple-type-error
81 :expected-type '(satisfies output-stream-p)
82 :format-control "~S isn't an output stream."
83 :format-arguments (list ,svar)))
86 ;;; WITH-mumble-STREAM calls the function in the given SLOT of the
87 ;;; STREAM with the ARGS for ANSI-STREAMs, or the FUNCTION with the
88 ;;; ARGS for FUNDAMENTAL-STREAMs.
89 (defmacro with-in-stream (stream (slot &rest args) &optional stream-dispatch)
90 `(let ((stream (in-synonym-of ,stream)))
92 `(if (ansi-stream-p stream)
93 (funcall (,slot stream) stream ,@args)
94 ,@(when stream-dispatch
95 `(,(destructuring-bind (function &rest args) stream-dispatch
96 `(,function stream ,@args)))))
97 `(funcall (,slot stream) stream ,@args))))
99 (defmacro with-out-stream/no-synonym (stream (slot &rest args) &optional stream-dispatch)
100 `(let ((stream ,stream))
102 `(if (ansi-stream-p stream)
103 (funcall (,slot stream) stream ,@args)
104 ,@(when stream-dispatch
105 `(,(destructuring-bind (function &rest args) stream-dispatch
106 `(,function stream ,@args)))))
107 `(funcall (,slot stream) stream ,@args))))
109 (defmacro with-out-stream (stream (slot &rest args) &optional stream-dispatch)
110 `(with-out-stream/no-synonym (out-synonym-of ,stream)
111 (,slot ,@args) ,stream-dispatch))
114 ;;;; These are hacks to make the reader win.
116 ;;; This macro sets up some local vars for use by the
117 ;;; FAST-READ-CHAR macro within the enclosed lexical scope. The stream
118 ;;; is assumed to be a ANSI-STREAM.
120 ;;; KLUDGE: Some functions (e.g. ANSI-STREAM-READ-LINE) use these variables
121 ;;; directly, instead of indirecting through FAST-READ-CHAR.
122 (defmacro prepare-for-fast-read-char (stream &body forms)
123 `(let* ((%frc-stream% ,stream)
124 (%frc-method% (ansi-stream-in %frc-stream%))
125 (%frc-buffer% (ansi-stream-cin-buffer %frc-stream%))
126 (%frc-index% (ansi-stream-in-index %frc-stream%)))
127 (declare (type index %frc-index%)
128 (type ansi-stream %frc-stream%))
131 ;;; This macro must be called after one is done with FAST-READ-CHAR
132 ;;; inside its scope to decache the ANSI-STREAM-IN-INDEX.
133 (defmacro done-with-fast-read-char ()
134 `(setf (ansi-stream-in-index %frc-stream%) %frc-index%))
136 ;;; a macro with the same calling convention as READ-CHAR, to be used
137 ;;; within the scope of a PREPARE-FOR-FAST-READ-CHAR.
138 (defmacro fast-read-char (&optional (eof-error-p t) (eof-value ()))
141 (funcall %frc-method% %frc-stream% ,eof-error-p ,eof-value))
142 ((= %frc-index% +ansi-stream-in-buffer-length+)
143 (prog1 (fast-read-char-refill %frc-stream% ,eof-error-p ,eof-value)
144 (setq %frc-index% (ansi-stream-in-index %frc-stream%))))
146 (prog1 (aref %frc-buffer% %frc-index%)
147 (incf %frc-index%)))))
149 ;;;; And these for the fasloader...
151 ;;; Just like PREPARE-FOR-FAST-READ-CHAR except that we get the BIN
152 ;;; method. The stream is assumed to be a ANSI-STREAM.
154 ;;; KLUDGE: It seems weird to have to remember to explicitly call
155 ;;; DONE-WITH-FAST-READ-BYTE at the end of this, given that we're
156 ;;; already wrapping the stuff inside in a block. Why not rename this
157 ;;; macro to WITH-FAST-READ-BYTE, do the DONE-WITH-FAST-READ-BYTE stuff
158 ;;; automatically at the end of the block, and eliminate
159 ;;; DONE-WITH-FAST-READ-BYTE as a separate entity? (and similarly
160 ;;; for the FAST-READ-CHAR stuff) -- WHN 19990825
161 (defmacro prepare-for-fast-read-byte (stream &body forms)
162 `(let* ((%frc-stream% ,stream)
163 (%frc-method% (ansi-stream-bin %frc-stream%))
164 (%frc-buffer% (ansi-stream-in-buffer %frc-stream%))
165 (%frc-index% (ansi-stream-in-index %frc-stream%)))
166 (declare (type index %frc-index%)
167 (type ansi-stream %frc-stream%))
170 ;;; Similar to fast-read-char, but we use a different refill routine & don't
171 ;;; convert to characters. If ANY-TYPE is true, then this can be used on any
172 ;;; integer streams, and we don't assert the result type.
173 (defmacro fast-read-byte (&optional (eof-error-p t) (eof-value ()) any-type)
174 ;; KLUDGE: should use ONCE-ONLY on EOF-ERROR-P and EOF-VALUE -- WHN 19990825
176 ,(if (and (eq eof-error-p t) (not any-type)) '(unsigned-byte 8) t)
179 (funcall %frc-method% %frc-stream% ,eof-error-p ,eof-value))
180 ((= %frc-index% +ansi-stream-in-buffer-length+)
181 (prog1 (fast-read-byte-refill %frc-stream% ,eof-error-p ,eof-value)
182 (setq %frc-index% (ansi-stream-in-index %frc-stream%))))
184 (prog1 (aref %frc-buffer% %frc-index%)
185 (incf %frc-index%))))))
186 (defmacro done-with-fast-read-byte ()
187 `(done-with-fast-read-char))