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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
#| bindings.jl -- handling variable bindings
$Id: bindings.jl,v 1.13 2001/08/08 06:00:22 jsh Exp $
Copyright (C) 2000 John Harper <john@dcs.warwick.ac.uk>
This file is part of librep.
librep is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
librep 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with librep; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|#
(declare (unsafe-for-call/cc))
(define-structure rep.vm.compiler.bindings
(export lex-bindings spec-bindings
lexically-pure unsafe-for-call/cc
call-with-frame
spec-bound-p
has-local-binding-p
tag-binding binding-tagged-p
note-binding
note-bindings
emit-binding emit-varset emit-varref
note-binding-modified
binding-modified-p
binding-enclosed-p
note-binding-referenced
binding-referenced-p
note-function-call-made
binding-tail-call-only-p
note-closure-made
allocate-bindings)
(open rep
rep.vm.compiler.utils
rep.vm.compiler.lap
rep.vm.compiler.basic)
(define spec-bindings (make-fluid '())) ;list of bound variables
(define lex-bindings (make-fluid '())) ;alist of bound variables
(define lexically-pure (make-fluid t)) ;any dynamic state?
(define unsafe-for-call/cc (make-fluid nil))
(define (spec-bound-p var)
(or (memq var (fluid defvars))
(special-variable-p var)
(memq var (fluid spec-bindings))))
(define (lexical-binding var) (assq var (fluid lex-bindings)))
(define (lexically-bound-p var)
(let ((cell (lexical-binding var)))
(and cell (not (cell-tagged-p 'no-location cell)))))
(define (has-local-binding-p var)
(or (memq var (fluid spec-bindings))
(lexical-binding var)))
(define (cell-tagged-p tag cell) (memq tag (cdr cell)))
(define (tag-cell tag cell)
(unless (cell-tagged-p tag cell)
(rplacd cell (cons tag (cdr cell)))))
;; note that the outermost binding of symbol VAR has state TAG
(define (tag-binding var tag)
(let ((cell (lexical-binding var)))
(when cell
(tag-cell tag cell))))
;; note that the outermost binding of symbol VAR has state TAG
(define (untag-binding var tag)
(let ((cell (lexical-binding var)))
(when cell
(when (cell-tagged-p tag cell)
(rplacd cell (delq tag (cdr cell)))))))
;; return t if outermost binding of symbol VAR has state TAG
(define (binding-tagged-p var tag)
(let ((cell (lexical-binding var)))
(and cell (cell-tagged-p tag cell))))
;; install a new binding contour, such that THUNK can add any bindings
;; (lexical and special), then when THUNK exits, the bindings are removed
(define (call-with-frame thunk)
(let ((old-d (length (fluid lex-bindings))))
(let-fluids ((spec-bindings (fluid spec-bindings))
(lexically-pure (fluid lexically-pure)))
(prog1 (thunk)
;; check for unused variables
(do ((new-d (length (fluid lex-bindings)) (1- new-d))
(new (fluid lex-bindings) (cdr new)))
((= new-d old-d)
(fluid-set lex-bindings new))
(unless (or (cell-tagged-p 'referenced (car new))
(cell-tagged-p 'no-location (car new))
(cell-tagged-p 'maybe-unused (car new)))
(compiler-warning
'unused "unused variable `%s'" (caar new))))))))
;; note that symbol VAR has been bound
(define (note-binding var #!optional without-location)
(if (spec-bound-p var)
(progn
;; specially bound (dynamic scope)
(fluid-set spec-bindings (cons var (fluid spec-bindings)))
(fluid-set lexically-pure nil))
;; assume it's lexically bound otherwise
(fluid-set lex-bindings (cons (list var) (fluid lex-bindings)))
(when without-location
(tag-binding var 'no-location)))
;; XXX handled by `modified' tag?
; (when (eq var (fluid lambda-name))
; (fluid-set lambda-name nil))
)
(defmacro note-bindings (vars)
(list 'mapc 'note-binding vars))
;; note that the outermost binding of VAR has been modified
(define (note-binding-modified var)
(let ((cell (lexical-binding var)))
(when cell
(tag-cell 'modified cell)
(when (cell-tagged-p 'across-funcall cell)
(tag-cell 'exposed cell)))))
(define (binding-modified-p var)
(binding-tagged-p var 'modified))
(define (binding-enclosed-p var)
(binding-tagged-p var 'enclosed))
(define (note-binding-referenced var #!optional for-tail-call)
(tag-binding var 'referenced)
(unless for-tail-call
(tag-binding var 'not-tail-call-only)))
(define (binding-referenced-p var)
(binding-tagged-p var 'referenced))
;; if a function call is made, it could be to call/cc
(define (note-function-call-made)
(mapc (lambda (cell)
(tag-cell 'across-funcall cell)) (fluid lex-bindings)))
(define (binding-tail-call-only-p var)
(not (binding-tagged-p var 'not-tail-call-only)))
;; note that all current lexical bindings have been enclosed
(define (note-closure-made)
(mapc (lambda (cell)
(tag-cell 'enclosed cell)) (fluid lex-bindings)))
(define (emit-binding var)
(if (spec-bound-p var)
(progn
(emit-insn `(push ,var))
(increment-stack)
(emit-insn '(spec-bind))
(decrement-stack))
(emit-insn `(lex-bind ,var ,(fluid lex-bindings)))))
(define (emit-varset sym)
(test-variable-ref sym)
(cond ((spec-bound-p sym)
(emit-insn `(push ,sym))
(increment-stack)
(emit-insn '(%set))
(decrement-stack))
((lexically-bound-p sym)
;; The lexical address is known. Use it to avoid scanning
(emit-insn `(lex-set ,sym ,(fluid lex-bindings))))
(t
;; No lexical binding, but not special either. Just
;; update the global value
(emit-insn `(setg ,sym)))))
(define (emit-varref form #!optional in-tail-slot)
(cond ((spec-bound-p form)
;; Specially bound
(emit-insn `(push ,form))
(increment-stack)
(emit-insn '(ref))
(decrement-stack))
((lexically-bound-p form)
;; We know the lexical address, so use it
(emit-insn `(lex-ref ,form ,(fluid lex-bindings)))
(note-binding-referenced form in-tail-slot))
(t
;; It's not bound, so just update the global value
(emit-insn `(refg ,form)))))
;; allocation of bindings, either on stack or in heap
(define (heap-binding-p cell)
(or (cell-tagged-p 'captured cell)
(and (not (fluid unsafe-for-call/cc))
(cell-tagged-p 'exposed cell))
;; used to tag bindings unconditionally on the heap
(cell-tagged-p 'heap-allocated cell)))
;; heap addresses count up from the _most_ recent binding
(define (heap-address var bindings)
(let loop ((rest bindings)
(i 0))
(cond ((null rest) (error "No heap address for %s" var))
((or (not (heap-binding-p (car rest)))
(cell-tagged-p 'no-location (car rest)))
(loop (cdr rest) i))
((eq (caar rest) var) i)
(t (loop (cdr rest) (1+ i))))))
;; slot addresses count up from the _least_ recent binding
(define (slot-address var bindings base)
(let loop ((rest bindings))
(cond ((eq rest base) (error "No slot address for %s, %s" var bindings))
((eq (caar rest) var)
(let loop-2 ((rest (cdr rest))
(i 0))
(cond ((eq rest base) i)
((or (heap-binding-p (car rest))
(cell-tagged-p 'no-location (car rest)))
(loop-2 (cdr rest) i))
(t (loop-2 (cdr rest) (1+ i))))))
(t (loop (cdr rest))))))
(define (identify-captured-bindings asm lex-env)
(mapc (lambda (insn)
(case (car insn)
((lex-ref lex-set)
(let ((cell (assq (nth 1 insn) lex-env)))
(when cell
(tag-cell 'captured cell))))
((push-bytecode)
(identify-captured-bindings (nth 1 insn) (nth 2 insn)))))
(assembly-code asm)))
;; Extra pass over the output pseudo-assembly code; converts
;; pseudo-instructions accessing lexical bindings into real
;; instructions accessing either the heap or the slot registers
(define (allocate-bindings-1 asm base-env)
(let ((max-slot 0))
(let loop ((rest (assembly-code asm)))
(when rest
(case (caar rest)
((lex-bind lex-ref lex-set)
(let* ((var (nth 1 (car rest)))
(bindings (nth 2 (car rest)))
(cell (assq var bindings)))
(if (heap-binding-p cell)
(rplaca rest (case (caar rest)
((lex-bind) (list 'bind))
((lex-ref)
(list 'refn (heap-address var bindings)))
((lex-set)
(list 'setn (heap-address var bindings)))))
(let ((slot (slot-address var bindings base-env)))
(setq max-slot (max max-slot (1+ slot)))
(rplaca rest (case (caar rest)
((lex-bind lex-set)
(list 'slot-set slot))
((lex-ref)
(list 'slot-ref slot))))))))
((push-bytecode)
(let ((asm (nth 1 (car rest)))
(env (nth 2 (car rest)))
(doc (nth 3 (car rest)))
(interactive (nth 4 (car rest))))
(allocate-bindings-1 asm env)
(rplaca rest (list 'push (assemble-assembly-to-subr
asm doc interactive))))))
(loop (cdr rest))))
(assembly-slots-set asm max-slot)
asm))
(define (allocate-bindings asm)
(identify-captured-bindings asm (fluid lex-bindings))
(allocate-bindings-1 asm (fluid lex-bindings)))
;; declarations
;; (declare (bound VARIABLE))
(define (declare-bound form)
(let loop ((vars (cdr form)))
(when vars
(note-binding (car vars) t)
(loop (cdr vars)))))
(put 'bound 'compiler-decl-fun declare-bound)
;; (declare (special VARIABLE))
(define (declare-special form)
(let loop ((vars (cdr form)))
(when vars
(fluid-set spec-bindings (cons (car vars) (fluid spec-bindings)))
(loop (cdr vars)))))
(put 'special 'compiler-decl-fun declare-special)
;; (declare (heap-allocated VARS...))
(define (declare-heap-allocated form)
(let loop ((vars (cdr form)))
(when vars
(tag-binding (car vars) 'heap-allocated)
(loop (cdr vars)))))
(put 'heap-allocated 'compiler-decl-fun declare-heap-allocated)
(define (declare-unused form)
(let loop ((vars (cdr form)))
(when vars
(tag-binding (car vars) 'maybe-unused)
(loop (cdr vars)))))
(put 'unused 'compiler-decl-fun declare-unused)
(define (declare-unsafe-for-call/cc)
(fluid-set unsafe-for-call/cc t))
(put 'unsafe-for-call/cc 'compiler-decl-fun declare-unsafe-for-call/cc))
|