1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
;;; CMPMULT Multiple-value-call and Multiple-value-prog1.
;;;
;; Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
;; This file is part of GNU Common Lisp, herein referred to as GCL
;;
;; GCL is free software; you can redistribute it and/or modify it under
;; the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; GCL is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
;; License for more details.
;;
;; You should have received a copy of the GNU Library General Public License
;; along with GCL; see the file COPYING. If not, write to the Free Software
;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
(in-package :compiler)
(si:putprop 'multiple-value-call 'c1multiple-value-call 'c1special)
(si:putprop 'multiple-value-call 'c2multiple-value-call 'c2)
(si:putprop 'multiple-value-prog1 'c1multiple-value-prog1 'c1special)
(si:putprop 'multiple-value-prog1 'c2multiple-value-prog1 'c2)
(si:putprop 'values 'c1values 'c1)
(si:putprop 'values 'c2values 'c2)
(si:putprop 'multiple-value-setq 'c1multiple-value-setq 'c1)
(si:putprop 'multiple-value-setq 'c2multiple-value-setq 'c2)
(si:putprop 'multiple-value-bind 'c1multiple-value-bind 'c1)
(si:putprop 'multiple-value-bind 'c2multiple-value-bind 'c2)
(defun c1multiple-value-call (args &aux info funob)
(when (endp args) (too-few-args 'multiple-value-call 1 0))
(cond ((endp (cdr args)) (c1funcall args))
(t (setq funob (c1funob (car args)))
(setq info (copy-info (cadr funob)))
(setq args (c1args (cdr args) info))
(list 'multiple-value-call info funob args)))
)
(defun c2multiple-value-call (funob forms &aux (*vs* *vs*) loc top sup)
(cond ((endp (cdr forms))
(setq loc (save-funob funob))
(let ((*value-to-go* 'top)) (c2expr* (car forms)))
(c2funcall funob 'args-pushed loc))
(t
(setq top (next-cvar))
(setq sup (next-cvar))
(setq loc (save-funob funob))
(base-used)
;; Add (sup .var) handling in unwind-exit -- in
;; c2multiple-value-prog1 and c2-multiple-value-call, apparently
;; alone, c2expr-top is used to evaluate arguments, presumably to
;; preserve certain states of the value stack for the purposes of
;; retrieving the final results. c2exprt-top rebinds sup, and
;; vs_top in turn to the new sup, causing non-local exits to lose
;; the true top of the stack vital for subsequent function
;; evaluations. We unwind this stack supremum variable change here
;; when necessary. CM 20040301
(wt-nl "{object *V" top "=base+" *vs* ",*V" sup "=sup;")
(dolist** (form forms)
(let ((*value-to-go* 'top)
(*unwind-exit* (cons (cons 'sup sup) *unwind-exit*)))
(c2expr-top* form top))
(wt-nl "while(vs_base<vs_top)")
(wt-nl "{V" top "[0]=vs_base[0];V" top "++;vs_base++;}"))
(wt-nl "vs_base=base+" *vs* ";vs_top=V" top ";sup=V" sup ";")
(c2funcall funob 'args-pushed loc)
(wt "}")))
)
(defun c1multiple-value-prog1 (args &aux (info (make-info)) form)
(when (endp args) (too-few-args 'multiple-value-prog1 1 0))
(setq form (c1expr* (car args) info))
(setq args (c1args (cdr args) info))
(list 'multiple-value-prog1 info form args)
)
;; We may record information here when *value-to-go* = 'top
(defvar *top-data* nil)
(defun c2multiple-value-prog1 (form forms &aux (base (next-cvar))
(top (next-cvar))
(sup (next-cvar))
top-data)
(let ((*value-to-go* 'top)
*top-data* )
(c2expr* form)
(setq top-data *top-data*))
;; Add (sup .var) handling in unwind-exit -- in
;; c2multiple-value-prog1 and c2-multiple-value-call, apparently
;; alone, c2expr-top is used to evaluate arguments, presumably to
;; preserve certain states of the value stack for the purposes of
;; retrieving the final results. c2exprt-top rebinds sup, and
;; vs_top in turn to the new sup, causing non-local exits to lose
;; the true top of the stack vital for subsequent function
;; evaluations. We unwind this stack supremum variable change here
;; when necessary. CM 20040301
(wt-nl "{object *V" top "=vs_top,*V" base "=vs_base,*V" sup "=sup;")
(wt-nl "vs_base=V" top ";")
(dolist** (form forms)
(let ((*value-to-go* 'trash)
(*unwind-exit* (cons (cons 'sup sup) *unwind-exit*)))
(c2expr-top* form top)))
(wt-nl "vs_base=V" base ";vs_top=V" top ";sup=V" sup ";}")
(unwind-exit 'fun-val nil (if top-data (car top-data)))
)
(defun c1values (args &aux (info (make-info))(s (si::sgen "VALUES")))
(cond ((and args (not (cdr args)))
(c1expr `(let ((,s ,(car args))) ,s)))
(t (setq args (c1args args info))
(list 'values info args))))
(defun c2values (forms &aux (base *vs*) (*vs* *vs*))
(cond ((and (eq *value-to-go* 'return-object)
(cdr forms)
(consp *current-form*)
(eq 'defun (car *current-form*)))
(cmpwarn "Trying to return multiple values. ~%;But ~a was proclaimed to have single value.~%;Only first one will assured."
(cadr *current-form*))))
(cond ((null forms)
(wt-nl "vs_base=vs_top=base+" base ";")
(base-used)
(wt-nl "vs_base[0]=Cnil;"))
(t
(dolist** (form forms)
(let ((*value-to-go* (list 'vs (vs-push)))) (c2expr* form)))
(wt-nl "vs_top=(vs_base=base+" base ")+" (- *vs* base) ";")
(base-used)))
(unwind-exit 'fun-val nil (cons 'values (length forms))))
(defun c1multiple-value-setq (args &aux (info (make-info)) (vrefs nil))
(when (or (endp args) (endp (cdr args)))
(too-few-args 'multiple-value-setq 2 0))
(unless (endp (cddr args))
(too-many-args 'multiple-value-setq 2 (length args)))
(dolist (var (car args))
(cmpck (not (symbolp var)) "The variable ~s is not a symbol." var)
(cmpck (constantp var)
"The constant ~s is being assigned a value." var)
(setq var (c1vref var))
(push var vrefs)
(push-changed (car var) info)
)
(list 'multiple-value-setq info (nreverse vrefs) (c1expr* (cadr args) info))
)
(defun multiple-value-check (vrefs form)
(and (cdr vrefs)
(eq (car form) 'call-global)
(let ((fname (third form)))
(cond ((and (symbolp fname)
(let ((tem (get fname 'proclaimed-return-type)))
(and tem
;; proclaimed to have 1 arg:
(consp tem)
(not (equal tem '(*)))
(null (cdr tem)))))
(cmpwarn "~A was proclaimed to have only one return value. ~%;But you appear to want multiple values." fname))))))
(defun c2multiple-value-setq (vrefs form &aux top-data)
(multiple-value-check vrefs form)
(let ((*value-to-go* 'top)*top-data*)
(c2expr* form) (setq top-data *top-data*))
(and *record-call-info* (record-call-info nil (car top-data)))
(wt-nl "if(vs_base>vs_top) vs_top=vs_base;")
(wt-nl "*vs_top=Cnil;")
(do ((vs vrefs (cdr vs)))
((endp vs))
(let ((vref (car vs)))
(set-var 'fun-val (car vref) (cadr vref))
(unless (endp (cdr vs)) (wt-nl "if(vs_base<vs_top) vs_base++;"))))
(cond ((null vrefs)
(wt-nl "if(vs_base==vs_top){vs_base[0]=Cnil;}")
(wt-nl "vs_top=vs_base+1;}")
(unwind-exit 'fun-val))
(t (unless (eq *exit* 'return) (wt-nl) (reset-top))
(unwind-exit (cons 'var (car vrefs))))))
(defun c1multiple-value-bind (args &aux (info (make-info))
(vars nil) (vnames nil) init-form
ss is ts body other-decls
(*vars* *vars*))
(when (or (endp args) (endp (cdr args)))
(too-few-args 'multiple-value-bind 2 (length args)))
(multiple-value-setq (body ss ts is other-decls) (c1body (cddr args) nil))
(c1add-globals ss)
(dolist** (s (car args))
(let ((v (c1make-var s ss is ts)))
(push s vnames)
(push v vars)))
(setq init-form (c1expr* (cadr args) info))
(setq *vars* (append vars *vars*))
; (dolist* (v (reverse vars)) (push v *vars*))
(check-vdecl vnames ts is)
(setq body (c1decl-body other-decls body))
(add-info info (cadr body))
(setf (info-type info) (info-type (cadr body)))
(dolist** (var vars) (check-vref var))
(list 'multiple-value-bind info (nreverse vars) init-form body)
)
(defun c2multiple-value-bind (vars init-form body
&aux (block-p nil)
(*unwind-exit* *unwind-exit*)
(*vs* *vs*) (*clink* *clink*) (*ccb-vs* *ccb-vs*)
top-data)
(multiple-value-check vars init-form)
(dolist (var vars)
(let ((kind (c2var-kind var)))
(if kind
(let ((cvar (next-cvar)))
(setf (var-kind var) kind)
(setf (var-loc var) cvar)
(wt-nl)
(unless block-p (wt "{") (setq block-p t))
(wt-var-decl var))
(setf (var-ref var) (vs-push)))))
(let ((*value-to-go* 'top) *top-data*)
(c2expr* init-form) (setq top-data *top-data*))
(and *record-call-info* (record-call-info nil (car top-data)))
(wt-nl "if(vs_base>vs_top) vs_top=vs_base;")
(wt-nl "*vs_top=Cnil;")
(do ((vs vars (cdr vs)))
((endp vs))
(c2bind-loc (car vs) '(vs-base 0))
(unless (endp (cdr vs)) (wt-nl "if (vs_base<vs_top) vs_base++;")))
(wt-nl) (reset-top)
(c2expr body)
(when block-p (wt "}")))
|