Mercurial > hg > xemacs-beta
annotate lisp/cl-macs.el @ 5380:919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
2011-03-21 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (revappend, nreconc):
Add compiler macros for these two functions. (They used to be
inline, but that involves needless binding of the arguments.)
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 21 Mar 2011 12:27:07 +0000 |
parents | a32a108ae815 |
children | 3889ef128488 |
rev | line source |
---|---|
613 | 1 ;;; cl-macs.el --- Common Lisp extensions for XEmacs Lisp (part four) |
428 | 2 |
2153 | 3 ;; Copyright (C) 1993, 2003, 2004 Free Software Foundation, Inc. |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
4 ;; Copyright (C) 2002, 2010 Ben Wing. |
428 | 5 |
6 ;; Author: Dave Gillespie <daveg@synaptics.com> | |
7 ;; Version: 2.02 | |
8 ;; Keywords: extensions | |
9 | |
10 ;; This file is part of XEmacs. | |
11 | |
12 ;; XEmacs is free software; you can redistribute it and/or modify it | |
13 ;; under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; XEmacs is distributed in the hope that it will be useful, but | |
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
20 ;; General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free | |
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
25 ;; 02111-1307, USA. | |
26 | |
2153 | 27 ;;; Synched up with: FSF 21.3. |
428 | 28 |
29 ;;; Commentary: | |
30 | |
31 ;; These are extensions to Emacs Lisp that provide a degree of | |
32 ;; Common Lisp compatibility, beyond what is already built-in | |
33 ;; in Emacs Lisp. | |
34 ;; | |
35 ;; This package was written by Dave Gillespie; it is a complete | |
36 ;; rewrite of Cesar Quiroz's original cl.el package of December 1986. | |
37 ;; | |
38 ;; Bug reports, comments, and suggestions are welcome! | |
39 | |
40 ;; This file contains the portions of the Common Lisp extensions | |
41 ;; package which should be autoloaded, but need only be present | |
42 ;; if the compiler or interpreter is used---this file is not | |
43 ;; necessary for executing compiled code. | |
44 | |
45 ;; See cl.el for Change Log. | |
46 | |
47 | |
48 ;;; Code: | |
49 | |
50 (or (memq 'cl-19 features) | |
51 (error "Tried to load `cl-macs' before `cl'!")) | |
52 | |
53 | |
54 (defmacro cl-pop2 (place) | |
55 (list 'prog1 (list 'car (list 'cdr place)) | |
56 (list 'setq place (list 'cdr (list 'cdr place))))) | |
57 (put 'cl-pop2 'edebug-form-spec 'edebug-sexps) | |
58 | |
59 (defvar cl-optimize-safety) | |
60 (defvar cl-optimize-speed) | |
61 | |
62 | |
63 ;;; This kludge allows macros which use cl-transform-function-property | |
64 ;;; to be called at compile-time. | |
65 | |
66 (require | |
67 (progn | |
68 (or (fboundp 'cl-transform-function-property) | |
69 (defalias 'cl-transform-function-property | |
70 #'(lambda (n p f) | |
71 (list 'put (list 'quote n) (list 'quote p) | |
72 (list 'function (cons 'lambda f)))))) | |
442 | 73 'xemacs)) |
428 | 74 |
75 | |
76 ;;; Initialization. | |
77 | |
78 (defvar cl-old-bc-file-form nil) | |
79 | |
80 ;;;###autoload | |
81 (defun cl-compile-time-init () | |
82 (run-hooks 'cl-hack-bytecomp-hook)) | |
83 | |
84 | |
2153 | 85 ;;; Some predicates for analyzing Lisp forms. These are used by various |
86 ;;; macro expanders to optimize the results in certain common cases. | |
87 | |
88 (defconst cl-simple-funcs '(car cdr nth aref elt if and or + - 1+ 1- min max | |
89 car-safe cdr-safe progn prog1 prog2)) | |
90 (defconst cl-safe-funcs '(* / % length memq list vector vectorp | |
91 < > <= >= = error)) | |
92 | |
93 ;;; Check if no side effects, and executes quickly. | |
94 (defun cl-simple-expr-p (x &optional size) | |
95 (or size (setq size 10)) | |
96 (if (and (consp x) (not (memq (car x) '(quote function function*)))) | |
97 (and (symbolp (car x)) | |
98 (or (memq (car x) cl-simple-funcs) | |
99 (get (car x) 'side-effect-free)) | |
100 (progn | |
101 (setq size (1- size)) | |
102 (while (and (setq x (cdr x)) | |
103 (setq size (cl-simple-expr-p (car x) size)))) | |
104 (and (null x) (>= size 0) size))) | |
105 (and (> size 0) (1- size)))) | |
106 | |
107 (defun cl-simple-exprs-p (xs) | |
108 (while (and xs (cl-simple-expr-p (car xs))) | |
109 (setq xs (cdr xs))) | |
110 (not xs)) | |
111 | |
112 ;;; Check if no side effects. | |
113 (defun cl-safe-expr-p (x) | |
5316
9ac28212c75a
#'cl-safe-expr-p, forms that start with the symbol lambda are also safe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5314
diff
changeset
|
114 (or (not (and (consp x) (not (memq (car x) |
9ac28212c75a
#'cl-safe-expr-p, forms that start with the symbol lambda are also safe.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5314
diff
changeset
|
115 '(quote function function* lambda))))) |
2153 | 116 (and (symbolp (car x)) |
117 (or (memq (car x) cl-simple-funcs) | |
118 (memq (car x) cl-safe-funcs) | |
119 (get (car x) 'side-effect-free)) | |
120 (progn | |
121 (while (and (setq x (cdr x)) (cl-safe-expr-p (car x)))) | |
122 (null x))))) | |
123 | |
124 ;;; Check if constant (i.e., no side effects or dependencies). | |
125 (defun cl-const-expr-p (x) | |
126 (cond ((consp x) | |
127 (or (eq (car x) 'quote) | |
128 (and (memq (car x) '(function function*)) | |
129 (or (symbolp (nth 1 x)) | |
130 (and (eq (car-safe (nth 1 x)) 'lambda) 'func))))) | |
131 ((symbolp x) (and (memq x '(nil t)) t)) | |
132 (t t))) | |
133 | |
134 (defun cl-const-exprs-p (xs) | |
135 (while (and xs (cl-const-expr-p (car xs))) | |
136 (setq xs (cdr xs))) | |
137 (not xs)) | |
138 | |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
139 (defun cl-const-expr-val (x &optional cl-not-constant) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
140 (let ((cl-const-expr-p (cl-const-expr-p x))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
141 (cond ((eq cl-const-expr-p t) (if (consp x) (nth 1 x) x)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
142 ((eq cl-const-expr-p 'func) (nth 1 x)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
143 (cl-not-constant)))) |
2153 | 144 |
145 (defun cl-expr-access-order (x v) | |
146 (if (cl-const-expr-p x) v | |
147 (if (consp x) | |
148 (progn | |
149 (while (setq x (cdr x)) (setq v (cl-expr-access-order (car x) v))) | |
150 v) | |
151 (if (eq x (car v)) (cdr v) '(t))))) | |
152 | |
153 ;;; Count number of times X refers to Y. Return nil for 0 times. | |
154 (defun cl-expr-contains (x y) | |
155 (cond ((equal y x) 1) | |
156 ((and (consp x) (not (memq (car-safe x) '(quote function function*)))) | |
157 (let ((sum 0)) | |
158 (while x | |
159 (setq sum (+ sum (or (cl-expr-contains (pop x) y) 0)))) | |
160 (and (> sum 0) sum))) | |
161 (t nil))) | |
162 | |
163 (defun cl-expr-contains-any (x y) | |
164 (while (and y (not (cl-expr-contains x (car y)))) (pop y)) | |
165 y) | |
166 | |
167 ;;; Check whether X may depend on any of the symbols in Y. | |
168 (defun cl-expr-depends-p (x y) | |
169 (and (not (cl-const-expr-p x)) | |
170 (or (not (cl-safe-expr-p x)) (cl-expr-contains-any x y)))) | |
171 | |
172 ;;; Symbols. | |
173 | |
174 (defvar *gensym-counter*) | |
175 | |
176 ;; XEmacs change: gensym and gentemp have been moved to cl.el. | |
177 | |
178 | |
428 | 179 ;;; Program structure. |
180 | |
181 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
182 (defmacro defun* (name arglist &optional docstring &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
183 "Define NAME as a function. |
428 | 184 Like normal `defun', except ARGLIST allows full Common Lisp conventions, |
872 | 185 and BODY is implicitly surrounded by (block NAME ...). |
186 | |
187 \"Full Common Lisp conventions\" means that: | |
188 | |
189 -- In addition to &optional and &rest, the lambda-list keywords &key, | |
190 &allow-other-keys, and &aux are allowed. | |
191 | |
192 -- The format of the arguments to &optional is expanded: As well as simple | |
193 variables, they can be lists of the form (VAR [INITFORM [SVAR]]); when | |
194 no argument is available for VAR, INITFORM is evaluated (or nil, if | |
195 INITFORM is omitted) and stored as VAR's value, and SVAR is bound to t. | |
196 If an arguent is available for VAR, and INITFORM is unused, SVAR is | |
197 bound to nil. | |
198 | |
199 -- &key specifies keyword arguments. The format of each argument is | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
200 VAR || ( { VAR || (KEYWORD VAR) } [INITFORM [SVAR]]). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
201 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
202 If VAR is specified on its own, VAR is bound within BODY to the value |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
203 supplied by the caller for the corresponding keyword; for example, &key |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
204 my-value means callers write :my-value RUNTIME-EXPRESSION. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
205 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
206 If (VAR INITFORM) is specified, INITFORM is an expression evaluated at |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
207 runtime to determine a default value for VAR. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
208 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
209 If (VAR INITFORM SVAR) is specified, SVAR is variable available within |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
210 BODY that is non-nil if VAR was explicitly specified in the calling |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
211 expression. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
212 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
213 If ((KEYWORD VAR)) is specified, KEYWORD is the keyword to be used by |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
214 callers, and VAR is the corresponding variable binding within BODY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
215 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
216 In calls to NAME, values for a given keyword may be supplied multiple |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
217 times. The first value is the only one used. |
872 | 218 |
219 -- &allow-other-keys means that if other keyword arguments are given that are | |
220 not specifically list in the arg list, they are allowed, rather than an | |
221 error being signalled. They can be retrieved with an &rest form. | |
222 | |
223 -- &aux specifies extra bindings, exactly like a `let*' enclosing the body. | |
224 The format of each binding is VAR || (VAR [INITFORM]) -- exactly like the | |
225 format of `let'/`let*' bindings. | |
226 " | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
227 (let* ((res (cl-transform-lambda (list* arglist docstring body) name)) |
428 | 228 (form (list* 'defun name (cdr res)))) |
229 (if (car res) (list 'progn (car res) form) form))) | |
230 | |
231 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
232 (defmacro defmacro* (name arglist &optional docstring &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
233 "Define NAME as a macro. |
428 | 234 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions, |
872 | 235 and BODY is implicitly surrounded by (block NAME ...). |
236 | |
237 \"Full Common Lisp conventions\" means that: | |
238 | |
239 -- The lambda-list keywords &optional, &rest, &key, &allow-other-keys, and | |
240 &aux are allowed, as in `defun*'. | |
241 | |
242 -- Three additional lambda-list keywords are allowed: &body, &whole, and | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
243 &environment: |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
244 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
245 &body is equivalent to &rest, but is intended to indicate that the |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
246 following arguments are the body of some piece of code, and should be |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
247 indented as such. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
248 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
249 &whole must come first; it is followed by a single variable that, at |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
250 macro expansion time, reflects all the arguments supplied to the macro, |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
251 as if it had been declared with a single &rest argument. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
252 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
253 &environment specifies local semantics for various macros for use within |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
254 the expansion of BODY. See the ENVIRONMENT argument to `macroexpand'. |
872 | 255 |
256 -- The macro arg list syntax allows for \"destructuring\" -- see also | |
257 `destructuring-bind', which destructures exactly like `defmacro*', and | |
258 `loop', which does a rather different way of destructuring. Anywhere | |
259 that a simple argument may appear, and (if following a lambda-list | |
260 keyword) a list may not normally appear, an embedded lambda list can be | |
261 substituted. (The format of the embedded lambda list is exactly the | |
262 same as for a top-level list except that &environment is not allowed.) | |
263 When matching this lambda list against a caller-specified argument, that | |
264 argument is treated as a list and normal lambda-list processing occurs, | |
265 just as if the entire operation were happening at top level. | |
266 Furthermore, any lambda list, embedded or top-level, can be dotted at its | |
267 end, and this will cause matching with an appropriate dotted list given | |
268 as an argument. | |
269 | |
270 See `loop' for practical examples of destructuring, but | |
271 keep in mind that `loop' destructuring is somewhat different from macro | |
272 destructuring in that | |
273 | |
274 (a) Macro destructuring has extra features in the various lambda-list | |
275 keywords, allowing for special processing of a list other than just | |
276 simple matching. | |
277 (b) Macro destructuring is strict, in that an error is signalled if the | |
278 actual structure does not match the expected structure. On the | |
279 other hand, loop destructuring is lax -- extra arguments in a list | |
280 are ignored, not enough arguments cause the remaining parameters to | |
281 receive a value of nil, etc. | |
282 " | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
283 (let* ((res (cl-transform-lambda (list* arglist docstring body) name)) |
428 | 284 (form (list* 'defmacro name (cdr res)))) |
285 (if (car res) (list 'progn (car res) form) form))) | |
286 | |
287 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
288 (defmacro function* (symbol-or-lambda) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
289 "Introduce a function. |
428 | 290 Like normal `function', except that if argument is a lambda form, its |
291 ARGLIST allows full Common Lisp conventions." | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
292 (if (eq (car-safe symbol-or-lambda) 'lambda) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
293 (let* ((res (cl-transform-lambda (cdr symbol-or-lambda) 'cl-none)) |
428 | 294 (form (list 'function (cons 'lambda (cdr res))))) |
295 (if (car res) (list 'progn (car res) form) form)) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
296 (list 'function symbol-or-lambda))) |
428 | 297 |
298 (defun cl-transform-function-property (func prop form) | |
299 (let ((res (cl-transform-lambda form func))) | |
300 (append '(progn) (cdr (cdr (car res))) | |
301 (list (list 'put (list 'quote func) (list 'quote prop) | |
302 (list 'function (cons 'lambda (cdr res)))))))) | |
303 | |
304 (defconst lambda-list-keywords | |
305 '(&optional &rest &key &allow-other-keys &aux &whole &body &environment)) | |
306 | |
307 (defvar cl-macro-environment nil) | |
308 (defvar bind-block) (defvar bind-defs) (defvar bind-enquote) | |
309 (defvar bind-inits) (defvar bind-lets) (defvar bind-forms) | |
310 | |
452 | 311 ;; npak@ispras.ru |
312 (defun cl-upcase-arg (arg) | |
1580 | 313 ;; Changes all non-keyword symbols in `ARG' to symbols |
452 | 314 ;; with name in upper case. |
1580 | 315 ;; ARG is either symbol or list of symbols or lists |
452 | 316 (cond ((symbolp arg) |
1580 | 317 ;; Do not upcase &optional, &key etc. |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
318 (if (memq arg lambda-list-keywords) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
319 arg |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
320 (make-symbol (upcase (symbol-name arg))))) |
1580 | 321 ((listp arg) |
322 (let ((arg (copy-list arg)) junk) | |
323 ;; Clean the list | |
324 (let ((p (last arg))) (if (cdr p) (setcdr p (list '&rest (cdr p))))) | |
325 (if (setq junk (cadr (memq '&cl-defs arg))) | |
326 (setq arg (delq '&cl-defs (delq junk arg)))) | |
327 (if (memq '&cl-quote arg) | |
328 (setq arg (delq '&cl-quote arg))) | |
329 (mapcar 'cl-upcase-arg arg))) | |
330 (t arg))) ; Maybe we are in initializer | |
452 | 331 |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
332 ;; npak@ispras.ru, modified by ben@666.com |
4702
eb1a409c317b
Unbreak autoload.el
Mike Sperber <sperber@deinprogramm.de>
parents:
4695
diff
changeset
|
333 ;;;###autoload |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
334 (defun cl-function-arglist (arglist) |
452 | 335 "Returns string with printed representation of arguments list. |
336 Supports Common Lisp lambda lists." | |
1580 | 337 (if (not (or (listp arglist) (symbolp arglist))) |
338 "Not available" | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
339 (check-argument-type #'true-list-p arglist) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
340 (let ((print-gensym nil)) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
341 (condition-case nil |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
342 (let ((args (cond ((null arglist) nil) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
343 ((listp arglist) (cl-upcase-arg arglist)) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
344 ((symbolp arglist) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
345 (cl-upcase-arg (list '&rest arglist))) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
346 (t (wrong-type-argument 'listp arglist))))) |
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
347 (if args (prin1-to-string args) "()")) |
5070
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
348 (t "Not available"))))) |
452 | 349 |
428 | 350 (defun cl-transform-lambda (form bind-block) |
351 (let* ((args (car form)) (body (cdr form)) | |
352 (bind-defs nil) (bind-enquote nil) | |
353 (bind-inits nil) (bind-lets nil) (bind-forms nil) | |
452 | 354 (header nil) (simple-args nil) |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
355 (complex-arglist (cl-function-arglist args)) |
452 | 356 (doc "")) |
428 | 357 (while (or (stringp (car body)) (eq (car-safe (car body)) 'interactive)) |
2153 | 358 (push (pop body) header)) |
428 | 359 (setq args (if (listp args) (copy-list args) (list '&rest args))) |
360 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p))))) | |
361 (if (setq bind-defs (cadr (memq '&cl-defs args))) | |
362 (setq args (delq '&cl-defs (delq bind-defs args)) | |
363 bind-defs (cadr bind-defs))) | |
364 (if (setq bind-enquote (memq '&cl-quote args)) | |
365 (setq args (delq '&cl-quote args))) | |
366 (if (memq '&whole args) (error "&whole not currently implemented")) | |
367 (let* ((p (memq '&environment args)) (v (cadr p))) | |
368 (if p (setq args (nconc (delq (car p) (delq v args)) | |
369 (list '&aux (list v 'cl-macro-environment)))))) | |
370 (while (and args (symbolp (car args)) | |
371 (not (memq (car args) '(nil &rest &body &key &aux))) | |
372 (not (and (eq (car args) '&optional) | |
373 (or bind-defs (consp (cadr args)))))) | |
2153 | 374 (push (pop args) simple-args)) |
428 | 375 (or (eq bind-block 'cl-none) |
376 (setq body (list (list* 'block bind-block body)))) | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
377 (setq simple-args (nreverse simple-args) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
378 header (nreverse header)) |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
379 ;; Add CL lambda list to documentation, if the CL lambda list differs |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
380 ;; from the non-CL lambda list. npak@ispras.ru |
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
381 (unless (equal complex-arglist |
5076
d555581e3cba
fix issues with display of argument docstrings
Ben Wing <ben@xemacs.org>
parents:
5072
diff
changeset
|
382 (cl-function-arglist simple-args)) |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
383 (and (stringp (car header)) (setq doc (pop header))) |
5070
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
384 ;; Stick the arguments onto the end of the doc string in a way that |
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
385 ;; will be recognized specially by `function-arglist'. |
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
386 (push (concat doc "\n\narguments: " complex-arglist "\n") |
b0f4adffca7d
fix so that CL docstrings (with &key, etc.) handled properly
Ben Wing <ben@xemacs.org>
parents:
4997
diff
changeset
|
387 header)) |
428 | 388 (if (null args) |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
389 (list* nil simple-args (nconc header body)) |
2153 | 390 (if (memq '&optional simple-args) (push '&optional args)) |
428 | 391 (cl-do-arglist args nil (- (length simple-args) |
392 (if (memq '&optional simple-args) 1 0))) | |
393 (setq bind-lets (nreverse bind-lets)) | |
394 (list* (and bind-inits (list* 'eval-when '(compile load eval) | |
395 (nreverse bind-inits))) | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
396 (nconc simple-args |
2153 | 397 (list '&rest (car (pop bind-lets)))) |
398 ;; XEmacs change: we add usage information using Nickolay's | |
399 ;; approach above | |
4694
2ac296807b88
Don't needlessly intern symbols, #'function-arglist, #'cl-function-arglist
Aidan Kehoe <kehoea@parhasard.net>
parents:
4677
diff
changeset
|
400 (nconc header |
428 | 401 (list (nconc (list 'let* bind-lets) |
402 (nreverse bind-forms) body))))))) | |
403 | |
404 (defun cl-do-arglist (args expr &optional num) ; uses bind-* | |
405 (if (nlistp args) | |
406 (if (or (memq args lambda-list-keywords) (not (symbolp args))) | |
407 (error "Invalid argument name: %s" args) | |
2153 | 408 (push (list args expr) bind-lets)) |
428 | 409 (setq args (copy-list args)) |
410 (let ((p (last args))) (if (cdr p) (setcdr p (list '&rest (cdr p))))) | |
411 (let ((p (memq '&body args))) (if p (setcar p '&rest))) | |
412 (if (memq '&environment args) (error "&environment used incorrectly")) | |
413 (let ((save-args args) | |
414 (restarg (memq '&rest args)) | |
415 (safety (if (cl-compiling-file) cl-optimize-safety 3)) | |
416 (keys nil) | |
417 (laterarg nil) (exactarg nil) minarg) | |
418 (or num (setq num 0)) | |
419 (if (listp (cadr restarg)) | |
420 (setq restarg (gensym "--rest--")) | |
421 (setq restarg (cadr restarg))) | |
2153 | 422 (push (list restarg expr) bind-lets) |
428 | 423 (if (eq (car args) '&whole) |
2153 | 424 (push (list (cl-pop2 args) restarg) bind-lets)) |
428 | 425 (let ((p args)) |
426 (setq minarg restarg) | |
427 (while (and p (not (memq (car p) lambda-list-keywords))) | |
428 (or (eq p args) (setq minarg (list 'cdr minarg))) | |
429 (setq p (cdr p))) | |
430 (if (memq (car p) '(nil &aux)) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
431 (setq minarg (list 'eql (list 'length restarg) |
428 | 432 (length (ldiff args p))) |
433 exactarg (not (eq args p))))) | |
434 (while (and args (not (memq (car args) lambda-list-keywords))) | |
435 (let ((poparg (list (if (or (cdr args) (not exactarg)) 'pop 'car) | |
436 restarg))) | |
437 (cl-do-arglist | |
2153 | 438 (pop args) |
428 | 439 (if (or laterarg (= safety 0)) poparg |
440 (list 'if minarg poparg | |
441 (list 'signal '(quote wrong-number-of-arguments) | |
442 (list 'list (and (not (eq bind-block 'cl-none)) | |
443 (list 'quote bind-block)) | |
444 (list 'length restarg))))))) | |
445 (setq num (1+ num) laterarg t)) | |
2153 | 446 (while (and (eq (car args) '&optional) (pop args)) |
428 | 447 (while (and args (not (memq (car args) lambda-list-keywords))) |
2153 | 448 (let ((arg (pop args))) |
428 | 449 (or (consp arg) (setq arg (list arg))) |
450 (if (cddr arg) (cl-do-arglist (nth 2 arg) (list 'and restarg t))) | |
451 (let ((def (if (cdr arg) (nth 1 arg) | |
452 (or (car bind-defs) | |
453 (nth 1 (assq (car arg) bind-defs))))) | |
454 (poparg (list 'pop restarg))) | |
455 (and def bind-enquote (setq def (list 'quote def))) | |
456 (cl-do-arglist (car arg) | |
457 (if def (list 'if restarg poparg def) poparg)) | |
458 (setq num (1+ num)))))) | |
459 (if (eq (car args) '&rest) | |
460 (let ((arg (cl-pop2 args))) | |
461 (if (consp arg) (cl-do-arglist arg restarg))) | |
462 (or (eq (car args) '&key) (= safety 0) exactarg | |
2153 | 463 (push (list 'if restarg |
428 | 464 (list 'signal '(quote wrong-number-of-arguments) |
465 (list 'list | |
466 (and (not (eq bind-block 'cl-none)) | |
467 (list 'quote bind-block)) | |
468 (list '+ num (list 'length restarg))))) | |
469 bind-forms))) | |
2153 | 470 (while (and (eq (car args) '&key) (pop args)) |
428 | 471 (while (and args (not (memq (car args) lambda-list-keywords))) |
2153 | 472 (let ((arg (pop args))) |
428 | 473 (or (consp arg) (setq arg (list arg))) |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
474 (let* ((karg (if (consp (car arg)) |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
475 ;; It's possible to use non-keywords here, as |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
476 ;; in the KEYWORD-ARGUMENT-NAME-PACKAGE Common |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
477 ;; Lisp issue: |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
478 (caar arg) |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
479 ;; Use read instead of intern in case we ever |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
480 ;; actually get packages and keywords are no |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
481 ;; longer in obarray: |
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
482 (read (concat ":" (symbol-name (car arg)))))) |
428 | 483 (varg (if (consp (car arg)) (cadar arg) (car arg))) |
484 (def (if (cdr arg) (cadr arg) | |
485 (or (car bind-defs) (cadr (assq varg bind-defs))))) | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
486 (look (list 'memq (quote-maybe karg) restarg))) |
428 | 487 (and def bind-enquote (setq def (list 'quote def))) |
488 (if (cddr arg) | |
489 (let* ((temp (or (nth 2 arg) (gensym))) | |
490 (val (list 'car (list 'cdr temp)))) | |
491 (cl-do-arglist temp look) | |
492 (cl-do-arglist varg | |
493 (list 'if temp | |
494 (list 'prog1 val (list 'setq temp t)) | |
495 def))) | |
496 (cl-do-arglist | |
497 varg | |
498 (list 'car | |
499 (list 'cdr | |
500 (if (null def) | |
501 look | |
502 (list 'or look | |
503 (if (eq (cl-const-expr-p def) t) | |
504 (list | |
505 'quote | |
506 (list nil (cl-const-expr-val def))) | |
507 (list 'list nil def)))))))) | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
508 (push karg keys))))) |
428 | 509 (setq keys (nreverse keys)) |
2153 | 510 (or (and (eq (car args) '&allow-other-keys) (pop args)) |
428 | 511 (null keys) (= safety 0) |
512 (let* ((var (gensym "--keys--")) | |
513 (allow '(:allow-other-keys)) | |
514 (check (list | |
515 'while var | |
516 (list | |
517 'cond | |
518 (list (list 'memq (list 'car var) | |
519 (list 'quote (append keys allow))) | |
520 (list 'setq var (list 'cdr (list 'cdr var)))) | |
521 (list (list 'car | |
522 (list 'cdr | |
4793
8b50bee3c88c
Remove attempted support for 1996-era emacs without self-quoting keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
523 (list 'memq (car allow) |
428 | 524 restarg))) |
525 (list 'setq var nil)) | |
526 (list t | |
527 (list | |
528 'error | |
5084
6afe991b8135
Add a PARSE_KEYWORDS macro, use it in #'make-hash-table.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5080
diff
changeset
|
529 ''invalid-keyword-argument |
428 | 530 (list 'car var))))))) |
2153 | 531 (push (list 'let (list (list var restarg)) check) bind-forms))) |
532 (while (and (eq (car args) '&aux) (pop args)) | |
428 | 533 (while (and args (not (memq (car args) lambda-list-keywords))) |
534 (if (consp (car args)) | |
535 (if (and bind-enquote (cadar args)) | |
536 (cl-do-arglist (caar args) | |
2153 | 537 (list 'quote (cadr (pop args)))) |
538 (cl-do-arglist (caar args) (cadr (pop args)))) | |
539 (cl-do-arglist (pop args) nil)))) | |
428 | 540 (if args (error "Malformed argument list %s" save-args))))) |
541 | |
542 (defun cl-arglist-args (args) | |
543 (if (nlistp args) (list args) | |
544 (let ((res nil) (kind nil) arg) | |
545 (while (consp args) | |
2153 | 546 (setq arg (pop args)) |
428 | 547 (if (memq arg lambda-list-keywords) (setq kind arg) |
2153 | 548 (if (eq arg '&cl-defs) (pop args) |
428 | 549 (and (consp arg) kind (setq arg (car arg))) |
550 (and (consp arg) (cdr arg) (eq kind '&key) (setq arg (cadr arg))) | |
551 (setq res (nconc res (cl-arglist-args arg)))))) | |
552 (nconc res (and args (list args)))))) | |
553 | |
554 ;;;###autoload | |
555 (defmacro destructuring-bind (args expr &rest body) | |
872 | 556 "Bind the arguments in ARGS to EXPR then eval BODY. |
557 This is similar to `let' but it does \"destructuring\", in that it matches | |
558 the structure of ARGS to the structure of EXPR and binds corresponding | |
559 arguments in ARGS to their values in EXPR. The format of ARGS, and the | |
560 way the destructuring works, is exactly like the destructuring that occurs | |
561 in `defmacro*'; see that for more information. | |
562 | |
563 An alternative means of destructuring is using the `loop' macro. `loop' | |
564 gives practical examples of destructuring. `defmacro*' describes the | |
565 differences between loop and macro-style destructuring. | |
566 | |
567 You can rewrite a call to (destructuring-bind ARGS EXPR &rest BODY) using | |
568 `loop', approximately like this: | |
569 | |
570 (loop for ARGS = EXPR | |
571 return (progn BODY)) | |
572 | |
573 I say \"approximately\" because the destructuring works in a somewhat | |
574 different fashion, although for most reasonably simple constructs the | |
575 results will be the same." | |
428 | 576 (let* ((bind-lets nil) (bind-forms nil) (bind-inits nil) |
577 (bind-defs nil) (bind-block 'cl-none)) | |
578 (cl-do-arglist (or args '(&aux)) expr) | |
579 (append '(progn) bind-inits | |
580 (list (nconc (list 'let* (nreverse bind-lets)) | |
581 (nreverse bind-forms) body))))) | |
582 | |
583 | |
584 ;;; The `eval-when' form. | |
585 | |
586 (defvar cl-not-toplevel nil) | |
587 | |
588 ;;;###autoload | |
589 (defmacro eval-when (when &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
590 "Control when BODY is evaluated. |
428 | 591 If `compile' is in WHEN, BODY is evaluated when compiled at top-level. |
592 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile. | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
593 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
594 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
595 arguments: ((&rest WHEN) &body BODY)" |
428 | 596 (if (and (fboundp 'cl-compiling-file) (cl-compiling-file) |
597 (not cl-not-toplevel) (not (boundp 'for-effect))) ; horrible kludge | |
2153 | 598 (let ((comp (or (memq 'compile when) (memq :compile-toplevel when))) |
428 | 599 (cl-not-toplevel t)) |
2153 | 600 (if (or (memq 'load when) (memq :load-toplevel when)) |
428 | 601 (if comp (cons 'progn (mapcar 'cl-compile-time-too body)) |
602 (list* 'if nil nil body)) | |
603 (progn (if comp (eval (cons 'progn body))) nil))) | |
2153 | 604 (and (or (memq 'eval when) (memq :execute when)) |
428 | 605 (cons 'progn body)))) |
606 | |
607 (defun cl-compile-time-too (form) | |
608 (or (and (symbolp (car-safe form)) (get (car-safe form) 'byte-hunk-handler)) | |
609 (setq form (macroexpand | |
610 form (cons '(eval-when) byte-compile-macro-environment)))) | |
611 (cond ((eq (car-safe form) 'progn) | |
612 (cons 'progn (mapcar 'cl-compile-time-too (cdr form)))) | |
613 ((eq (car-safe form) 'eval-when) | |
614 (let ((when (nth 1 form))) | |
2153 | 615 (if (or (memq 'eval when) (memq :execute when)) |
428 | 616 (list* 'eval-when (cons 'compile when) (cddr form)) |
617 form))) | |
618 (t (eval form) form))) | |
619 | |
620 ;;;###autoload | |
621 (defmacro load-time-value (form &optional read-only) | |
622 "Like `progn', but evaluates the body at load time. | |
623 The result of the body appears to the compiler as a quoted constant." | |
624 (if (cl-compiling-file) | |
625 (let* ((temp (gentemp "--cl-load-time--")) | |
626 (set (list 'set (list 'quote temp) form))) | |
627 (if (and (fboundp 'byte-compile-file-form-defmumble) | |
628 (boundp 'this-kind) (boundp 'that-one)) | |
629 (fset 'byte-compile-file-form | |
630 (list 'lambda '(form) | |
631 (list 'fset '(quote byte-compile-file-form) | |
632 (list 'quote | |
633 (symbol-function 'byte-compile-file-form))) | |
634 (list 'byte-compile-file-form (list 'quote set)) | |
635 '(byte-compile-file-form form))) | |
636 ;; XEmacs change | |
637 (print set (symbol-value ;;'outbuffer | |
638 'byte-compile-output-buffer | |
639 ))) | |
640 (list 'symbol-value (list 'quote temp))) | |
641 (list 'quote (eval form)))) | |
642 | |
643 | |
644 ;;; Conditional control structures. | |
645 | |
646 ;;;###autoload | |
647 (defmacro case (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
648 "Evals EXPR, chooses from CLAUSES on that value. |
428 | 649 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared |
650 against each key in each KEYLIST; the corresponding BODY is evaluated. | |
651 If no clause succeeds, case returns nil. A single atom may be used in | |
652 place of a KEYLIST of one atom. A KEYLIST of `t' or `otherwise' is | |
653 allowed only in the final clause, and matches if no other keys match. | |
654 Key values are compared by `eql'." | |
655 (let* ((temp (if (cl-simple-expr-p expr 3) expr (gensym))) | |
656 (head-list nil) | |
657 (last-clause (car (last clauses))) | |
658 (body (cons | |
659 'cond | |
660 (mapcar | |
661 #'(lambda (c) | |
662 (cons (cond ((memq (car c) '(t otherwise)) | |
2153 | 663 ;; XEmacs addition: check for last clause |
428 | 664 (or (eq c last-clause) |
665 (error | |
666 "`%s' is allowed only as the last case clause" | |
667 (car c))) | |
668 t) | |
669 ((eq (car c) 'ecase-error-flag) | |
670 (list 'error "ecase failed: %s, %s" | |
671 temp (list 'quote (reverse head-list)))) | |
672 ((listp (car c)) | |
673 (setq head-list (append (car c) head-list)) | |
674 (list 'member* temp (list 'quote (car c)))) | |
675 (t | |
676 (if (memq (car c) head-list) | |
677 (error "Duplicate key in case: %s" | |
678 (car c))) | |
2153 | 679 (push (car c) head-list) |
428 | 680 (list 'eql temp (list 'quote (car c))))) |
681 (or (cdr c) '(nil)))) | |
682 clauses)))) | |
683 (if (eq temp expr) body | |
684 (list 'let (list (list temp expr)) body)))) | |
685 | |
686 ;; #### CL standard also requires `ccase', which signals a continuable | |
687 ;; error (`cerror' in XEmacs). However, I don't think it buys us | |
688 ;; anything to introduce it, as there is probably much more CL stuff | |
689 ;; missing, and the feature is not essential. --hniksic | |
690 | |
691 ;;;###autoload | |
692 (defmacro ecase (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
693 "Like `case', but error if no case fits. |
428 | 694 `otherwise'-clauses are not allowed." |
2153 | 695 ;; XEmacs addition: disallow t and otherwise |
428 | 696 (let ((disallowed (or (assq t clauses) |
697 (assq 'otherwise clauses)))) | |
698 (if disallowed | |
699 (error "`%s' is not allowed in ecase" (car disallowed)))) | |
700 (list* 'case expr (append clauses '((ecase-error-flag))))) | |
701 | |
702 ;;;###autoload | |
703 (defmacro typecase (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
704 "Evals EXPR, chooses from CLAUSES on that value. |
428 | 705 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it |
706 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds, | |
707 typecase returns nil. A TYPE of `t' or `otherwise' is allowed only in the | |
708 final clause, and matches if no other keys match." | |
709 (let* ((temp (if (cl-simple-expr-p expr 3) expr (gensym))) | |
710 (type-list nil) | |
711 (body (cons | |
712 'cond | |
713 (mapcar | |
714 #'(lambda (c) | |
715 (cons (cond ((eq (car c) 'otherwise) t) | |
716 ((eq (car c) 'ecase-error-flag) | |
717 (list 'error "etypecase failed: %s, %s" | |
718 temp (list 'quote (reverse type-list)))) | |
719 (t | |
2153 | 720 (push (car c) type-list) |
428 | 721 (cl-make-type-test temp (car c)))) |
722 (or (cdr c) '(nil)))) | |
723 clauses)))) | |
724 (if (eq temp expr) body | |
725 (list 'let (list (list temp expr)) body)))) | |
726 | |
727 ;;;###autoload | |
728 (defmacro etypecase (expr &rest clauses) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
729 "Like `typecase', but error if no case fits. |
428 | 730 `otherwise'-clauses are not allowed." |
731 (list* 'typecase expr (append clauses '((ecase-error-flag))))) | |
732 | |
733 | |
734 ;;; Blocks and exits. | |
5353
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
735 (defvar cl-active-block-names nil) |
428 | 736 |
737 ;;;###autoload | |
738 (defmacro block (name &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
739 "Define a lexically-scoped block named NAME. |
428 | 740 NAME may be any symbol. Code inside the BODY forms can call `return-from' |
741 to jump prematurely out of the block. This differs from `catch' and `throw' | |
742 in two respects: First, the NAME is an unevaluated symbol rather than a | |
743 quoted symbol or other form; and second, NAME is lexically rather than | |
744 dynamically scoped: Only references to it within BODY will work. These | |
5353
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
745 references may appear inside macro expansions and in lambda expressions, but |
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
746 not inside other functions called from BODY." |
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
747 (let ((cl-active-block-names (acons name (copy-symbol name) |
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
748 cl-active-block-names)) |
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
749 (body (cons 'progn body))) |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
750 ;; Tell the byte-compiler this is a block, not a normal catch call, and |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
751 ;; as such it can eliminate it if that's appropriate: |
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
752 (put (cdar cl-active-block-names) 'cl-block-name name) |
5353
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
753 `(catch ',(cdar cl-active-block-names) |
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
754 ,(cl-macroexpand-all body cl-macro-environment)))) |
428 | 755 |
756 ;;;###autoload | |
2153 | 757 (defmacro return (&optional result) |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
758 "Return from the block named nil. |
428 | 759 This is equivalent to `(return-from nil RESULT)'." |
5353
38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5346
diff
changeset
|
760 `(return-from nil ,result)) |
428 | 761 |
762 ;;;###autoload | |
2153 | 763 (defmacro return-from (name &optional result) |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
764 "Return from the block named NAME. |
428 | 765 This jumps out to the innermost enclosing `(block NAME ...)' form, |
766 returning RESULT from that form (or nil if RESULT is omitted). | |
767 This is compatible with Common Lisp, but note that `defun' and | |
768 `defmacro' do not create implicit blocks as they do in Common Lisp." | |
5356
5dd1ba5e0113
Be better about eliminating `block's that are not `return-from'd, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5353
diff
changeset
|
769 `(throw ',(or (cdr (assq name cl-active-block-names)) |
5376
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5367
diff
changeset
|
770 ;; Tell the byte-compiler the original name of the block, |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5367
diff
changeset
|
771 ;; leave any warning to it. |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5367
diff
changeset
|
772 (let ((copy-symbol (copy-symbol name))) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5367
diff
changeset
|
773 (put copy-symbol 'cl-block-name name) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5367
diff
changeset
|
774 copy-symbol)) |
4b529b940e2e
Eliminate unused blocks named nil, too, cl-macs.el, bytecomp.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5367
diff
changeset
|
775 ,result)) |
428 | 776 |
777 ;;; The "loop" macro. | |
778 | |
779 (defvar args) (defvar loop-accum-var) (defvar loop-accum-vars) | |
780 (defvar loop-bindings) (defvar loop-body) (defvar loop-destr-temps) | |
781 (defvar loop-finally) (defvar loop-finish-flag) (defvar loop-first-flag) | |
782 (defvar loop-initially) (defvar loop-map-form) (defvar loop-name) | |
783 (defvar loop-result) (defvar loop-result-explicit) | |
784 (defvar loop-result-var) (defvar loop-steps) (defvar loop-symbol-macs) | |
785 | |
786 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
787 (defmacro loop (&rest clauses) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
788 "The Common Lisp `loop' macro. |
800 | 789 |
790 The loop macro consists of a series of clauses, which do things like | |
791 iterate variables, set conditions for exiting the loop, accumulating values | |
792 to be returned as the return value of the loop, and executing arbitrary | |
2297 | 793 blocks of code. Each clause is processed in turn, and the loop executes its |
800 | 794 body repeatedly until an exit condition is hit. |
795 | |
796 It's important to understand that loop clauses such as `for' and `while', | |
797 which look like loop-establishing constructs, don't actually *establish* a | |
798 loop\; the looping is established by the `loop' clause itself, which will | |
799 repeatedly process its body until told to stop. `while' merely establishes | |
800 a condition which, when true, causes the loop to finish, and `for' sets a | |
801 variable to different values on each iteration (e.g. successive elements of | |
802 a list) and sets an exit condition when there are no more values. This | |
803 means, for example, that if two `for' clauses appear, you don't get two | |
804 nested loops, but instead two variables that are stepped in parallel, and | |
805 two exit conditions, either of which, if triggered, will cause the loop to | |
806 end. Similarly for a loop with a `for' and a `while' clause. For example: | |
807 | |
808 \(loop | |
809 for x in list | |
810 while x | |
811 do ...) | |
812 | |
813 In each successive iteration, X is set to the next element of the list. If | |
814 there are no more elements, or if any element is nil (the `while' clause), | |
815 the loop exits. Otherwise, the block of code following `do' is executed.) | |
816 | |
817 This example also shows that some clauses establish variable bindings -- | |
818 essentially like a `let' binding -- and that following clauses can | |
819 reference these variables. Furthermore, the entire loop is surrounded by a | |
820 block named nil (unless the `named' clause is given), so you can return | |
821 from the loop using the macro `return'. (The other way to exit the loop is | |
822 through the macro `loop-finish'. The difference is that some loop clauses | |
823 establish or accumulate a value to be returned, and `loop-finish' returns | |
824 this. `return', however, can only return an explicitly-specified value. | |
825 NOTE CAREFULLY: There is a loop clause called `return' as well as a | |
826 standard Lisp macro called `return'. Normally they work similarly\; but if | |
827 you give the loop a name with `named', you will need to use the macro | |
828 `return-from'.) | |
829 | |
830 Another extremely useful feature of loops is called \"destructuring\". If, | |
831 in place of VAR, a list (possibly dotted, possibly a tree of arbitary | |
832 complexity) is given, the value to be assigned is assumed to have a similar | |
833 structure to the list given, and variables in the list will be matched up | |
834 with corresponding elements in the structure. For example: | |
835 | |
836 \(loop | |
837 for (x y) in '((foo 1) (bar 2) (baz 3)) | |
838 do (puthash x y some-hash-table)) | |
839 | |
840 will add three elements to a hash table, mapping foo -> 1, bar -> 2, and | |
841 baz -> 3. As other examples, you can conveniently process alists using | |
842 | |
843 \(loop for (x . y) in alist do ...) | |
844 | |
845 and plists using | |
846 | |
847 \(loop for (x y) on plist by #'cddr do ...) | |
848 | |
849 Destructuring is forgiving in that mismatches in the number of elements on | |
850 either size will be handled gracefully, either by ignoring or initializing | |
1123 | 851 to nil. Destructuring is extremely powerful, and is probably the single |
852 most useful feature of `loop'. | |
853 | |
854 Other useful features of loops are iterating over hash-tables, collecting values into lists, and being able to modify lists in-place as you iterate over them. As an example of the first two, | |
855 | |
856 \(loop for x being the hash-key in table using (hash-value y) | |
857 collect (cons x y)) | |
858 | |
859 converts hash-table TABLE to an alist. (What `collect' actually does is | |
860 push its value onto the end of an internal list and establish this list as | |
861 the default return value of the loop. See below for more information.) | |
862 | |
863 An example of in-place modification is | |
864 | |
865 \(setq foo '(1 3 5)) | |
866 \(loop for x in-ref foo do | |
867 (setf x (* x x))) | |
868 | |
869 after which foo will contain '(1 9 25). | |
800 | 870 |
871 If you don't understand how a particular loop clause works, create an | |
872 example and use `macroexpand-sexp' to expand the macro. | |
873 | |
428 | 874 Valid clauses are: |
800 | 875 |
876 \(NOTE: Keywords in lowercase\; slashes separate different possibilities | |
877 for keywords, some of which are synonymous\; brackets indicate optional | |
878 parts of the clause. In all of the clauses with `being', the word `being', | |
879 the words `each' or `the', and the difference between singular and plural | |
880 keywords are all just syntactic sugar. Stylistically, you should write | |
881 either `being each foo' or `being the foos'.) | |
882 | |
883 for VAR from/upfrom/downfrom NUM1 to/upto/downto/above/below NUM2 [by NUMSTEP] | |
884 Step VAR across numbers. `upfrom', `upto', and `below' explicitly | |
885 indicate upward stepping\; `downfrom', `downto', and `above' explicitly | |
886 indicate downward stepping. (If none of these is given, the default is | |
887 upward.) `to', `upto', and `downto' cause stepping to include NUM2 as | |
888 the last iteration, while `above' and `below' stop just before reaching | |
889 NUM2. `by' can be given to indicate a stepping increment other than 1. | |
890 | |
891 for VAR in LIST [by FUNC] | |
892 Step VAR over elements of a LIST. FUNC specifies how to get successive | |
893 sublists and defaults to `cdr'. | |
894 | |
895 for VAR on LIST [by FUNC] | |
896 Step VAR over tails of a LIST. FUNC specifies how to get successive | |
897 sublists and defaults to `cdr'. | |
898 | |
899 for VAR in-ref LIST [by FUNC] | |
900 Step VAR over elements of a LIST, like `for ... in', except the VAR is | |
901 bound using `symbol-macrolet' instead of `let'. In essence, VAR is set | |
902 to a \"reference\" to the list element instead of the element itself\; | |
903 this us, you can destructively modify the list using `setf' on VAR, and | |
904 any changes to the list will \"magically\" reflect themselves in | |
905 subsequent uses of VAR. | |
906 | |
907 for VAR = INIT [then EXPR] | |
908 Set VAR on each iteration of the loop. If only INIT is given, use it | |
909 on each iteration. Otherwise, use INIT on the first iteration and EXPR | |
910 on subsequent ones. | |
911 | |
912 for VAR across/across-ref ARRAY | |
913 Step VAR across a sequence other than a list (string, vector, bit | |
914 vector). If `across-ref' is given, VAR is bound using | |
915 `symbol-macrolet' instead of `let' -- see above. | |
916 | |
917 for VAR being each/the element/elements in/of/in-ref/of-ref SEQUENCE [using (index INDEX-VAR)] | |
918 Step VAR across any sequence. A variable can be specified with a | |
919 `using' phrase to receive the index, starting at 0. If `in-ref' or | |
920 `of-ref' is given, VAR is bound using `symbol-macrolet' instead of | |
921 `let' -- see above. | |
922 | |
923 for VAR being each/the hash-key/hash-keys/hash-value/hash-values in/of HASH-TABLE [using (hash-value/hash-key OTHER-VAR)] | |
924 | |
925 for VAR being each/the hash-key/hash-keys/hash-value/hash-values in/of HASH-TABLE [using (hash-value/hash-key OTHER-VAR)] | |
926 Map VAR over a hash table. The various keywords are synonymous except | |
927 those that distinguish between keys and values. The `using' phrase is | |
928 optional and allows both key and value to be bound. | |
929 | |
930 for VAR being each/the symbol/present-symbol/external-symbol/symbols/present-symbols/external-symbols in/of OBARRAY | |
931 Map VAR over the symbols in an obarray. All symbol keywords are | |
932 currently synonymous. | |
933 | |
934 for VAR being each/the extent/extents [in/of BUFFER-OR-STRING] [from POS] [to POS] | |
935 Map VAR over the extents in a buffer or string, defaulting to the | |
936 current buffer, the beginning and the end, respectively. | |
937 | |
938 for VAR being each/the interval/intervals [in/of BUFFER-OR-STRING] [property PROPERTY] [from POS] [to POS] | |
939 Map VAR over the intervals without property change in a buffer or | |
940 string, defaulting to the current buffer, the beginning and the end, | |
941 respectively. If PROPERTY is given, iteration occurs using | |
942 `next-single-property-change'\; otherwise, using | |
943 `next-property-change'. | |
944 | |
945 for VAR being each/the window/windows [in/of FRAME] | |
946 Step VAR over the windows in FRAME, defaulting to the selected frame. | |
947 | |
948 for VAR being each/the frame/frames | |
949 Step VAR over all frames. | |
950 | |
951 for VAR being each/the buffer/buffers [by FUNC] | |
952 Step VAR over all buffers. This is actually equivalent to | |
953 `for VAR in (buffer-list) [by FUNC]'. | |
954 | |
955 for VAR being each/the key-code/key-codes/key-seq/key-seqs/key-binding/key-bindings in KEYMAP [using (key-code/key-codes/key-seq/key-seqs/key-binding/key-bindings OTHER-VAR)] | |
956 Map VAR over the entries in a keymap. Keyword `key-seq' causes | |
957 recursive mapping over prefix keymaps occurring in the keymap, with VAR | |
958 getting the built-up sequence (a vector). Otherwise, mapping does not | |
959 occur recursively. `key-code' and `key-seq' refer to what is bound | |
960 (second argument of `define-key'), and `key-binding' what it's bound to | |
961 (third argument of `define-key'). | |
962 | |
963 as VAR ... | |
964 `as' is a synonym for `for'. | |
965 | |
966 and VAR ... | |
967 `and' clauses have the same syntax as `for' clauses except that the | |
968 variables in the clause are bound in parallel with a preceding | |
969 `and'/`for' clause instead of in series. | |
970 | |
971 with VAR = INIT | |
972 Set VAR to INIT once, before doing any iterations. | |
973 | |
974 repeat NUM | |
975 Exit the loop if more than NUM iterations have occurred. | |
976 | |
977 while COND | |
978 Exit the loop if COND isn't true. | |
979 | |
980 until COND | |
981 Exit the loop if COND is true. | |
982 | |
983 collect EXPR [into VAR] | |
984 Push EXPR onto the end of a list of values -- stored either in VAR or a | |
985 temporary variable that will be returned as the return value of the | |
986 loop if it terminates through an exit condition or a call to | |
987 `loop-finish'. | |
988 | |
989 append EXPR [into VAR] | |
990 Append EXPR (a list) onto the end of a list of values, like `collect'. | |
991 | |
992 nconc EXPR [into VAR] | |
993 Nconc EXPR (a list) onto the end of a list of values, like `collect'. | |
994 | |
995 concat EXPR [into VAR] | |
996 Concatenate EXPR (a string) onto the end of a string of values, like | |
997 `collect'. | |
998 | |
999 vconcat EXPR [into VAR] | |
1000 Concatenate EXPR (a vector) onto the end of a vector of values, like | |
1001 `collect'. | |
1002 | |
1003 bvconcat EXPR [into VAR] | |
1004 Concatenate EXPR (a bit vector) onto the end of a bit vector of values, | |
1005 like `collect'. | |
1006 | |
1007 sum EXPR [into VAR] | |
1008 Add EXPR to a value, like `collect'. | |
1009 | |
1010 count EXPR [into VAR] | |
1011 If EXPR is true, increment a value by 1, like `collect'. | |
1012 | |
1013 maximize EXPR [into VAR] | |
1014 IF EXPR is greater than a value, replace the value with EXPR, like | |
1015 `collect'. | |
1016 | |
1017 minimize EXPR [into VAR] | |
1018 IF EXPR is less than a value, replace the value with EXPR, like | |
1019 `collect'. | |
1020 | |
1021 always COND | |
1022 If COND is true, continue the loop and set the loop return value (the | |
1023 same value that's manipulated by `collect' and friends and is returned | |
1024 by a normal loop exit or an exit using `loop-finish') to t\; otherwise, | |
1025 exit the loop and return nil. The effect is to determine and return | |
1026 whether a condition is true \"always\" (all iterations of the loop). | |
1027 | |
1028 never COND | |
1029 If COND is false, continue the loop and set the loop return value (like | |
1030 `always') to t\; otherwise, exit the loop and return nil. The effect | |
1031 is to determine and return whether a condition is \"never\" true (all | |
1032 iterations of the loop). | |
1033 | |
1034 thereis COND | |
1035 If COND is true, exit the loop and return COND. | |
1036 | |
1037 if/when COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...] | |
1038 If COND is true, execute the directly following clause(s)\; otherwise, | |
1039 execute the clauses following `else'. | |
1040 | |
1041 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...] | |
1042 If COND is false, execute the directly following clause(s)\; otherwise, execute the clauses following `else'. | |
1043 | |
1044 do EXPRS... | |
1045 Execute the expressions (any Lisp forms). | |
1046 | |
1047 initially EXPRS... | |
1048 Execute EXPR once, before doing any iterations, and after values have | |
1049 been set using `with'. | |
1050 | |
1051 finally EXPRS... | |
1052 Execute EXPR once, directly before the loop terminates. This will not | |
1053 be executed if the loop terminates prematurely as a result of `always', | |
1054 `never', `thereis', or `return'. | |
1055 | |
1056 return EXPR | |
1057 Exit from the loop and return EXPR. | |
1058 | |
1059 finally return EXPR | |
1060 Specify the value to be returned when the loop exits. (Unlike `return', | |
1061 this doesn't cause the loop to immediately exit\; it will exit whenever | |
1062 it normally would have.) This takes precedence over a return value | |
1063 specified with `collect' and friends or `always' and friends. | |
1064 | |
1065 named NAME | |
1066 Specify the name for block surrounding the loop, in place of nil. | |
1067 (See `block'.) | |
1068 " | |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1069 (if (notany #'symbolp (set-difference clauses '(nil t))) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1070 (list 'block nil (list* 'while t clauses)) |
428 | 1071 (let ((loop-name nil) (loop-bindings nil) |
1072 (loop-body nil) (loop-steps nil) | |
1073 (loop-result nil) (loop-result-explicit nil) | |
1074 (loop-result-var nil) (loop-finish-flag nil) | |
1075 (loop-accum-var nil) (loop-accum-vars nil) | |
1076 (loop-initially nil) (loop-finally nil) | |
1077 (loop-map-form nil) (loop-first-flag nil) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1078 (loop-destr-temps nil) (loop-symbol-macs nil) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1079 (args (append clauses '(cl-end-loop)))) |
428 | 1080 (while (not (eq (car args) 'cl-end-loop)) (cl-parse-loop-clause)) |
1081 (if loop-finish-flag | |
2153 | 1082 (push (list (list loop-finish-flag t)) loop-bindings)) |
428 | 1083 (if loop-first-flag |
2153 | 1084 (progn (push (list (list loop-first-flag t)) loop-bindings) |
1085 (push (list 'setq loop-first-flag nil) loop-steps))) | |
428 | 1086 (let* ((epilogue (nconc (nreverse loop-finally) |
1087 (list (or loop-result-explicit loop-result)))) | |
1088 (ands (cl-loop-build-ands (nreverse loop-body))) | |
1089 (while-body (nconc (cadr ands) (nreverse loop-steps))) | |
1090 (body (append | |
1091 (nreverse loop-initially) | |
1092 (list (if loop-map-form | |
1093 (list 'block '--cl-finish-- | |
1094 (subst | |
1095 (if (eq (car ands) t) while-body | |
1096 (cons (list 'or (car ands) | |
1097 '(return-from --cl-finish-- | |
1098 nil)) | |
1099 while-body)) | |
1100 '--cl-map loop-map-form)) | |
1101 (list* 'while (car ands) while-body))) | |
1102 (if loop-finish-flag | |
1346 | 1103 (if (equal epilogue '(nil)) |
1104 ;; XEmacs change: When epilogue is nil and | |
1105 ;; loop-finish-flag exists, you get a byte-compiler | |
1106 ;; warning using the original (commented-out) | |
1107 ;; code below. So instead we create a form that | |
1108 ;; gives the same result but uses loop-finish-flag. | |
1109 ;; --ben | |
1110 ;(list loop-result-var) | |
1111 (list (list 'if loop-finish-flag | |
1112 loop-result-var loop-result-var)) | |
428 | 1113 (list (list 'if loop-finish-flag |
1114 (cons 'progn epilogue) loop-result-var))) | |
1115 epilogue)))) | |
2153 | 1116 (if loop-result-var (push (list loop-result-var) loop-bindings)) |
428 | 1117 (while loop-bindings |
1118 (if (cdar loop-bindings) | |
2153 | 1119 (setq body (list (cl-loop-let (pop loop-bindings) body t))) |
428 | 1120 (let ((lets nil)) |
1121 (while (and loop-bindings | |
1122 (not (cdar loop-bindings))) | |
2153 | 1123 (push (car (pop loop-bindings)) lets)) |
428 | 1124 (setq body (list (cl-loop-let lets body nil)))))) |
1125 (if loop-symbol-macs | |
1126 (setq body (list (list* 'symbol-macrolet loop-symbol-macs body)))) | |
1127 (list* 'block loop-name body))))) | |
1128 | |
1129 (defun cl-parse-loop-clause () ; uses args, loop-* | |
2153 | 1130 (let ((word (pop args)) |
428 | 1131 (hash-types '(hash-key hash-keys hash-value hash-values)) |
1132 (key-types '(key-code key-codes key-seq key-seqs | |
1133 key-binding key-bindings))) | |
1134 (cond | |
1135 | |
1136 ((null args) | |
1137 (error "Malformed `loop' macro")) | |
1138 | |
1139 ((eq word 'named) | |
2153 | 1140 (setq loop-name (pop args))) |
428 | 1141 |
1142 ((eq word 'initially) | |
2153 | 1143 (if (memq (car args) '(do doing)) (pop args)) |
428 | 1144 (or (consp (car args)) (error "Syntax error on `initially' clause")) |
1145 (while (consp (car args)) | |
2153 | 1146 (push (pop args) loop-initially))) |
428 | 1147 |
1148 ((eq word 'finally) | |
1149 (if (eq (car args) 'return) | |
1150 (setq loop-result-explicit (or (cl-pop2 args) '(quote nil))) | |
2153 | 1151 (if (memq (car args) '(do doing)) (pop args)) |
428 | 1152 (or (consp (car args)) (error "Syntax error on `finally' clause")) |
1153 (if (and (eq (caar args) 'return) (null loop-name)) | |
2153 | 1154 (setq loop-result-explicit (or (nth 1 (pop args)) '(quote nil))) |
428 | 1155 (while (consp (car args)) |
2153 | 1156 (push (pop args) loop-finally))))) |
428 | 1157 |
1158 ((memq word '(for as)) | |
1159 (let ((loop-for-bindings nil) (loop-for-sets nil) (loop-for-steps nil) | |
1160 (ands nil)) | |
1161 (while | |
2153 | 1162 (let ((var (or (pop args) (gensym)))) |
1163 (setq word (pop args)) | |
1164 (if (eq word 'being) (setq word (pop args))) | |
1165 (if (memq word '(the each)) (setq word (pop args))) | |
428 | 1166 (if (memq word '(buffer buffers)) |
1167 (setq word 'in args (cons '(buffer-list) args))) | |
1168 (cond | |
1169 | |
1170 ((memq word '(from downfrom upfrom to downto upto | |
1171 above below by)) | |
2153 | 1172 (push word args) |
428 | 1173 (if (memq (car args) '(downto above)) |
1174 (error "Must specify `from' value for downward loop")) | |
1175 (let* ((down (or (eq (car args) 'downfrom) | |
1176 (memq (caddr args) '(downto above)))) | |
1177 (excl (or (memq (car args) '(above below)) | |
1178 (memq (caddr args) '(above below)))) | |
1179 (start (and (memq (car args) '(from upfrom downfrom)) | |
1180 (cl-pop2 args))) | |
1181 (end (and (memq (car args) | |
1182 '(to upto downto above below)) | |
1183 (cl-pop2 args))) | |
1184 (step (and (eq (car args) 'by) (cl-pop2 args))) | |
1185 (end-var (and (not (cl-const-expr-p end)) (gensym))) | |
1186 (step-var (and (not (cl-const-expr-p step)) | |
1187 (gensym)))) | |
1188 (and step (numberp step) (<= step 0) | |
1189 (error "Loop `by' value is not positive: %s" step)) | |
2153 | 1190 (push (list var (or start 0)) loop-for-bindings) |
1191 (if end-var (push (list end-var end) loop-for-bindings)) | |
1192 (if step-var (push (list step-var step) | |
428 | 1193 loop-for-bindings)) |
1194 (if end | |
2153 | 1195 (push (list |
428 | 1196 (if down (if excl '> '>=) (if excl '< '<=)) |
1197 var (or end-var end)) loop-body)) | |
2153 | 1198 (push (list var (list (if down '- '+) var |
428 | 1199 (or step-var step 1))) |
1200 loop-for-steps))) | |
1201 | |
1202 ((memq word '(in in-ref on)) | |
1203 (let* ((on (eq word 'on)) | |
1204 (temp (if (and on (symbolp var)) var (gensym)))) | |
2153 | 1205 (push (list temp (pop args)) loop-for-bindings) |
1206 (push (list 'consp temp) loop-body) | |
428 | 1207 (if (eq word 'in-ref) |
2153 | 1208 (push (list var (list 'car temp)) loop-symbol-macs) |
428 | 1209 (or (eq temp var) |
1210 (progn | |
2153 | 1211 (push (list var nil) loop-for-bindings) |
1212 (push (list var (if on temp (list 'car temp))) | |
428 | 1213 loop-for-sets)))) |
2153 | 1214 (push (list temp |
428 | 1215 (if (eq (car args) 'by) |
1216 (let ((step (cl-pop2 args))) | |
1217 (if (and (memq (car-safe step) | |
1218 '(quote function | |
1219 function*)) | |
1220 (symbolp (nth 1 step))) | |
1221 (list (nth 1 step) temp) | |
1222 (list 'funcall step temp))) | |
1223 (list 'cdr temp))) | |
1224 loop-for-steps))) | |
1225 | |
1226 ((eq word '=) | |
2153 | 1227 (let* ((start (pop args)) |
428 | 1228 (then (if (eq (car args) 'then) (cl-pop2 args) start))) |
2153 | 1229 (push (list var nil) loop-for-bindings) |
428 | 1230 (if (or ands (eq (car args) 'and)) |
1231 (progn | |
2153 | 1232 (push (list var |
428 | 1233 (list 'if |
1234 (or loop-first-flag | |
1235 (setq loop-first-flag | |
1236 (gensym))) | |
1237 start var)) | |
1238 loop-for-sets) | |
2153 | 1239 (push (list var then) loop-for-steps)) |
1240 (push (list var | |
428 | 1241 (if (eq start then) start |
1242 (list 'if | |
1243 (or loop-first-flag | |
1244 (setq loop-first-flag (gensym))) | |
1245 start then))) | |
1246 loop-for-sets)))) | |
1247 | |
1248 ((memq word '(across across-ref)) | |
1249 (let ((temp-vec (gensym)) (temp-idx (gensym))) | |
2153 | 1250 (push (list temp-vec (pop args)) loop-for-bindings) |
1251 (push (list temp-idx -1) loop-for-bindings) | |
1252 (push (list '< (list 'setq temp-idx (list '1+ temp-idx)) | |
428 | 1253 (list 'length temp-vec)) loop-body) |
1254 (if (eq word 'across-ref) | |
2153 | 1255 (push (list var (list 'aref temp-vec temp-idx)) |
428 | 1256 loop-symbol-macs) |
2153 | 1257 (push (list var nil) loop-for-bindings) |
1258 (push (list var (list 'aref temp-vec temp-idx)) | |
428 | 1259 loop-for-sets)))) |
1260 | |
1261 ((memq word '(element elements)) | |
1262 (let ((ref (or (memq (car args) '(in-ref of-ref)) | |
1263 (and (not (memq (car args) '(in of))) | |
1264 (error "Expected `of'")))) | |
1265 (seq (cl-pop2 args)) | |
1266 (temp-seq (gensym)) | |
1267 (temp-idx (if (eq (car args) 'using) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
1268 (if (and (eql (length (cadr args)) 2) |
428 | 1269 (eq (caadr args) 'index)) |
1270 (cadr (cl-pop2 args)) | |
1271 (error "Bad `using' clause")) | |
1272 (gensym)))) | |
2153 | 1273 (push (list temp-seq seq) loop-for-bindings) |
1274 (push (list temp-idx 0) loop-for-bindings) | |
428 | 1275 (if ref |
1276 (let ((temp-len (gensym))) | |
2153 | 1277 (push (list temp-len (list 'length temp-seq)) |
428 | 1278 loop-for-bindings) |
2153 | 1279 (push (list var (list 'elt temp-seq temp-idx)) |
428 | 1280 loop-symbol-macs) |
2153 | 1281 (push (list '< temp-idx temp-len) loop-body)) |
1282 (push (list var nil) loop-for-bindings) | |
1283 (push (list 'and temp-seq | |
428 | 1284 (list 'or (list 'consp temp-seq) |
1285 (list '< temp-idx | |
1286 (list 'length temp-seq)))) | |
1287 loop-body) | |
2153 | 1288 (push (list var (list 'if (list 'consp temp-seq) |
428 | 1289 (list 'pop temp-seq) |
1290 (list 'aref temp-seq temp-idx))) | |
1291 loop-for-sets)) | |
2153 | 1292 (push (list temp-idx (list '1+ temp-idx)) |
428 | 1293 loop-for-steps))) |
1294 | |
1295 ((memq word hash-types) | |
1296 (or (memq (car args) '(in of)) (error "Expected `of'")) | |
1297 (let* ((table (cl-pop2 args)) | |
1298 (other (if (eq (car args) 'using) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
1299 (if (and (eql (length (cadr args)) 2) |
428 | 1300 (memq (caadr args) hash-types) |
1301 (not (eq (caadr args) word))) | |
1302 (cadr (cl-pop2 args)) | |
1303 (error "Bad `using' clause")) | |
1304 (gensym)))) | |
1305 (if (memq word '(hash-value hash-values)) | |
1306 (setq var (prog1 other (setq other var)))) | |
1307 (setq loop-map-form | |
1308 (list 'maphash (list 'function | |
1309 (list* 'lambda (list var other) | |
1310 '--cl-map)) table)))) | |
1311 | |
1312 ((memq word '(symbol present-symbol external-symbol | |
1313 symbols present-symbols external-symbols)) | |
1314 (let ((ob (and (memq (car args) '(in of)) (cl-pop2 args)))) | |
1315 (setq loop-map-form | |
1316 (list 'mapatoms (list 'function | |
1317 (list* 'lambda (list var) | |
1318 '--cl-map)) ob)))) | |
1319 | |
1320 ((memq word '(overlay overlays extent extents)) | |
1321 (let ((buf nil) (from nil) (to nil)) | |
1322 (while (memq (car args) '(in of from to)) | |
1323 (cond ((eq (car args) 'from) (setq from (cl-pop2 args))) | |
1324 ((eq (car args) 'to) (setq to (cl-pop2 args))) | |
1325 (t (setq buf (cl-pop2 args))))) | |
1326 (setq loop-map-form | |
1327 (list 'cl-map-extents | |
1328 (list 'function (list 'lambda (list var (gensym)) | |
1329 '(progn . --cl-map) nil)) | |
1330 buf from to)))) | |
1331 | |
1332 ((memq word '(interval intervals)) | |
1333 (let ((buf nil) (prop nil) (from nil) (to nil) | |
1334 (var1 (gensym)) (var2 (gensym))) | |
1335 (while (memq (car args) '(in of property from to)) | |
1336 (cond ((eq (car args) 'from) (setq from (cl-pop2 args))) | |
1337 ((eq (car args) 'to) (setq to (cl-pop2 args))) | |
1338 ((eq (car args) 'property) | |
1339 (setq prop (cl-pop2 args))) | |
1340 (t (setq buf (cl-pop2 args))))) | |
1341 (if (and (consp var) (symbolp (car var)) (symbolp (cdr var))) | |
1342 (setq var1 (car var) var2 (cdr var)) | |
2153 | 1343 (push (list var (list 'cons var1 var2)) loop-for-sets)) |
428 | 1344 (setq loop-map-form |
1345 (list 'cl-map-intervals | |
1346 (list 'function (list 'lambda (list var1 var2) | |
1347 '(progn . --cl-map))) | |
1348 buf prop from to)))) | |
1349 | |
1350 ((memq word key-types) | |
1351 (or (memq (car args) '(in of)) (error "Expected `of'")) | |
800 | 1352 (let* ((map (cl-pop2 args)) |
1353 other-word | |
1354 (other (if (eq (car args) 'using) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
1355 (if (and (eql (length (cadr args)) 2) |
800 | 1356 (memq (setq other-word (caadr args)) |
1357 key-types) | |
1358 (not (eq (caadr args) word))) | |
1359 (cadr (cl-pop2 args)) | |
1360 (error "Bad `using' clause")) | |
428 | 1361 (gensym)))) |
2153 | 1362 ;; XEmacs addition: track other-word |
800 | 1363 (when (memq word '(key-binding key-bindings)) |
1364 (setq var (prog1 other (setq other var))) | |
1365 (and other-word (setq word other-word))) | |
428 | 1366 (setq loop-map-form |
1367 (list (if (memq word '(key-seq key-seqs)) | |
2153 | 1368 'cl-map-keymap-recursively 'map-keymap) |
428 | 1369 (list 'function (list* 'lambda (list var other) |
1370 '--cl-map)) map)))) | |
1371 | |
1372 ((memq word '(frame frames screen screens)) | |
1373 (let ((temp (gensym))) | |
2153 | 1374 (push (list var '(selected-frame)) |
428 | 1375 loop-for-bindings) |
2153 | 1376 (push (list temp nil) loop-for-bindings) |
1377 (push (list 'prog1 (list 'not (list 'eq var temp)) | |
428 | 1378 (list 'or temp (list 'setq temp var))) |
1379 loop-body) | |
2153 | 1380 (push (list var (list 'next-frame var)) |
428 | 1381 loop-for-steps))) |
1382 | |
1383 ((memq word '(window windows)) | |
1384 (let ((scr (and (memq (car args) '(in of)) (cl-pop2 args))) | |
1385 (temp (gensym))) | |
2153 | 1386 (push (list var (if scr |
428 | 1387 (list 'frame-selected-window scr) |
1388 '(selected-window))) | |
1389 loop-for-bindings) | |
2153 | 1390 (push (list temp nil) loop-for-bindings) |
1391 (push (list 'prog1 (list 'not (list 'eq var temp)) | |
428 | 1392 (list 'or temp (list 'setq temp var))) |
1393 loop-body) | |
2153 | 1394 (push (list var (list 'next-window var)) loop-for-steps))) |
428 | 1395 |
1396 (t | |
1397 (let ((handler (and (symbolp word) | |
1398 (get word 'cl-loop-for-handler)))) | |
1399 (if handler | |
1400 (funcall handler var) | |
1401 (error "Expected a `for' preposition, found %s" word))))) | |
1402 (eq (car args) 'and)) | |
1403 (setq ands t) | |
2153 | 1404 (pop args)) |
428 | 1405 (if (and ands loop-for-bindings) |
2153 | 1406 (push (nreverse loop-for-bindings) loop-bindings) |
428 | 1407 (setq loop-bindings (nconc (mapcar 'list loop-for-bindings) |
1408 loop-bindings))) | |
1409 (if loop-for-sets | |
2153 | 1410 (push (list 'progn |
428 | 1411 (cl-loop-let (nreverse loop-for-sets) 'setq ands) |
1412 t) loop-body)) | |
1413 (if loop-for-steps | |
2153 | 1414 (push (cons (if ands 'psetq 'setq) |
428 | 1415 (apply 'append (nreverse loop-for-steps))) |
1416 loop-steps)))) | |
1417 | |
1418 ((eq word 'repeat) | |
1419 (let ((temp (gensym))) | |
2153 | 1420 (push (list (list temp (pop args))) loop-bindings) |
1421 (push (list '>= (list 'setq temp (list '1- temp)) 0) loop-body))) | |
1422 | |
1423 ((memq word '(collect collecting)) | |
1424 (let ((what (pop args)) | |
428 | 1425 (var (cl-loop-handle-accum nil 'nreverse))) |
1426 (if (eq var loop-accum-var) | |
2153 | 1427 (push (list 'progn (list 'push what var) t) loop-body) |
1428 (push (list 'progn | |
428 | 1429 (list 'setq var (list 'nconc var (list 'list what))) |
1430 t) loop-body)))) | |
1431 | |
1432 ((memq word '(nconc nconcing append appending)) | |
2153 | 1433 (let ((what (pop args)) |
428 | 1434 (var (cl-loop-handle-accum nil 'nreverse))) |
2153 | 1435 (push (list 'progn |
428 | 1436 (list 'setq var |
1437 (if (eq var loop-accum-var) | |
1438 (list 'nconc | |
1439 (list (if (memq word '(nconc nconcing)) | |
1440 'nreverse 'reverse) | |
1441 what) | |
1442 var) | |
1443 (list (if (memq word '(nconc nconcing)) | |
1444 'nconc 'append) | |
1445 var what))) t) loop-body))) | |
1446 | |
1447 ((memq word '(concat concating)) | |
2153 | 1448 (let ((what (pop args)) |
428 | 1449 (var (cl-loop-handle-accum ""))) |
2153 | 1450 (push (list 'progn (list 'callf 'concat var what) t) loop-body))) |
428 | 1451 |
1452 ((memq word '(vconcat vconcating)) | |
2153 | 1453 (let ((what (pop args)) |
428 | 1454 (var (cl-loop-handle-accum []))) |
2153 | 1455 (push (list 'progn (list 'callf 'vconcat var what) t) loop-body))) |
1456 | |
1457 ;; XEmacs addition: handle bit-vectors | |
800 | 1458 ((memq word '(bvconcat bvconcating)) |
2153 | 1459 (let ((what (pop args)) |
800 | 1460 (var (cl-loop-handle-accum #*))) |
2153 | 1461 (push (list 'progn (list 'callf 'bvconcat var what) t) loop-body))) |
800 | 1462 |
428 | 1463 ((memq word '(sum summing)) |
2153 | 1464 (let ((what (pop args)) |
428 | 1465 (var (cl-loop-handle-accum 0))) |
2153 | 1466 (push (list 'progn (list 'incf var what) t) loop-body))) |
428 | 1467 |
1468 ((memq word '(count counting)) | |
2153 | 1469 (let ((what (pop args)) |
428 | 1470 (var (cl-loop-handle-accum 0))) |
2153 | 1471 (push (list 'progn (list 'if what (list 'incf var)) t) loop-body))) |
428 | 1472 |
1473 ((memq word '(minimize minimizing maximize maximizing)) | |
2153 | 1474 (let* ((what (pop args)) |
428 | 1475 (temp (if (cl-simple-expr-p what) what (gensym))) |
1476 (var (cl-loop-handle-accum nil)) | |
1477 (func (intern (substring (symbol-name word) 0 3))) | |
1478 (set (list 'setq var (list 'if var (list func var temp) temp)))) | |
2153 | 1479 (push (list 'progn (if (eq temp what) set |
428 | 1480 (list 'let (list (list temp what)) set)) |
1481 t) loop-body))) | |
1482 | |
1483 ((eq word 'with) | |
1484 (let ((bindings nil)) | |
2153 | 1485 (while (progn (push (list (pop args) |
428 | 1486 (and (eq (car args) '=) (cl-pop2 args))) |
1487 bindings) | |
1488 (eq (car args) 'and)) | |
2153 | 1489 (pop args)) |
1490 (push (nreverse bindings) loop-bindings))) | |
428 | 1491 |
1492 ((eq word 'while) | |
2153 | 1493 (push (pop args) loop-body)) |
428 | 1494 |
1495 ((eq word 'until) | |
2153 | 1496 (push (list 'not (pop args)) loop-body)) |
428 | 1497 |
1498 ((eq word 'always) | |
1499 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
2153 | 1500 (push (list 'setq loop-finish-flag (pop args)) loop-body) |
428 | 1501 (setq loop-result t)) |
1502 | |
1503 ((eq word 'never) | |
1504 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
2153 | 1505 (push (list 'setq loop-finish-flag (list 'not (pop args))) |
428 | 1506 loop-body) |
1507 (setq loop-result t)) | |
1508 | |
1509 ((eq word 'thereis) | |
1510 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
1511 (or loop-result-var (setq loop-result-var (gensym))) | |
2153 | 1512 (push (list 'setq loop-finish-flag |
1513 (list 'not (list 'setq loop-result-var (pop args)))) | |
428 | 1514 loop-body)) |
1515 | |
1516 ((memq word '(if when unless)) | |
2153 | 1517 (let* ((cond (pop args)) |
428 | 1518 (then (let ((loop-body nil)) |
1519 (cl-parse-loop-clause) | |
1520 (cl-loop-build-ands (nreverse loop-body)))) | |
1521 (else (let ((loop-body nil)) | |
1522 (if (eq (car args) 'else) | |
2153 | 1523 (progn (pop args) (cl-parse-loop-clause))) |
428 | 1524 (cl-loop-build-ands (nreverse loop-body)))) |
1525 (simple (and (eq (car then) t) (eq (car else) t)))) | |
2153 | 1526 (if (eq (car args) 'end) (pop args)) |
428 | 1527 (if (eq word 'unless) (setq then (prog1 else (setq else then)))) |
1528 (let ((form (cons (if simple (cons 'progn (nth 1 then)) (nth 2 then)) | |
1529 (if simple (nth 1 else) (list (nth 2 else)))))) | |
1530 (if (cl-expr-contains form 'it) | |
1531 (let ((temp (gensym))) | |
2153 | 1532 (push (list temp) loop-bindings) |
428 | 1533 (setq form (list* 'if (list 'setq temp cond) |
1534 (subst temp 'it form)))) | |
1535 (setq form (list* 'if cond form))) | |
2153 | 1536 (push (if simple (list 'progn form t) form) loop-body)))) |
428 | 1537 |
1538 ((memq word '(do doing)) | |
1539 (let ((body nil)) | |
1540 (or (consp (car args)) (error "Syntax error on `do' clause")) | |
2153 | 1541 (while (consp (car args)) (push (pop args) body)) |
1542 (push (cons 'progn (nreverse (cons t body))) loop-body))) | |
428 | 1543 |
1544 ((eq word 'return) | |
1545 (or loop-finish-flag (setq loop-finish-flag (gensym))) | |
1546 (or loop-result-var (setq loop-result-var (gensym))) | |
2153 | 1547 (push (list 'setq loop-result-var (pop args) |
428 | 1548 loop-finish-flag nil) loop-body)) |
1549 | |
1550 (t | |
1551 (let ((handler (and (symbolp word) (get word 'cl-loop-handler)))) | |
1552 (or handler (error "Expected a loop keyword, found %s" word)) | |
1553 (funcall handler)))) | |
1554 (if (eq (car args) 'and) | |
2153 | 1555 (progn (pop args) (cl-parse-loop-clause))))) |
428 | 1556 |
1557 (defun cl-loop-let (specs body par) ; uses loop-* | |
1558 (let ((p specs) (temps nil) (new nil)) | |
1559 (while (and p (or (symbolp (car-safe (car p))) (null (cadar p)))) | |
1560 (setq p (cdr p))) | |
1561 (and par p | |
1562 (progn | |
1563 (setq par nil p specs) | |
1564 (while p | |
1565 (or (cl-const-expr-p (cadar p)) | |
1566 (let ((temp (gensym))) | |
2153 | 1567 (push (list temp (cadar p)) temps) |
428 | 1568 (setcar (cdar p) temp))) |
1569 (setq p (cdr p))))) | |
1570 (while specs | |
1571 (if (and (consp (car specs)) (listp (caar specs))) | |
1572 (let* ((spec (caar specs)) (nspecs nil) | |
2153 | 1573 (expr (cadr (pop specs))) |
428 | 1574 (temp (cdr (or (assq spec loop-destr-temps) |
2153 | 1575 (car (push (cons spec (or (last spec 0) |
428 | 1576 (gensym))) |
1577 loop-destr-temps)))))) | |
2153 | 1578 (push (list temp expr) new) |
428 | 1579 (while (consp spec) |
2153 | 1580 (push (list (pop spec) |
428 | 1581 (and expr (list (if spec 'pop 'car) temp))) |
1582 nspecs)) | |
1583 (setq specs (nconc (nreverse nspecs) specs))) | |
2153 | 1584 (push (pop specs) new))) |
428 | 1585 (if (eq body 'setq) |
1586 (let ((set (cons (if par 'psetq 'setq) (apply 'nconc (nreverse new))))) | |
1587 (if temps (list 'let* (nreverse temps) set) set)) | |
1588 (list* (if par 'let 'let*) | |
1589 (nconc (nreverse temps) (nreverse new)) body)))) | |
1590 | |
1591 (defun cl-loop-handle-accum (def &optional func) ; uses args, loop-* | |
1592 (if (eq (car args) 'into) | |
1593 (let ((var (cl-pop2 args))) | |
1594 (or (memq var loop-accum-vars) | |
2153 | 1595 (progn (push (list (list var def)) loop-bindings) |
1596 (push var loop-accum-vars))) | |
428 | 1597 var) |
1598 (or loop-accum-var | |
1599 (progn | |
2153 | 1600 (push (list (list (setq loop-accum-var (gensym)) def)) |
428 | 1601 loop-bindings) |
1602 (setq loop-result (if func (list func loop-accum-var) | |
1603 loop-accum-var)) | |
1604 loop-accum-var)))) | |
1605 | |
1606 (defun cl-loop-build-ands (clauses) | |
1607 (let ((ands nil) | |
1608 (body nil)) | |
1609 (while clauses | |
1610 (if (and (eq (car-safe (car clauses)) 'progn) | |
1611 (eq (car (last (car clauses))) t)) | |
1612 (if (cdr clauses) | |
1613 (setq clauses (cons (nconc (butlast (car clauses)) | |
1614 (if (eq (car-safe (cadr clauses)) | |
1615 'progn) | |
1616 (cdadr clauses) | |
1617 (list (cadr clauses)))) | |
1618 (cddr clauses))) | |
2153 | 1619 (setq body (cdr (butlast (pop clauses))))) |
1620 (push (pop clauses) ands))) | |
428 | 1621 (setq ands (or (nreverse ands) (list t))) |
1622 (list (if (cdr ands) (cons 'and ands) (car ands)) | |
1623 body | |
1624 (let ((full (if body | |
1625 (append ands (list (cons 'progn (append body '(t))))) | |
1626 ands))) | |
1627 (if (cdr full) (cons 'and full) (car full)))))) | |
1628 | |
1629 | |
1630 ;;; Other iteration control structures. | |
1631 | |
1632 ;;;###autoload | |
1633 (defmacro do (steps endtest &rest body) | |
1634 "The Common Lisp `do' loop. | |
1635 Format is: (do ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" | |
1636 (cl-expand-do-loop steps endtest body nil)) | |
1637 | |
1638 ;;;###autoload | |
1639 (defmacro do* (steps endtest &rest body) | |
1640 "The Common Lisp `do*' loop. | |
1641 Format is: (do* ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" | |
1642 (cl-expand-do-loop steps endtest body t)) | |
1643 | |
1644 (defun cl-expand-do-loop (steps endtest body star) | |
1645 (list 'block nil | |
1646 (list* (if star 'let* 'let) | |
1647 (mapcar #'(lambda (c) (if (consp c) (list (car c) (nth 1 c)) c)) | |
1648 steps) | |
1649 (list* 'while (list 'not (car endtest)) | |
1650 (append body | |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1651 (let ((sets (mapcan |
428 | 1652 #'(lambda (c) |
1653 (and (consp c) (cdr (cdr c)) | |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1654 (list |
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1655 (list (car c) (nth 2 c))))) |
428 | 1656 steps))) |
1657 (and sets | |
1658 (list (cons (if (or star (not (cdr sets))) | |
1659 'setq 'psetq) | |
1660 (apply 'append sets))))))) | |
1661 (or (cdr endtest) '(nil))))) | |
1662 | |
1663 ;;;###autoload | |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1664 (defmacro* dolist ((var list &optional result) &body body) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1665 "Loop over a list. |
428 | 1666 Evaluate BODY with VAR bound to each `car' from LIST, in turn. |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1667 Then evaluate RESULT to get return value, default nil." |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1668 (let ((gensym (gensym))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1669 `(block nil |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1670 (let ((,gensym ,list) ,var) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1671 (while ,gensym |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1672 (setq ,var (car ,gensym)) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1673 ,@body |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1674 (setq ,gensym (cdr ,gensym))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1675 ,@(if result `((setq ,var nil) ,result)))))) |
428 | 1676 |
1677 ;;;###autoload | |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1678 (defmacro* dotimes ((var count &optional result) &body body) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1679 "Loop a certain number of times. |
428 | 1680 Evaluate BODY with VAR bound to successive integers from 0, inclusive, |
1681 to COUNT, exclusive. Then evaluate RESULT to get return value, default | |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1682 nil." |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1683 (let* ((limit (if (cl-const-expr-p count) count (gensym))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1684 (bind (if (cl-const-expr-p count) nil `((,limit ,count))))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1685 `(block nil |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1686 (let ((,var 0) ,@bind) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1687 (while (< ,var ,limit) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1688 ,@body |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1689 (setq ,var (1+ ,var))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1690 ,@(if result (list result)))))) |
428 | 1691 |
1692 ;;;###autoload | |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1693 (defmacro* do-symbols ((var &optional obarray result) &rest body) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1694 "Loop over all interned symbols. |
428 | 1695 Evaluate BODY with VAR bound to each interned symbol, or to each symbol |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1696 from OBARRAY." |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1697 `(block nil |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1698 (mapatoms #'(lambda (,var) ,@body) ,@(and obarray (list obarray))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1699 ,@(if result `((let (,var) ,result))))) |
428 | 1700 |
1701 ;;;###autoload | |
1702 (defmacro do-all-symbols (spec &rest body) | |
1703 (list* 'do-symbols (list (car spec) nil (cadr spec)) body)) | |
1704 | |
1705 | |
1706 ;;; Assignments. | |
1707 | |
1708 ;;;###autoload | |
1709 (defmacro psetq (&rest args) | |
1710 "(psetq SYM VAL SYM VAL ...): set SYMs to the values VALs in parallel. | |
1711 This is like `setq', except that all VAL forms are evaluated (in order) | |
1712 before assigning any symbols SYM to the corresponding values." | |
1713 (cons 'psetf args)) | |
1714 | |
1715 | |
1716 ;;; Binding control structures. | |
1717 | |
1718 ;;;###autoload | |
1719 (defmacro progv (symbols values &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
1720 "Bind SYMBOLS to VALUES dynamically in BODY. |
428 | 1721 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists. |
1722 Each SYMBOL in the first list is bound to the corresponding VALUE in the | |
1723 second list (or made unbound if VALUES is shorter than SYMBOLS); then the | |
1724 BODY forms are executed and their result is returned. This is much like | |
1725 a `let' form, except that the list of symbols can be computed at run-time." | |
1726 (list 'let '((cl-progv-save nil)) | |
1727 (list 'unwind-protect | |
1728 (list* 'progn (list 'cl-progv-before symbols values) body) | |
1729 '(cl-progv-after)))) | |
1730 | |
1731 ;;; This should really have some way to shadow 'byte-compile properties, etc. | |
1732 ;;;###autoload | |
1733 (defmacro flet (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1734 "Make temporary function definitions. |
428 | 1735 This is an analogue of `let' that operates on the function cell of FUNC |
1736 rather than its value cell. The FORMs are evaluated with the specified | |
1737 function definitions in place, then the definitions are undone (the FUNCs | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1738 go back to their previous definitions, or lack thereof). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1739 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1740 arguments: (((FUNC ARGLIST &body BODY) &rest FUNCTIONS) &body FORM)" |
428 | 1741 (list* 'letf* |
1742 (mapcar | |
1743 #'(lambda (x) | |
1744 (if (or (and (fboundp (car x)) | |
1745 (eq (car-safe (symbol-function (car x))) 'macro)) | |
1746 (cdr (assq (car x) cl-macro-environment))) | |
1747 (error "Use `labels', not `flet', to rebind macro names")) | |
1748 (let ((func (list 'function* | |
1749 (list 'lambda (cadr x) | |
1750 (list* 'block (car x) (cddr x)))))) | |
1751 (if (and (cl-compiling-file) | |
1752 (boundp 'byte-compile-function-environment)) | |
2153 | 1753 (push (cons (car x) (eval func)) |
428 | 1754 byte-compile-function-environment)) |
1755 (list (list 'symbol-function (list 'quote (car x))) func))) | |
1756 bindings) | |
1757 body)) | |
1758 | |
1759 ;;;###autoload | |
1760 (defmacro labels (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1761 "Make temporary func bindings. |
428 | 1762 This is like `flet', except the bindings are lexical instead of dynamic. |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1763 Unlike `flet', this macro is fully compliant with the Common Lisp standard. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1764 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1765 arguments: (((FUNC ARGLIST &body BODY) &rest FUNCTIONS) &body FORM)" |
428 | 1766 (let ((vars nil) (sets nil) (cl-macro-environment cl-macro-environment)) |
1767 (while bindings | |
1768 (let ((var (gensym))) | |
2153 | 1769 (push var vars) |
1770 (push (list 'function* (cons 'lambda (cdar bindings))) sets) | |
1771 (push var sets) | |
1772 (push (list (car (pop bindings)) 'lambda '(&rest cl-labels-args) | |
428 | 1773 (list 'list* '(quote funcall) (list 'quote var) |
1774 'cl-labels-args)) | |
1775 cl-macro-environment))) | |
1776 (cl-macroexpand-all (list* 'lexical-let vars (cons (cons 'setq sets) body)) | |
1777 cl-macro-environment))) | |
1778 | |
1779 ;; The following ought to have a better definition for use with newer | |
1780 ;; byte compilers. | |
1781 ;;;###autoload | |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1782 (defmacro* macrolet (((name arglist &optional docstring &body body) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1783 &rest macros) &body form) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1784 "Make temporary macro definitions. |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1785 This is like `flet', but for macros instead of functions." |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1786 (cl-macroexpand-all (cons 'progn form) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1787 (nconc |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1788 (loop |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1789 for (name . details) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1790 in (cons (list* name arglist docstring body) macros) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1791 collect |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1792 (list* name 'lambda |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1793 (prog1 |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1794 (cdr (setq details (cl-transform-lambda |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1795 details name))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1796 (eval (car details))))) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1797 cl-macro-environment))) |
428 | 1798 |
1799 ;;;###autoload | |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1800 (defmacro* symbol-macrolet (((name expansion) &rest symbol-macros) &body form) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
1801 "Make symbol macro definitions. |
428 | 1802 Within the body FORMs, references to the variable NAME will be replaced |
5326
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1803 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...)." |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1804 (cl-macroexpand-all (cons 'progn form) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1805 (append (list (list (symbol-name name) expansion)) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1806 (loop |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1807 for (name expansion) in symbol-macros |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1808 collect (list (symbol-name name) expansion)) |
60ba780f9078
Use defmacro* when defining dolist, dotimes, do-symbols, macrolet, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5317
diff
changeset
|
1809 cl-macro-environment))) |
428 | 1810 |
1811 (defvar cl-closure-vars nil) | |
1812 ;;;###autoload | |
1813 (defmacro lexical-let (bindings &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
1814 "Like `let', but lexically scoped. |
428 | 1815 The main visible difference is that lambdas inside BODY will create |
1816 lexical closures as in Common Lisp." | |
1817 (let* ((cl-closure-vars cl-closure-vars) | |
1818 (vars (mapcar #'(lambda (x) | |
1819 (or (consp x) (setq x (list x))) | |
2153 | 1820 (push (gensym (format "--%s--" (car x))) |
428 | 1821 cl-closure-vars) |
2153 | 1822 (set (car cl-closure-vars) [bad-lexical-ref]) |
428 | 1823 (list (car x) (cadr x) (car cl-closure-vars))) |
1824 bindings)) | |
1825 (ebody | |
1826 (cl-macroexpand-all | |
1827 (cons 'progn body) | |
1828 (nconc (mapcar #'(lambda (x) | |
1829 (list (symbol-name (car x)) | |
1830 (list 'symbol-value (caddr x)) | |
1831 t)) | |
1832 vars) | |
1833 (list '(defun . cl-defun-expander)) | |
1834 cl-macro-environment)))) | |
1835 (if (not (get (car (last cl-closure-vars)) 'used)) | |
1836 (list 'let (mapcar #'(lambda (x) (list (caddr x) (cadr x))) vars) | |
1837 (sublis (mapcar #'(lambda (x) | |
1838 (cons (caddr x) (list 'quote (caddr x)))) | |
1839 vars) | |
1840 ebody)) | |
1841 (list 'let (mapcar #'(lambda (x) | |
1842 (list (caddr x) | |
1843 (list 'make-symbol | |
1844 (format "--%s--" (car x))))) | |
1845 vars) | |
1846 (apply 'append '(setf) | |
1847 (mapcar #'(lambda (x) | |
1848 (list (list 'symbol-value (caddr x)) (cadr x))) | |
1849 vars)) | |
1850 ebody)))) | |
1851 | |
1852 ;;;###autoload | |
1853 (defmacro lexical-let* (bindings &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
1854 "Like `let*', but lexically scoped. |
428 | 1855 The main visible difference is that lambdas inside BODY will create |
1856 lexical closures as in Common Lisp." | |
1857 (if (null bindings) (cons 'progn body) | |
1858 (setq bindings (reverse bindings)) | |
1859 (while bindings | |
2153 | 1860 (setq body (list (list* 'lexical-let (list (pop bindings)) body)))) |
428 | 1861 (car body))) |
1862 | |
1863 (defun cl-defun-expander (func &rest rest) | |
1864 (list 'progn | |
1865 (list 'defalias (list 'quote func) | |
1866 (list 'function (cons 'lambda rest))) | |
1867 (list 'quote func))) | |
1868 | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1869 ;;; Multiple values. We support full Common Lisp conventions here. |
428 | 1870 |
1871 ;;;###autoload | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1872 (defmacro multiple-value-bind (syms form &rest body) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1873 "Collect and bind multiple return values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1874 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1875 If FORM returns multiple values, each symbol in SYMS is bound to one of |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1876 them, in order, and BODY is executed. If FORM returns fewer multiple values |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1877 than there are SYMS, remaining SYMS are bound to nil. If FORM does |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1878 not return multiple values, it is treated as returning one multiple value. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1879 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1880 Returns the value given by the last element of BODY." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1881 (if (null syms) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1882 `(progn ,form ,@body) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
1883 (if (eql 1 (length syms)) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1884 ;; Code written to deal with other "implementations" of multiple |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1885 ;; values may have a one-element SYMS. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1886 `(let ((,(car syms) ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1887 ,@body) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1888 (let ((temp (gensym))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1889 `(let* ((,temp (multiple-value-list-internal 0 ,(length syms) ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1890 ,@(loop |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1891 for var in syms |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1892 collect `(,var (prog1 (car ,temp) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1893 (setq ,temp (cdr ,temp)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1894 ,@body))))) |
428 | 1895 |
1896 ;;;###autoload | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1897 (defmacro multiple-value-setq (syms form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1898 "Collect and set multiple values. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1899 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1900 FORM should normally return multiple values; the first N values are stored |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1901 in the symbols in SYMS in turn. If FORM returns fewer than N values, the |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1902 remaining symbols have their values set to nil. FORM not returning multiple |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1903 values is treated as FORM returning one multiple value, with other elements |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1904 of SYMS initialized to nil. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1905 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1906 Returns the first of the multiple values given by FORM." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1907 (if (null syms) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1908 ;; Never return multiple values from multiple-value-setq: |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1909 (and form `(values ,form)) |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
1910 (if (eql 1 (length syms)) |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1911 `(setq ,(car syms) ,form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1912 (let ((temp (gensym))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1913 `(let* ((,temp (multiple-value-list-internal 0 ,(length syms) ,form))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1914 (setq ,@(loop |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1915 for sym in syms |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1916 nconc `(,sym (car-safe ,temp) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1917 ,temp (cdr-safe ,temp)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1918 ,(car syms)))))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1919 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1920 ;;;###autoload |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1921 (defmacro multiple-value-list (form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1922 "Evaluate FORM and return a list of the multiple values it returned." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1923 `(multiple-value-list-internal 0 multiple-values-limit ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1924 |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1925 ;;;###autoload |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1926 (defmacro nth-value (n form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1927 "Evaluate FORM and return the Nth multiple value it returned." |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1928 (if (integerp n) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1929 `(car (multiple-value-list-internal ,n ,(1+ n) ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1930 (let ((temp (gensym))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1931 `(let ((,temp ,n)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
1932 (car (multiple-value-list-internal ,temp (1+ ,temp) ,form)))))) |
428 | 1933 |
1934 ;;; Declarations. | |
1935 | |
1936 ;;;###autoload | |
1937 (defmacro locally (&rest body) (cons 'progn body)) | |
1938 ;;;###autoload | |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1939 (defmacro the (type form) |
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5266
diff
changeset
|
1940 "Assert that FORM gives a result of type TYPE, and return that result. |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1941 |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1942 TYPE is a Common Lisp type specifier. |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1943 |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1944 If macro expansion of a `the' form happens during byte compilation, and the |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1945 byte compiler customization variable `byte-compile-delete-errors' is |
5269
90a0084b3541
Rephrase the #'the docstring, make it nicer while byte-compiling.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5266
diff
changeset
|
1946 non-nil, `the' is equivalent to FORM without any type checks." |
5263
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1947 (if (cl-safe-expr-p form) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1948 `(prog1 ,form (assert ,(cl-make-type-test form type) t)) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1949 (let ((saved (gensym))) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1950 `(let ((,saved ,form)) |
0d436a78c514
Add an implementation for #'the, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5242
diff
changeset
|
1951 (prog1 ,saved (assert ,(cl-make-type-test saved type) t)))))) |
428 | 1952 |
1953 (defvar cl-proclaim-history t) ; for future compilers | |
1954 (defvar cl-declare-stack t) ; for future compilers | |
1955 | |
1956 (defun cl-do-proclaim (spec hist) | |
2153 | 1957 (and hist (listp cl-proclaim-history) (push spec cl-proclaim-history)) |
428 | 1958 (cond ((eq (car-safe spec) 'special) |
1959 (if (boundp 'byte-compile-bound-variables) | |
1960 (setq byte-compile-bound-variables | |
442 | 1961 (append |
2153 | 1962 ;; XEmacs change |
442 | 1963 (mapcar #'(lambda (v) (cons v byte-compile-global-bit)) |
1964 (cdr spec)) | |
1965 byte-compile-bound-variables)))) | |
428 | 1966 |
1967 ((eq (car-safe spec) 'inline) | |
1968 (while (setq spec (cdr spec)) | |
1969 (or (memq (get (car spec) 'byte-optimizer) | |
1970 '(nil byte-compile-inline-expand)) | |
1971 (error "%s already has a byte-optimizer, can't make it inline" | |
1972 (car spec))) | |
1973 (put (car spec) 'byte-optimizer 'byte-compile-inline-expand))) | |
1974 | |
1975 ((eq (car-safe spec) 'notinline) | |
1976 (while (setq spec (cdr spec)) | |
1977 (if (eq (get (car spec) 'byte-optimizer) | |
1978 'byte-compile-inline-expand) | |
1979 (put (car spec) 'byte-optimizer nil)))) | |
1980 | |
1981 ((eq (car-safe spec) 'optimize) | |
1982 (let ((speed (assq (nth 1 (assq 'speed (cdr spec))) | |
446 | 1983 '((0 . nil) (1 . t) (2 . t) (3 . t)))) |
428 | 1984 (safety (assq (nth 1 (assq 'safety (cdr spec))) |
446 | 1985 '((0 . t) (1 . t) (2 . t) (3 . nil))))) |
1986 (when speed | |
1987 (setq cl-optimize-speed (car speed) | |
1988 byte-optimize (cdr speed))) | |
1989 (when safety | |
1990 (setq cl-optimize-safety (car safety) | |
1991 byte-compile-delete-errors (cdr safety))))) | |
428 | 1992 |
1993 ((and (eq (car-safe spec) 'warn) (boundp 'byte-compile-warnings)) | |
1994 (if (eq byte-compile-warnings t) | |
1995 ;; XEmacs change | |
1996 (setq byte-compile-warnings byte-compile-default-warnings)) | |
1997 (while (setq spec (cdr spec)) | |
1998 (if (consp (car spec)) | |
1999 (if (eq (cadar spec) 0) | |
2000 (setq byte-compile-warnings | |
2001 (delq (caar spec) byte-compile-warnings)) | |
2002 (setq byte-compile-warnings | |
2003 (adjoin (caar spec) byte-compile-warnings))))))) | |
2004 nil) | |
2005 | |
2006 ;;; Process any proclamations made before cl-macs was loaded. | |
2007 (defvar cl-proclaims-deferred) | |
2008 (let ((p (reverse cl-proclaims-deferred))) | |
2153 | 2009 (while p (cl-do-proclaim (pop p) t)) |
428 | 2010 (setq cl-proclaims-deferred nil)) |
2011 | |
2012 ;;;###autoload | |
2013 (defmacro declare (&rest specs) | |
2014 (if (cl-compiling-file) | |
2015 (while specs | |
2153 | 2016 (if (listp cl-declare-stack) (push (car specs) cl-declare-stack)) |
2017 (cl-do-proclaim (pop specs) nil))) | |
428 | 2018 nil) |
2019 | |
2020 | |
2021 | |
2022 ;;; Generalized variables. | |
2023 | |
2024 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2025 (defmacro define-setf-method (name arglist &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2026 "Define a `setf' method. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2027 This method shows how to handle `setf's to places of the form (NAME ARGLIST...). |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2028 The argument forms are bound according to ARGLIST, as if NAME were |
428 | 2029 going to be expanded as a macro, then the BODY forms are executed and must |
2030 return a list of five elements: a temporary-variables list, a value-forms | |
2031 list, a store-variables list (of length one), a store-form, and an access- | |
2032 form. See `defsetf' for a simpler way to define most setf-methods." | |
2033 (append '(eval-when (compile load eval)) | |
2034 (if (stringp (car body)) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2035 (list (list 'put (list 'quote name) '(quote setf-documentation) |
2153 | 2036 (pop body)))) |
428 | 2037 (list (cl-transform-function-property |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2038 name 'setf-method (cons arglist body))))) |
2153 | 2039 (defalias 'define-setf-expander 'define-setf-method) |
428 | 2040 |
2041 ;;;###autoload | |
2042 (defmacro defsetf (func arg1 &rest args) | |
2043 "(defsetf NAME FUNC): define a `setf' method. | |
2044 This macro is an easy-to-use substitute for `define-setf-method' that works | |
2045 well for simple place forms. In the simple `defsetf' form, `setf's of | |
2046 the form (setf (NAME ARGS...) VAL) are transformed to function or macro | |
2047 calls of the form (FUNC ARGS... VAL). Example: (defsetf aref aset). | |
2048 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...). | |
2049 Here, the above `setf' call is expanded by binding the argument forms ARGS | |
2050 according to ARGLIST, binding the value form VAL to STORE, then executing | |
2051 BODY, which must return a Lisp form that does the necessary `setf' operation. | |
2052 Actually, ARGLIST and STORE may be bound to temporary variables which are | |
2053 introduced automatically to preserve proper execution order of the arguments. | |
2054 Example: (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))." | |
2055 (if (listp arg1) | |
2056 (let* ((largs nil) (largsr nil) | |
2057 (temps nil) (tempsr nil) | |
2058 (restarg nil) (rest-temps nil) | |
2059 (store-var (car (prog1 (car args) (setq args (cdr args))))) | |
2060 (store-temp (intern (format "--%s--temp--" store-var))) | |
2061 (lets1 nil) (lets2 nil) | |
2062 (docstr nil) (p arg1)) | |
2063 (if (stringp (car args)) | |
2064 (setq docstr (prog1 (car args) (setq args (cdr args))))) | |
2065 (while (and p (not (eq (car p) '&aux))) | |
2066 (if (eq (car p) '&rest) | |
2067 (setq p (cdr p) restarg (car p)) | |
2068 (or (memq (car p) '(&optional &key &allow-other-keys)) | |
2069 (setq largs (cons (if (consp (car p)) (car (car p)) (car p)) | |
2070 largs) | |
2071 temps (cons (intern (format "--%s--temp--" (car largs))) | |
2072 temps)))) | |
2073 (setq p (cdr p))) | |
2074 (setq largs (nreverse largs) temps (nreverse temps)) | |
2075 (if restarg | |
2076 (setq largsr (append largs (list restarg)) | |
2077 rest-temps (intern (format "--%s--temp--" restarg)) | |
2078 tempsr (append temps (list rest-temps))) | |
2079 (setq largsr largs tempsr temps)) | |
2080 (let ((p1 largs) (p2 temps)) | |
2081 (while p1 | |
2082 (setq lets1 (cons (list (car p2) | |
2083 (list 'gensym (format "--%s--" (car p1)))) | |
2084 lets1) | |
2085 lets2 (cons (list (car p1) (car p2)) lets2) | |
2086 p1 (cdr p1) p2 (cdr p2)))) | |
2087 (if restarg (setq lets2 (cons (list restarg rest-temps) lets2))) | |
2088 (append (list 'define-setf-method func arg1) | |
2089 (and docstr (list docstr)) | |
2090 (list | |
2091 (list 'let* | |
2092 (nreverse | |
2093 (cons (list store-temp | |
2094 (list 'gensym (format "--%s--" store-var))) | |
2095 (if restarg | |
2096 (append | |
2097 (list | |
2098 (list rest-temps | |
2099 (list 'mapcar '(quote gensym) | |
2100 restarg))) | |
2101 lets1) | |
2102 lets1))) | |
2103 (list 'list ; 'values | |
2104 (cons (if restarg 'list* 'list) tempsr) | |
2105 (cons (if restarg 'list* 'list) largsr) | |
2106 (list 'list store-temp) | |
2107 (cons 'let* | |
2108 (cons (nreverse | |
2109 (cons (list store-var store-temp) | |
2110 lets2)) | |
2111 args)) | |
2112 (cons (if restarg 'list* 'list) | |
2113 (cons (list 'quote func) tempsr))))))) | |
2114 (list 'defsetf func '(&rest args) '(store) | |
2115 (let ((call (list 'cons (list 'quote arg1) | |
2116 '(append args (list store))))) | |
2117 (if (car args) | |
2118 (list 'list '(quote progn) call 'store) | |
2119 call))))) | |
2120 | |
2121 ;;; Some standard place types from Common Lisp. | |
2153 | 2122 (eval-when-compile (defvar ignored-arg)) ; XEmacs: warning suppression |
428 | 2123 (defsetf aref aset) |
2124 (defsetf car setcar) | |
2125 (defsetf cdr setcdr) | |
2153 | 2126 (defsetf caar (x) (val) (list 'setcar (list 'car x) val)) |
2127 (defsetf cadr (x) (val) (list 'setcar (list 'cdr x) val)) | |
2128 (defsetf cdar (x) (val) (list 'setcdr (list 'car x) val)) | |
2129 (defsetf cddr (x) (val) (list 'setcdr (list 'cdr x) val)) | |
428 | 2130 (defsetf elt (seq n) (store) |
2131 (list 'if (list 'listp seq) (list 'setcar (list 'nthcdr n seq) store) | |
2132 (list 'aset seq n store))) | |
2153 | 2133 ;; XEmacs change: ignore the optional DEFAULT arguments |
428 | 2134 (defsetf get (x y &optional ignored-arg) (store) (list 'put x y store)) |
2135 (defsetf get* (x y &optional ignored-arg) (store) (list 'put x y store)) | |
2153 | 2136 (defsetf gethash (x h &optional ignored-arg) (store) (list 'puthash x store h)) |
428 | 2137 (defsetf nth (n x) (store) (list 'setcar (list 'nthcdr n x) store)) |
2138 (defsetf subseq (seq start &optional end) (new) | |
2153 | 2139 (list 'progn (list 'replace seq new :start1 start :end1 end) new)) |
428 | 2140 (defsetf symbol-function fset) |
2141 (defsetf symbol-plist setplist) | |
2142 (defsetf symbol-value set) | |
2143 | |
2144 ;;; Various car/cdr aliases. Note that `cadr' is handled specially. | |
2145 (defsetf first setcar) | |
2146 (defsetf second (x) (store) (list 'setcar (list 'cdr x) store)) | |
2147 (defsetf third (x) (store) (list 'setcar (list 'cddr x) store)) | |
2148 (defsetf fourth (x) (store) (list 'setcar (list 'cdddr x) store)) | |
2149 (defsetf fifth (x) (store) (list 'setcar (list 'nthcdr 4 x) store)) | |
2150 (defsetf sixth (x) (store) (list 'setcar (list 'nthcdr 5 x) store)) | |
2151 (defsetf seventh (x) (store) (list 'setcar (list 'nthcdr 6 x) store)) | |
2152 (defsetf eighth (x) (store) (list 'setcar (list 'nthcdr 7 x) store)) | |
2153 (defsetf ninth (x) (store) (list 'setcar (list 'nthcdr 8 x) store)) | |
2154 (defsetf tenth (x) (store) (list 'setcar (list 'nthcdr 9 x) store)) | |
2155 (defsetf rest setcdr) | |
2156 | |
2157 ;;; Some more Emacs-related place types. | |
2158 (defsetf buffer-file-name set-visited-file-name t) | |
2153 | 2159 ;; XEmacs change: we do not need to wrap this in with-current-buffer |
428 | 2160 (defsetf buffer-modified-p set-buffer-modified-p t) |
2161 (defsetf buffer-name rename-buffer t) | |
2162 (defsetf buffer-string () (store) | |
2163 (list 'progn '(erase-buffer) (list 'insert store))) | |
2164 (defsetf buffer-substring cl-set-buffer-substring) | |
2165 (defsetf current-buffer set-buffer) | |
2166 (defsetf current-case-table set-case-table) | |
2167 (defsetf current-column move-to-column t) | |
2168 (defsetf current-global-map use-global-map t) | |
2169 (defsetf current-input-mode () (store) | |
2170 (list 'progn (list 'apply 'set-input-mode store) store)) | |
2171 (defsetf current-local-map use-local-map t) | |
2172 (defsetf current-window-configuration set-window-configuration t) | |
2173 (defsetf default-file-modes set-default-file-modes t) | |
2174 (defsetf default-value set-default) | |
2175 (defsetf documentation-property put) | |
2153 | 2176 ;;(defsetf extent-data set-extent-data) |
428 | 2177 (defsetf extent-face set-extent-face) |
2178 (defsetf extent-priority set-extent-priority) | |
2153 | 2179 ;; XEmacs addition |
428 | 2180 (defsetf extent-property (x y &optional ignored-arg) (arg) |
2181 (list 'set-extent-property x y arg)) | |
2153 | 2182 (defsetf extent-end-position (ext) (store) |
2183 `(progn (set-extent-endpoints ,ext (extent-start-position ,ext) ,store) | |
2184 ,store)) | |
428 | 2185 (defsetf extent-start-position (ext) (store) |
2186 `(progn (set-extent-endpoints ,ext ,store (extent-end-position ,ext)) | |
2187 ,store)) | |
2188 (defsetf face-background (f &optional s) (x) (list 'set-face-background f x s)) | |
2189 (defsetf face-background-pixmap (f &optional s) (x) | |
2190 (list 'set-face-background-pixmap f x s)) | |
5080
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5076
diff
changeset
|
2191 (defsetf face-background-placement (f &optional s) (x) |
5502045ec510
The background-placement face property.
Didier Verna <didier@lrde.epita.fr>
parents:
5076
diff
changeset
|
2192 (list 'set-face-background-placement f x s)) |
428 | 2193 (defsetf face-font (f &optional s) (x) (list 'set-face-font f x s)) |
2194 (defsetf face-foreground (f &optional s) (x) (list 'set-face-foreground f x s)) | |
2195 (defsetf face-underline-p (f &optional s) (x) | |
2196 (list 'set-face-underline-p f x s)) | |
2197 (defsetf file-modes set-file-modes t) | |
2153 | 2198 (defsetf frame-height (&optional f) (v) |
2199 `(progn (set-frame-height ,f ,v) ,v)) | |
428 | 2200 (defsetf frame-parameters modify-frame-parameters t) |
2201 (defsetf frame-visible-p cl-set-frame-visible-p) | |
2153 | 2202 (defsetf frame-width (&optional f) (v) |
2203 `(progn (set-frame-width ,f ,v) ,v)) | |
2204 ;; XEmacs change: frame-properties instead of frame-parameters | |
428 | 2205 (defsetf frame-properties (&optional f) (p) |
2206 `(progn (set-frame-properties ,f ,p) ,p)) | |
2207 (defsetf frame-property (f p &optional ignored-arg) (v) | |
2208 `(progn (set-frame-property ,f ,v) ,p)) | |
2153 | 2209 ;; XEmacs addition |
428 | 2210 (defsetf current-frame-configuration set-frame-configuration) |
2211 | |
2212 ;; XEmacs: new stuff | |
2213 ;; Consoles | |
2214 (defsetf selected-console select-console t) | |
2215 (defsetf selected-device select-device t) | |
2216 (defsetf device-baud-rate (&optional d) (v) | |
2217 `(set-device-baud-rate ,d ,v)) | |
2218 ;; This setf method is a bad idea, because set-specifier *adds* a | |
2219 ;; specification, rather than just setting it. The net effect is that | |
2220 ;; it makes specifier-instance return VAL, but other things don't work | |
2221 ;; as expected -- letf, to name one. | |
2222 ;(defsetf specifier-instance (spec &optional dom def nof) (val) | |
2223 ; `(set-specifier ,spec ,val ,dom)) | |
2224 | |
2225 ;; Annotations | |
2226 (defsetf annotation-glyph set-annotation-glyph) | |
2227 (defsetf annotation-down-glyph set-annotation-down-glyph) | |
2228 (defsetf annotation-face set-annotation-face) | |
2229 (defsetf annotation-layout set-annotation-layout) | |
2230 (defsetf annotation-data set-annotation-data) | |
2231 (defsetf annotation-action set-annotation-action) | |
2232 (defsetf annotation-menu set-annotation-menu) | |
2233 ;; Widget | |
2234 (defsetf widget-get widget-put t) | |
2235 (defsetf widget-value widget-value-set t) | |
2236 | |
2237 ;; Misc | |
2238 (defsetf recent-keys-ring-size set-recent-keys-ring-size) | |
2239 (defsetf symbol-value-in-buffer (s b &optional ignored-arg) (store) | |
2240 `(with-current-buffer ,b (set ,s ,store))) | |
2241 (defsetf symbol-value-in-console (s c &optional ignored-arg) (store) | |
2242 `(letf (((selected-console) ,c)) | |
2243 (set ,s ,store))) | |
2244 | |
2245 (defsetf buffer-dedicated-frame (&optional b) (v) | |
2246 `(set-buffer-dedicated-frame ,b ,v)) | |
2247 (defsetf console-type-image-conversion-list | |
2248 set-console-type-image-conversion-list) | |
2249 (defsetf default-toolbar-position set-default-toolbar-position) | |
2250 (defsetf device-class (&optional d) (v) | |
2251 `(set-device-class ,d ,v)) | |
2252 (defsetf extent-begin-glyph set-extent-begin-glyph) | |
2253 (defsetf extent-begin-glyph-layout set-extent-begin-glyph-layout) | |
2254 (defsetf extent-end-glyph set-extent-end-glyph) | |
2255 (defsetf extent-end-glyph-layout set-extent-end-glyph-layout) | |
2256 (defsetf extent-keymap set-extent-keymap) | |
2257 (defsetf extent-parent set-extent-parent) | |
2258 (defsetf extent-properties set-extent-properties) | |
2259 ;; Avoid adding various face and glyph functions. | |
2260 (defsetf frame-selected-window (&optional f) (v) | |
2261 `(set-frame-selected-window ,f ,v)) | |
2262 (defsetf glyph-image (glyph &optional domain) (i) | |
2263 (list 'set-glyph-image glyph i domain)) | |
2264 (defsetf itimer-function set-itimer-function) | |
2265 (defsetf itimer-function-arguments set-itimer-function-arguments) | |
2266 (defsetf itimer-is-idle set-itimer-is-idle) | |
2267 (defsetf itimer-recorded-run-time set-itimer-recorded-run-time) | |
2268 (defsetf itimer-restart set-itimer-restart) | |
2269 (defsetf itimer-uses-arguments set-itimer-uses-arguments) | |
2270 (defsetf itimer-value set-itimer-value) | |
2271 (defsetf keymap-parents set-keymap-parents) | |
2272 (defsetf marker-insertion-type set-marker-insertion-type) | |
2273 (defsetf mouse-pixel-position (&optional d) (v) | |
2274 `(progn | |
2275 (set-mouse-pixel-position ,d ,(car v) ,(car (cdr v)) ,(cdr (cdr v))) | |
2276 ,v)) | |
2277 (defsetf trunc-stack-length set-trunc-stack-length) | |
2278 (defsetf trunc-stack-stack set-trunc-stack-stack) | |
2279 (defsetf undoable-stack-max set-undoable-stack-max) | |
2280 (defsetf weak-list-list set-weak-list-list) | |
2153 | 2281 ;; End of new XEmacs stuff |
428 | 2282 |
2283 (defsetf getenv setenv t) | |
2284 (defsetf get-register set-register) | |
2285 (defsetf global-key-binding global-set-key) | |
2286 (defsetf keymap-parent set-keymap-parent) | |
2153 | 2287 ;; XEmacs addition: more keymap-related setf forms |
428 | 2288 (defsetf keymap-name set-keymap-name) |
2289 (defsetf keymap-prompt set-keymap-prompt) | |
2290 (defsetf keymap-default-binding set-keymap-default-binding) | |
2291 (defsetf local-key-binding local-set-key) | |
2292 (defsetf mark set-mark t) | |
2293 (defsetf mark-marker set-mark t) | |
2294 (defsetf marker-position set-marker t) | |
2295 (defsetf match-data store-match-data t) | |
2296 (defsetf mouse-position (scr) (store) | |
2297 (list 'set-mouse-position scr (list 'car store) (list 'cadr store) | |
2298 (list 'cddr store))) | |
2299 (defsetf overlay-get overlay-put) | |
2300 (defsetf overlay-start (ov) (store) | |
2301 (list 'progn (list 'move-overlay ov store (list 'overlay-end ov)) store)) | |
2302 (defsetf overlay-end (ov) (store) | |
2303 (list 'progn (list 'move-overlay ov (list 'overlay-start ov) store) store)) | |
2304 (defsetf point goto-char) | |
2305 (defsetf point-marker goto-char t) | |
2306 (defsetf point-max () (store) | |
2307 (list 'progn (list 'narrow-to-region '(point-min) store) store)) | |
2308 (defsetf point-min () (store) | |
2309 (list 'progn (list 'narrow-to-region store '(point-max)) store)) | |
2310 (defsetf process-buffer set-process-buffer) | |
2311 (defsetf process-filter set-process-filter) | |
2312 (defsetf process-sentinel set-process-sentinel) | |
2153 | 2313 ;;(defsetf process-get process-put) |
428 | 2314 (defsetf read-mouse-position (scr) (store) |
2315 (list 'set-mouse-position scr (list 'car store) (list 'cdr store))) | |
2153 | 2316 ;;(defsetf screen-height set-screen-height t) |
2317 ;;(defsetf screen-width set-screen-width t) | |
428 | 2318 (defsetf selected-window select-window) |
2153 | 2319 ;;(defsetf selected-screen select-screen) |
428 | 2320 (defsetf selected-frame select-frame) |
2321 (defsetf standard-case-table set-standard-case-table) | |
2322 (defsetf syntax-table set-syntax-table) | |
2323 (defsetf visited-file-modtime set-visited-file-modtime t) | |
2324 (defsetf window-buffer set-window-buffer t) | |
2325 (defsetf window-display-table set-window-display-table t) | |
2326 (defsetf window-dedicated-p set-window-dedicated-p t) | |
2327 (defsetf window-height (&optional window) (store) | |
2328 `(progn (enlarge-window (- ,store (window-height)) nil ,window) ,store)) | |
2329 (defsetf window-hscroll set-window-hscroll) | |
2330 (defsetf window-point set-window-point) | |
2331 (defsetf window-start set-window-start) | |
2332 (defsetf window-width (&optional window) (store) | |
2333 `(progn (enlarge-window (- ,store (window-width)) t ,window) ,store)) | |
2334 (defsetf x-get-cutbuffer x-store-cutbuffer t) | |
2335 (defsetf x-get-cut-buffer x-store-cut-buffer t) ; groan. | |
2336 (defsetf x-get-secondary-selection x-own-secondary-selection t) | |
2337 (defsetf x-get-selection x-own-selection t) | |
442 | 2338 (defsetf get-selection own-selection t) |
428 | 2339 |
2340 ;;; More complex setf-methods. | |
2341 ;;; These should take &environment arguments, but since full arglists aren't | |
2342 ;;; available while compiling cl-macs, we fake it by referring to the global | |
2343 ;;; variable cl-macro-environment directly. | |
2344 | |
2345 (define-setf-method apply (func arg1 &rest rest) | |
2346 (or (and (memq (car-safe func) '(quote function function*)) | |
2347 (symbolp (car-safe (cdr-safe func)))) | |
2348 (error "First arg to apply in setf is not (function SYM): %s" func)) | |
2349 (let* ((form (cons (nth 1 func) (cons arg1 rest))) | |
2350 (method (get-setf-method form cl-macro-environment))) | |
2351 (list (car method) (nth 1 method) (nth 2 method) | |
2352 (cl-setf-make-apply (nth 3 method) (cadr func) (car method)) | |
2353 (cl-setf-make-apply (nth 4 method) (cadr func) (car method))))) | |
2354 | |
2355 (defun cl-setf-make-apply (form func temps) | |
2356 (if (eq (car form) 'progn) | |
2357 (list* 'progn (cl-setf-make-apply (cadr form) func temps) (cddr form)) | |
2358 (or (equal (last form) (last temps)) | |
2359 (error "%s is not suitable for use with setf-of-apply" func)) | |
2360 (list* 'apply (list 'quote (car form)) (cdr form)))) | |
2361 | |
2362 (define-setf-method nthcdr (n place) | |
2363 (let ((method (get-setf-method place cl-macro-environment)) | |
2364 (n-temp (gensym "--nthcdr-n--")) | |
2365 (store-temp (gensym "--nthcdr-store--"))) | |
2366 (list (cons n-temp (car method)) | |
2367 (cons n (nth 1 method)) | |
2368 (list store-temp) | |
2369 (list 'let (list (list (car (nth 2 method)) | |
2370 (list 'cl-set-nthcdr n-temp (nth 4 method) | |
2371 store-temp))) | |
2372 (nth 3 method) store-temp) | |
2373 (list 'nthcdr n-temp (nth 4 method))))) | |
2374 | |
2375 (define-setf-method getf (place tag &optional def) | |
2376 (let ((method (get-setf-method place cl-macro-environment)) | |
2377 (tag-temp (gensym "--getf-tag--")) | |
2378 (def-temp (gensym "--getf-def--")) | |
2379 (store-temp (gensym "--getf-store--"))) | |
2380 (list (append (car method) (list tag-temp def-temp)) | |
2381 (append (nth 1 method) (list tag def)) | |
2382 (list store-temp) | |
2383 (list 'let (list (list (car (nth 2 method)) | |
5285
99de5fd48e87
Tighten up Common Lisp compatibility, #'butlast, #'nbutlast, #'tailp, #'ldiff
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
2384 (list 'plist-put (nth 4 method) |
428 | 2385 tag-temp store-temp))) |
2386 (nth 3 method) store-temp) | |
2387 (list 'getf (nth 4 method) tag-temp def-temp)))) | |
2388 | |
2389 (define-setf-method substring (place from &optional to) | |
2390 (let ((method (get-setf-method place cl-macro-environment)) | |
2391 (from-temp (gensym "--substring-from--")) | |
2392 (to-temp (gensym "--substring-to--")) | |
2393 (store-temp (gensym "--substring-store--"))) | |
2394 (list (append (car method) (list from-temp to-temp)) | |
2395 (append (nth 1 method) (list from to)) | |
2396 (list store-temp) | |
2397 (list 'let (list (list (car (nth 2 method)) | |
2398 (list 'cl-set-substring (nth 4 method) | |
2399 from-temp to-temp store-temp))) | |
2400 (nth 3 method) store-temp) | |
2401 (list 'substring (nth 4 method) from-temp to-temp)))) | |
2402 | |
2153 | 2403 ;; XEmacs addition |
428 | 2404 (define-setf-method values (&rest args) |
2405 (let ((methods (mapcar #'(lambda (x) | |
2406 (get-setf-method x cl-macro-environment)) | |
2407 args)) | |
2408 (store-temp (gensym "--values-store--"))) | |
2409 (list (apply 'append (mapcar 'first methods)) | |
2410 (apply 'append (mapcar 'second methods)) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2411 `((,store-temp |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2412 (multiple-value-list-internal 0 ,(if args (length args) 1)))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2413 (cons 'values |
428 | 2414 (mapcar #'(lambda (m) |
2415 (cl-setf-do-store (cons (car (third m)) (fourth m)) | |
2416 (list 'pop store-temp))) | |
2417 methods)) | |
2418 (cons 'list (mapcar 'fifth methods))))) | |
2419 | |
2420 ;;; Getting and optimizing setf-methods. | |
2421 ;;;###autoload | |
2422 (defun get-setf-method (place &optional env) | |
2423 "Return a list of five values describing the setf-method for PLACE. | |
2424 PLACE may be any Lisp form which can appear as the PLACE argument to | |
2425 a macro like `setf' or `incf'." | |
2426 (if (symbolp place) | |
2427 (let ((temp (gensym "--setf--"))) | |
2428 (list nil nil (list temp) (list 'setq place temp) place)) | |
2429 (or (and (symbolp (car place)) | |
2430 (let* ((func (car place)) | |
2431 (name (symbol-name func)) | |
2432 (method (get func 'setf-method)) | |
2433 (case-fold-search nil)) | |
2434 (or (and method | |
2435 (let ((cl-macro-environment env)) | |
2436 (setq method (apply method (cdr place)))) | |
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5356
diff
changeset
|
2437 (if (and (consp method) (eql (length method) 5)) |
428 | 2438 method |
2439 (error "Setf-method for %s returns malformed method" | |
2440 func))) | |
2441 (and (save-match-data | |
2442 (string-match "\\`c[ad][ad][ad]?[ad]?r\\'" name)) | |
2443 (get-setf-method (compiler-macroexpand place))) | |
2444 (and (eq func 'edebug-after) | |
2445 (get-setf-method (nth (1- (length place)) place) | |
2446 env))))) | |
2447 (if (eq place (setq place (macroexpand place env))) | |
2448 (if (and (symbolp (car place)) (fboundp (car place)) | |
2449 (symbolp (symbol-function (car place)))) | |
2450 (get-setf-method (cons (symbol-function (car place)) | |
2451 (cdr place)) env) | |
2452 (error "No setf-method known for %s" (car place))) | |
2453 (get-setf-method place env))))) | |
2454 | |
2455 (defun cl-setf-do-modify (place opt-expr) | |
2456 (let* ((method (get-setf-method place cl-macro-environment)) | |
2457 (temps (car method)) (values (nth 1 method)) | |
2458 (lets nil) (subs nil) | |
2459 (optimize (and (not (eq opt-expr 'no-opt)) | |
2460 (or (and (not (eq opt-expr 'unsafe)) | |
2461 (cl-safe-expr-p opt-expr)) | |
2462 (cl-setf-simple-store-p (car (nth 2 method)) | |
2463 (nth 3 method))))) | |
2464 (simple (and optimize (consp place) (cl-simple-exprs-p (cdr place))))) | |
2465 (while values | |
2466 (if (or simple (cl-const-expr-p (car values))) | |
2153 | 2467 (push (cons (pop temps) (pop values)) subs) |
2468 (push (list (pop temps) (pop values)) lets))) | |
428 | 2469 (list (nreverse lets) |
2470 (cons (car (nth 2 method)) (sublis subs (nth 3 method))) | |
2471 (sublis subs (nth 4 method))))) | |
2472 | |
2473 (defun cl-setf-do-store (spec val) | |
2474 (let ((sym (car spec)) | |
2475 (form (cdr spec))) | |
4677
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2476 (if (consp sym) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2477 ;; XEmacs change, only used for implementing #'values at the moment. |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2478 (let* ((orig (copy-list sym)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2479 (intermediate (last orig)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2480 (circular-limit 32)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2481 (while (consp (car intermediate)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2482 (when (zerop circular-limit) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2483 (error 'circular-list "Form seems to contain loops")) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2484 (setq intermediate (last (car intermediate)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2485 circular-limit (1- circular-limit))) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2486 (setcdr intermediate (list val)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2487 `(let (,orig) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2488 ,form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2489 (if (or (cl-const-expr-p val) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2490 (and (cl-simple-expr-p val) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2491 (eq (cl-expr-contains form sym) 1)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2492 (cl-setf-simple-store-p sym form)) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2493 (subst val sym form) |
8f1ee2d15784
Support full Common Lisp multiple values in C.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4607
diff
changeset
|
2494 (list 'let (list (list sym val)) form))))) |
428 | 2495 |
2496 (defun cl-setf-simple-store-p (sym form) | |
2497 (and (consp form) (eq (cl-expr-contains form sym) 1) | |
2498 (eq (nth (1- (length form)) form) sym) | |
2499 (symbolp (car form)) (fboundp (car form)) | |
2500 (not (eq (car-safe (symbol-function (car form))) 'macro)))) | |
2501 | |
2502 ;;; The standard modify macros. | |
2503 ;;;###autoload | |
2504 (defmacro setf (&rest args) | |
2505 "(setf PLACE VAL PLACE VAL ...): set each PLACE to the value of its VAL. | |
2506 This is a generalized version of `setq'; the PLACEs may be symbolic | |
2507 references such as (car x) or (aref x i), as well as plain symbols. | |
2508 For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y). | |
2509 The return value is the last VAL in the list." | |
2510 (if (cdr (cdr args)) | |
2511 (let ((sets nil)) | |
2153 | 2512 (while args (push (list 'setf (pop args) (pop args)) sets)) |
428 | 2513 (cons 'progn (nreverse sets))) |
2514 (if (symbolp (car args)) | |
2515 (and args (cons 'setq args)) | |
2516 (let* ((method (cl-setf-do-modify (car args) (nth 1 args))) | |
2517 (store (cl-setf-do-store (nth 1 method) (nth 1 args)))) | |
2518 (if (car method) (list 'let* (car method) store) store))))) | |
2519 | |
2520 ;;;###autoload | |
2521 (defmacro psetf (&rest args) | |
2522 "(psetf PLACE VAL PLACE VAL ...): set PLACEs to the values VALs in parallel. | |
2523 This is like `setf', except that all VAL forms are evaluated (in order) | |
2524 before assigning any PLACEs to the corresponding values." | |
2525 (let ((p args) (simple t) (vars nil)) | |
2526 (while p | |
2527 (if (or (not (symbolp (car p))) (cl-expr-depends-p (nth 1 p) vars)) | |
2528 (setq simple nil)) | |
2529 (if (memq (car p) vars) | |
2530 (error "Destination duplicated in psetf: %s" (car p))) | |
2153 | 2531 (push (pop p) vars) |
428 | 2532 (or p (error "Odd number of arguments to psetf")) |
2153 | 2533 (pop p)) |
428 | 2534 (if simple |
2535 (list 'progn (cons 'setf args) nil) | |
2536 (setq args (reverse args)) | |
2537 (let ((expr (list 'setf (cadr args) (car args)))) | |
2538 (while (setq args (cddr args)) | |
2539 (setq expr (list 'setf (cadr args) (list 'prog1 (car args) expr)))) | |
2540 (list 'progn expr nil))))) | |
2541 | |
2542 ;;;###autoload | |
2543 (defun cl-do-pop (place) | |
2544 (if (cl-simple-expr-p place) | |
2545 (list 'prog1 (list 'car place) (list 'setf place (list 'cdr place))) | |
2546 (let* ((method (cl-setf-do-modify place t)) | |
2547 (temp (gensym "--pop--"))) | |
2548 (list 'let* | |
2549 (append (car method) | |
2550 (list (list temp (nth 2 method)))) | |
2551 (list 'prog1 | |
2552 (list 'car temp) | |
2553 (cl-setf-do-store (nth 1 method) (list 'cdr temp))))))) | |
2554 | |
2555 ;;;###autoload | |
2556 (defmacro remf (place tag) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2557 "Remove TAG from property list PLACE. |
428 | 2558 PLACE may be a symbol, or any generalized variable allowed by `setf'. |
2559 The form returns true if TAG was found and removed, nil otherwise." | |
2560 (let* ((method (cl-setf-do-modify place t)) | |
2561 (tag-temp (and (not (cl-const-expr-p tag)) (gensym "--remf-tag--"))) | |
2562 (val-temp (and (not (cl-simple-expr-p place)) | |
2563 (gensym "--remf-place--"))) | |
2564 (ttag (or tag-temp tag)) | |
2565 (tval (or val-temp (nth 2 method)))) | |
2566 (list 'let* | |
2567 (append (car method) | |
2568 (and val-temp (list (list val-temp (nth 2 method)))) | |
2569 (and tag-temp (list (list tag-temp tag)))) | |
2570 (list 'if (list 'eq ttag (list 'car tval)) | |
2571 (list 'progn | |
2572 (cl-setf-do-store (nth 1 method) (list 'cddr tval)) | |
2573 t) | |
5285
99de5fd48e87
Tighten up Common Lisp compatibility, #'butlast, #'nbutlast, #'tailp, #'ldiff
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
2574 (list 'plist-remprop tval ttag))))) |
428 | 2575 |
2576 ;;;###autoload | |
2577 (defmacro shiftf (place &rest args) | |
2578 "(shiftf PLACE PLACE... VAL): shift left among PLACEs. | |
2579 Example: (shiftf A B C) sets A to B, B to C, and returns the old A. | |
2580 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
2153 | 2581 ;; XEmacs change: use iteration instead of recursion |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
2582 (if (every #'symbolp (butlast (cons place args))) |
428 | 2583 (list* 'prog1 place |
2584 (let ((sets nil)) | |
2585 (while args | |
2153 | 2586 (push (list 'setq place (car args)) sets) |
2587 (setq place (pop args))) | |
428 | 2588 (nreverse sets))) |
2589 (let* ((places (reverse (cons place args))) | |
2153 | 2590 (form (pop places))) |
428 | 2591 (while places |
2153 | 2592 (let ((method (cl-setf-do-modify (pop places) 'unsafe))) |
428 | 2593 (setq form (list 'let* (car method) |
2594 (list 'prog1 (nth 2 method) | |
2595 (cl-setf-do-store (nth 1 method) form)))))) | |
2596 form))) | |
2597 | |
2598 ;;;###autoload | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2599 (defmacro rotatef (&rest places) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2600 "Rotate left among PLACES. |
428 | 2601 Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil. |
2602 Each PLACE may be a symbol, or any generalized variable allowed by `setf'." | |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
2603 (if (every #'symbolp places) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2604 (and (cdr places) |
428 | 2605 (let ((sets nil) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2606 (first (car places))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2607 (while (cdr places) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2608 (setq sets (nconc sets (list (pop places) (car places))))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2609 (nconc (list 'psetf) sets (list (car places) first)))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2610 (let* ((places (reverse places)) |
428 | 2611 (temp (gensym "--rotatef--")) |
2612 (form temp)) | |
2613 (while (cdr places) | |
2153 | 2614 (let ((method (cl-setf-do-modify (pop places) 'unsafe))) |
428 | 2615 (setq form (list 'let* (car method) |
2616 (list 'prog1 (nth 2 method) | |
2617 (cl-setf-do-store (nth 1 method) form)))))) | |
2618 (let ((method (cl-setf-do-modify (car places) 'unsafe))) | |
2619 (list 'let* (append (car method) (list (list temp (nth 2 method)))) | |
2620 (cl-setf-do-store (nth 1 method) form) nil))))) | |
2621 | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2622 ;; This function is not in Common Lisp, and there are gaps in its structure and |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2623 ;; implementation that reflect that it was never well-specified. E.g. with |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2624 ;; setf, the question of whether a PLACE is bound or not and how to make it |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2625 ;; unbound doesn't arise, but we need some way of specifying that for letf to |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2626 ;; be sensible for gethash, symbol-value and so on; currently we just hard-code |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2627 ;; symbol-value, symbol-function and values (the latter is XEmacs work that |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2628 ;; I've just done) in the body of this function, and the following gives the |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2629 ;; wrong behaviour for gethash: |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2630 ;; |
4820
e6dec75ded0e
Use keywords, not ordinary symbols, in the structure syntax for hash tables.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4810
diff
changeset
|
2631 ;; (setq my-hash-table #s(hash-table :test equal :data ()) |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2632 ;; print-gensym t) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2633 ;; => t |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2634 ;; (gethash "my-key" my-hash-table (gensym)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2635 ;; => #:G68010 |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2636 ;; (letf (((gethash "my-key" my-hash-table) 4000)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2637 ;; (message "key value is %S" (gethash "my-key" my-hash-table))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2638 ;; => "key value is 4000" |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2639 ;; (gethash "my-key" my-hash-table (gensym)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2640 ;; => nil ;; should be an uninterned symbol. |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2641 ;; |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2642 ;; Aidan Kehoe, Fr Nov 13 16:12:21 GMT 2009 |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2643 |
428 | 2644 ;;;###autoload |
2645 (defmacro letf (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2646 "Temporarily bind to PLACEs. |
428 | 2647 This is the analogue of `let', but with generalized variables (in the |
2648 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding | |
2649 VALUE, then the BODY forms are executed. On exit, either normally or | |
2650 because of a `throw' or error, the PLACEs are set back to their original | |
2651 values. Note that this macro is *not* available in Common Lisp. | |
2652 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)', | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2653 the PLACE is not modified before executing BODY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2654 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2655 arguments: (((PLACE VALUE) &rest BINDINGS) &body BODY)" |
428 | 2656 (if (and (not (cdr bindings)) (cdar bindings) (symbolp (caar bindings))) |
2657 (list* 'let bindings body) | |
2658 (let ((lets nil) | |
2659 (rev (reverse bindings))) | |
2660 (while rev | |
2661 (let* ((place (if (symbolp (caar rev)) | |
2662 (list 'symbol-value (list 'quote (caar rev))) | |
2663 (caar rev))) | |
2664 (value (cadar rev)) | |
2665 (method (cl-setf-do-modify place 'no-opt)) | |
2666 (save (gensym "--letf-save--")) | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2667 (bound (and (memq (car place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2668 '(symbol-value symbol-function values)) |
428 | 2669 (gensym "--letf-bound--"))) |
2670 (temp (and (not (cl-const-expr-p value)) (cdr bindings) | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2671 (gensym "--letf-val--"))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2672 (syms (and (eq 'values (car place)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2673 (gensym "--letf-syms--"))) |
4783
e29fcfd8df5f
Eliminate most core code byte-compile warnings.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4742
diff
changeset
|
2674 (cursor (and syms (gensym "--letf-cursor--")))) |
428 | 2675 (setq lets (nconc (car method) |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2676 (cond |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2677 (syms |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2678 `((,syms ',(loop |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2679 for sym in (cdr place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2680 nconc (if (symbolp sym) (list sym)))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2681 (,cursor ,syms) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2682 (,bound nil) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2683 (,save |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2684 (prog2 |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2685 (while (consp ,cursor) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2686 (setq ,bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2687 (cons (and (boundp (car ,cursor)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2688 (symbol-value |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2689 (car ,cursor))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2690 ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2691 ,cursor (cdr ,cursor))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2692 ;; Just using ,bound as a temporary |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2693 ;; variable here, to initialise ,save: |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2694 (nreverse ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2695 ;; Now, really initialise ,bound: |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2696 (setq ,cursor ,syms |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2697 ,bound nil |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2698 ,bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2699 (progn (while (consp ,cursor) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2700 (setq ,bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2701 (cons |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2702 (boundp (car ,cursor)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2703 ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2704 ,cursor (cdr ,cursor))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2705 (nreverse ,bound))))))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2706 (bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2707 (list (list bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2708 (list (if (eq (car place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2709 'symbol-value) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2710 'boundp 'fboundp) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2711 (nth 1 (nth 2 method)))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2712 (list save (list 'and bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2713 (nth 2 method))))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2714 (t |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2715 (list (list save (nth 2 method))))) |
428 | 2716 (and temp (list (list temp value))) |
2717 lets) | |
2718 body (list | |
2719 (list 'unwind-protect | |
2720 (cons 'progn | |
2721 (if (cdr (car rev)) | |
2722 (cons (cl-setf-do-store (nth 1 method) | |
2723 (or temp value)) | |
2724 body) | |
2725 body)) | |
4742
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2726 (cond |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2727 (syms |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2728 `(while (consp ,syms) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2729 (if (car ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2730 (set (car ,syms) (car ,save)) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2731 (makunbound (car ,syms))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2732 (setq ,syms (cdr ,syms) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2733 ,bound (cdr ,bound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2734 ,save (cdr ,save)))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2735 (bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2736 (list 'if bound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2737 (cl-setf-do-store (nth 1 method) save) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2738 (list (if (eq (car place) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2739 'symbol-function) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2740 'fmakunbound |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2741 'makunbound) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2742 (nth 1 (nth 2 method))))) |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2743 (t |
4cf435fcebbc
Make #'letf not error if handed a #'values form.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4723
diff
changeset
|
2744 (cl-setf-do-store (nth 1 method) save))))) |
428 | 2745 rev (cdr rev)))) |
2746 (list* 'let* lets body)))) | |
2747 | |
2748 ;;;###autoload | |
2749 (defmacro letf* (bindings &rest body) | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2750 "Temporarily bind to PLACES. |
428 | 2751 This is the analogue of `let*', but with generalized variables (in the |
2752 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding | |
2753 VALUE, then the BODY forms are executed. On exit, either normally or | |
2754 because of a `throw' or error, the PLACEs are set back to their original | |
2755 values. Note that this macro is *not* available in Common Lisp. | |
2756 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)', | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2757 the PLACE is not modified before executing BODY. |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2758 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
2759 arguments: (((PLACE VALUE) &rest BINDINGS) &body BODY)" |
428 | 2760 (if (null bindings) |
2761 (cons 'progn body) | |
2762 (setq bindings (reverse bindings)) | |
2763 (while bindings | |
2153 | 2764 (setq body (list (list* 'letf (list (pop bindings)) body)))) |
428 | 2765 (car body))) |
2766 | |
2767 ;;;###autoload | |
2768 (defmacro callf (func place &rest args) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2769 "Set PLACE to (FUNC PLACE ARGS...). |
428 | 2770 FUNC should be an unquoted function name. PLACE may be a symbol, |
2771 or any generalized variable allowed by `setf'." | |
2772 (let* ((method (cl-setf-do-modify place (cons 'list args))) | |
2773 (rargs (cons (nth 2 method) args))) | |
2774 (list 'let* (car method) | |
2775 (cl-setf-do-store (nth 1 method) | |
2776 (if (symbolp func) (cons func rargs) | |
2777 (list* 'funcall (list 'function func) | |
2778 rargs)))))) | |
2779 | |
2780 ;;;###autoload | |
2781 (defmacro callf2 (func arg1 place &rest args) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2782 "Set PLACE to (FUNC ARG1 PLACE ARGS...). |
428 | 2783 Like `callf', but PLACE is the second argument of FUNC, not the first." |
2784 (if (and (cl-safe-expr-p arg1) (cl-simple-expr-p place) (symbolp func)) | |
2785 (list 'setf place (list* func arg1 place args)) | |
2786 (let* ((method (cl-setf-do-modify place (cons 'list args))) | |
2787 (temp (and (not (cl-const-expr-p arg1)) (gensym "--arg1--"))) | |
2788 (rargs (list* (or temp arg1) (nth 2 method) args))) | |
2789 (list 'let* (append (and temp (list (list temp arg1))) (car method)) | |
2790 (cl-setf-do-store (nth 1 method) | |
2791 (if (symbolp func) (cons func rargs) | |
2792 (list* 'funcall (list 'function func) | |
2793 rargs))))))) | |
2794 | |
2795 ;;;###autoload | |
2796 (defmacro define-modify-macro (name arglist func &optional doc) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
2797 "Define a `setf'-like modify macro. |
428 | 2798 If NAME is called, it combines its PLACE argument with the other arguments |
2799 from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)" | |
2800 (if (memq '&key arglist) (error "&key not allowed in define-modify-macro")) | |
2801 (let ((place (gensym "--place--"))) | |
2802 (list 'defmacro* name (cons place arglist) doc | |
2803 (list* (if (memq '&rest arglist) 'list* 'list) | |
2804 '(quote callf) (list 'quote func) place | |
2805 (cl-arglist-args arglist))))) | |
2806 | |
2807 | |
2808 ;;; Structures. | |
2809 | |
2810 ;;;###autoload | |
2811 (defmacro defstruct (struct &rest descs) | |
2812 "(defstruct (NAME OPTIONS...) (SLOT SLOT-OPTS...)...): define a struct type. | |
2813 This macro defines a new Lisp data type called NAME, which contains data | |
2814 stored in SLOTs. This defines a `make-NAME' constructor, a `copy-NAME' | |
2815 copier, a `NAME-p' predicate, and setf-able `NAME-SLOT' accessors." | |
2816 (let* ((name (if (consp struct) (car struct) struct)) | |
2817 (opts (cdr-safe struct)) | |
2818 (slots nil) | |
2819 (defaults nil) | |
2820 (conc-name (concat (symbol-name name) "-")) | |
2821 (constructor (intern (format "make-%s" name))) | |
2822 (constrs nil) | |
2823 (copier (intern (format "copy-%s" name))) | |
2824 (predicate (intern (format "%s-p" name))) | |
2825 (print-func nil) (print-auto nil) | |
2826 (safety (if (cl-compiling-file) cl-optimize-safety 3)) | |
2827 (include nil) | |
2828 (tag (intern (format "cl-struct-%s" name))) | |
2829 (tag-symbol (intern (format "cl-struct-%s-tags" name))) | |
2830 (include-descs nil) | |
2831 (side-eff nil) | |
2832 (type nil) | |
2833 (named nil) | |
2834 (forms nil) | |
2835 pred-form pred-check) | |
2836 (if (stringp (car descs)) | |
2153 | 2837 (push (list 'put (list 'quote name) '(quote structure-documentation) |
2838 (pop descs)) forms)) | |
428 | 2839 (setq descs (cons '(cl-tag-slot) |
2840 (mapcar #'(lambda (x) (if (consp x) x (list x))) | |
2841 descs))) | |
2842 (while opts | |
2843 (let ((opt (if (consp (car opts)) (caar opts) (car opts))) | |
2153 | 2844 (args (cdr-safe (pop opts)))) |
2845 (cond ((eq opt :conc-name) | |
428 | 2846 (if args |
2847 (setq conc-name (if (car args) | |
2848 (symbol-name (car args)) "")))) | |
2153 | 2849 ((eq opt :constructor) |
428 | 2850 (if (cdr args) |
2153 | 2851 (push args constrs) |
428 | 2852 (if args (setq constructor (car args))))) |
2153 | 2853 ((eq opt :copier) |
428 | 2854 (if args (setq copier (car args)))) |
2153 | 2855 ((eq opt :predicate) |
428 | 2856 (if args (setq predicate (car args)))) |
2153 | 2857 ((eq opt :include) |
428 | 2858 (setq include (car args) |
2859 include-descs (mapcar #'(lambda (x) | |
2860 (if (consp x) x (list x))) | |
2861 (cdr args)))) | |
2153 | 2862 ((eq opt :print-function) |
428 | 2863 (setq print-func (car args))) |
2153 | 2864 ((eq opt :type) |
428 | 2865 (setq type (car args))) |
2153 | 2866 ((eq opt :named) |
428 | 2867 (setq named t)) |
2153 | 2868 ((eq opt :initial-offset) |
428 | 2869 (setq descs (nconc (make-list (car args) '(cl-skip-slot)) |
2870 descs))) | |
2871 (t | |
2872 (error "Slot option %s unrecognized" opt))))) | |
2873 (if print-func | |
2874 (setq print-func (list 'progn | |
2875 (list 'funcall (list 'function print-func) | |
2876 'cl-x 'cl-s 'cl-n) t)) | |
2877 (or type (and include (not (get include 'cl-struct-print))) | |
2878 (setq print-auto t | |
2879 print-func (and (or (not (or include type)) (null print-func)) | |
2880 (list 'progn | |
2881 (list 'princ (format "#S(%s" name) | |
2882 'cl-s)))))) | |
2883 (if include | |
2884 (let ((inc-type (get include 'cl-struct-type)) | |
2885 (old-descs (get include 'cl-struct-slots))) | |
2886 (or inc-type (error "%s is not a struct name" include)) | |
2887 (and type (not (eq (car inc-type) type)) | |
2888 (error ":type disagrees with :include for %s" name)) | |
2889 (while include-descs | |
2890 (setcar (memq (or (assq (caar include-descs) old-descs) | |
2891 (error "No slot %s in included struct %s" | |
2892 (caar include-descs) include)) | |
2893 old-descs) | |
2153 | 2894 (pop include-descs))) |
428 | 2895 (setq descs (append old-descs (delq (assq 'cl-tag-slot descs) descs)) |
2896 type (car inc-type) | |
2897 named (assq 'cl-tag-slot descs)) | |
2898 (if (cadr inc-type) (setq tag name named t)) | |
2899 (let ((incl include)) | |
2900 (while incl | |
2153 | 2901 (push (list 'pushnew (list 'quote tag) |
428 | 2902 (intern (format "cl-struct-%s-tags" incl))) |
2903 forms) | |
2904 (setq incl (get incl 'cl-struct-include))))) | |
2905 (if type | |
2906 (progn | |
2907 (or (memq type '(vector list)) | |
2908 (error "Illegal :type specifier: %s" type)) | |
2909 (if named (setq tag name))) | |
2910 (setq type 'vector named 'true))) | |
2911 (or named (setq descs (delq (assq 'cl-tag-slot descs) descs))) | |
2153 | 2912 (push (list 'defvar tag-symbol) forms) |
428 | 2913 (setq pred-form (and named |
2914 (let ((pos (- (length descs) | |
2915 (length (memq (assq 'cl-tag-slot descs) | |
2916 descs))))) | |
2917 (if (eq type 'vector) | |
2918 (list 'and '(vectorp cl-x) | |
2919 (list '>= '(length cl-x) (length descs)) | |
2920 (list 'memq (list 'aref 'cl-x pos) | |
2921 tag-symbol)) | |
2922 (if (= pos 0) | |
2923 (list 'memq '(car-safe cl-x) tag-symbol) | |
2924 (list 'and '(consp cl-x) | |
2925 (list 'memq (list 'nth pos 'cl-x) | |
2926 tag-symbol)))))) | |
2927 pred-check (and pred-form (> safety 0) | |
2928 (if (and (eq (caadr pred-form) 'vectorp) | |
2929 (= safety 1)) | |
2930 (cons 'and (cdddr pred-form)) pred-form))) | |
2931 (let ((pos 0) (descp descs)) | |
2932 (while descp | |
2153 | 2933 (let* ((desc (pop descp)) |
428 | 2934 (slot (car desc))) |
2935 (if (memq slot '(cl-tag-slot cl-skip-slot)) | |
2936 (progn | |
2153 | 2937 (push nil slots) |
2938 (push (and (eq slot 'cl-tag-slot) (list 'quote tag)) | |
428 | 2939 defaults)) |
2940 (if (assq slot descp) | |
2941 (error "Duplicate slots named %s in %s" slot name)) | |
2942 (let ((accessor (intern (format "%s%s" conc-name slot)))) | |
2153 | 2943 (push slot slots) |
2944 (push (nth 1 desc) defaults) | |
2945 (push (list* | |
428 | 2946 'defsubst* accessor '(cl-x) |
2947 (append | |
2948 (and pred-check | |
2949 (list (list 'or pred-check | |
2950 (list 'error | |
2951 (format "%s accessing a non-%s" | |
2952 accessor name) | |
2953 'cl-x)))) | |
2954 (list (if (eq type 'vector) (list 'aref 'cl-x pos) | |
2955 (if (= pos 0) '(car cl-x) | |
2956 (list 'nth pos 'cl-x)))))) forms) | |
2153 | 2957 (push (cons accessor t) side-eff) |
2958 (push (list 'define-setf-method accessor '(cl-x) | |
2959 (if (cadr (memq :read-only (cddr desc))) | |
428 | 2960 (list 'error (format "%s is a read-only slot" |
2961 accessor)) | |
2962 (list 'cl-struct-setf-expander 'cl-x | |
2963 (list 'quote name) (list 'quote accessor) | |
2964 (and pred-check (list 'quote pred-check)) | |
2965 pos))) | |
2966 forms) | |
2967 (if print-auto | |
2968 (nconc print-func | |
2969 (list (list 'princ (format " %s" slot) 'cl-s) | |
2970 (list 'prin1 (list accessor 'cl-x) 'cl-s))))))) | |
2971 (setq pos (1+ pos)))) | |
2972 (setq slots (nreverse slots) | |
2973 defaults (nreverse defaults)) | |
2974 (and predicate pred-form | |
2153 | 2975 (progn (push (list 'defsubst* predicate '(cl-x) |
428 | 2976 (if (eq (car pred-form) 'and) |
2977 (append pred-form '(t)) | |
2978 (list 'and pred-form t))) forms) | |
2153 | 2979 (push (cons predicate 'error-free) side-eff))) |
428 | 2980 (and copier |
2153 | 2981 (progn (push (list 'defun copier '(x) '(copy-sequence x)) forms) |
2982 (push (cons copier t) side-eff))) | |
428 | 2983 (if constructor |
2153 | 2984 (push (list constructor |
428 | 2985 (cons '&key (delq nil (copy-sequence slots)))) |
2986 constrs)) | |
2987 (while constrs | |
2988 (let* ((name (caar constrs)) | |
2153 | 2989 (args (cadr (pop constrs))) |
428 | 2990 (anames (cl-arglist-args args)) |
2991 (make (mapcar* #'(lambda (s d) (if (memq s anames) s d)) | |
2992 slots defaults))) | |
2153 | 2993 (push (list 'defsubst* name |
428 | 2994 (list* '&cl-defs (list 'quote (cons nil descs)) args) |
2995 (cons type make)) forms) | |
2996 (if (cl-safe-expr-p (cons 'progn (mapcar 'second descs))) | |
2153 | 2997 (push (cons name t) side-eff)))) |
428 | 2998 (if print-auto (nconc print-func (list '(princ ")" cl-s) t))) |
2999 (if print-func | |
2153 | 3000 (push (list 'push |
428 | 3001 (list 'function |
3002 (list 'lambda '(cl-x cl-s cl-n) | |
3003 (list 'and pred-form print-func))) | |
3004 'custom-print-functions) forms)) | |
2153 | 3005 (push (list 'setq tag-symbol (list 'list (list 'quote tag))) forms) |
3006 (push (list* 'eval-when '(compile load eval) | |
428 | 3007 (list 'put (list 'quote name) '(quote cl-struct-slots) |
3008 (list 'quote descs)) | |
3009 (list 'put (list 'quote name) '(quote cl-struct-type) | |
3010 (list 'quote (list type (eq named t)))) | |
3011 (list 'put (list 'quote name) '(quote cl-struct-include) | |
3012 (list 'quote include)) | |
3013 (list 'put (list 'quote name) '(quote cl-struct-print) | |
3014 print-auto) | |
3015 (mapcar #'(lambda (x) | |
3016 (list 'put (list 'quote (car x)) | |
3017 '(quote side-effect-free) | |
3018 (list 'quote (cdr x)))) | |
3019 side-eff)) | |
3020 forms) | |
3021 (cons 'progn (nreverse (cons (list 'quote name) forms))))) | |
3022 | |
3023 ;;;###autoload | |
3024 (defun cl-struct-setf-expander (x name accessor pred-form pos) | |
3025 (let* ((temp (gensym "--x--")) (store (gensym "--store--"))) | |
3026 (list (list temp) (list x) (list store) | |
3027 (append '(progn) | |
3028 (and pred-form | |
3029 (list (list 'or (subst temp 'cl-x pred-form) | |
3030 (list 'error | |
3031 (format | |
3032 "%s storing a non-%s" accessor name) | |
3033 temp)))) | |
3034 (list (if (eq (car (get name 'cl-struct-type)) 'vector) | |
3035 (list 'aset temp pos store) | |
3036 (list 'setcar | |
3037 (if (<= pos 5) | |
3038 (let ((xx temp)) | |
3039 (while (>= (setq pos (1- pos)) 0) | |
3040 (setq xx (list 'cdr xx))) | |
3041 xx) | |
3042 (list 'nthcdr pos temp)) | |
3043 store)))) | |
3044 (list accessor temp)))) | |
3045 | |
3046 | |
3047 ;;; Types and assertions. | |
3048 | |
3049 ;;;###autoload | |
2153 | 3050 (defmacro deftype (name arglist &rest body) |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
3051 "Define NAME as a new data type. |
428 | 3052 The type name can then be used in `typecase', `check-type', etc." |
3053 (list 'eval-when '(compile load eval) | |
3054 (cl-transform-function-property | |
2153 | 3055 name 'cl-deftype-handler (cons (list* '&cl-defs ''('*) arglist) body)))) |
428 | 3056 |
3057 (defun cl-make-type-test (val type) | |
3058 (if (symbolp type) | |
3059 (cond ((get type 'cl-deftype-handler) | |
3060 (cl-make-type-test val (funcall (get type 'cl-deftype-handler)))) | |
3061 ((memq type '(nil t)) type) | |
2153 | 3062 ((eq type 'null) `(null ,val)) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3063 ((eq type 'float) `(floatp ,val)) |
2153 | 3064 ((eq type 'real) `(numberp ,val)) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3065 ((eq type 'fixnum) `(fixnump ,val)) |
2153 | 3066 ;; XEmacs change: we do not have char-valid-p |
3067 ((memq type '(character string-char)) `(characterp ,val)) | |
428 | 3068 (t |
3069 (let* ((name (symbol-name type)) | |
3070 (namep (intern (concat name "p")))) | |
3071 (if (fboundp namep) (list namep val) | |
3072 (list (intern (concat name "-p")) val))))) | |
3073 (cond ((get (car type) 'cl-deftype-handler) | |
3074 (cl-make-type-test val (apply (get (car type) 'cl-deftype-handler) | |
3075 (cdr type)))) | |
3076 ((memq (car-safe type) '(integer float real number)) | |
3077 (delq t (list 'and (cl-make-type-test val (car type)) | |
3078 (if (memq (cadr type) '(* nil)) t | |
3079 (if (consp (cadr type)) (list '> val (caadr type)) | |
3080 (list '>= val (cadr type)))) | |
3081 (if (memq (caddr type) '(* nil)) t | |
3082 (if (consp (caddr type)) (list '< val (caaddr type)) | |
3083 (list '<= val (caddr type))))))) | |
3084 ((memq (car-safe type) '(and or not)) | |
3085 (cons (car type) | |
3086 (mapcar #'(lambda (x) (cl-make-type-test val x)) | |
3087 (cdr type)))) | |
3088 ((memq (car-safe type) '(member member*)) | |
3089 (list 'and (list 'member* val (list 'quote (cdr type))) t)) | |
5305
09fed7053634
Handle slightly more complex type specifications, #'coerce, #'typep.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3090 ((eq (car-safe type) 'eql) |
09fed7053634
Handle slightly more complex type specifications, #'coerce, #'typep.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5301
diff
changeset
|
3091 (list 'eql (cadr type) val)) |
428 | 3092 ((eq (car-safe type) 'satisfies) (list (cadr type) val)) |
3093 (t (error "Bad type spec: %s" type))))) | |
3094 | |
3095 ;;;###autoload | |
444 | 3096 (defun typep (object type) ; See compiler macro below. |
428 | 3097 "Check that OBJECT is of type TYPE. |
3098 TYPE is a Common Lisp-style type specifier." | |
444 | 3099 (eval (cl-make-type-test 'object type))) |
428 | 3100 |
3101 ;;;###autoload | |
446 | 3102 (defmacro check-type (place type &optional string) |
3103 "Verify that PLACE is of type TYPE; signal a continuable error if not. | |
428 | 3104 STRING is an optional description of the desired type." |
2153 | 3105 (and (or (not (cl-compiling-file)) |
3106 (< cl-optimize-speed 3) (= cl-optimize-safety 3)) | |
3107 (let* ((temp (if (cl-simple-expr-p place 3) place (gensym))) | |
3108 (test (cl-make-type-test temp type)) | |
3109 (signal-error `(signal 'wrong-type-argument | |
3110 ,(list 'list (or string (list 'quote type)) | |
3111 temp (list 'quote place)))) | |
3112 (body | |
3113 (condition-case nil | |
3114 `(while (not ,test) | |
3115 ,(macroexpand `(setf ,place ,signal-error))) | |
3116 (error | |
3117 `(if ,test (progn ,signal-error nil)))))) | |
3118 (if (eq temp place) `(progn ,body nil) | |
3119 `(let ((,temp ,place)) ,body nil))))) | |
428 | 3120 |
3121 ;;;###autoload | |
3122 (defmacro assert (form &optional show-args string &rest args) | |
3123 "Verify that FORM returns non-nil; signal an error if not. | |
3124 Second arg SHOW-ARGS means to include arguments of FORM in message. | |
3125 Other args STRING and ARGS... are arguments to be passed to `error'. | |
3126 They are not evaluated unless the assertion fails. If STRING is | |
3127 omitted, a default message listing FORM itself is used." | |
3128 (and (or (not (cl-compiling-file)) | |
3129 (< cl-optimize-speed 3) (= cl-optimize-safety 3)) | |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3130 (let ((sargs (and show-args (remove-if #'cl-const-expr-p (cdr form))))) |
428 | 3131 (list 'progn |
3132 (list 'or form | |
3133 (if string | |
3134 (list* 'error string (append sargs args)) | |
3135 (list 'signal '(quote cl-assertion-failed) | |
3136 (list* 'list (list 'quote form) sargs)))) | |
3137 nil)))) | |
3138 | |
3139 ;;;###autoload | |
3140 (defmacro ignore-errors (&rest body) | |
2153 | 3141 "Execute BODY; if an error occurs, return nil. |
3142 Otherwise, return result of last form in BODY." | |
428 | 3143 `(condition-case nil (progn ,@body) (error nil))) |
3144 | |
2153 | 3145 ;; XEmacs addition |
428 | 3146 ;;;###autoload |
3147 (defmacro ignore-file-errors (&rest body) | |
3148 "Execute FORMS; if an error of type `file-error' occurs, return nil. | |
3149 Otherwise, return result of last FORM." | |
3150 `(condition-case nil (progn ,@body) (file-error nil))) | |
3151 | |
3152 | |
3153 ;;; Compiler macros. | |
3154 | |
3155 ;;;###autoload | |
3156 (defmacro define-compiler-macro (func args &rest body) | |
4695
fee33ab25966
Add arglist info for autoloaded functions and macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4694
diff
changeset
|
3157 "Define a compiler-only macro. |
428 | 3158 This is like `defmacro', but macro expansion occurs only if the call to |
3159 FUNC is compiled (i.e., not interpreted). Compiler macros should be used | |
3160 for optimizing the way calls to FUNC are compiled; the form returned by | |
3161 BODY should do the same thing as a call to the normal function called | |
3162 FUNC, though possibly more efficiently. Note that, like regular macros, | |
3163 compiler macros are expanded repeatedly until no further expansions are | |
3164 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the | |
3165 original function call alone by declaring an initial `&whole foo' parameter | |
3166 and then returning foo." | |
3167 (let ((p (if (listp args) args (list '&rest args))) (res nil)) | |
2153 | 3168 (while (consp p) (push (pop p) res)) |
3169 (setq args (nconc (nreverse res) (and p (list '&rest p))))) | |
428 | 3170 (list 'eval-when '(compile load eval) |
3171 (cl-transform-function-property | |
3172 func 'cl-compiler-macro | |
3173 (cons (if (memq '&whole args) (delq '&whole args) | |
3174 (cons '--cl-whole-arg-- args)) body)) | |
3175 (list 'or (list 'get (list 'quote func) '(quote byte-compile)) | |
3176 (list 'put (list 'quote func) '(quote byte-compile) | |
3177 '(quote cl-byte-compile-compiler-macro))))) | |
3178 | |
3179 ;;;###autoload | |
3180 (defun compiler-macroexpand (form) | |
3181 (while | |
3182 (let ((func (car-safe form)) (handler nil)) | |
3183 (while (and (symbolp func) | |
3184 (not (setq handler (get func 'cl-compiler-macro))) | |
3185 (fboundp func) | |
3186 (or (not (eq (car-safe (symbol-function func)) 'autoload)) | |
3187 (load (nth 1 (symbol-function func))))) | |
3188 (setq func (symbol-function func))) | |
3189 (and handler | |
3190 (not (eq form (setq form (apply handler form (cdr form)))))))) | |
3191 form) | |
3192 | |
3193 (defun cl-byte-compile-compiler-macro (form) | |
3194 (if (eq form (setq form (compiler-macroexpand form))) | |
3195 (byte-compile-normal-call form) | |
3196 (byte-compile-form form))) | |
3197 | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3198 (defmacro defsubst* (name arglist &optional docstring &rest body) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3199 "Define NAME as a function. |
428 | 3200 Like `defun', except the function is automatically declared `inline', |
3201 ARGLIST allows full Common Lisp conventions, and BODY is implicitly | |
3202 surrounded by (block NAME ...)." | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3203 (let* ((argns (cl-arglist-args arglist)) (p argns) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3204 (exec-body (if (or (stringp docstring) (null docstring)) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3205 body |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3206 (cons docstring body))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3207 (pbody (cons 'progn exec-body)) |
428 | 3208 (unsafe (not (cl-safe-expr-p pbody)))) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3209 (while (and p (eq (cl-expr-contains arglist (car p)) 1)) (pop p)) |
428 | 3210 (list 'progn |
3211 (if p nil ; give up if defaults refer to earlier args | |
3212 (list 'define-compiler-macro name | |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3213 (if (memq '&key arglist) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3214 (list* '&whole 'cl-whole '&cl-quote arglist) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3215 (cons '&cl-quote arglist)) |
428 | 3216 (list* 'cl-defsubst-expand (list 'quote argns) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3217 (list 'quote (list* 'block name exec-body)) |
428 | 3218 (not (or unsafe (cl-expr-access-order pbody argns))) |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3219 (and (memq '&key arglist) 'cl-whole) unsafe argns))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3220 (list* 'defun* name arglist docstring body)))) |
428 | 3221 |
3222 (defun cl-defsubst-expand (argns body simple whole unsafe &rest argvs) | |
3223 (if (and whole (not (cl-safe-expr-p (cons 'progn argvs)))) whole | |
3224 (if (cl-simple-exprs-p argvs) (setq simple t)) | |
5367
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3225 (let ((lets (mapcan #'(lambda (argn argv) |
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3226 (if (or simple (cl-const-expr-p argv)) |
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3227 (progn (setq body (subst argv argn body)) |
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3228 (and unsafe (list (list argn argv)))) |
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3229 (list (list argn argv)))) |
8b70d37ab80e
Use Common Lisp-derived builtins in a few more places in core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
3230 argns argvs))) |
428 | 3231 (if lets (list 'let lets body) body)))) |
3232 | |
5379
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3233 ;; When a 64-bit build is byte-compiling code, some of its native fixnums |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3234 ;; will not be represented as fixnums if the byte-compiled code is read by |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3235 ;; the Lisp reader in a 32-bit build. So in that case we need to check the |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3236 ;; range of fixnums as well as their types. XEmacs doesn't support machines |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3237 ;; with word size less than 32, so it's OK to have that as the minimum. |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3238 (macrolet |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3239 ((most-negative-fixnum-on-32-bit-machines () (lognot (1- (lsh 1 30)))) |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3240 (most-positive-fixnum-on-32-bit-machines () (lsh 1 30))) |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3241 (defun cl-non-fixnum-number-p (object) |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3242 "Return t if OBJECT is a number not guaranteed to be immediate." |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3243 (and (numberp object) |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3244 (or (not (fixnump object)) |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3245 (not (<= (most-negative-fixnum-on-32-bit-machines) |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3246 object |
a32a108ae815
#'cl-non-fixnum-number-p: return t for integers > #x3fffffff and < -#x40000000
Aidan Kehoe <kehoea@parhasard.net>
parents:
5376
diff
changeset
|
3247 (most-positive-fixnum-on-32-bit-machines))))))) |
428 | 3248 |
3249 ;;; Compile-time optimizations for some functions defined in this package. | |
3250 ;;; Note that cl.el arranges to force cl-macs to be loaded at compile-time, | |
3251 ;;; mainly to make sure these macros will be present. | |
3252 | |
3253 (define-compiler-macro eql (&whole form a b) | |
3254 (cond ((eq (cl-const-expr-p a) t) | |
3255 (let ((val (cl-const-expr-val a))) | |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3256 (if (cl-non-fixnum-number-p val) |
428 | 3257 (list 'equal a b) |
3258 (list 'eq a b)))) | |
3259 ((eq (cl-const-expr-p b) t) | |
3260 (let ((val (cl-const-expr-val b))) | |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3261 (if (cl-non-fixnum-number-p val) |
428 | 3262 (list 'equal a b) |
3263 (list 'eq a b)))) | |
3264 (t form))) | |
3265 | |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3266 (macrolet |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3267 ((define-star-compiler-macros (&rest macros) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3268 "For `member*', `assoc*' and `rassoc*' with constant ITEM or |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3269 :test arguments, use the versions with explicit tests if that makes sense." |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3270 (list* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3271 'progn |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3272 (mapcar |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3273 (function* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3274 (lambda ((star-function eq-function equal-function)) |
5329
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3275 `(define-compiler-macro ,star-function (&whole form &rest keys) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3276 (if (< (length form) 3) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3277 form |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3278 (condition-case nil |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3279 (symbol-macrolet ((not-constant '#:not-constant)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3280 (let* ((item (pop keys)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3281 (list (pop keys)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3282 (test-expr (plist-get keys :test ''eql)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3283 (test (cl-const-expr-val test-expr not-constant)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3284 (item-val (cl-const-expr-val item not-constant)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3285 (list-val (cl-const-expr-val list not-constant))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3286 (if (and keys (not (and (eq :test (car keys)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3287 (eql 2 (length keys))))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3288 form |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3289 (cond ((eq test 'eq) `(,',eq-function ,item ,list)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3290 ((eq test 'equal) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3291 `(,',equal-function ,item ,list)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3292 ((and (eq test 'eql) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3293 (not (eq not-constant item-val))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3294 (if (cl-non-fixnum-number-p item-val) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3295 `(,',equal-function ,item ,list) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3296 `(,',eq-function ,item ,list))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3297 ((and (eq test 'eql) (not (eq not-constant |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3298 list-val))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3299 (if (some 'cl-non-fixnum-number-p list-val) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3300 `(,',equal-function ,item ,list) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3301 ;; This compiler macro used to limit |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3302 ;; calls to ,,eq-function to lists where |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3303 ;; all elements were either fixnums or |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3304 ;; symbols. There's no reason to do this. |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3305 `(,',eq-function ,item ,list))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3306 ;; This is a hilariously specific case; see |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3307 ;; add-to-list in subr.el. |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3308 ((and (eq test not-constant) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3309 (eq 'or (car-safe test-expr)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3310 (eql 3 (length test-expr)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3311 (every #'cl-safe-expr-p (cdr form)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3312 `(if ,(second test-expr) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3313 (,',star-function ,item ,list :test |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3314 ,(second test-expr)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3315 (,',star-function |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3316 ,item ,list :test |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3317 ,(third test-expr))))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3318 (t form))))) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3319 ;; No need to warn about a malformed property list, |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3320 ;; #'byte-compile-normal-call will do that for us. |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3321 (malformed-property-list form)))))) |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3322 macros)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3323 (define-star-compiler-macros |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3324 (member* memq member) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3325 (assoc* assq assoc) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3326 (rassoc* rassq rassoc))) |
428 | 3327 |
3328 (define-compiler-macro adjoin (&whole form a list &rest keys) | |
3329 (if (and (cl-simple-expr-p a) (cl-simple-expr-p list) | |
2153 | 3330 (not (memq :key keys))) |
428 | 3331 (list 'if (list* 'member* a list keys) list (list 'cons a list)) |
3332 form)) | |
3333 | |
5338
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3334 (define-compiler-macro delete (&whole form &rest args) |
5346
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3335 (if (eql 3 (length form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3336 (symbol-macrolet ((not-constant '#:not-constant)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3337 (let ((cl-const-expr-val (cl-const-expr-val (nth 1 form) not-constant))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3338 (if (and (cdr form) (not (eq not-constant cl-const-expr-val)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3339 (or (symbolp cl-const-expr-val) (fixnump cl-const-expr-val) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3340 (characterp cl-const-expr-val))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3341 (cons 'delete* (cdr form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3342 `(delete* ,@(cdr form) :test #'equal)))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3343 form)) |
5338
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3344 |
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3345 (define-compiler-macro delq (&whole form &rest args) |
5346
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3346 (if (eql 3 (length form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3347 (symbol-macrolet |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3348 ((not-constant '#:not-constant)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3349 (let ((cl-const-expr-val (cl-const-expr-val (nth 1 form) not-constant))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3350 (if (and (cdr form) (not (eq not-constant cl-const-expr-val)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3351 (not (cl-non-fixnum-number-p cl-const-expr-val))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3352 (cons 'delete* (cdr form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3353 `(delete* ,@(cdr form) :test #'eq)))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3354 form)) |
5338
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3355 |
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3356 (define-compiler-macro remove (&whole form &rest args) |
5346
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3357 (if (eql 3 (length form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3358 (symbol-macrolet |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3359 ((not-constant '#:not-constant)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3360 (let ((cl-const-expr-val (cl-const-expr-val (nth 1 form) not-constant))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3361 (if (and (cdr form) (not (eq not-constant cl-const-expr-val)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3362 (or (symbolp cl-const-expr-val) (fixnump cl-const-expr-val) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3363 (characterp cl-const-expr-val))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3364 (cons 'remove* (cdr form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3365 `(remove* ,@(cdr form) :test #'equal)))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3366 form)) |
5338
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3367 |
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3368 (define-compiler-macro remq (&whole form &rest args) |
5346
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3369 (if (eql 3 (length form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3370 (symbol-macrolet |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3371 ((not-constant '#:not-constant)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3372 (let ((cl-const-expr-val (cl-const-expr-val (nth 1 form) not-constant))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3373 (if (and (cdr form) (not (eq not-constant cl-const-expr-val)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3374 (not (cl-non-fixnum-number-p cl-const-expr-val))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3375 (cons 'remove* (cdr form)) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3376 `(remove* ,@(cdr form) :test #'eq)))) |
b4ef3128160c
Fix some testsuite failures, #'delete, #'delq, #'remove, #'remq.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5342
diff
changeset
|
3377 form)) |
5338
8608eadee6ba
Move #'delq, #'delete to Lisp, adding support for sequences.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5329
diff
changeset
|
3378 |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3379 (macrolet |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3380 ((define-foo-if-compiler-macros (&rest alist) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3381 "Avoid the funcall, variable binding and keyword parsing overhead |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3382 for the FOO-IF and FOO-IF-NOT functions, transforming to forms using the |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3383 non-standard :if and :if-not keywords at compile time." |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3384 (cons |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3385 'progn |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3386 (mapcar |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3387 (function* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3388 (lambda ((function-if . function)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3389 (let ((keyword (if (equal (substring (symbol-name function-if) -3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3390 "not") |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3391 :if-not |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3392 :if))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3393 `(define-compiler-macro ,function-if (&whole form &rest args) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3394 (if (and (nthcdr 2 form) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3395 (or (consp (cl-const-expr-val (second form))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3396 (cl-safe-expr-p (second form)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3397 ;; It doesn't matter what the second argument is, it's |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3398 ;; ignored by FUNCTION. We know that the symbol |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3399 ;; FUNCTION is in the constants vector, so use it. |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3400 `(,',function ',',function ,(third form) ,,keyword |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3401 ,(second form) ,@(nthcdr 3 form)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3402 form))))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3403 alist)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3404 (define-foo-if-compiler-macros |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3405 (remove-if . remove*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3406 (remove-if-not . remove*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3407 (delete-if . delete*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3408 (delete-if-not . delete*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3409 (find-if . find) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3410 (find-if-not . find) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3411 (position-if . position) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3412 (position-if-not . position) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3413 (count-if . count) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3414 (count-if-not . count) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3415 (member-if . member*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3416 (member-if-not . member*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3417 (assoc-if . assoc*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3418 (assoc-if-not . assoc*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3419 (rassoc-if . rassoc*) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3420 (rassoc-if-not . rassoc*))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3421 |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3422 (macrolet |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3423 ((define-substitute-if-compiler-macros (&rest alist) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3424 "Like the above, but for `substitute-if' and friends." |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3425 (cons |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3426 'progn |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3427 (mapcar |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3428 (function* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3429 (lambda ((function-if . function)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3430 (let ((keyword (if (equal (substring (symbol-name function-if) -3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3431 "not") |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3432 :if-not |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3433 :if))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3434 `(define-compiler-macro ,function-if (&whole form &rest args) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3435 (if (and (nthcdr 3 form) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3436 (or (consp (cl-const-expr-val (third form))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3437 (cl-safe-expr-p (third form)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3438 `(,',function ,(second form) ',',function ,(fourth form) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3439 ,,keyword ,(third form) ,@(nthcdr 4 form)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3440 form))))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3441 alist)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3442 (define-substitute-if-compiler-macros |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3443 (substitute-if . substitute) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3444 (substitute-if-not . substitute) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3445 (nsubstitute-if . nsubstitute) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3446 (nsubstitute-if-not . nsubstitute))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3447 |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3448 (macrolet |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3449 ((define-subst-if-compiler-macros (&rest alist) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3450 "Like the above, but for `subst-if' and friends." |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3451 (cons |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3452 'progn |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3453 (mapcar |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3454 (function* |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3455 (lambda ((function-if . function)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3456 (let ((keyword (if (equal (substring (symbol-name function-if) -3) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3457 "not") |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3458 :if-not |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3459 :if))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3460 `(define-compiler-macro ,function-if (&whole form &rest args) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3461 (if (and (nthcdr 3 form) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3462 (or (consp (cl-const-expr-val (third form))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3463 (cl-safe-expr-p (third form)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3464 `(,',function ,(if (cl-const-expr-p (second form)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3465 `'((nil . ,(cl-const-expr-val |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3466 (second form)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3467 `(list (cons ',',function |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3468 ,(second form)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3469 ,(fourth form) ,,keyword ,(third form) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3470 ,@(nthcdr 4 form)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3471 form))))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3472 alist)))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3473 (define-subst-if-compiler-macros |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3474 (subst-if . sublis) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3475 (subst-if-not . sublis) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3476 (nsubst-if . nsublis) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3477 (nsubst-if-not . nsublis))) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3478 |
428 | 3479 (define-compiler-macro list* (arg &rest others) |
3480 (let* ((args (reverse (cons arg others))) | |
3481 (form (car args))) | |
3482 (while (setq args (cdr args)) | |
3483 (setq form (list 'cons (car args) form))) | |
3484 form)) | |
3485 | |
2153 | 3486 ;; XEmacs change: our builtin get takes the default argument |
440 | 3487 (define-compiler-macro get* (sym prop &optional default) |
3488 (list 'get sym prop default)) | |
428 | 3489 |
442 | 3490 (define-compiler-macro getf (sym prop &optional default) |
3491 (list 'plist-get sym prop default)) | |
3492 | |
428 | 3493 (define-compiler-macro typep (&whole form val type) |
3494 (if (cl-const-expr-p type) | |
3495 (let ((res (cl-make-type-test val (cl-const-expr-val type)))) | |
3496 (if (or (memq (cl-expr-contains res val) '(nil 1)) | |
3497 (cl-simple-expr-p val)) res | |
3498 (let ((temp (gensym))) | |
3499 (list 'let (list (list temp val)) (subst temp val res))))) | |
3500 form)) | |
3501 | |
5085
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3502 (define-compiler-macro delete-dups (list) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3503 `(delete-duplicates (the list ,list) :test #'equal :from-end t)) |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3504 |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3505 ;; XEmacs; inline delete-duplicates if it's called with one of the |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3506 ;; common compile-time constant tests and an optional :from-end |
1ee30d3f9dd0
Handle the :from-end argument correctly, #'delete-duplicates compiler macro.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5084
diff
changeset
|
3507 ;; argument, we want the speed in font-lock.el. |
5317
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3508 (define-compiler-macro delete-duplicates (&whole form &rest cl-keys) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3509 (let ((cl-seq (if cl-keys (pop cl-keys)))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3510 (if (or |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3511 (not (or (memq (car-safe cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3512 ;; No need to check for a list at runtime with |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3513 ;; these. We could expand the list, but these are all |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3514 ;; the functions in the relevant context at the moment. |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3515 '(nreverse append nconc mapcan mapcar string-to-list)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3516 (and (listp cl-seq) (equal (butlast cl-seq) '(the list))))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3517 ;; Wrong number of arguments. |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3518 (not (cdr form))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3519 form |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3520 (cond |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3521 ((or (plists-equal cl-keys '(:test 'eq) t) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3522 (plists-equal cl-keys '(:test #'eq) t)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3523 `(let* ((begin ,cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3524 cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3525 (while (memq (car begin) (cdr begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3526 (setq begin (cdr begin))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3527 (setq cl-seq begin) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3528 (while (cddr cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3529 (if (memq (cadr cl-seq) (cddr cl-seq)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3530 (setcdr (cdr cl-seq) (cddr cl-seq))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3531 (setq cl-seq (cdr cl-seq))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3532 begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3533 ((or (plists-equal cl-keys '(:test 'eq :from-end t) t) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3534 (plists-equal cl-keys '(:test #'eq :from-end t) t)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3535 `(let* ((begin ,cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3536 (cl-seq begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3537 (while cl-seq |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3538 (setq cl-seq (setcdr cl-seq |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3539 (delq (car cl-seq) (cdr cl-seq))))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3540 begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3541 ((or (plists-equal cl-keys '(:test 'equal) t) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3542 (plists-equal cl-keys '(:test #'equal) t)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3543 `(let* ((begin ,cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3544 cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3545 (while (member (car begin) (cdr begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3546 (setq begin (cdr begin))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3547 (setq cl-seq begin) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3548 (while (cddr cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3549 (if (member (cadr cl-seq) (cddr cl-seq)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3550 (setcdr (cdr cl-seq) (cddr cl-seq))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3551 (setq cl-seq (cdr cl-seq))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3552 begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3553 ((or (plists-equal cl-keys '(:test 'equal :from-end t) t) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3554 (plists-equal cl-keys '(:test #'equal :from-end t) t)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3555 `(let* ((begin ,cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3556 (cl-seq begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3557 (while cl-seq |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3558 (setq cl-seq (setcdr cl-seq (delete (car cl-seq) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3559 (cdr cl-seq))))) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3560 begin)) |
8aa511adfad6
#'delete-duplicates: don't attempt to compiler macroexpand with bad arguments
Aidan Kehoe <kehoea@parhasard.net>
parents:
5316
diff
changeset
|
3561 (t form))))) |
428 | 3562 |
4723
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3563 ;; XEmacs; it's perfectly reasonable, and often much clearer to those |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3564 ;; reading the code, to call regexp-quote on a constant string, which is |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3565 ;; something we can optimise here easily. |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3566 (define-compiler-macro regexp-quote (&whole form string) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3567 (if (stringp string) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3568 (regexp-quote string) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3569 form)) |
ebca981a0012
If STRING is constant, call regexp-quote at compile time.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4719
diff
changeset
|
3570 |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3571 ;; NOTE: `equalp' is now a primitive, although as of yet it still doesn't |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3572 ;; have a byte-compiler opcode for it. The compiler-macro for `equalp' used |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3573 ;; to try and remove as much as possible of the logic of the Lisp `equalp' as |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3574 ;; possible whenever one of the arguments is a constant, boiling things down |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3575 ;; to a few if-statements and some calls to various no-longer-defined |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3576 ;; helper functions. Besides the fact that the helper functions aren't |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3577 ;; defined, there's little point in doing any of that expansion, since it will |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3578 ;; end up executing in Lisp what would otherwise be done in C by a direct |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3579 ;; call to `equalp'. The only exception is when the reduction is quite |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3580 ;; simple and is to functions that do have op-codes; that may gain something. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3581 ;; However, if `equalp' becomes an opcode itself, consider removing everything |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3582 ;; here except maybe when the call can directly be reduced to `equal' or `eq'. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3583 ;; |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3584 ;; --ben |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3585 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3586 (define-compiler-macro equalp (&whole form x y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3587 "Expand calls to `equalp' where X or Y is a constant expression. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3588 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3589 Much of the processing that `equalp' does is dependent on the types of both |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3590 of its arguments, and with type information for one of them, we can |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3591 eliminate much of the body of the function at compile time. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3592 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3593 Where both X and Y are constant expressions, `equalp' is evaluated at |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3594 compile time by byte-optimize.el--this compiler macro passes FORM through to |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3595 the byte optimizer in those cases." |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3596 ;; Cases where both arguments are constant are handled in |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3597 ;; byte-optimize.el, we only need to handle those cases where one is |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3598 ;; constant here. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3599 (let* ((equalp-sym (eval-when-compile (gensym))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3600 (let-form '(progn)) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3601 (original-y y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3602 equalp-temp checked) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3603 (macrolet |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3604 ((unordered-check (check) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3605 `(prog1 |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3606 (setq checked |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3607 (or ,check |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3608 (prog1 ,(sublis '((x . y) (y . x)) check :test #'eq) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3609 (setq equalp-temp x x y y equalp-temp)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3610 (when checked |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3611 (unless (symbolp y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3612 (setq let-form `(let ((,equalp-sym ,y))) y equalp-sym)))))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3613 ;; In the bodies of the below clauses, x is always a constant expression |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3614 ;; of the type we're interested in, and y is always a symbol that refers |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3615 ;; to the result non-constant side of the comparison. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3616 (cond ((unordered-check (and (arrayp x) (not (cl-const-expr-p y)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3617 ;; Strings and other arrays. A vector containing the same |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3618 ;; character elements as a given string is equalp to that string; |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3619 ;; a bit-vector can only be equalp to a string if both are |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3620 ;; zero-length. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3621 (cond |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3622 ((member x '("" #* [])) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3623 ;; No need to protect against multiple evaluation here: |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3624 `(and (member ,original-y '("" #* [])) t)) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3625 (t form))) |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3626 ((unordered-check (and (numberp x) (not (cl-const-expr-p y)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3627 `(,@let-form |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3628 (and (numberp ,y) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3629 (= ,x ,y)))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3630 ((unordered-check (and (hash-table-p x) (not (cl-const-expr-p y)))) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3631 form) |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3632 ((unordered-check |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3633 ;; Symbols; eq. |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3634 (and (not (cl-const-expr-p y)) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3635 (or (memq x '(nil t)) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3636 (and (eq (car-safe x) 'quote) (symbolp (second x)))))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3637 (cons 'eq (cdr form))) |
4906
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3638 |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3639 ;; This clause is wrong -- e.g. when comparing a constant char-table |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3640 ;; against a non-constant expression that evaluates to a char-table, |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3641 ;; or some for range tables or certain other types, `equalp' is |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3642 ;; not the same as `equal'. We could insert the known list of |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3643 ;; types with special `equalp' property, but it's fragile and may |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3644 ;; not be much of an optimization, esp. since these types don't |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3645 ;; occur that often are often big. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3646 ;;((unordered-check |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3647 ;; ;; Compare conses at runtime, there's no real upside to |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3648 ;; ;; unrolling the function -> they fall through to the next |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3649 ;; ;; clause in this function. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3650 ;; (and (cl-const-expr-p x) (not (consp x)) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3651 ;; (not (cl-const-expr-p y)))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3652 ;; ;; All other types; use equal. |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3653 ;; (cons 'equal (cdr form))) |
6ef8256a020a
implement equalp in C, fix case-folding, add equal() method for keymaps
Ben Wing <ben@xemacs.org>
parents:
4885
diff
changeset
|
3654 |
4792
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3655 ;; Neither side is a constant expression, do all our evaluation at |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3656 ;; runtime (or both are, and equalp will be called from |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3657 ;; byte-optimize.el). |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3658 (t form))))) |
95b04754ea8c
Make #'equalp more compatible with CL; add a compiler macro, test & doc it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
3659 |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3660 (define-compiler-macro notany (&whole form &rest cl-rest) |
5153
f552caabf58b
Correct the notany, notevery compiler macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5099
diff
changeset
|
3661 `(not (some ,@(cdr form)))) |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3662 |
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3663 (define-compiler-macro notevery (&whole form &rest cl-rest) |
5153
f552caabf58b
Correct the notany, notevery compiler macros.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5099
diff
changeset
|
3664 `(not (every ,@(cdr form)))) |
4997
8800b5350a13
Move #'some, #'every to C, implementing them with mapcarX.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4996
diff
changeset
|
3665 |
5056
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3666 (define-compiler-macro constantly (&whole form value &rest more-values) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3667 (cond |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3668 ((< (length form) 2) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3669 ;; Error at runtime: |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3670 form) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3671 ((cl-const-exprs-p (cdr form)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3672 `#'(lambda (&rest ignore) (values ,@(cdr form)))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3673 (t |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3674 (let* ((num-values (length (cdr form))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3675 (placeholders-counts (make-vector num-values -1)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3676 (placeholders (loop |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3677 for i from 0 below num-values |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3678 collect (make-symbol (format "%d" i)))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3679 (compiled |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3680 (byte-compile-sexp |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3681 `#'(lambda (&rest ignore) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3682 ;; Compiles to a references into the compiled function |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3683 ;; constants vector: |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3684 (values ,@(mapcar #'quote-maybe placeholders))))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3685 position) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3686 `(make-byte-code '(&rest ignore) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3687 ,(compiled-function-instructions compiled) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3688 (vector ,@(loop |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3689 for constant across (compiled-function-constants compiled) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3690 collect (if (setq position |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3691 (position constant placeholders)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3692 (prog2 |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3693 (incf (aref placeholders-counts position)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3694 (nth position (cdr form))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3695 (quote-maybe constant)) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3696 finally |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3697 (assert (every #'zerop placeholders-counts) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3698 t "Placeholders should each have been used once"))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3699 ,(compiled-function-stack-depth compiled)))))) |
6aba0daedb7c
Add #'constantly, as specified by ANSI Common Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4997
diff
changeset
|
3700 |
5182
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5153
diff
changeset
|
3701 (define-compiler-macro stable-sort (&whole form &rest cl-rest) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5153
diff
changeset
|
3702 (cons 'sort* (cdr form))) |
2e528066e2fc
Move #'sort*, #'fill, #'merge to C from cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5153
diff
changeset
|
3703 |
5219
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3704 (define-compiler-macro svref (&whole form) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3705 (cons 'aref (cdr form))) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3706 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3707 (define-compiler-macro acons (a b c) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3708 `(cons (cons ,a ,b) ,c)) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3709 |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3710 (define-compiler-macro pairlis (a b &optional c) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3711 `(nconc (mapcar* #'cons ,a ,b) ,c)) |
2d0937dc83cf
Tidying of CL files; make docstrings read better, remove commented-out code
Aidan Kehoe <kehoea@parhasard.net>
parents:
5182
diff
changeset
|
3712 |
5380
919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5379
diff
changeset
|
3713 (define-compiler-macro revappend (&whole form &rest args) |
919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5379
diff
changeset
|
3714 (if (eql 3 (length form)) `(nconc (reverse ,(pop args)) ,(pop args)) form)) |
919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5379
diff
changeset
|
3715 |
919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5379
diff
changeset
|
3716 (define-compiler-macro nreconc (&whole form &rest args) |
919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5379
diff
changeset
|
3717 (if (eql 3 (length form)) `(nconc (nreverse ,(pop args)) ,(pop args)) form)) |
919c77c567bb
Add compiler macros for #'revappend, #'nreconc.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5379
diff
changeset
|
3718 |
5226
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3719 (define-compiler-macro complement (&whole form fn) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3720 (if (or (eq (car-safe fn) 'function) (eq (car-safe fn) 'quote)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3721 (cond |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3722 ((and (symbolp (second fn)) (get (second fn) 'byte-compile-negated-op)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3723 (list 'function (get (second fn) 'byte-compile-negated-op))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3724 ((and (symbolp (second fn)) (fboundp (second fn)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3725 (compiled-function-p (indirect-function (second fn)))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3726 (let* ((cf (indirect-function (second fn))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3727 (cfa (compiled-function-arglist cf)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3728 (do-apply (memq '&rest cfa))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3729 `#'(lambda ,cfa |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3730 (not (,@(if do-apply `(apply ',(second fn)) (list (second fn))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3731 ,@(remq '&optional |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3732 (remq '&rest cfa))))))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3733 (t |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3734 `#'(lambda (&rest arguments) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3735 (not (apply ,fn arguments))))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3736 ;; Determine the function to call at runtime. |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3737 (destructuring-bind |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3738 (arglist instructions constants stack-depth) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3739 (let ((compiled-lambda |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3740 (byte-compile-sexp |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3741 #'(lambda (&rest arguments) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3742 (not (apply 'placeholder arguments)))))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3743 (list |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3744 (compiled-function-arglist compiled-lambda) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3745 (compiled-function-instructions compiled-lambda) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3746 (append (compiled-function-constants compiled-lambda) nil) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3747 (compiled-function-stack-depth compiled-lambda))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3748 `(make-byte-code |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3749 ',arglist ,instructions (vector |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3750 ,@(nsublis |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3751 (list (cons (quote-maybe |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3752 'placeholder) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3753 fn)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3754 (mapcar #'quote-maybe constants) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3755 :test #'equal)) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3756 ,stack-depth)))) |
7789ae555c45
Add Common Lisp's #'complement to cl-extra.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5219
diff
changeset
|
3757 |
5242
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3758 (define-compiler-macro concatenate (&whole form type &rest seqs) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3759 (if (and (cl-const-expr-p type) (memq (cl-const-expr-val type) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3760 '(vector bit-vector list string))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3761 (case (cl-const-expr-val type) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3762 (list (append (list 'append) (cddr form) '(nil))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3763 (vector (cons 'vconcat (cddr form))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3764 (bit-vector (cons 'bvconcat (cddr form))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3765 (string (cons 'concat (cddr form)))) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3766 form)) |
f3eca926258e
Bit vectors are also sequences; enforce this in some CL functions.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5226
diff
changeset
|
3767 |
5294
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3768 (define-compiler-macro subst-char-in-string (&whole form fromchar tochar |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3769 string &optional inplace) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3770 (if (every #'cl-safe-expr-p (cdr form)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3771 `(funcall (if ,inplace #'nsubstitute #'substitute) ,tochar ,fromchar |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3772 (the string ,string) :test #'eq) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3773 form)) |
bbff29a01820
Add compiler macros and compilation sanity-checks for functions with keywords.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5285
diff
changeset
|
3774 |
5329
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3775 (define-compiler-macro stable-union (&whole form &rest cl-keys) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3776 (if (> (length form) 2) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3777 (list* 'union (pop cl-keys) (pop cl-keys) :stable t cl-keys) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3778 form)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3779 |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3780 (define-compiler-macro stable-intersection (&whole form &rest cl-keys) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3781 (if (> (length form) 2) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3782 (list* 'intersection (pop cl-keys) (pop cl-keys) :stable t cl-keys) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3783 form)) |
7b391d07b334
Tweak a few compiler macros for functions in cl-seq.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5326
diff
changeset
|
3784 |
5266
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3785 (map nil |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3786 #'(lambda (function) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3787 ;; There are byte codes for the two-argument versions of these |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3788 ;; functions; if the form has more arguments and those arguments |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3789 ;; have no side effects, transform to a series of two-argument |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3790 ;; calls. |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3791 (put function 'cl-compiler-macro |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3792 #'(lambda (form &rest arguments) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3793 (if (or (null (nthcdr 3 form)) |
5314
596011a8bf8f
= < > <= >=: it's OK to use the compiler macro when first, last args side effect
Aidan Kehoe <kehoea@parhasard.net>
parents:
5313
diff
changeset
|
3794 (notevery #'cl-safe-expr-p (butlast (cdr arguments)))) |
5266
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3795 form |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3796 (cons 'and (mapcon |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3797 #'(lambda (rest) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3798 (and (cdr rest) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3799 `((,(car form) ,(pop rest) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3800 ,(car rest))))) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3801 (cdr form))))))) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3802 '(= < > <= >=)) |
f9ec07abdbf9
Transform safe calls to (= X Y Z) to (and (= X Y) (= Y Z)); same for < > <= >=
Aidan Kehoe <kehoea@parhasard.net>
parents:
5263
diff
changeset
|
3803 |
5313
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3804 ;; XEmacs; unroll this loop at macro-expansion time, so the compiler macros |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3805 ;; are byte-compiled. |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3806 (macrolet |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3807 ((inline-side-effect-free-compiler-macros (&rest details) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3808 (cons |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3809 'progn |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3810 (loop |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3811 for (function . details) in details |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3812 nconc `((put ',function 'side-effect-free t) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3813 (define-compiler-macro ,function (&whole form x) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3814 ,(if (symbolp (car details)) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3815 (reduce #'(lambda (object1 object2) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3816 `(list ',object1 ,object2)) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3817 details :from-end t :initial-value 'x) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3818 (cons 'list details)))))))) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3819 (inline-side-effect-free-compiler-macros |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3820 (first 'car x) (second 'cadr x) (third 'caddr x) (fourth 'cadddr x) |
428 | 3821 (fifth 'nth 4 x) (sixth 'nth 5 x) (seventh 'nth 6 x) |
3822 (eighth 'nth 7 x) (ninth 'nth 8 x) (tenth 'nth 9 x) | |
5285
99de5fd48e87
Tighten up Common Lisp compatibility, #'butlast, #'nbutlast, #'tailp, #'ldiff
Aidan Kehoe <kehoea@parhasard.net>
parents:
5269
diff
changeset
|
3823 (rest 'cdr x) (plusp '> x 0) (minusp '< x 0) |
5313
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3824 (oddp 'eql (list 'logand x 1) 1) |
5ed261fd2bd9
Unrool a load-time loop at macro expansion time, cl-macs.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5305
diff
changeset
|
3825 (evenp 'eql (list 'logand x 1) 0) |
428 | 3826 (caar car car) (cadr car cdr) (cdar cdr car) (cddr cdr cdr) |
3827 (caaar car caar) (caadr car cadr) (cadar car cdar) | |
3828 (caddr car cddr) (cdaar cdr caar) (cdadr cdr cadr) | |
3829 (cddar cdr cdar) (cdddr cdr cddr) (caaaar car caaar) | |
3830 (caaadr car caadr) (caadar car cadar) (caaddr car caddr) | |
3831 (cadaar car cdaar) (cadadr car cdadr) (caddar car cddar) | |
3832 (cadddr car cdddr) (cdaaar cdr caaar) (cdaadr cdr caadr) | |
3833 (cdadar cdr cadar) (cdaddr cdr caddr) (cddaar cdr cdaar) | |
3834 (cddadr cdr cdadr) (cdddar cdr cddar) (cddddr cdr cdddr))) | |
3835 | |
5339
ba62563ec7c7
Accept more complex TYPEs in #'concatenate, cl-extra.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5338
diff
changeset
|
3836 ;;; Things that are inline. XEmacs; the functions that used to be here have |
ba62563ec7c7
Accept more complex TYPEs in #'concatenate, cl-extra.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5338
diff
changeset
|
3837 ;;; compiler macros or are built-in. |
ba62563ec7c7
Accept more complex TYPEs in #'concatenate, cl-extra.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
5338
diff
changeset
|
3838 (proclaim '(inline cl-set-elt)) |
428 | 3839 |
3840 ;;; Things that are side-effect-free. Moved to byte-optimize.el | |
2153 | 3841 ;(mapcar (function (lambda (x) (put x 'side-effect-free t))) |
3842 ; '(oddp evenp signum last butlast ldiff pairlis gcd lcm | |
3843 ; isqrt floor* ceiling* truncate* round* mod* rem* subseq | |
3844 ; list-length get* getf)) | |
428 | 3845 |
3846 ;;; Things that are side-effect-and-error-free. Moved to byte-optimize.el | |
2153 | 3847 ;(mapcar (function (lambda (x) (put x 'side-effect-free 'error-free))) |
4885
6772ce4d982b
Fix hash tables, #'member*, #'assoc*, #'eql compiler macros if bignums
Aidan Kehoe <kehoea@parhasard.net>
parents:
4820
diff
changeset
|
3848 ; '(eql list* subst acons equalp random-state-p |
2153 | 3849 ; copy-tree sublis)) |
428 | 3850 |
3851 | |
3852 (run-hooks 'cl-macs-load-hook) | |
3853 | |
2153 | 3854 ;;; arch-tag: afd947a6-b553-4df1-bba5-000be6388f46 |
428 | 3855 ;;; cl-macs.el ends here |