mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-24 21:41:29 -08:00
Simple MAPCAR must be replaced by a slightly more complicated DO, because the
list may not be a proper list. I want to dedicate this ballad to myself.
This is a tale of a sorry quest
To master pure code at the T guru's behest
I enrolled in a class that appealing did seem
For it promised to teach fine things like T3 and Scheme
The first day went fine; we learned of cells
And symbols and lists and functions as well
Lisp I had mastered and excited was I
For to master T3 my hackstincts did cry
I sailed through the first week with no problems at all
And I even said "closure" instead of "function call"
Then said the master that ready were we
To start real hacking instead of simple theory
Will you, said he, write me a function please
That in lists would associate values with keys
I went home and turned on my trusty Apollo
And wrote a function whose definition follows:
(cdr (assq key a-list))
A one-liner I thought, fool that I was
Just two simple calls without a COND clause
But when I tried this function to run
CDR didn't think that NIL was much fun
So I tried again like the good King of yore
And of code I easily generated some more:
(cond ((assq key a-list) => cdr))
It got longer but purer, and it wasn't too bad
But then COND ran out and that was quite sad
Well, that isn't hard to fix, I was told
Just write some more code, my son, be bold
Being young, not even a moment did I pause
I stifled my instincts and added a clause
(cond ((assq key a-list) => cdr)
(else nil))
Sometimes this worked and sometimes it broke
I debugged and prayed and even had a stroke
Many a guru tried valiantly to help
But undefined datums their efforts did squelch.
I returneth once more to the great sage of T
For no way out of the dilemma I could see
He said it was easy -- more lines must I fill
with code, for FALSE was no longer NIL.
(let ((val (assq key a-list)))
(cond (val (cdr val))
(else nil)))
You'd think by now I might be nearing the end
Of my ballad which seems bad things to portend
You'd think that we could all go home scot-free
But COND eschewed VAL; it wanted #T
So I went back to the master and appealed once again
I said, pardon me, but now I'm really insane
He said, no you're not really going out of your head
Instead of just VAL, you must use NOT NULL instead
(let ((val (assq key a-list)))
(cond ((not (null? val)) (cdr val))
(else nil)))
My song is over and I'm going home to bed
With this ineffable feeling that I've been misled
And just in case my point you have missed
Somehow I preferred (CDR (ASSQ KEY A-LIST))
-- Ashwin Ram,
"A Short Ballad Dedicated to Program Growth"
1943 lines
82 KiB
Common Lisp
1943 lines
82 KiB
Common Lisp
;;;; -*- Mode: Lisp; Syntax: Common-Lisp; indent-tabs-mode: nil; Package: SYSTEM -*-
|
||
;;;; vim: set filetype=lisp tabstop=8 shiftwidth=2 expandtab:
|
||
|
||
;;;;
|
||
;;;>
|
||
;;;> Portions of LOOP are Copyright (c) 1986 by the Massachusetts Institute of Technology.
|
||
;;;> All Rights Reserved.
|
||
;;;>
|
||
;;;> Permission to use, copy, modify and distribute this software and its
|
||
;;;> documentation for any purpose and without fee is hereby granted,
|
||
;;;> provided that the M.I.T. copyright notice appear in all copies and that
|
||
;;;> both that copyright notice and this permission notice appear in
|
||
;;;> supporting documentation. The names "M.I.T." and "Massachusetts
|
||
;;;> Institute of Technology" may not be used in advertising or publicity
|
||
;;;> pertaining to distribution of the software without specific, written
|
||
;;;> prior permission. Notice must be given in supporting documentation that
|
||
;;;> copying distribution is by permission of M.I.T. M.I.T. makes no
|
||
;;;> representations about the suitability of this software for any purpose.
|
||
;;;> It is provided "as is" without express or implied warranty.
|
||
;;;>
|
||
;;;> Massachusetts Institute of Technology
|
||
;;;> 77 Massachusetts Avenue
|
||
;;;> Cambridge, Massachusetts 02139
|
||
;;;> United States of America
|
||
;;;> +1-617-253-1000
|
||
;;;>
|
||
;;;> Portions of LOOP are Copyright (c) 1989, 1990, 1991, 1992 by Symbolics, Inc.
|
||
;;;> All Rights Reserved.
|
||
;;;>
|
||
;;;> Permission to use, copy, modify and distribute this software and its
|
||
;;;> documentation for any purpose and without fee is hereby granted,
|
||
;;;> provided that the Symbolics copyright notice appear in all copies and
|
||
;;;> that both that copyright notice and this permission notice appear in
|
||
;;;> supporting documentation. The name "Symbolics" may not be used in
|
||
;;;> advertising or publicity pertaining to distribution of the software
|
||
;;;> without specific, written prior permission. Notice must be given in
|
||
;;;> supporting documentation that copying distribution is by permission of
|
||
;;;> Symbolics. Symbolics makes no representations about the suitability of
|
||
;;;> this software for any purpose. It is provided "as is" without express
|
||
;;;> or implied warranty.
|
||
;;;>
|
||
;;;> Symbolics, CLOE Runtime, and Minima are trademarks, and CLOE, Genera,
|
||
;;;> and Zetalisp are registered trademarks of Symbolics, Inc.
|
||
;;;>
|
||
;;;> Symbolics, Inc.
|
||
;;;> 8 New England Executive Park, East
|
||
;;;> Burlington, Massachusetts 01803
|
||
;;;> United States of America
|
||
;;;> +1-617-221-1000
|
||
|
||
;; $aclHeader: loop.cl,v 1.5 91/12/04 01:13:48 cox acl4_1 $
|
||
|
||
;;;; LOOP Iteration Macro
|
||
|
||
#+ecl
|
||
(in-package "SI")
|
||
|
||
;;; The design of this LOOP is intended to permit, using mostly the same
|
||
;;; kernel of code, up to three different "loop" macros:
|
||
;;;
|
||
;;; (1) The unextended, unextensible ANSI standard LOOP;
|
||
;;;
|
||
;;; (2) A clean "superset" extension of the ANSI LOOP which provides
|
||
;;; functionality similar to that of the old LOOP, but "in the style of"
|
||
;;; the ANSI LOOP. For instance, user-definable iteration paths, with a
|
||
;;; somewhat cleaned-up interface.
|
||
;;;
|
||
;;; (3) Extensions provided in another file which can make this LOOP
|
||
;;; kernel behave largely compatibly with the Genera-vintage LOOP macro,
|
||
;;; with only a small addition of code (instead of two whole, separate,
|
||
;;; LOOP macros).
|
||
;;;
|
||
;;; Each of the above three LOOP variations can coexist in the same LISP
|
||
;;; environment.
|
||
;;;
|
||
|
||
|
||
;;;; Miscellaneous Environment Things
|
||
|
||
(defmacro loop-unsafe (&rest x)
|
||
`(locally (declare (ext:assume-right-type)) ,@x))
|
||
|
||
|
||
;;;; List Collection Macrology
|
||
|
||
|
||
(defmacro with-loop-list-collection-head ((head-var tail-var &optional user-head-var)
|
||
&body body)
|
||
(let ((l (and user-head-var (list (list user-head-var nil)))))
|
||
`(let* ((,head-var (list nil)) (,tail-var ,head-var) ,@l)
|
||
,@body)))
|
||
|
||
|
||
(defmacro loop-collect-rplacd (&environment env
|
||
(head-var tail-var &optional user-head-var) form)
|
||
(setq form (macroexpand form env))
|
||
(flet ((cdr-wrap (form n)
|
||
(declare (fixnum n))
|
||
(do () ((<= n 4) (setq form `(,(case n
|
||
(1 'cdr)
|
||
(2 'cddr)
|
||
(3 'cdddr)
|
||
(4 'cddddr))
|
||
,form)))
|
||
(setq form `(cddddr ,form) n (- n 4)))))
|
||
(let ((tail-form form) (ncdrs nil))
|
||
;;Determine if the form being constructed is a list of known length.
|
||
(when (consp form)
|
||
(cond ((eq (car form) 'list)
|
||
(setq ncdrs (1- (length (cdr form)))))
|
||
((member (car form) '(list* cons))
|
||
(when (and (cddr form) (member (car (last form)) '(nil 'nil)))
|
||
(setq ncdrs (- (length (cdr form)) 2))))))
|
||
(let ((answer
|
||
(cond ((null ncdrs)
|
||
`(when (setf (cdr ,tail-var) ,tail-form)
|
||
(setq ,tail-var (last (cdr ,tail-var)))))
|
||
((< ncdrs 0) (return-from loop-collect-rplacd nil))
|
||
((= ncdrs 0)
|
||
;; Here we have a choice of two idioms:
|
||
;; (rplacd tail (setq tail tail-form))
|
||
;; (setq tail (setf (cdr tail) tail-form)).
|
||
;;Genera and most others I have seen do better with the former.
|
||
`(rplacd ,tail-var (setq ,tail-var ,tail-form)))
|
||
(t `(setq ,tail-var ,(cdr-wrap `(setf (cdr ,tail-var) ,tail-form)
|
||
ncdrs))))))
|
||
;;If not using locatives or something similar to update the user's
|
||
;; head variable, we've got to set it... It's harmless to repeatedly set it
|
||
;; unconditionally, and probably faster than checking.
|
||
(when user-head-var
|
||
(setq answer
|
||
`(progn ,answer
|
||
(setq ,user-head-var (cdr ,head-var)))))
|
||
answer))))
|
||
|
||
|
||
(defmacro loop-collect-answer (head-var &optional user-head-var)
|
||
(or user-head-var
|
||
`(cdr ,head-var)))
|
||
|
||
|
||
;;;; Maximization Technology
|
||
|
||
|
||
#|
|
||
The basic idea of all this minimax randomness here is that we have to
|
||
have constructed all uses of maximize and minimize to a particular
|
||
"destination" before we can decide how to code them. The goal is to not
|
||
have to have any kinds of flags, by knowing both that (1) the type is
|
||
something which we can provide an initial minimum or maximum value for
|
||
and (2) know that a MAXIMIZE and MINIMIZE are not being combined.
|
||
|
||
SO, we have a datastructure which we annotate with all sorts of things,
|
||
incrementally updating it as we generate loop body code, and then use
|
||
a wrapper and internal macros to do the coding when the loop has been
|
||
constructed.
|
||
|#
|
||
|
||
|
||
(defstruct (loop-minimax
|
||
#+ecl (:type vector)
|
||
(:constructor make-loop-minimax-internal)
|
||
#+nil (:copier nil)
|
||
#+nil (:predicate nil))
|
||
answer-variable
|
||
type
|
||
temp-variable
|
||
flag-variable
|
||
operations
|
||
infinity-data)
|
||
|
||
|
||
(defparameter *loop-minimax-type-infinities-alist*
|
||
;; This is the sort of value this should take on for a Lisp that has
|
||
;; "eminently usable" infinities. n.b. there are neither constants nor
|
||
;; printed representations for infinities defined by CL.
|
||
;; This grotesque read-from-string below is to help implementations
|
||
;; which croak on the infinity character when it appears in a token, even
|
||
;; conditionalized out.
|
||
#|
|
||
'((fixnum most-positive-fixnum most-negative-fixnum)
|
||
(short-float ext:single-float-positive-infinity ext:single-float-negative-infinity)
|
||
(single-float ext:single-float-positive-infinity ext:single-float-negative-infinity)
|
||
(double-float ext:double-float-positive-infinity ext:double-float-negative-infinity)
|
||
(long-float ext:long-float-positive-infinity ext:long-float-negative-infinity))
|
||
|#
|
||
;; If we don't know, then we cannot provide "infinite" initial values for any of the
|
||
;; types but FIXNUM:
|
||
'((fixnum most-positive-fixnum most-negative-fixnum))
|
||
)
|
||
|
||
|
||
(defun make-loop-minimax (answer-variable type)
|
||
(declare (si::c-local))
|
||
(let ((infinity-data (cdr (assoc type *loop-minimax-type-infinities-alist* :test #'subtypep))))
|
||
(make-loop-minimax-internal
|
||
:answer-variable answer-variable
|
||
:type type
|
||
:temp-variable (gensym "LOOP-MAXMIN-TEMP-")
|
||
:flag-variable (and (not infinity-data) (gensym "LOOP-MAXMIN-FLAG-"))
|
||
:operations nil
|
||
:infinity-data infinity-data)))
|
||
|
||
|
||
(defun loop-note-minimax-operation (operation minimax)
|
||
(declare (si::c-local))
|
||
(pushnew (truly-the symbol operation) (loop-minimax-operations minimax))
|
||
(when (and (cdr (loop-minimax-operations minimax))
|
||
(not (loop-minimax-flag-variable minimax)))
|
||
(setf (loop-minimax-flag-variable minimax) (gensym "LOOP-MAXMIN-FLAG-")))
|
||
operation)
|
||
|
||
|
||
(defmacro with-minimax-value (lm &body body)
|
||
(let ((init (loop-typed-init (loop-minimax-type lm)))
|
||
(which (car (loop-minimax-operations lm)))
|
||
(infinity-data (loop-minimax-infinity-data lm))
|
||
(answer-var (loop-minimax-answer-variable lm))
|
||
(temp-var (loop-minimax-temp-variable lm))
|
||
(flag-var (loop-minimax-flag-variable lm))
|
||
(type (loop-minimax-type lm)))
|
||
(if flag-var
|
||
`(let ((,answer-var ,init) (,temp-var ,init) (,flag-var nil))
|
||
(declare (type ,type ,answer-var ,temp-var))
|
||
,@body)
|
||
`(let ((,answer-var ,(if (eq which 'min) (first infinity-data) (second infinity-data)))
|
||
(,temp-var ,init))
|
||
(declare (type ,type ,answer-var ,temp-var))
|
||
,@body))))
|
||
|
||
|
||
(defmacro loop-accumulate-minimax-value (lm operation form)
|
||
(let* ((answer-var (loop-minimax-answer-variable lm))
|
||
(temp-var (loop-minimax-temp-variable lm))
|
||
(flag-var (loop-minimax-flag-variable lm))
|
||
(test `(,(ecase operation
|
||
(min '<)
|
||
(max '>))
|
||
,temp-var ,answer-var)))
|
||
`(progn
|
||
(setq ,temp-var ,form)
|
||
(when ,(if flag-var `(or (not ,flag-var) ,test) test)
|
||
(setq ,@(and flag-var `(,flag-var t))
|
||
,answer-var ,temp-var)))))
|
||
|
||
|
||
|
||
;;;; Loop Keyword Tables
|
||
|
||
|
||
#|
|
||
LOOP keyword tables are hash tables string keys and a test of EQUAL.
|
||
|
||
The actual descriptive/dispatch structure used by LOOP is called a "loop
|
||
universe" contains a few tables and parameterizations. The basic idea is
|
||
that we can provide a non-extensible ANSI-compatible loop environment,
|
||
an extensible ANSI-superset loop environment, and (for such environments
|
||
as CLOE) one which is "sufficiently close" to the old Genera-vintage
|
||
LOOP for use by old user programs without requiring all of the old LOOP
|
||
code to be loaded.
|
||
|#
|
||
|
||
|
||
;;;; Token Hackery
|
||
|
||
|
||
;;;Compare two "tokens". The first is the frob out of *LOOP-SOURCE-CODE*,
|
||
;;; the second a symbol to check against.
|
||
(defun loop-tequal (x1 x2)
|
||
(declare (si::c-local))
|
||
(and (symbolp x1) (string= x1 x2)))
|
||
|
||
|
||
(defun loop-tassoc (kwd alist)
|
||
(declare (si::c-local))
|
||
(and (symbolp kwd) (assoc kwd alist :test #'string=)))
|
||
|
||
|
||
(defun loop-tmember (kwd list)
|
||
(declare (si::c-local))
|
||
(and (symbolp kwd) (member kwd list :test #'string=)))
|
||
|
||
|
||
(defun loop-lookup-keyword (loop-token table)
|
||
(declare (si::c-local))
|
||
(and (symbolp loop-token)
|
||
(values (gethash (symbol-name loop-token) table))))
|
||
|
||
|
||
(defmacro loop-store-table-data (symbol table datum)
|
||
`(setf (gethash (symbol-name ,symbol) ,table) ,datum))
|
||
|
||
|
||
(defstruct (loop-universe
|
||
#+ecl (:type vector)
|
||
#-ecl (:print-function print-loop-universe)
|
||
#+nil (:copier nil)
|
||
#+nil (:predicate nil))
|
||
keywords ;hash table, value = (fn-name . extra-data).
|
||
iteration-keywords ;hash table, value = (fn-name . extra-data).
|
||
for-keywords ;hash table, value = (fn-name . extra-data).
|
||
path-keywords ;hash table, value = (fn-name . extra-data).
|
||
type-symbols ;hash table of type SYMBOLS, test EQ, value = CL type specifier.
|
||
type-keywords ;hash table of type STRINGS, test EQUAL, value = CL type spec.
|
||
ansi ;NIL, T, or :EXTENDED.
|
||
implicit-for-required ;see loop-hack-iteration
|
||
)
|
||
|
||
|
||
#-ecl
|
||
(defun print-loop-universe (u stream level)
|
||
(declare (ignore level))
|
||
(let ((str (case (loop-universe-ansi u)
|
||
((nil) "Non-ANSI")
|
||
((t) "ANSI")
|
||
(:extended "Extended-ANSI")
|
||
(t (loop-universe-ansi u)))))
|
||
(format stream "#<~S ~A>" (type-of u) str)))
|
||
|
||
|
||
;;;This is the "current" loop context in use when we are expanding a
|
||
;;;loop. It gets bound on each invocation of LOOP.
|
||
(defvar *loop-universe*)
|
||
|
||
|
||
(defun make-standard-loop-universe (&key keywords for-keywords iteration-keywords path-keywords
|
||
type-keywords type-symbols ansi)
|
||
(declare (si::c-local))
|
||
(flet ((maketable (entries)
|
||
(let* ((size (length entries))
|
||
(ht (make-hash-table :size (if (< size 10) 10 size) :test #'equal)))
|
||
(dolist (x entries) (setf (gethash (symbol-name (car x)) ht) (cadr x)))
|
||
ht)))
|
||
(make-loop-universe
|
||
:keywords (maketable keywords)
|
||
:for-keywords (maketable for-keywords)
|
||
:iteration-keywords (maketable iteration-keywords)
|
||
:path-keywords (maketable path-keywords)
|
||
:ansi ansi
|
||
:implicit-for-required (not (null ansi))
|
||
:type-keywords (maketable type-keywords)
|
||
:type-symbols (let* ((size (length type-symbols))
|
||
(ht (make-hash-table :size (if (< size 10) 10 size) :test #'eq)))
|
||
(dolist (x type-symbols)
|
||
(if (atom x) (setf (gethash x ht) x) (setf (gethash (car x) ht) (cadr x))))
|
||
ht))))
|
||
|
||
|
||
;;;; Setq Hackery
|
||
|
||
|
||
(defparameter *loop-destructuring-hooks*
|
||
nil
|
||
"If not NIL, this must be a list of two things:
|
||
a LET-like macro, and a SETQ-like macro, which perform LOOP-style destructuring.")
|
||
|
||
|
||
(defun loop-make-psetq (frobs)
|
||
(declare (si::c-local))
|
||
(and frobs
|
||
(loop-make-desetq
|
||
(list (car frobs)
|
||
(if (null (cddr frobs)) (cadr frobs)
|
||
`(prog1 ,(cadr frobs)
|
||
,(loop-make-psetq (cddr frobs))))))))
|
||
|
||
|
||
(defun loop-make-desetq (var-val-pairs)
|
||
(declare (si::c-local))
|
||
(if (null var-val-pairs)
|
||
nil
|
||
(cons (if *loop-destructuring-hooks*
|
||
(cadr *loop-destructuring-hooks*)
|
||
'loop-really-desetq)
|
||
var-val-pairs)))
|
||
|
||
|
||
(defparameter *loop-desetq-temporary*
|
||
(make-symbol "LOOP-DESETQ-TEMP"))
|
||
|
||
|
||
(defmacro loop-really-desetq (&environment env &rest var-val-pairs)
|
||
(labels ((find-non-null (var)
|
||
;; see if there's any non-null thing here
|
||
;; recurse if the list element is itself a list
|
||
(do ((tail var)) ((not (consp tail)) tail)
|
||
(when (find-non-null (pop tail)) (return t))))
|
||
(loop-desetq-internal (var val &optional temp)
|
||
;; if the value is declared 'unsafe', then the assignemnt
|
||
;; is also unsafe.
|
||
(when (and (consp val)
|
||
(eq (first val) 'LOOP-UNSAFE))
|
||
(let ((forms (rest val)))
|
||
(setf forms (if (rest forms) `(progn ,@forms) (first forms)))
|
||
(return-from loop-desetq-internal
|
||
`((LOOP-UNSAFE ,@(loop-desetq-internal var forms))))))
|
||
;; returns a list of actions to be performed
|
||
(typecase var
|
||
(null
|
||
(when (consp val)
|
||
;; don't lose possible side-effects
|
||
(if (eq (car val) 'prog1)
|
||
;; these can come from psetq or desetq below.
|
||
;; throw away the value, keep the side-effects.
|
||
;;Special case is for handling an expanded POP.
|
||
(mapcan #'(lambda (x)
|
||
(and (consp x)
|
||
(or (not (eq (car x) 'car))
|
||
(not (symbolp (cadr x)))
|
||
(not (symbolp (setq x (macroexpand x env)))))
|
||
(cons x nil)))
|
||
(cdr val))
|
||
`(,val))))
|
||
(cons
|
||
(let* ((car (car var))
|
||
(cdr (cdr var))
|
||
(car-non-null (find-non-null car))
|
||
(cdr-non-null (find-non-null cdr)))
|
||
(when (or car-non-null cdr-non-null)
|
||
(if cdr-non-null
|
||
(let* ((temp-p temp)
|
||
(temp (or temp *loop-desetq-temporary*))
|
||
(body `(,@(loop-desetq-internal car `(car ,temp))
|
||
(setq ,temp (cdr ,temp))
|
||
,@(loop-desetq-internal cdr temp temp))))
|
||
(if temp-p
|
||
`(,@(unless (eq temp val)
|
||
`((setq ,temp ,val)))
|
||
,@body)
|
||
`((let ((,temp ,val))
|
||
,@body))))
|
||
;; no cdring to do
|
||
(loop-desetq-internal car `(car ,val) temp)))))
|
||
(otherwise
|
||
(unless (eq var val)
|
||
`((setq ,var ,val)))))))
|
||
(do ((actions))
|
||
((null var-val-pairs)
|
||
(if (null (cdr actions)) (car actions) `(progn ,@(nreverse actions))))
|
||
(setq actions (revappend
|
||
(loop-desetq-internal (pop var-val-pairs) (pop var-val-pairs))
|
||
actions)))))
|
||
|
||
|
||
;;;; LOOP-local variables
|
||
|
||
;;;This is the "current" pointer into the LOOP source code.
|
||
(defvar *loop-source-code*)
|
||
|
||
|
||
;;;This is the pointer to the original, for things like NAMED that
|
||
;;;insist on being in a particular position
|
||
(defvar *loop-original-source-code*)
|
||
|
||
|
||
;;;This is *loop-source-code* as of the "last" clause. It is used
|
||
;;;primarily for generating error messages (see loop-error, loop-warn).
|
||
(defvar *loop-source-context*)
|
||
|
||
|
||
;;;List of names for the LOOP, supplied by the NAMED clause.
|
||
(defvar *loop-names*)
|
||
|
||
;;;The macroexpansion environment given to the macro.
|
||
(defvar *loop-macro-environment*)
|
||
|
||
;;;This holds variable names specified with the USING clause.
|
||
;;; See LOOP-NAMED-VARIABLE.
|
||
(defvar *loop-named-variables*)
|
||
|
||
;;; LETlist-like list being accumulated for one group of parallel bindings.
|
||
(defvar *loop-variables*)
|
||
|
||
;;;List of declarations being accumulated in parallel with
|
||
;;;*loop-variables*.
|
||
(defvar *loop-declarations*)
|
||
|
||
;;;Used by LOOP for destructuring binding, if it is doing that itself.
|
||
;;; See loop-make-variable.
|
||
(defvar *loop-desetq-crocks*)
|
||
|
||
;;; List of wrapping forms, innermost first, which go immediately inside
|
||
;;; the current set of parallel bindings being accumulated in
|
||
;;; *loop-variables*. The wrappers are appended onto a body. E.g.,
|
||
;;; this list could conceivably has as its value ((with-open-file (g0001
|
||
;;; g0002 ...))), with g0002 being one of the bindings in
|
||
;;; *loop-variables* (this is why the wrappers go inside of the variable
|
||
;;; bindings).
|
||
(defvar *loop-wrappers*)
|
||
|
||
;;;This accumulates lists of previous values of *loop-variables* and the
|
||
;;;other lists above, for each new nesting of bindings. See
|
||
;;;loop-bind-block.
|
||
(defvar *loop-bind-stack*)
|
||
|
||
;;;This is a LOOP-global variable for the (obsolete) NODECLARE clause
|
||
;;;which inhibits LOOP from actually outputting a type declaration for
|
||
;;;an iteration (or any) variable.
|
||
(defvar *loop-nodeclare*)
|
||
|
||
;;;This is simply a list of LOOP iteration variables, used for checking
|
||
;;;for duplications.
|
||
(defvar *loop-iteration-variables*)
|
||
|
||
|
||
;;;List of prologue forms of the loop, accumulated in reverse order.
|
||
(defvar *loop-prologue*)
|
||
|
||
(defvar *loop-before-loop*)
|
||
(defvar *loop-body*)
|
||
(defvar *loop-after-body*)
|
||
|
||
;;;This is T if we have emitted any body code, so that iteration driving
|
||
;;;clauses can be disallowed. This is not strictly the same as
|
||
;;;checking *loop-body*, because we permit some clauses such as RETURN
|
||
;;;to not be considered "real" body (so as to permit the user to "code"
|
||
;;;an abnormal return value "in loop").
|
||
(defvar *loop-emitted-body*)
|
||
|
||
|
||
;;;List of epilogue forms (supplied by FINALLY generally), accumulated
|
||
;;; in reverse order.
|
||
(defvar *loop-epilogue*)
|
||
|
||
;;;List of epilogue forms which are supplied after the above "user"
|
||
;;;epilogue. "normal" termination return values are provide by putting
|
||
;;;the return form in here. Normally this is done using
|
||
;;;loop-emit-final-value, q.v.
|
||
(defvar *loop-after-epilogue*)
|
||
|
||
;;;The "culprit" responsible for supplying a final value from the loop.
|
||
;;;This is so loop-emit-final-value can moan about multiple return
|
||
;;;values being supplied.
|
||
(defvar *loop-final-value-culprit*)
|
||
|
||
;;;If not NIL, we are in some branch of a conditional. Some clauses may
|
||
;;;be disallowed.
|
||
(defvar *loop-inside-conditional*)
|
||
|
||
;;;If not NIL, this is a temporary bound around the loop for holding the
|
||
;;;temporary value for "it" in things like "when (f) collect it". It
|
||
;;;may be used as a supertemporary by some other things.
|
||
(defvar *loop-when-it-variable*)
|
||
|
||
;;;Sometimes we decide we need to fold together parts of the loop, but
|
||
;;;some part of the generated iteration code is different for the first
|
||
;;;and remaining iterations. This variable will be the temporary which
|
||
;;;is the flag used in the loop to tell whether we are in the first or
|
||
;;;remaining iterations.
|
||
(defvar *loop-never-stepped-variable*)
|
||
|
||
;;;List of all the value-accumulation descriptor structures in the loop.
|
||
;;; See loop-get-collection-info.
|
||
(defvar *loop-collection-cruft*) ; for multiple COLLECTs (etc)
|
||
|
||
|
||
;;;; Code Analysis Stuff
|
||
|
||
|
||
(defun loop-constant-fold-if-possible (form &optional expected-type)
|
||
(declare (si::c-local))
|
||
(let ((new-form form) (constantp nil) (constant-value nil))
|
||
(when (setq constantp (constantp new-form))
|
||
(setq constant-value (eval new-form)))
|
||
(when (and constantp expected-type)
|
||
(unless (typep constant-value expected-type)
|
||
(loop-warn "The form ~S evaluated to ~S, which was not of the anticipated type ~S."
|
||
form constant-value expected-type)
|
||
(setq constantp nil constant-value nil)))
|
||
(values new-form constantp constant-value)))
|
||
|
||
|
||
;;;; LOOP Iteration Optimization
|
||
|
||
(defparameter *loop-duplicate-code*
|
||
nil)
|
||
|
||
|
||
(defparameter *loop-iteration-flag-variable*
|
||
(make-symbol "LOOP-NOT-FIRST-TIME"))
|
||
|
||
|
||
(defmacro loop-body (&environment env
|
||
prologue
|
||
before-loop
|
||
main-body
|
||
after-loop
|
||
epilogue)
|
||
(declare (ignore env))
|
||
(unless (= (length before-loop) (length after-loop))
|
||
(error "LOOP-BODY called with non-synched before- and after-loop lists."))
|
||
;;All our work is done from these copies, working backwards from the end:
|
||
(let ((rbefore (reverse before-loop))
|
||
(rafter (reverse after-loop)))
|
||
;; Go backwards from the ends of before-loop and after-loop
|
||
;; merging all the equivalent forms into the body.
|
||
(do ()
|
||
((or (null rbefore)
|
||
(not (equal (car rbefore) (car rafter)))))
|
||
(push (pop rbefore) main-body)
|
||
(pop rafter))
|
||
`(tagbody
|
||
,@(remove nil prologue)
|
||
,@(nreverse (remove nil rbefore))
|
||
next-loop
|
||
,@(remove nil main-body)
|
||
,@(nreverse (remove nil rafter))
|
||
(go next-loop)
|
||
end-loop
|
||
,@(remove nil epilogue))))
|
||
|
||
;;;; Loop Errors
|
||
|
||
|
||
(defun loop-context ()
|
||
(declare (si::c-local))
|
||
(do ((l *loop-source-context* (cdr l)) (new nil (cons (car l) new)))
|
||
((eq l (cdr *loop-source-code*)) (nreverse new))))
|
||
|
||
|
||
(defun loop-error (format-string &rest format-args)
|
||
(declare (si::c-local))
|
||
(si::simple-program-error "~?~%Current LOOP context:~{ ~S~}."
|
||
format-string format-args (loop-context)))
|
||
|
||
|
||
(defun loop-warn (format-string &rest format-args)
|
||
(declare (si::c-local))
|
||
(warn 'sys::simple-style-warning
|
||
:format-control "~?~%Current LOOP context:~{ ~S~}."
|
||
:format-arguments (list format-string format-args (loop-context))))
|
||
|
||
|
||
(defun loop-check-data-type (specified-type required-type
|
||
&optional (default-type required-type))
|
||
(declare (si::c-local))
|
||
(if (null specified-type)
|
||
default-type
|
||
(multiple-value-bind (a b) (subtypep specified-type required-type)
|
||
(cond ((not b)
|
||
(loop-warn "LOOP couldn't verify that ~S is a subtype of the required type ~S."
|
||
specified-type required-type))
|
||
((not a)
|
||
(loop-error "Specified data type ~S is not a subtype of ~S."
|
||
specified-type required-type)))
|
||
specified-type)))
|
||
|
||
|
||
;;;INTERFACE: Traditional, ANSI, Lucid.
|
||
(defmacro loop-finish ()
|
||
"Causes the iteration to terminate \"normally\", the same as implicit
|
||
termination by an iteration driving clause, or by use of WHILE or
|
||
UNTIL -- the epilogue code (if any) will be run, and any implicitly
|
||
collected result will be returned as the value of the LOOP."
|
||
'(go end-loop))
|
||
|
||
(defun subst-gensyms-for-nil (tree)
|
||
(declare (special *ignores*))
|
||
(cond
|
||
((null tree) (car (push (gensym) *ignores*)))
|
||
((atom tree) tree)
|
||
((atom (cdr tree))
|
||
(cons (subst-gensyms-for-nil (car tree))
|
||
(subst-gensyms-for-nil (cdr tree))))
|
||
(t
|
||
(do* ((acc (cons '&optional nil))
|
||
(acc-last acc)
|
||
(elt tree (cdr elt)))
|
||
((atom elt)
|
||
(setf (cdr acc-last) elt)
|
||
acc)
|
||
(setf (cdr acc-last)
|
||
(cons (subst-gensyms-for-nil (car elt)) nil))
|
||
(setf acc-last (cdr acc-last))))))
|
||
|
||
(defun loop-build-destructuring-bindings (crocks forms)
|
||
(if crocks
|
||
(let ((*ignores* ()))
|
||
(declare (special *ignores*))
|
||
`((destructuring-bind ,(subst-gensyms-for-nil (car crocks))
|
||
,(cadr crocks)
|
||
(declare (ignore ,@*ignores*))
|
||
,@(loop-build-destructuring-bindings (cddr crocks) forms))))
|
||
forms))
|
||
|
||
(defun loop-translate (*loop-source-code* *loop-macro-environment* *loop-universe*)
|
||
(declare (si::c-local))
|
||
(let ((*loop-original-source-code* *loop-source-code*)
|
||
(*loop-source-context* nil)
|
||
(*loop-iteration-variables* nil)
|
||
(*loop-variables* nil)
|
||
(*loop-nodeclare* nil)
|
||
(*loop-named-variables* nil)
|
||
(*loop-declarations* nil)
|
||
(*loop-desetq-crocks* nil)
|
||
(*loop-bind-stack* nil)
|
||
(*loop-prologue* nil)
|
||
(*loop-wrappers* nil)
|
||
(*loop-before-loop* nil)
|
||
(*loop-body* nil)
|
||
(*loop-emitted-body* nil)
|
||
(*loop-after-body* nil)
|
||
(*loop-epilogue* nil)
|
||
(*loop-after-epilogue* nil)
|
||
(*loop-final-value-culprit* nil)
|
||
(*loop-inside-conditional* nil)
|
||
(*loop-when-it-variable* nil)
|
||
(*loop-never-stepped-variable* nil)
|
||
(*loop-names* nil)
|
||
(*loop-collection-cruft* nil))
|
||
(loop-iteration-driver)
|
||
(loop-bind-block)
|
||
(let ((answer `(loop-body
|
||
,(nreverse *loop-prologue*)
|
||
,(nreverse *loop-before-loop*)
|
||
,(nreverse *loop-body*)
|
||
,(nreverse *loop-after-body*)
|
||
,(nreconc *loop-epilogue* (nreverse *loop-after-epilogue*)))))
|
||
(dolist (entry *loop-bind-stack*)
|
||
(let ((vars (first entry))
|
||
(dcls (second entry))
|
||
(crocks (third entry))
|
||
(wrappers (fourth entry)))
|
||
(dolist (w wrappers)
|
||
(setq answer (append w (list answer))))
|
||
(when (or vars dcls crocks)
|
||
(let ((forms (list answer)))
|
||
;;(when crocks (push crocks forms))
|
||
(when dcls (push `(declare ,@dcls) forms))
|
||
(setq answer `(,(cond ((not vars) 'locally)
|
||
(*loop-destructuring-hooks* (first *loop-destructuring-hooks*))
|
||
(t 'let))
|
||
,vars
|
||
,@(loop-build-destructuring-bindings crocks forms)))))))
|
||
(if *loop-names*
|
||
(do () ((null (car *loop-names*)) answer)
|
||
(setq answer `(block ,(pop *loop-names*) ,answer)))
|
||
`(block nil ,answer)))))
|
||
|
||
|
||
(defun loop-iteration-driver ()
|
||
(declare (si::c-local))
|
||
(do () ((null *loop-source-code*))
|
||
(let ((keyword (car *loop-source-code*)) (tem nil))
|
||
(cond ((not (symbolp keyword))
|
||
(loop-error "~S found where LOOP keyword expected." keyword))
|
||
(t (setq *loop-source-context* *loop-source-code*)
|
||
(loop-pop-source)
|
||
(cond ((setq tem (loop-lookup-keyword keyword (loop-universe-keywords *loop-universe*)))
|
||
;;It's a "miscellaneous" toplevel LOOP keyword (do, collect, named, etc.)
|
||
(apply (symbol-function (first tem)) (rest tem)))
|
||
((setq tem (loop-lookup-keyword keyword (loop-universe-iteration-keywords *loop-universe*)))
|
||
(loop-hack-iteration tem))
|
||
((loop-tmember keyword '(and else))
|
||
;; Alternative is to ignore it, ie let it go around to the next keyword...
|
||
(loop-error "Secondary clause misplaced at top level in LOOP macro: ~S ~S ~S ..."
|
||
keyword (car *loop-source-code*) (cadr *loop-source-code*)))
|
||
(t (loop-error "~S is an unknown keyword in LOOP macro." keyword))))))))
|
||
|
||
|
||
|
||
(defun loop-pop-source ()
|
||
(declare (si::c-local))
|
||
(if *loop-source-code*
|
||
(pop *loop-source-code*)
|
||
(loop-error "LOOP source code ran out when another token was expected.")))
|
||
|
||
|
||
(defun loop-get-compound-form ()
|
||
(declare (si::c-local))
|
||
(let ((form (loop-get-form)))
|
||
(unless (consp form)
|
||
(loop-error "Compound form expected, but found ~A." form))
|
||
form))
|
||
|
||
(defun loop-get-progn ()
|
||
(declare (si::c-local))
|
||
(do ((forms (list (loop-get-compound-form))
|
||
(cons (loop-get-compound-form) forms))
|
||
(nextform (car *loop-source-code*)
|
||
(car *loop-source-code*)))
|
||
((atom nextform)
|
||
(if (null (cdr forms)) (car forms) (cons 'progn (nreverse forms))))))
|
||
|
||
|
||
(defun loop-get-form ()
|
||
(declare (si::c-local))
|
||
(if *loop-source-code*
|
||
(loop-pop-source)
|
||
(loop-error "LOOP code ran out where a form was expected.")))
|
||
|
||
|
||
(defun loop-construct-return (form)
|
||
(declare (si::c-local))
|
||
`(return-from ,(car *loop-names*) ,form))
|
||
|
||
(defun loop-pseudo-body (form)
|
||
(declare (si::c-local))
|
||
(cond ((or *loop-emitted-body* *loop-inside-conditional*)
|
||
(push form *loop-body*))
|
||
(t (push form *loop-before-loop*) (push form *loop-after-body*))))
|
||
|
||
(defun loop-emit-body (form)
|
||
(declare (si::c-local))
|
||
(setq *loop-emitted-body* t)
|
||
(push form *loop-body*))
|
||
|
||
(defun loop-emit-final-value (&optional (form nil form-supplied-p))
|
||
(declare (si::c-local))
|
||
(when form-supplied-p
|
||
(push (loop-construct-return form) *loop-after-epilogue*))
|
||
(when *loop-final-value-culprit*
|
||
(loop-warn "LOOP clause is providing a value for the iteration,~@
|
||
however one was already established by a ~S clause."
|
||
*loop-final-value-culprit*))
|
||
(setq *loop-final-value-culprit* (car *loop-source-context*)))
|
||
|
||
|
||
(defun loop-disallow-conditional (&optional kwd)
|
||
(declare (si::c-local))
|
||
(when *loop-inside-conditional*
|
||
(loop-error "~:[This LOOP~;The LOOP ~:*~S~] clause is not permitted inside a conditional." kwd)))
|
||
|
||
(defun loop-disallow-anonymous-collectors ()
|
||
(when (find-if-not 'loop-collector-name *loop-collection-cruft*)
|
||
(loop-error "This LOOP clause is not permitted with anonymous collectors.")))
|
||
|
||
(defun loop-disallow-aggregate-booleans ()
|
||
(when (loop-tmember *loop-final-value-culprit* '(always never thereis))
|
||
(loop-error "This anonymous collection LOOP clause is not permitted with aggregate booleans.")))
|
||
|
||
|
||
|
||
;;;; Loop Types
|
||
|
||
|
||
(defun loop-typed-init (data-type)
|
||
(declare (si::c-local))
|
||
(cond ((null data-type)
|
||
nil)
|
||
((subtypep data-type 'character)
|
||
#\0)
|
||
((not (subtypep data-type 'number))
|
||
nil)
|
||
((subtypep data-type '(or float (complex float)))
|
||
(coerce 0 data-type))
|
||
(t
|
||
0)))
|
||
|
||
(defun loop-optional-type (&optional variable)
|
||
(declare (si::c-local))
|
||
;;No variable specified implies that no destructuring is permissible.
|
||
(and *loop-source-code* ;Don't get confused by NILs...
|
||
(let ((z (car *loop-source-code*)))
|
||
(cond ((loop-tequal z 'of-type)
|
||
;;This is the syntactically unambigous form in that the form of the
|
||
;; type specifier does not matter. Also, it is assumed that the
|
||
;; type specifier is unambiguously, and without need of translation,
|
||
;; a common lisp type specifier or pattern (matching the variable) thereof.
|
||
(loop-pop-source)
|
||
(loop-pop-source))
|
||
|
||
((symbolp z)
|
||
;;This is the (sort of) "old" syntax, even though we didn't used to support all of
|
||
;; these type symbols.
|
||
(let ((type-spec (or (gethash z (loop-universe-type-symbols *loop-universe*))
|
||
(gethash (symbol-name z) (loop-universe-type-keywords *loop-universe*)))))
|
||
(when type-spec
|
||
(loop-pop-source)
|
||
type-spec)))
|
||
(t
|
||
;;This is our sort-of old syntax. But this is only valid for when we are destructuring,
|
||
;; so we will be compulsive (should we really be?) and require that we in fact be
|
||
;; doing variable destructuring here. We must translate the old keyword pattern typespec
|
||
;; into a fully-specified pattern of real type specifiers here.
|
||
(if (consp variable)
|
||
(unless (consp z)
|
||
(loop-error
|
||
"~S found where a LOOP keyword, LOOP type keyword, or LOOP type pattern expected."
|
||
z))
|
||
(loop-error "~S found where a LOOP keyword or LOOP type keyword expected." z))
|
||
(loop-pop-source)
|
||
(labels ((translate (k v)
|
||
(cond ((null k) nil)
|
||
((atom k)
|
||
(replicate
|
||
(or (gethash k (loop-universe-type-symbols *loop-universe*))
|
||
(gethash (symbol-name k) (loop-universe-type-keywords *loop-universe*))
|
||
(loop-error
|
||
"Destructuring type pattern ~S contains unrecognized type keyword ~S."
|
||
z k))
|
||
v))
|
||
((atom v)
|
||
(loop-error
|
||
"Destructuring type pattern ~S doesn't match variable pattern ~S."
|
||
z variable))
|
||
(t (cons (translate (car k) (car v)) (translate (cdr k) (cdr v))))))
|
||
(replicate (typ v)
|
||
(if (atom v) typ (cons (replicate typ (car v)) (replicate typ (cdr v))))))
|
||
(translate z variable)))))))
|
||
|
||
|
||
|
||
;;;; Loop Variables
|
||
|
||
|
||
(defun loop-bind-block ()
|
||
(declare (si::c-local))
|
||
(when (or *loop-variables* *loop-declarations* *loop-wrappers*)
|
||
(push (list (nreverse *loop-variables*) *loop-declarations* *loop-desetq-crocks* *loop-wrappers*)
|
||
*loop-bind-stack*)
|
||
(setq *loop-variables* nil
|
||
*loop-declarations* nil
|
||
*loop-desetq-crocks* nil
|
||
*loop-wrappers* nil)))
|
||
|
||
(defun loop-variable-p (name)
|
||
(do ((entry *loop-bind-stack* (cdr entry))) (nil)
|
||
(cond ((null entry)
|
||
(return nil))
|
||
((assoc name (caar entry) :test #'eq)
|
||
(return t)))))
|
||
|
||
(defun loop-make-variable (name initialization dtype &optional iteration-variable-p)
|
||
(declare (si::c-local))
|
||
(cond ((null name)
|
||
(cond ((not (null initialization))
|
||
(push (list (setq name (gensym "LOOP-IGNORE-"))
|
||
initialization)
|
||
*loop-variables*)
|
||
(push `(ignore ,name) *loop-declarations*))))
|
||
((atom name)
|
||
(cond (iteration-variable-p
|
||
(if (member name *loop-iteration-variables*)
|
||
(loop-error "Duplicated LOOP iteration variable ~S." name)
|
||
(push name *loop-iteration-variables*)))
|
||
((assoc name *loop-variables*)
|
||
(loop-error "Duplicated variable ~S in LOOP parallel binding." name)))
|
||
(unless (symbolp name)
|
||
(loop-error "Bad variable ~S somewhere in LOOP." name))
|
||
(let ((init (or initialization (loop-typed-init dtype))))
|
||
(loop-declare-variable name dtype init)
|
||
;; We use ASSOC on this list to check for duplications (above),
|
||
;; so don't optimize out this list:
|
||
(push (list name init) *loop-variables*)))
|
||
(initialization
|
||
(cond (*loop-destructuring-hooks*
|
||
(loop-declare-variable name dtype)
|
||
(push (list name initialization) *loop-variables*))
|
||
(t (let ((newvar (gensym "LOOP-DESTRUCTURE-")))
|
||
(loop-declare-variable name dtype)
|
||
(push (list newvar initialization) *loop-variables*)
|
||
;; *LOOP-DESETQ-CROCKS* gathered in reverse order.
|
||
(setq *loop-desetq-crocks*
|
||
(list* name newvar *loop-desetq-crocks*))
|
||
#+ignore
|
||
(loop-make-variable name nil dtype iteration-variable-p)))))
|
||
(t (let ((tcar nil) (tcdr nil))
|
||
(if (atom dtype) (setq tcar (setq tcdr dtype))
|
||
(setq tcar (car dtype) tcdr (cdr dtype)))
|
||
(loop-make-variable (car name) nil tcar iteration-variable-p)
|
||
(loop-make-variable (cdr name) nil tcdr iteration-variable-p))))
|
||
name)
|
||
|
||
|
||
(defun loop-make-iteration-variable (name initialization dtype)
|
||
(declare (si::c-local))
|
||
(loop-make-variable name initialization dtype t))
|
||
|
||
|
||
(defun loop-declare-variable (name dtype &optional (initialization nil initialization-p))
|
||
(declare (si::c-local))
|
||
(cond ((or (null name) (null dtype) (eq dtype t)) nil)
|
||
((symbolp name)
|
||
(unless (or (eq dtype t) (member (truly-the symbol name) *loop-nodeclare*))
|
||
(when (and initialization-p (constantp initialization))
|
||
(let ((init-type (type-of initialization)))
|
||
(unless (subtypep init-type dtype)
|
||
(setf dtype `(or ,dtype ,init-type)))))
|
||
;; Allow redeclaration of a variable. This can be used by
|
||
;; the loop constructors to make the type more and more
|
||
;; precise as we add keywords
|
||
(let ((previous (find name *loop-declarations*
|
||
:key #'(lambda (d)
|
||
(and (consp d)
|
||
(= (length d) 3)
|
||
(eq (cons-car d) 'type)
|
||
(third d))))))
|
||
(if previous
|
||
(setf (second previous) dtype)
|
||
(push `(type ,dtype ,name) *loop-declarations*)))))
|
||
((consp name)
|
||
;; to be on the safe side, we always assume that
|
||
;; destructuring variable bindings initialize to nil
|
||
(cond ((consp dtype)
|
||
(loop-declare-variable (car name) (car dtype) nil)
|
||
(loop-declare-variable (cdr name) (cdr dtype)))
|
||
(t (loop-declare-variable (car name) dtype nil)
|
||
(loop-declare-variable (cdr name) dtype))))
|
||
(t (error "Invalid LOOP variable passed in: ~S." name))))
|
||
|
||
|
||
(defun loop-maybe-bind-form (form data-type)
|
||
(declare (si::c-local))
|
||
(if (constantp form *loop-macro-environment*)
|
||
form
|
||
(loop-make-variable (gensym "LOOP-BIND-") form data-type)))
|
||
|
||
|
||
|
||
(defun loop-do-if (for negatep)
|
||
(let ((form (loop-get-form))
|
||
(*loop-inside-conditional* t)
|
||
(it-p nil)
|
||
(first-clause-p t))
|
||
(flet ((get-clause (for)
|
||
(do ((body nil)) (nil)
|
||
(let ((key (car *loop-source-code*)) (*loop-body* nil) data)
|
||
(cond ((not (symbolp key))
|
||
(loop-error
|
||
"~S found where keyword expected getting LOOP clause after ~S."
|
||
key for))
|
||
(t (setq *loop-source-context* *loop-source-code*)
|
||
(loop-pop-source)
|
||
(when (and (loop-tequal (car *loop-source-code*) 'it)
|
||
first-clause-p)
|
||
(setq *loop-source-code*
|
||
(cons (or it-p (setq it-p (loop-when-it-variable)))
|
||
(cdr *loop-source-code*))))
|
||
(cond ((or (not (setq data (loop-lookup-keyword
|
||
key (loop-universe-keywords *loop-universe*))))
|
||
(progn (apply (symbol-function (car data)) (cdr data))
|
||
(null *loop-body*)))
|
||
(loop-error
|
||
"~S does not introduce a LOOP clause that can follow ~S."
|
||
key for))
|
||
(t (setq body (nreconc *loop-body* body)))))))
|
||
(setq first-clause-p nil)
|
||
(if (loop-tequal (car *loop-source-code*) :and)
|
||
(loop-pop-source)
|
||
(return (if (cdr body) `(progn ,@(nreverse body)) (car body)))))))
|
||
(let ((then (get-clause for))
|
||
(else (when (loop-tequal (car *loop-source-code*) :else)
|
||
(loop-pop-source)
|
||
(list (get-clause :else)))))
|
||
(when (loop-tequal (car *loop-source-code*) :end)
|
||
(loop-pop-source))
|
||
(when it-p (setq form `(setq ,it-p ,form)))
|
||
(loop-pseudo-body
|
||
`(if ,(if negatep `(not ,form) form)
|
||
,then
|
||
,@else))))))
|
||
|
||
|
||
(defun loop-do-initially ()
|
||
(loop-disallow-conditional :initially)
|
||
(push (loop-get-progn) *loop-prologue*))
|
||
|
||
(defun loop-do-finally ()
|
||
(loop-disallow-conditional :finally)
|
||
(push (loop-get-progn) *loop-epilogue*))
|
||
|
||
(defun loop-do-do ()
|
||
(loop-emit-body (loop-get-progn)))
|
||
|
||
(defun loop-do-named ()
|
||
(let ((name (loop-pop-source)))
|
||
(unless (symbolp name)
|
||
(loop-error "~S is an invalid name for your LOOP." name))
|
||
(when (or *loop-before-loop* *loop-body* *loop-after-epilogue* *loop-inside-conditional*)
|
||
(loop-error "The NAMED ~S clause occurs too late." name))
|
||
(when *loop-names*
|
||
(loop-error "You may only use one NAMED clause in your loop: NAMED ~S ... NAMED ~S."
|
||
(car *loop-names*) name))
|
||
(setq *loop-names* (list name nil))))
|
||
|
||
(defun loop-do-return ()
|
||
(loop-emit-body (loop-construct-return (loop-get-form))))
|
||
|
||
|
||
;;;; Value Accumulation: List
|
||
|
||
|
||
(defstruct (loop-collector
|
||
#+ecl (:type vector)
|
||
#+nil (:copier nil)
|
||
#+nil (:predicate nil))
|
||
name
|
||
class
|
||
(history nil)
|
||
(tempvars nil)
|
||
dtype
|
||
(data nil)) ;collector-specific data
|
||
|
||
|
||
(defun loop-get-collection-info (collector class default-type)
|
||
(declare (si::c-local))
|
||
(let ((form (loop-get-form))
|
||
(dtype (and (not (loop-universe-ansi *loop-universe*)) (loop-optional-type)))
|
||
(name (when (loop-tequal (car *loop-source-code*) 'into)
|
||
(loop-pop-source)
|
||
(loop-pop-source))))
|
||
(when (not (symbolp name))
|
||
(loop-error "Value accumulation recipient name, ~S, is not a symbol." name))
|
||
(unless name
|
||
(loop-disallow-aggregate-booleans))
|
||
(unless dtype
|
||
(setq dtype (or (loop-optional-type) default-type)))
|
||
(let ((cruft (find (truly-the symbol name) *loop-collection-cruft*
|
||
:key #'loop-collector-name)))
|
||
(cond ((not cruft)
|
||
(when (and name (loop-variable-p name))
|
||
(loop-error "Variable ~S cannot be used in INTO clause" name))
|
||
(push (setq cruft (make-loop-collector
|
||
:name name :class class
|
||
:history (list collector) :dtype dtype))
|
||
*loop-collection-cruft*))
|
||
(t (unless (eq (loop-collector-class cruft) class)
|
||
(loop-error
|
||
"Incompatible kinds of LOOP value accumulation specified for collecting~@
|
||
~:[as the value of the LOOP~;~:*INTO ~S~]: ~S and ~S."
|
||
name (car (loop-collector-history cruft)) collector))
|
||
(unless (equal dtype (loop-collector-dtype cruft))
|
||
(loop-warn
|
||
"Unequal datatypes specified in different LOOP value accumulations~@
|
||
into ~S: ~S and ~S."
|
||
name dtype (loop-collector-dtype cruft))
|
||
(when (eq (loop-collector-dtype cruft) t)
|
||
(setf (loop-collector-dtype cruft) dtype)))
|
||
(push collector (loop-collector-history cruft))))
|
||
(values cruft form))))
|
||
|
||
|
||
(defun loop-list-collection (specifically) ;NCONC, LIST, or APPEND
|
||
(multiple-value-bind (lc form) (loop-get-collection-info specifically 'list 'list)
|
||
(let ((tempvars (loop-collector-tempvars lc)))
|
||
(unless tempvars
|
||
(setf (loop-collector-tempvars lc)
|
||
(setq tempvars (list* (gensym "LOOP-LIST-HEAD")
|
||
(gensym "LOOP-LIST-TAIL")
|
||
(and (loop-collector-name lc)
|
||
(list (loop-collector-name lc))))))
|
||
(push `(with-loop-list-collection-head ,tempvars) *loop-wrappers*)
|
||
(unless (loop-collector-name lc)
|
||
(loop-emit-final-value `(loop-collect-answer ,(car tempvars) ,@(cddr tempvars)))))
|
||
(ecase specifically
|
||
(list (setq form `(list ,form)))
|
||
(nconc nil)
|
||
(append (unless (and (consp form) (eq (car form) 'list))
|
||
(setq form `(copy-list ,form)))))
|
||
(loop-emit-body `(loop-collect-rplacd ,tempvars ,form)))))
|
||
|
||
|
||
;;;; Value Accumulation: max, min, sum, count.
|
||
|
||
|
||
|
||
(defun loop-sum-collection (specifically required-type default-type) ;SUM, COUNT
|
||
(multiple-value-bind (lc form)
|
||
(loop-get-collection-info specifically 'sum default-type)
|
||
(loop-check-data-type (loop-collector-dtype lc) required-type)
|
||
(let ((tempvars (loop-collector-tempvars lc)))
|
||
(unless tempvars
|
||
(setf (loop-collector-tempvars lc)
|
||
(setq tempvars (list (loop-make-variable
|
||
(or (loop-collector-name lc)
|
||
(gensym "LOOP-SUM-"))
|
||
nil (loop-collector-dtype lc)))))
|
||
(unless (loop-collector-name lc)
|
||
(loop-emit-final-value (car (loop-collector-tempvars lc)))))
|
||
(loop-emit-body
|
||
(if (eq specifically 'count)
|
||
`(when ,form
|
||
(setq ,(car tempvars)
|
||
(1+ ,(car tempvars))))
|
||
`(setq ,(car tempvars)
|
||
(+ ,(car tempvars)
|
||
,form)))))))
|
||
|
||
|
||
|
||
(defun loop-maxmin-collection (specifically)
|
||
(multiple-value-bind (lc form)
|
||
(loop-get-collection-info specifically 'maxmin 'real)
|
||
(loop-check-data-type (loop-collector-dtype lc) 'real)
|
||
(let ((data (loop-collector-data lc)))
|
||
(unless data
|
||
(setf (loop-collector-data lc)
|
||
(setq data (make-loop-minimax
|
||
(or (loop-collector-name lc) (gensym "LOOP-MAXMIN-"))
|
||
(loop-collector-dtype lc))))
|
||
(unless (loop-collector-name lc)
|
||
(loop-emit-final-value (loop-minimax-answer-variable data))))
|
||
(loop-note-minimax-operation specifically data)
|
||
(push `(with-minimax-value ,data) *loop-wrappers*)
|
||
(loop-emit-body `(loop-accumulate-minimax-value ,data ,specifically ,form))
|
||
)))
|
||
|
||
|
||
;;;; Value Accumulation: Aggregate Booleans
|
||
|
||
;;;ALWAYS and NEVER.
|
||
;;; Under ANSI these are not permitted to appear under conditionalization.
|
||
(defun loop-do-always (restrictive negate)
|
||
(let ((form (loop-get-form)))
|
||
(when restrictive (loop-disallow-conditional))
|
||
(loop-disallow-anonymous-collectors)
|
||
(loop-emit-body `(,(if negate 'when 'unless) ,form
|
||
,(loop-construct-return nil)))
|
||
(loop-emit-final-value t)))
|
||
|
||
|
||
|
||
;;;THERIS.
|
||
;;; Under ANSI this is not permitted to appear under conditionalization.
|
||
(defun loop-do-thereis (restrictive)
|
||
(when restrictive (loop-disallow-conditional))
|
||
(loop-disallow-anonymous-collectors)
|
||
(loop-emit-final-value)
|
||
(loop-emit-body `(when (setq ,(loop-when-it-variable) ,(loop-get-form))
|
||
,(loop-construct-return *loop-when-it-variable*))))
|
||
|
||
|
||
(defun loop-do-while (negate kwd &aux (form (loop-get-form)))
|
||
(loop-disallow-conditional kwd)
|
||
(loop-pseudo-body `(,(if negate 'when 'unless) ,form (go end-loop))))
|
||
|
||
|
||
(defun loop-do-with ()
|
||
(loop-disallow-conditional :with)
|
||
(do ((var) (val) (dtype)) (nil)
|
||
(setq var (loop-pop-source)
|
||
dtype (loop-optional-type var)
|
||
val (cond ((loop-tequal (car *loop-source-code*) :=)
|
||
(loop-pop-source)
|
||
(loop-get-form))
|
||
(t nil)))
|
||
(when (and var (loop-variable-p var))
|
||
(loop-error "Variable ~S has already been used" var))
|
||
(loop-make-variable var val dtype)
|
||
(if (loop-tequal (car *loop-source-code*) :and)
|
||
(loop-pop-source)
|
||
(return (loop-bind-block)))))
|
||
|
||
|
||
;;;; The iteration driver
|
||
|
||
(defun loop-hack-iteration (entry)
|
||
(declare (si::c-local))
|
||
(flet ((make-endtest (list-of-forms)
|
||
(cond ((null list-of-forms) nil)
|
||
((member t list-of-forms) '(go end-loop))
|
||
(t `(when ,(if (null (cdr (setq list-of-forms (nreverse list-of-forms))))
|
||
(car list-of-forms)
|
||
(cons 'or list-of-forms))
|
||
(go end-loop))))))
|
||
(do ((pre-step-tests nil)
|
||
(steps nil)
|
||
(post-step-tests nil)
|
||
(pseudo-steps nil)
|
||
(pre-loop-pre-step-tests nil)
|
||
(pre-loop-steps nil)
|
||
(pre-loop-post-step-tests nil)
|
||
(pre-loop-pseudo-steps nil)
|
||
(tem) (data))
|
||
(nil)
|
||
;; Note we collect endtests in reverse order, but steps in correct
|
||
;; order. MAKE-ENDTEST does the nreverse for us.
|
||
(setq tem (setq data (apply (symbol-function (first entry)) (rest entry))))
|
||
(and (car tem) (push (car tem) pre-step-tests))
|
||
(setq steps (nconc steps (copy-list (car (setq tem (cdr tem))))))
|
||
(and (car (setq tem (cdr tem))) (push (car tem) post-step-tests))
|
||
(setq pseudo-steps (nconc pseudo-steps (copy-list (car (setq tem (cdr tem))))))
|
||
(setq tem (cdr tem))
|
||
(when *loop-emitted-body*
|
||
(loop-error "Iteration in LOOP follows body code. This error is typically caused
|
||
by a WHILE, UNTIL or similar condition placed in between FOR, AS, and similar iterations.
|
||
Note that this is not a valid ANSI code."))
|
||
(unless tem (setq tem data))
|
||
(when (car tem) (push (car tem) pre-loop-pre-step-tests))
|
||
(setq pre-loop-steps (nconc pre-loop-steps (copy-list (car (setq tem (cdr tem))))))
|
||
(when (car (setq tem (cdr tem))) (push (car tem) pre-loop-post-step-tests))
|
||
(setq pre-loop-pseudo-steps (nconc pre-loop-pseudo-steps (copy-list (cadr tem))))
|
||
(unless (loop-tequal (car *loop-source-code*) :and)
|
||
(setq *loop-before-loop* (list* (loop-make-desetq pre-loop-pseudo-steps)
|
||
(make-endtest pre-loop-post-step-tests)
|
||
(loop-make-psetq pre-loop-steps)
|
||
(make-endtest pre-loop-pre-step-tests)
|
||
*loop-before-loop*)
|
||
*loop-after-body* (list* (loop-make-desetq pseudo-steps)
|
||
(make-endtest post-step-tests)
|
||
(loop-make-psetq steps)
|
||
(make-endtest pre-step-tests)
|
||
*loop-after-body*))
|
||
(loop-bind-block)
|
||
(return nil))
|
||
(loop-pop-source) ; flush the "AND"
|
||
(when (and (not (loop-universe-implicit-for-required *loop-universe*))
|
||
(setq tem (loop-lookup-keyword
|
||
(car *loop-source-code*)
|
||
(loop-universe-iteration-keywords *loop-universe*))))
|
||
;;Latest ANSI clarification is that the FOR/AS after the AND must NOT be supplied.
|
||
(loop-pop-source)
|
||
(setq entry tem)))))
|
||
|
||
|
||
;;;; Main Iteration Drivers
|
||
|
||
|
||
;FOR variable keyword ..args..
|
||
(defun loop-do-for ()
|
||
(let* ((var (loop-pop-source))
|
||
(data-type (loop-optional-type var))
|
||
(keyword (loop-pop-source))
|
||
(first-arg nil)
|
||
(tem nil))
|
||
(setq first-arg (loop-get-form))
|
||
(unless (and (symbolp keyword)
|
||
(setq tem (loop-lookup-keyword
|
||
keyword
|
||
(loop-universe-for-keywords *loop-universe*))))
|
||
(loop-error "~S is an unknown keyword in FOR or AS clause in LOOP." keyword))
|
||
(apply (car tem) var first-arg data-type (cdr tem))))
|
||
|
||
(defun loop-do-repeat ()
|
||
(loop-disallow-conditional :repeat)
|
||
(let* ((form (loop-get-form))
|
||
(type (if (fixnump form) 'fixnum 'real))
|
||
(var (loop-make-variable (gensym) form type))
|
||
(form `(loop-unsafe (when (minusp (decf ,var)) (go end-loop)))))
|
||
(push form *loop-before-loop*)
|
||
(push form *loop-after-body*)
|
||
;; FIXME: What should
|
||
;; (loop count t into a
|
||
;; repeat 3
|
||
;; count t into b
|
||
;; finally (return (list a b)))
|
||
;; return: (3 3) or (4 3)? PUSHes above are for the former
|
||
;; variant, L-P-B below for the latter.
|
||
#+nil (loop-pseudo-body form)))
|
||
|
||
(defun loop-when-it-variable ()
|
||
(declare (si::c-local))
|
||
(or *loop-when-it-variable*
|
||
(setq *loop-when-it-variable*
|
||
(loop-make-variable (gensym "LOOP-IT-") nil nil))))
|
||
|
||
|
||
;;;; Various FOR/AS Subdispatches
|
||
|
||
|
||
;;;ANSI "FOR x = y [THEN z]" is sort of like the old Genera one when the THEN
|
||
;;; is omitted (other than being more stringent in its placement), and like
|
||
;;; the old "FOR x FIRST y THEN z" when the THEN is present. I.e., the first
|
||
;;; initialization occurs in the loop body (first-step), not in the variable binding
|
||
;;; phase.
|
||
(defun loop-ansi-for-equals (var val data-type)
|
||
(loop-make-iteration-variable var nil data-type)
|
||
(cond ((loop-tequal (car *loop-source-code*) :then)
|
||
;;Then we are the same as "FOR x FIRST y THEN z".
|
||
(loop-pop-source)
|
||
`(() (,var ,(loop-get-form)) () ()
|
||
() (,var ,val) () ()))
|
||
(t ;;We are the same as "FOR x = y".
|
||
`(() (,var ,val) () ()))))
|
||
|
||
|
||
(defun loop-for-across (var val data-type)
|
||
(loop-make-iteration-variable var nil data-type)
|
||
(let ((vector-var (gensym "LOOP-ACROSS-VECTOR-"))
|
||
(index-var (gensym "LOOP-ACROSS-INDEX-")))
|
||
(multiple-value-bind (vector-form constantp vector-value)
|
||
(loop-constant-fold-if-possible val 'vector)
|
||
(loop-make-variable
|
||
vector-var vector-form
|
||
(if (and (consp vector-form) (eq (car vector-form) 'the))
|
||
(cadr vector-form)
|
||
'vector))
|
||
(loop-make-variable index-var 0 'fixnum)
|
||
(let* ((length 0)
|
||
(length-form (cond ((not constantp)
|
||
(let ((v (gensym "LOOP-ACROSS-LIST")))
|
||
(push `(setq ,v (length ,vector-var)) *loop-prologue*)
|
||
(loop-make-variable v 0 'fixnum)))
|
||
(t (setq length (length vector-value)))))
|
||
(first-test `(>= ,index-var ,length-form))
|
||
(other-test first-test)
|
||
(step `(,var (aref ,vector-var ,index-var)))
|
||
(pstep `(,index-var (1+ ,index-var))))
|
||
(declare (fixnum length))
|
||
(when constantp
|
||
(setq first-test (= length 0))
|
||
(when (<= length 1)
|
||
(setq other-test t)))
|
||
`(,other-test ,step () ,pstep
|
||
,@(and (not (eq first-test other-test)) `(,first-test ,step () ,pstep)))))))
|
||
|
||
|
||
|
||
;;;; List Iteration
|
||
|
||
|
||
(defun loop-list-step (listvar)
|
||
(declare (si::c-local))
|
||
;;We are not equipped to analyze whether 'FOO is the same as #'FOO here in any
|
||
;; sensible fashion, so let's give an obnoxious warning whenever 'FOO is used
|
||
;; as the stepping function.
|
||
;;While a Discerning Compiler may deal intelligently with (funcall 'foo ...), not
|
||
;; recognizing FOO may defeat some LOOP optimizations.
|
||
(let ((stepper (cond ((loop-tequal (car *loop-source-code*) :by)
|
||
(loop-pop-source)
|
||
(loop-get-form))
|
||
(t '(function cons-cdr)))))
|
||
(cond ((and (consp stepper) (eq (car stepper) 'quote))
|
||
(loop-warn "Use of QUOTE around stepping function in LOOP will be left verbatim.")
|
||
(values `(funcall ,stepper ,listvar) nil))
|
||
((and (consp stepper) (eq (car stepper) 'function))
|
||
(values (list (cadr stepper) listvar) (cadr stepper)))
|
||
(t (values `(funcall ,(loop-make-variable (gensym "LOOP-FN") stepper 'function)
|
||
,listvar)
|
||
nil)))))
|
||
|
||
|
||
(defun loop-for-on (var val data-type)
|
||
(multiple-value-bind (list constantp list-value)
|
||
(loop-constant-fold-if-possible val)
|
||
(let ((listvar var))
|
||
(cond ((and var (symbolp var))
|
||
(loop-make-iteration-variable var list data-type))
|
||
(t
|
||
;; using data type 'list for listvar can lead to errors for dotted lists
|
||
(loop-make-variable (setq listvar (gensym)) list nil)
|
||
(loop-make-iteration-variable var nil data-type)))
|
||
(let ((list-step (loop-list-step listvar)))
|
||
(let* ((first-endtest
|
||
;; mysterious comment from original CMU CL sources:
|
||
;; the following should use `atom' instead of `endp', per
|
||
;; [bug2428]
|
||
`(atom ,listvar))
|
||
(other-endtest first-endtest))
|
||
(when (and constantp (listp list-value))
|
||
(setq first-endtest (null list-value)))
|
||
(cond ((eq var listvar)
|
||
;; The contour of the loop is different because we
|
||
;; use the user's variable...
|
||
`(() (,listvar ,list-step)
|
||
,other-endtest () () () ,first-endtest ()))
|
||
(t (let ((step `(,var ,listvar))
|
||
(pseudo `(,listvar ,list-step)))
|
||
`(,other-endtest ,step () ,pseudo
|
||
,@(and (not (eq first-endtest other-endtest))
|
||
`(,first-endtest ,step () ,pseudo)))))))))))
|
||
|
||
|
||
(defun loop-for-in (var val data-type)
|
||
(multiple-value-bind (list constantp list-value)
|
||
(loop-constant-fold-if-possible val)
|
||
(let ((listvar (gensym "LOOP-LIST")))
|
||
(loop-make-iteration-variable var nil data-type)
|
||
(loop-make-variable listvar list 'list)
|
||
(let ((list-step (loop-list-step listvar)))
|
||
(let* ((first-endtest `(endp ,listvar))
|
||
(other-endtest first-endtest)
|
||
(step `(,var (cons-car ,listvar)))
|
||
(pseudo-step `(,listvar ,list-step)))
|
||
(when (and constantp (listp list-value))
|
||
(setq first-endtest (null list-value)))
|
||
`(,other-endtest ,step () ,pseudo-step
|
||
,@(and (not (eq first-endtest other-endtest))
|
||
`(,first-endtest ,step () ,pseudo-step))))))))
|
||
|
||
|
||
;;;; Iteration Paths
|
||
|
||
|
||
(defstruct (loop-path
|
||
#+ecl (:type vector)
|
||
#+nil (:copier nil)
|
||
#+nil (:predicate nil))
|
||
names
|
||
preposition-groups
|
||
inclusive-permitted
|
||
function
|
||
user-data)
|
||
|
||
|
||
(defun add-loop-path (names function universe &key preposition-groups inclusive-permitted user-data)
|
||
(declare (si::c-local))
|
||
(unless (listp names)
|
||
(setq names (list names)))
|
||
(let ((ht (loop-universe-path-keywords universe))
|
||
(lp (make-loop-path
|
||
:names (mapcar #'symbol-name names)
|
||
:function function
|
||
:user-data user-data
|
||
:preposition-groups (mapcar #'(lambda (x) (if (listp x) x (list x))) preposition-groups)
|
||
:inclusive-permitted inclusive-permitted)))
|
||
(dolist (name names) (setf (gethash (symbol-name name) ht) lp))
|
||
lp))
|
||
|
||
|
||
;;; Note: path functions are allowed to use loop-make-variable, hack
|
||
;;; the prologue, etc.
|
||
(defun loop-for-being (var val data-type)
|
||
;; FOR var BEING each/the pathname prep-phrases using-stuff...
|
||
;; each/the = EACH or THE. Not clear if it is optional, so I guess we'll warn.
|
||
(let ((path nil)
|
||
(data nil)
|
||
(inclusive nil)
|
||
(stuff nil)
|
||
(initial-prepositions nil))
|
||
(cond ((loop-tmember val '(:each :the)) (setq path (loop-pop-source)))
|
||
((loop-tequal (car *loop-source-code*) :and)
|
||
(loop-pop-source)
|
||
(setq inclusive t)
|
||
(unless (loop-tmember (car *loop-source-code*) '(:its :each :his :her))
|
||
(loop-error "~S found where ITS or EACH expected in LOOP iteration path syntax."
|
||
(car *loop-source-code*)))
|
||
(loop-pop-source)
|
||
(setq path (loop-pop-source))
|
||
(setq initial-prepositions `((:in ,val))))
|
||
(t (loop-error "Unrecognizable LOOP iteration path syntax. Missing EACH or THE?")))
|
||
(cond ((not (symbolp path))
|
||
(loop-error "~S found where a LOOP iteration path name was expected." path))
|
||
((not (setq data (loop-lookup-keyword path (loop-universe-path-keywords *loop-universe*))))
|
||
(loop-error "~S is not the name of a LOOP iteration path." path))
|
||
((and inclusive (not (loop-path-inclusive-permitted data)))
|
||
(loop-error "\"Inclusive\" iteration is not possible with the ~S LOOP iteration path." path)))
|
||
(let ((fun (loop-path-function data))
|
||
(preps (nconc initial-prepositions
|
||
(loop-collect-prepositional-phrases (loop-path-preposition-groups data) t)))
|
||
(user-data (loop-path-user-data data)))
|
||
(when (symbolp fun) (setq fun (symbol-function fun)))
|
||
(setq stuff (if inclusive
|
||
(apply fun var data-type preps :inclusive t user-data)
|
||
(apply fun var data-type preps user-data))))
|
||
(when *loop-named-variables*
|
||
(loop-error "Unused USING variables: ~S." *loop-named-variables*))
|
||
;; STUFF is now (bindings prologue-forms . stuff-to-pass-back). Protect the system from the user
|
||
;; and the user from himself.
|
||
(unless (member (length stuff) '(6 10))
|
||
(loop-error "Value passed back by LOOP iteration path function for path ~S has invalid length."
|
||
path))
|
||
(do ((l (car stuff) (cdr l)) (x)) ((null l))
|
||
(if (atom (setq x (car l)))
|
||
(loop-make-iteration-variable x nil nil)
|
||
(loop-make-iteration-variable (car x) (cadr x) (caddr x))))
|
||
(setq *loop-prologue* (nconc (reverse (cadr stuff)) *loop-prologue*))
|
||
(cddr stuff)))
|
||
|
||
|
||
|
||
;;;INTERFACE: Lucid, exported.
|
||
;;; i.e., this is part of our extended ansi-loop interface.
|
||
(defun loop-named-var (name)
|
||
(declare (si::c-local))
|
||
(let ((tem (loop-tassoc name *loop-named-variables*)))
|
||
(declare (list tem))
|
||
(cond ((null tem) (values (gensym) nil))
|
||
(t (setq *loop-named-variables* (delete tem *loop-named-variables*))
|
||
(values (cdr tem) t)))))
|
||
|
||
|
||
(defun loop-collect-prepositional-phrases (preposition-groups &optional USING-allowed initial-phrases)
|
||
(declare (si::c-local))
|
||
(flet ((in-group-p (x group) (car (loop-tmember x group))))
|
||
(do ((token nil)
|
||
(prepositional-phrases initial-phrases)
|
||
(this-group nil nil)
|
||
(this-prep nil nil)
|
||
(disallowed-prepositions
|
||
(mapcan #'(lambda (x)
|
||
(copy-list
|
||
(find (car x) preposition-groups :test #'in-group-p)))
|
||
initial-phrases))
|
||
(used-prepositions (mapcar #'car initial-phrases)))
|
||
((null *loop-source-code*) (nreverse prepositional-phrases))
|
||
(declare (symbol this-prep))
|
||
(setq token (car *loop-source-code*))
|
||
(dolist (group preposition-groups)
|
||
(when (setq this-prep (in-group-p token group))
|
||
(return (setq this-group group))))
|
||
(cond (this-group
|
||
(when (member this-prep disallowed-prepositions)
|
||
(loop-error
|
||
(if (member this-prep used-prepositions)
|
||
"A ~S prepositional phrase occurs multiply for some LOOP clause."
|
||
"Preposition ~S used when some other preposition has subsumed it.")
|
||
token))
|
||
(setq used-prepositions (if (listp this-group)
|
||
(append this-group used-prepositions)
|
||
(cons this-group used-prepositions)))
|
||
(loop-pop-source)
|
||
(push (list this-prep (loop-get-form)) prepositional-phrases))
|
||
((and USING-allowed (loop-tequal token 'using))
|
||
(loop-pop-source)
|
||
(do ((z (loop-pop-source) (loop-pop-source)) (tem)) (nil)
|
||
(when (cadr z)
|
||
(if (setq tem (loop-tassoc (car z) *loop-named-variables*))
|
||
(loop-error
|
||
"The variable substitution for ~S occurs twice in a USING phrase,~@
|
||
with ~S and ~S."
|
||
(car z) (cadr z) (cadr tem))
|
||
(push (cons (car z) (cadr z)) *loop-named-variables*)))
|
||
(when (or (null *loop-source-code*) (symbolp (car *loop-source-code*)))
|
||
(return nil))))
|
||
(t (return (nreverse prepositional-phrases)))))))
|
||
|
||
|
||
;;;; Master Sequencer Function
|
||
|
||
(defun loop-sequencer (indexv indexv-type indexv-user-specified-p
|
||
variable variable-type
|
||
sequence-variable sequence-type
|
||
step-hack default-top
|
||
prep-phrases)
|
||
(declare (si::c-local)
|
||
(ignore indexv-user-specified-p))
|
||
(let ((endform nil) ;Form (constant or variable) with limit value.
|
||
(sequencep nil) ;T if sequence arg has been provided.
|
||
(testfn nil) ;endtest function
|
||
(test nil) ;endtest form.
|
||
(stepby (1+ (or (loop-typed-init indexv-type) 0))) ;Our increment.
|
||
(stepby-constantp t)
|
||
(step nil) ;step form.
|
||
(dir nil) ;Direction of stepping: NIL, :UP, :DOWN.
|
||
(inclusive-iteration nil) ;T if include last index.
|
||
(start-given nil) ;T when prep phrase has specified start
|
||
(start-value nil)
|
||
(start-constantp nil)
|
||
(limit-given nil) ;T when prep phrase has specified end
|
||
(limit-constantp nil)
|
||
(limit-value nil)
|
||
)
|
||
(when variable (loop-make-iteration-variable variable nil variable-type))
|
||
(do ((l prep-phrases (cdr l)) (prep) (form) (odir)) ((null l))
|
||
(setq prep (caar l) form (cadar l))
|
||
(case prep
|
||
((:of :in)
|
||
(setq sequencep t)
|
||
(loop-make-variable sequence-variable form sequence-type))
|
||
((:from :downfrom :upfrom)
|
||
(setq start-given t)
|
||
(cond ((eq prep :downfrom) (setq dir ':down))
|
||
((eq prep :upfrom) (setq dir ':up)))
|
||
(multiple-value-setq (form start-constantp start-value)
|
||
(loop-constant-fold-if-possible form indexv-type))
|
||
(loop-make-iteration-variable indexv form indexv-type))
|
||
((:upto :to :downto :above :below)
|
||
(cond ((loop-tequal prep :upto) (setq inclusive-iteration (setq dir ':up)))
|
||
((loop-tequal prep :to) (setq inclusive-iteration t))
|
||
((loop-tequal prep :downto) (setq inclusive-iteration (setq dir ':down)))
|
||
((loop-tequal prep :above) (setq dir ':down))
|
||
((loop-tequal prep :below) (setq dir ':up)))
|
||
(setq limit-given t)
|
||
(multiple-value-setq (form limit-constantp limit-value)
|
||
(loop-constant-fold-if-possible form indexv-type))
|
||
(setq endform (if limit-constantp
|
||
`',limit-value
|
||
(loop-make-variable
|
||
(gensym "LOOP-LIMIT") form indexv-type))))
|
||
(:by
|
||
(multiple-value-setq (form stepby-constantp stepby)
|
||
(loop-constant-fold-if-possible form indexv-type))
|
||
(unless stepby-constantp
|
||
(loop-make-variable (setq stepby (gensym "LOOP-STEP-BY")) form indexv-type)))
|
||
(t (loop-error
|
||
"~S invalid preposition in sequencing or sequence path.~@
|
||
Invalid prepositions specified in iteration path descriptor or something?"
|
||
prep)))
|
||
(when (and odir dir (not (eq dir odir)))
|
||
(loop-error "Conflicting stepping directions in LOOP sequencing path"))
|
||
(setq odir dir))
|
||
(when (and sequence-variable (not sequencep))
|
||
(loop-error "Missing OF or IN phrase in sequence path"))
|
||
;; Now fill in the defaults.
|
||
(unless start-given
|
||
(loop-make-iteration-variable
|
||
indexv
|
||
(setq start-constantp t start-value (or (loop-typed-init indexv-type) 0))
|
||
indexv-type))
|
||
(cond ((member dir '(nil :up))
|
||
(when (or limit-given default-top)
|
||
(unless limit-given
|
||
(loop-make-variable (setq endform (gensym "LOOP-SEQ-LIMIT-"))
|
||
nil indexv-type)
|
||
(push `(setq ,endform ,default-top) *loop-prologue*))
|
||
(setq testfn (if inclusive-iteration '> '>=)))
|
||
(setq step (if (eql stepby 1) `(1+ ,indexv) `(+ ,indexv ,stepby))))
|
||
(t (unless start-given
|
||
(unless default-top
|
||
(loop-error "Don't know where to start stepping."))
|
||
(push `(setq ,indexv (1- ,default-top)) *loop-prologue*))
|
||
(when (and default-top (not endform))
|
||
(setq endform (loop-typed-init indexv-type) inclusive-iteration t))
|
||
(when endform (setq testfn (if inclusive-iteration '< '<=)))
|
||
(setq step (if (eql stepby 1) `(1- ,indexv) `(- ,indexv ,stepby)))))
|
||
(setq step `(loop-unsafe ,step))
|
||
(when testfn
|
||
(setq test `(,testfn ,indexv ,endform)))
|
||
(when step-hack
|
||
(setq step-hack `(,variable ,step-hack)))
|
||
(let ((first-test test) (remaining-tests test))
|
||
(when (and stepby-constantp start-constantp)
|
||
;; We can make the number type more precise when we know the
|
||
;; start, end and step values.
|
||
(let ((new-type (typecase (+ start-value stepby)
|
||
(integer (if (and (fixnump start-value)
|
||
limit-constantp
|
||
(< limit-value most-positive-fixnum)
|
||
(> limit-value most-negative-fixnum))
|
||
'fixnum
|
||
'integer))
|
||
(single-float 'single-float)
|
||
(double-float 'double-float)
|
||
(long-float 'long-float)
|
||
(short-float 'short-float)
|
||
(t indexv-type))))
|
||
(unless (subtypep (type-of start-value) new-type)
|
||
;; The start type may not be a subtype of the type during
|
||
;; iteration. Happens e.g. when stepping a fixnum start
|
||
;; value by a float.
|
||
(setf new-type `(or ,(type-of start-value) ,new-type)))
|
||
(unless (subtypep indexv-type new-type)
|
||
(loop-declare-variable indexv new-type)))
|
||
(when (and limit-constantp
|
||
(setq first-test (funcall (symbol-function testfn)
|
||
start-value
|
||
limit-value)))
|
||
(setq remaining-tests t)))
|
||
`(() (,indexv ,step) ,remaining-tests ,step-hack
|
||
() () ,first-test ,step-hack))))
|
||
|
||
|
||
;;;; Interfaces to the Master Sequencer
|
||
|
||
|
||
|
||
(defun loop-for-arithmetic (var val data-type kwd)
|
||
(unless var
|
||
(setf var (gensym)))
|
||
(loop-sequencer
|
||
var (loop-check-data-type data-type 'number) t
|
||
nil nil nil nil nil nil
|
||
(loop-collect-prepositional-phrases
|
||
'((:from :upfrom :downfrom) (:to :upto :downto :above :below) (:by))
|
||
nil (list (list kwd val)))))
|
||
|
||
|
||
;;;; Builtin LOOP Iteration Paths
|
||
|
||
|
||
#||
|
||
(loop for v being the hash-values of ht do (print v))
|
||
(loop for k being the hash-keys of ht do (print k))
|
||
(loop for v being the hash-values of ht using (hash-key k) do (print (list k v)))
|
||
(loop for k being the hash-keys of ht using (hash-value v) do (print (list k v)))
|
||
||#
|
||
|
||
(defun loop-hash-table-iteration-path (variable data-type prep-phrases &key which)
|
||
(check-type which (member hash-key hash-value))
|
||
(cond ((or (cdr prep-phrases) (not (member (caar prep-phrases) '(:in :of))))
|
||
(loop-error "Too many prepositions!"))
|
||
((null prep-phrases) (loop-error "Missing OF or IN in ~S iteration path.")))
|
||
(let ((ht-var (gensym "LOOP-HASHTAB-"))
|
||
(next-fn (gensym "LOOP-HASHTAB-NEXT-"))
|
||
(dummy-predicate-var nil)
|
||
(post-steps nil))
|
||
(multiple-value-bind (other-var other-p)
|
||
(loop-named-var (if (eq which 'hash-key) 'hash-value 'hash-key))
|
||
;; @@@@ LOOP-NAMED-VAR returns a second value of T if the name
|
||
;; was actually specified, so clever code can throw away the
|
||
;; GENSYM'ed-up variable if it isn't really needed. The
|
||
;; following is for those implementations in which we cannot put
|
||
;; dummy NILs into MULTIPLE-VALUE-SETQ variable lists.
|
||
(setq other-p t
|
||
dummy-predicate-var (loop-when-it-variable))
|
||
(let* ((key-var nil)
|
||
(val-var nil)
|
||
(temp-val-var (gensym "LOOP-HASH-VAL-TEMP-"))
|
||
(temp-key-var (gensym "LOOP-HASH-KEY-TEMP-"))
|
||
(temp-predicate-var (gensym "LOOP-HASH-PREDICATE-VAR-"))
|
||
(variable (or variable (gensym)))
|
||
(bindings `((,variable nil ,data-type)
|
||
(,ht-var ,(cadar prep-phrases))
|
||
,@(and other-p other-var `((,other-var nil))))))
|
||
(if (eq which 'hash-key)
|
||
(setq key-var variable val-var (and other-p other-var))
|
||
(setq key-var (and other-p other-var) val-var variable))
|
||
(push `(with-hash-table-iterator (,next-fn ,ht-var)) *loop-wrappers*)
|
||
(when (consp key-var)
|
||
(setq post-steps `(,key-var ,(setq key-var (gensym "LOOP-HASH-KEY-TEMP-"))
|
||
,@post-steps))
|
||
(push `(,key-var nil) bindings))
|
||
(when (consp val-var)
|
||
(setq post-steps `(,val-var ,(setq val-var (gensym "LOOP-HASH-VAL-TEMP-"))
|
||
,@post-steps))
|
||
(push `(,val-var nil) bindings))
|
||
`(,bindings ;bindings
|
||
() ;prologue
|
||
() ;pre-test
|
||
() ;parallel steps
|
||
(not
|
||
(multiple-value-bind (,temp-predicate-var ,temp-key-var ,temp-val-var)
|
||
(,next-fn)
|
||
;; We use M-V-BIND instead of M-V-SETQ because we only
|
||
;; want to assign values to the key and val vars when we
|
||
;; are in the hash table. When we reach the end,
|
||
;; TEMP-PREDICATE-VAR is NIL, and so are temp-key-var and
|
||
;; temp-val-var. This might break any type declarations
|
||
;; on the key and val vars.
|
||
(when ,temp-predicate-var
|
||
(setq ,val-var ,temp-val-var)
|
||
(setq ,key-var ,temp-key-var))
|
||
(setq ,dummy-predicate-var ,temp-predicate-var)
|
||
)) ;post-test
|
||
,post-steps)))))
|
||
|
||
|
||
(defun loop-package-symbols-iteration-path (variable data-type prep-phrases &key symbol-types)
|
||
(cond ((and prep-phrases (cdr prep-phrases))
|
||
(loop-error "Too many prepositions!"))
|
||
((and prep-phrases (not (member (caar prep-phrases) '(:in :of))))
|
||
(loop-error "Unknow preposition ~S" (caar prep-phrases))))
|
||
(unless (symbolp variable)
|
||
(loop-error "Destructuring is not valid for package symbol iteration."))
|
||
(let ((pkg-var (gensym "LOOP-PKGSYM-"))
|
||
(next-fn (gensym "LOOP-PKGSYM-NEXT-"))
|
||
(variable (or variable (gensym)))
|
||
(pkg (or (cadar prep-phrases) '*package*)))
|
||
(push `(with-package-iterator (,next-fn ,pkg-var ,@symbol-types)) *loop-wrappers*)
|
||
`(((,variable nil ,data-type) (,pkg-var ,pkg))
|
||
()
|
||
()
|
||
()
|
||
(not (multiple-value-setq (,(progn
|
||
;;@@@@ If an implementation can get away without actually
|
||
;; using a variable here, so much the better.
|
||
(loop-when-it-variable))
|
||
,variable)
|
||
(,next-fn)))
|
||
())))
|
||
|
||
;;;; ANSI Loop
|
||
|
||
(defun make-ansi-loop-universe (extended-p)
|
||
(declare (si::c-local))
|
||
(let ((w (make-standard-loop-universe
|
||
:keywords '((named (loop-do-named))
|
||
(initially (loop-do-initially))
|
||
(finally (loop-do-finally))
|
||
(do (loop-do-do))
|
||
(doing (loop-do-do))
|
||
(return (loop-do-return))
|
||
(collect (loop-list-collection list))
|
||
(collecting (loop-list-collection list))
|
||
(append (loop-list-collection append))
|
||
(appending (loop-list-collection append))
|
||
(nconc (loop-list-collection nconc))
|
||
(nconcing (loop-list-collection nconc))
|
||
(count (loop-sum-collection count real fixnum))
|
||
(counting (loop-sum-collection count real fixnum))
|
||
(sum (loop-sum-collection sum number number))
|
||
(summing (loop-sum-collection sum number number))
|
||
(maximize (loop-maxmin-collection max))
|
||
(minimize (loop-maxmin-collection min))
|
||
(maximizing (loop-maxmin-collection max))
|
||
(minimizing (loop-maxmin-collection min))
|
||
(always (loop-do-always t nil)) ; Normal, do always
|
||
(never (loop-do-always t t)) ; Negate the test on always.
|
||
(thereis (loop-do-thereis t))
|
||
(while (loop-do-while nil :while)) ; Normal, do while
|
||
(until (loop-do-while t :until)) ; Negate the test on while
|
||
(when (loop-do-if when nil)) ; Normal, do when
|
||
(if (loop-do-if if nil)) ; synonymous
|
||
(unless (loop-do-if unless t)) ; Negate the test on when
|
||
(with (loop-do-with))
|
||
(repeat (loop-do-repeat)))
|
||
:for-keywords '((= (loop-ansi-for-equals))
|
||
(across (loop-for-across))
|
||
(in (loop-for-in))
|
||
(on (loop-for-on))
|
||
(from (loop-for-arithmetic :from))
|
||
(downfrom (loop-for-arithmetic :downfrom))
|
||
(upfrom (loop-for-arithmetic :upfrom))
|
||
(below (loop-for-arithmetic :below))
|
||
(above (loop-for-arithmetic :above))
|
||
(to (loop-for-arithmetic :to))
|
||
(upto (loop-for-arithmetic :upto))
|
||
(downto (loop-for-arithmetic :downto))
|
||
(by (loop-for-arithmetic :by))
|
||
(being (loop-for-being)))
|
||
:iteration-keywords '((for (loop-do-for))
|
||
(as (loop-do-for)))
|
||
:type-symbols '(array atom bignum bit bit-vector character compiled-function
|
||
complex cons double-float fixnum float
|
||
function hash-table integer keyword list long-float
|
||
nil null number package pathname random-state
|
||
ratio rational readtable sequence short-float
|
||
simple-array simple-bit-vector simple-string
|
||
simple-vector single-float standard-char
|
||
stream string base-char
|
||
symbol t vector)
|
||
:type-keywords nil
|
||
:ansi (if extended-p :extended t))))
|
||
(add-loop-path '(hash-key hash-keys) 'loop-hash-table-iteration-path w
|
||
:preposition-groups '((:of :in))
|
||
:inclusive-permitted nil
|
||
:user-data '(:which hash-key))
|
||
(add-loop-path '(hash-value hash-values) 'loop-hash-table-iteration-path w
|
||
:preposition-groups '((:of :in))
|
||
:inclusive-permitted nil
|
||
:user-data '(:which hash-value))
|
||
(add-loop-path '(symbol symbols) 'loop-package-symbols-iteration-path w
|
||
:preposition-groups '((:of :in))
|
||
:inclusive-permitted nil
|
||
:user-data '(:symbol-types (:internal :external :inherited)))
|
||
(add-loop-path '(external-symbol external-symbols) 'loop-package-symbols-iteration-path w
|
||
:preposition-groups '((:of :in))
|
||
:inclusive-permitted nil
|
||
:user-data '(:symbol-types (:external)))
|
||
(add-loop-path '(present-symbol present-symbols) 'loop-package-symbols-iteration-path w
|
||
:preposition-groups '((:of :in))
|
||
:inclusive-permitted nil
|
||
:user-data '(:symbol-types (:internal :external)))
|
||
w))
|
||
|
||
|
||
(defparameter *loop-ansi-universe*
|
||
(make-ansi-loop-universe nil))
|
||
|
||
|
||
(defun loop-standard-expansion (keywords-and-forms environment universe)
|
||
(declare (si::c-local))
|
||
(if (and keywords-and-forms (symbolp (car keywords-and-forms)))
|
||
(loop-translate keywords-and-forms environment universe)
|
||
(let ((tag (gensym)))
|
||
`(block nil (tagbody ,tag (progn ,@keywords-and-forms) (go ,tag))))))
|
||
|
||
|
||
;;;INTERFACE: ANSI
|
||
(defmacro loop (&environment env &rest keywords-and-forms)
|
||
(loop-standard-expansion keywords-and-forms env *loop-ansi-universe*))
|