Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / module / language / elisp / compile-tree-il.scm
1 ;;; Guile Emacs Lisp
2
3 ;; Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
4
5 ;; This program is free software; you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation; either version 3, or (at your option)
8 ;; any later version.
9 ;;
10 ;; This program is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;; GNU General Public License for more details.
14 ;;
15 ;; You should have received a copy of the GNU General Public License
16 ;; along with this program; see the file COPYING. If not, write to
17 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 ;; Boston, MA 02111-1307, USA.
19
20 ;;; Code:
21
22 (define-module (language elisp compile-tree-il)
23 #:use-module (language elisp bindings)
24 #:use-module (language elisp runtime)
25 #:use-module (language tree-il)
26 #:use-module (system base pmatch)
27 #:use-module (system base compile)
28 #:use-module (srfi srfi-1)
29 #:use-module (srfi srfi-8)
30 #:use-module (srfi srfi-11)
31 #:use-module (srfi srfi-26)
32 #:export (compile-tree-il
33 compile-progn
34 compile-eval-when-compile
35 compile-if
36 compile-defconst
37 compile-defvar
38 compile-setq
39 compile-let
40 compile-flet
41 compile-labels
42 compile-let*
43 compile-guile-ref
44 compile-guile-primitive
45 compile-function
46 compile-defmacro
47 compile-defun
48 #{compile-`}#
49 compile-quote
50 compile-%funcall
51 compile-%set-lexical-binding-mode))
52
53 ;;; Certain common parameters (like the bindings data structure or
54 ;;; compiler options) are not always passed around but accessed using
55 ;;; fluids to simulate dynamic binding (hey, this is about elisp).
56
57 ;;; The bindings data structure to keep track of symbol binding related
58 ;;; data.
59
60 (define bindings-data (make-fluid))
61
62 (define lexical-binding (make-fluid))
63
64 ;;; Find the source properties of some parsed expression if there are
65 ;;; any associated with it.
66
67 (define (location x)
68 (and (pair? x)
69 (let ((props (source-properties x)))
70 (and (not (null? props))
71 props))))
72
73 ;;; Values to use for Elisp's nil and t.
74
75 (define (nil-value loc)
76 (make-const loc (@ (language elisp runtime) nil-value)))
77
78 (define (t-value loc)
79 (make-const loc (@ (language elisp runtime) t-value)))
80
81 ;;; Modules that contain the value and function slot bindings.
82
83 (define runtime '(language elisp runtime))
84
85 (define value-slot (@ (language elisp runtime) value-slot-module))
86
87 (define function-slot (@ (language elisp runtime) function-slot-module))
88
89 ;;; The backquoting works the same as quasiquotes in Scheme, but the
90 ;;; forms are named differently; to make easy adaptions, we define these
91 ;;; predicates checking for a symbol being the car of an
92 ;;; unquote/unquote-splicing/backquote form.
93
94 (define (unquote? sym)
95 (and (symbol? sym) (eq? sym '#{,}#)))
96
97 (define (unquote-splicing? sym)
98 (and (symbol? sym) (eq? sym '#{,@}#)))
99
100 ;;; Build a call to a primitive procedure nicely.
101
102 (define (call-primitive loc sym . args)
103 (make-primcall loc sym args))
104
105 ;;; Error reporting routine for syntax/compilation problems or build
106 ;;; code for a runtime-error output.
107
108 (define (report-error loc . args)
109 (apply error args))
110
111 (define (access-variable loc symbol handle-lexical handle-dynamic)
112 (cond
113 ((get-lexical-binding (fluid-ref bindings-data) symbol)
114 => handle-lexical)
115 (else
116 (handle-dynamic))))
117
118 (define (reference-variable loc symbol)
119 (access-variable
120 loc
121 symbol
122 (lambda (lexical)
123 (make-lexical-ref loc lexical lexical))
124 (lambda ()
125 (call-primitive loc
126 'fluid-ref
127 (make-module-ref loc value-slot symbol #t)))))
128
129 (define (global? module symbol)
130 (module-variable module symbol))
131
132 (define (ensure-globals! loc names body)
133 (if (and (every (cut global? (resolve-module value-slot) <>) names)
134 (every symbol-interned? names))
135 body
136 (list->seq
137 loc
138 `(,@(map
139 (lambda (name)
140 (ensure-fluid! value-slot name)
141 (make-call loc
142 (make-module-ref loc runtime 'ensure-fluid! #t)
143 (list (make-const loc value-slot)
144 (make-const loc name))))
145 names)
146 ,body))))
147
148 (define (set-variable! loc symbol value)
149 (access-variable
150 loc
151 symbol
152 (lambda (lexical)
153 (make-lexical-set loc lexical lexical value))
154 (lambda ()
155 (ensure-globals!
156 loc
157 (list symbol)
158 (call-primitive loc
159 'fluid-set!
160 (make-module-ref loc value-slot symbol #t)
161 value)))))
162
163 (define (access-function loc symbol handle-lexical handle-global)
164 (cond
165 ((get-function-binding (fluid-ref bindings-data) symbol)
166 => handle-lexical)
167 (else
168 (handle-global))))
169
170 (define (reference-function loc symbol)
171 (access-function
172 loc
173 symbol
174 (lambda (gensym) (make-lexical-ref loc symbol gensym))
175 (lambda () (make-module-ref loc function-slot symbol #t))))
176
177 (define (set-function! loc symbol value)
178 (access-function
179 loc
180 symbol
181 (lambda (gensym) (make-lexical-set loc symbol gensym value))
182 (lambda ()
183 (make-call
184 loc
185 (make-module-ref loc runtime 'set-symbol-function! #t)
186 (list (make-const loc symbol) value)))))
187
188 (define (bind-lexically? sym module decls)
189 (or (eq? module function-slot)
190 (let ((decl (assq-ref decls sym)))
191 (and (equal? module value-slot)
192 (or
193 (eq? decl 'lexical)
194 (and
195 (fluid-ref lexical-binding)
196 (not (global? (resolve-module module) sym))))))))
197
198 (define (parse-let-binding loc binding)
199 (pmatch binding
200 ((unquote var)
201 (guard (symbol? var))
202 (cons var #nil))
203 ((,var)
204 (guard (symbol? var))
205 (cons var #nil))
206 ((,var ,val)
207 (guard (symbol? var))
208 (cons var val))
209 (else
210 (report-error loc "malformed variable binding" binding))))
211
212 (define (parse-flet-binding loc binding)
213 (pmatch binding
214 ((,var ,args . ,body)
215 (guard (symbol? var))
216 (cons var `(function (lambda ,args ,@body))))
217 (else
218 (report-error loc "malformed function binding" binding))))
219
220 (define (parse-declaration expr)
221 (pmatch expr
222 ((lexical . ,vars)
223 (map (cut cons <> 'lexical) vars))
224 (else
225 '())))
226
227 (define (parse-body-1 body lambda?)
228 (let loop ((lst body)
229 (decls '())
230 (intspec #f)
231 (doc #f))
232 (pmatch lst
233 (((declare . ,x) . ,tail)
234 (loop tail (append-reverse x decls) intspec doc))
235 (((interactive . ,x) . ,tail)
236 (guard lambda? (not intspec))
237 (loop tail decls x doc))
238 ((,x . ,tail)
239 (guard lambda? (string? x) (not doc) (not (null? tail)))
240 (loop tail decls intspec x))
241 (else
242 (values (append-map parse-declaration decls)
243 intspec
244 doc
245 lst)))))
246
247 (define (parse-lambda-body body)
248 (parse-body-1 body #t))
249
250 (define (parse-body body)
251 (receive (decls intspec doc body) (parse-body-1 body #f)
252 (values decls body)))
253
254 ;;; Partition the argument list of a lambda expression into required,
255 ;;; optional and rest arguments.
256
257 (define (parse-lambda-list lst)
258 (define (%match lst null optional rest symbol)
259 (pmatch lst
260 (() (null))
261 ((&optional . ,tail) (optional tail))
262 ((&rest . ,tail) (rest tail))
263 ((,arg . ,tail) (guard (symbol? arg)) (symbol arg tail))
264 (else (fail))))
265 (define (return rreq ropt rest)
266 (values #t (reverse rreq) (reverse ropt) rest))
267 (define (fail)
268 (values #f #f #f #f))
269 (define (parse-req lst rreq)
270 (%match lst
271 (lambda () (return rreq '() #f))
272 (lambda (tail) (parse-opt tail rreq '()))
273 (lambda (tail) (parse-rest tail rreq '()))
274 (lambda (arg tail) (parse-req tail (cons arg rreq)))))
275 (define (parse-opt lst rreq ropt)
276 (%match lst
277 (lambda () (return rreq ropt #f))
278 (lambda (tail) (fail))
279 (lambda (tail) (parse-rest tail rreq ropt))
280 (lambda (arg tail) (parse-opt tail rreq (cons arg ropt)))))
281 (define (parse-rest lst rreq ropt)
282 (%match lst
283 (lambda () (fail))
284 (lambda (tail) (fail))
285 (lambda (tail) (fail))
286 (lambda (arg tail) (parse-post-rest tail rreq ropt arg))))
287 (define (parse-post-rest lst rreq ropt rest)
288 (%match lst
289 (lambda () (return rreq ropt rest))
290 (lambda () (fail))
291 (lambda () (fail))
292 (lambda (arg tail) (fail))))
293 (parse-req lst '()))
294
295 (define (make-simple-lambda loc meta req opt init rest vars body)
296 (make-lambda loc
297 meta
298 (make-lambda-case #f req opt rest #f init vars body #f)))
299
300 (define (compile-lambda loc meta args body)
301 (receive (valid? req-ids opt-ids rest-id)
302 (parse-lambda-list args)
303 (if valid?
304 (let* ((all-ids (append req-ids
305 opt-ids
306 (or (and=> rest-id list) '())))
307 (all-vars (map (lambda (ignore) (gensym)) all-ids)))
308 (let*-values (((decls intspec doc forms)
309 (parse-lambda-body body))
310 ((lexical dynamic)
311 (partition
312 (compose (cut bind-lexically? <> value-slot decls)
313 car)
314 (map list all-ids all-vars)))
315 ((lexical-ids lexical-vars) (unzip2 lexical))
316 ((dynamic-ids dynamic-vars) (unzip2 dynamic)))
317 (with-dynamic-bindings
318 (fluid-ref bindings-data)
319 dynamic-ids
320 (lambda ()
321 (with-lexical-bindings
322 (fluid-ref bindings-data)
323 lexical-ids
324 lexical-vars
325 (lambda ()
326 (ensure-globals!
327 loc
328 dynamic-ids
329 (let* ((tree-il
330 (compile-expr
331 (if rest-id
332 `(let ((,rest-id (if ,rest-id
333 ,rest-id
334 nil)))
335 ,@forms)
336 `(progn ,@forms))))
337 (full-body
338 (if (null? dynamic)
339 tree-il
340 (make-dynlet
341 loc
342 (map (cut make-module-ref loc value-slot <> #t)
343 dynamic-ids)
344 (map (cut make-lexical-ref loc <> <>)
345 dynamic-ids
346 dynamic-vars)
347 tree-il))))
348 (make-simple-lambda loc
349 meta
350 req-ids
351 opt-ids
352 (map (const (nil-value loc))
353 opt-ids)
354 rest-id
355 all-vars
356 full-body)))))))))
357 (report-error "invalid function" `(lambda ,args ,@body)))))
358
359 ;;; Handle the common part of defconst and defvar, that is, checking for
360 ;;; a correct doc string and arguments as well as maybe in the future
361 ;;; handling the docstring somehow.
362
363 (define (handle-var-def loc sym doc)
364 (cond
365 ((not (symbol? sym)) (report-error loc "expected symbol, got" sym))
366 ((> (length doc) 1) (report-error loc "too many arguments to defvar"))
367 ((and (not (null? doc)) (not (string? (car doc))))
368 (report-error loc "expected string as third argument of defvar, got"
369 (car doc)))
370 ;; TODO: Handle doc string if present.
371 (else #t)))
372
373 ;;; Handle macro and special operator bindings.
374
375 (define (find-operator name type)
376 (and
377 (symbol? name)
378 (module-defined? (resolve-interface function-slot) name)
379 (let ((op (module-ref (resolve-module function-slot) name)))
380 (if (and (pair? op) (eq? (car op) type))
381 (cdr op)
382 #f))))
383
384 ;;; See if a (backquoted) expression contains any unquotes.
385
386 (define (contains-unquotes? expr)
387 (if (pair? expr)
388 (if (or (unquote? (car expr)) (unquote-splicing? (car expr)))
389 #t
390 (or (contains-unquotes? (car expr))
391 (contains-unquotes? (cdr expr))))
392 #f))
393
394 ;;; Process a backquoted expression by building up the needed
395 ;;; cons/append calls. For splicing, it is assumed that the expression
396 ;;; spliced in evaluates to a list. The emacs manual does not really
397 ;;; state either it has to or what to do if it does not, but Scheme
398 ;;; explicitly forbids it and this seems reasonable also for elisp.
399
400 (define (unquote-cell? expr)
401 (and (list? expr) (= (length expr) 2) (unquote? (car expr))))
402
403 (define (unquote-splicing-cell? expr)
404 (and (list? expr) (= (length expr) 2) (unquote-splicing? (car expr))))
405
406 (define (process-backquote loc expr)
407 (if (contains-unquotes? expr)
408 (if (pair? expr)
409 (if (or (unquote-cell? expr) (unquote-splicing-cell? expr))
410 (compile-expr (cadr expr))
411 (let* ((head (car expr))
412 (processed-tail (process-backquote loc (cdr expr)))
413 (head-is-list-2 (and (list? head)
414 (= (length head) 2)))
415 (head-unquote (and head-is-list-2
416 (unquote? (car head))))
417 (head-unquote-splicing (and head-is-list-2
418 (unquote-splicing?
419 (car head)))))
420 (if head-unquote-splicing
421 (call-primitive loc
422 'append
423 (compile-expr (cadr head))
424 processed-tail)
425 (call-primitive loc 'cons
426 (if head-unquote
427 (compile-expr (cadr head))
428 (process-backquote loc head))
429 processed-tail))))
430 (report-error loc
431 "non-pair expression contains unquotes"
432 expr))
433 (make-const loc expr)))
434
435 ;;; Special operators
436
437 (defspecial progn (loc args)
438 (list->seq loc
439 (if (null? args)
440 (list (nil-value loc))
441 (map compile-expr args))))
442
443 (defspecial eval-when-compile (loc args)
444 (make-const loc (compile `(progn ,@args) #:from 'elisp #:to 'value)))
445
446 (defspecial if (loc args)
447 (pmatch args
448 ((,cond ,then . ,else)
449 (make-conditional
450 loc
451 (call-primitive loc 'not
452 (call-primitive loc 'nil? (compile-expr cond)))
453 (compile-expr then)
454 (compile-expr `(progn ,@else))))))
455
456 (defspecial defconst (loc args)
457 (pmatch args
458 ((,sym ,value . ,doc)
459 (if (handle-var-def loc sym doc)
460 (make-seq loc
461 (set-variable! loc sym (compile-expr value))
462 (make-const loc sym))))))
463
464 (defspecial defvar (loc args)
465 (pmatch args
466 ((,sym) (make-const loc sym))
467 ((,sym ,value . ,doc)
468 (if (handle-var-def loc sym doc)
469 (make-seq
470 loc
471 (make-conditional
472 loc
473 (make-conditional
474 loc
475 (call-primitive
476 loc
477 'module-bound?
478 (call-primitive loc
479 'resolve-interface
480 (make-const loc value-slot))
481 (make-const loc sym))
482 (call-primitive loc
483 'fluid-bound?
484 (make-module-ref loc value-slot sym #t))
485 (make-const loc #f))
486 (make-void loc)
487 (set-variable! loc sym (compile-expr value)))
488 (make-const loc sym))))))
489
490 (defspecial setq (loc args)
491 (define (car* x) (if (null? x) '() (car x)))
492 (define (cdr* x) (if (null? x) '() (cdr x)))
493 (define (cadr* x) (car* (cdr* x)))
494 (define (cddr* x) (cdr* (cdr* x)))
495 (list->seq
496 loc
497 (let loop ((args args) (last (nil-value loc)))
498 (if (null? args)
499 (list last)
500 (let ((sym (car args))
501 (val (compile-expr (cadr* args))))
502 (if (not (symbol? sym))
503 (report-error loc "expected symbol in setq")
504 (cons
505 (set-variable! loc sym val)
506 (loop (cddr* args)
507 (reference-variable loc sym)))))))))
508
509 (defspecial let (loc args)
510 (pmatch args
511 ((,varlist . ,body)
512 (let ((bindings (map (cut parse-let-binding loc <>) varlist)))
513 (receive (decls forms) (parse-body body)
514 (receive (lexical dynamic)
515 (partition
516 (compose (cut bind-lexically? <> value-slot decls)
517 car)
518 bindings)
519 (let ((make-values (lambda (for)
520 (map (lambda (el) (compile-expr (cdr el)))
521 for)))
522 (make-body (lambda () (compile-expr `(progn ,@forms)))))
523 (ensure-globals!
524 loc
525 (map car dynamic)
526 (if (null? lexical)
527 (make-dynlet loc
528 (map (compose (cut make-module-ref
529 loc
530 value-slot
531 <>
532 #t)
533 car)
534 dynamic)
535 (map (compose compile-expr cdr)
536 dynamic)
537 (make-body))
538 (let* ((lexical-syms (map (lambda (el) (gensym)) lexical))
539 (dynamic-syms (map (lambda (el) (gensym)) dynamic))
540 (all-syms (append lexical-syms dynamic-syms))
541 (vals (append (make-values lexical)
542 (make-values dynamic))))
543 (make-let loc
544 all-syms
545 all-syms
546 vals
547 (with-lexical-bindings
548 (fluid-ref bindings-data)
549 (map car lexical)
550 lexical-syms
551 (lambda ()
552 (if (null? dynamic)
553 (make-body)
554 (make-dynlet loc
555 (map
556 (compose
557 (cut make-module-ref
558 loc
559 value-slot
560 <>
561 #t)
562 car)
563 dynamic)
564 (map
565 (lambda (sym)
566 (make-lexical-ref
567 loc
568 sym
569 sym))
570 dynamic-syms)
571 (make-body))))))))))))))))
572
573 (defspecial let* (loc args)
574 (pmatch args
575 ((,varlist . ,body)
576 (let ((bindings (map (cut parse-let-binding loc <>) varlist)))
577 (receive (decls forms) (parse-body body)
578 (let iterate ((tail bindings))
579 (if (null? tail)
580 (compile-expr `(progn ,@forms))
581 (let ((sym (caar tail))
582 (value (compile-expr (cdar tail))))
583 (if (bind-lexically? sym value-slot decls)
584 (let ((target (gensym)))
585 (make-let loc
586 `(,target)
587 `(,target)
588 `(,value)
589 (with-lexical-bindings
590 (fluid-ref bindings-data)
591 `(,sym)
592 `(,target)
593 (lambda () (iterate (cdr tail))))))
594 (ensure-globals!
595 loc
596 (list sym)
597 (make-dynlet loc
598 (list (make-module-ref loc value-slot sym #t))
599 (list value)
600 (iterate (cdr tail)))))))))))))
601
602 (defspecial flet (loc args)
603 (pmatch args
604 ((,bindings . ,body)
605 (let ((names+vals (map (cut parse-flet-binding loc <>) bindings)))
606 (receive (decls forms) (parse-body body)
607 (let ((names (map car names+vals))
608 (vals (map cdr names+vals))
609 (gensyms (map (lambda (x) (gensym)) names+vals)))
610 (with-function-bindings
611 (fluid-ref bindings-data)
612 names
613 gensyms
614 (lambda ()
615 (make-let loc
616 names
617 gensyms
618 (map compile-expr vals)
619 (compile-expr `(progn ,@forms)))))))))))
620
621 (defspecial labels (loc args)
622 (pmatch args
623 ((,bindings . ,body)
624 (let ((names+vals (map (cut parse-flet-binding loc <>) bindings)))
625 (receive (decls forms) (parse-body body)
626 (let ((names (map car names+vals))
627 (vals (map cdr names+vals))
628 (gensyms (map (lambda (x) (gensym)) names+vals)))
629 (with-function-bindings
630 (fluid-ref bindings-data)
631 names
632 gensyms
633 (lambda ()
634 (make-letrec #f
635 loc
636 names
637 gensyms
638 (map compile-expr vals)
639 (compile-expr `(progn ,@forms)))))))))))
640
641 ;;; guile-ref allows building TreeIL's module references from within
642 ;;; elisp as a way to access data within the Guile universe. The module
643 ;;; and symbol referenced are static values, just like (@ module symbol)
644 ;;; does!
645
646 (defspecial guile-ref (loc args)
647 (pmatch args
648 ((,module ,sym) (guard (and (list? module) (symbol? sym)))
649 (make-module-ref loc module sym #t))))
650
651 ;;; guile-primitive allows to create primitive references, which are
652 ;;; still a little faster.
653
654 (defspecial guile-primitive (loc args)
655 (pmatch args
656 ((,sym)
657 (make-primitive-ref loc sym))))
658
659 (defspecial function (loc args)
660 (pmatch args
661 (((lambda ,args . ,body))
662 (compile-lambda loc '() args body))
663 ((,sym) (guard (symbol? sym))
664 (reference-function loc sym))))
665
666 (defspecial defmacro (loc args)
667 (pmatch args
668 ((,name ,args . ,body)
669 (if (not (symbol? name))
670 (report-error loc "expected symbol as macro name" name)
671 (let* ((tree-il
672 (make-seq
673 loc
674 (set-function!
675 loc
676 name
677 (make-call
678 loc
679 (make-module-ref loc '(guile) 'cons #t)
680 (list (make-const loc 'macro)
681 (compile-lambda loc
682 `((name . ,name))
683 args
684 body))))
685 (make-const loc name))))
686 (compile tree-il #:from 'tree-il #:to 'value)
687 tree-il)))))
688
689 (defspecial defun (loc args)
690 (pmatch args
691 ((,name ,args . ,body)
692 (if (not (symbol? name))
693 (report-error loc "expected symbol as function name" name)
694 (make-seq loc
695 (set-function! loc
696 name
697 (compile-lambda loc
698 `((name . ,name))
699 args
700 body))
701 (make-const loc name))))))
702
703 (defspecial #{`}# (loc args)
704 (pmatch args
705 ((,val)
706 (process-backquote loc val))))
707
708 (defspecial quote (loc args)
709 (pmatch args
710 ((,val)
711 (make-const loc val))))
712
713 (defspecial %funcall (loc args)
714 (pmatch args
715 ((,function . ,arguments)
716 (make-call loc
717 (compile-expr function)
718 (map compile-expr arguments)))))
719
720 (defspecial %set-lexical-binding-mode (loc args)
721 (pmatch args
722 ((,val)
723 (fluid-set! lexical-binding val)
724 (make-void loc))))
725
726 ;;; Compile a compound expression to Tree-IL.
727
728 (define (compile-pair loc expr)
729 (let ((operator (car expr))
730 (arguments (cdr expr)))
731 (cond
732 ((find-operator operator 'special-operator)
733 => (lambda (special-operator-function)
734 (special-operator-function loc arguments)))
735 ((find-operator operator 'macro)
736 => (lambda (macro-function)
737 (compile-expr (apply macro-function arguments))))
738 (else
739 (compile-expr `(%funcall (function ,operator) ,@arguments))))))
740
741 ;;; Compile a symbol expression. This is a variable reference or maybe
742 ;;; some special value like nil.
743
744 (define (compile-symbol loc sym)
745 (case sym
746 ((nil) (nil-value loc))
747 ((t) (t-value loc))
748 (else (reference-variable loc sym))))
749
750 ;;; Compile a single expression to TreeIL.
751
752 (define (compile-expr expr)
753 (let ((loc (location expr)))
754 (cond
755 ((symbol? expr)
756 (compile-symbol loc expr))
757 ((pair? expr)
758 (compile-pair loc expr))
759 (else (make-const loc expr)))))
760
761 ;;; Process the compiler options.
762 ;;; FIXME: Why is '(()) passed as options by the REPL?
763
764 (define (valid-symbol-list-arg? value)
765 (or (eq? value 'all)
766 (and (list? value) (and-map symbol? value))))
767
768 (define (process-options! opt)
769 (if (and (not (null? opt))
770 (not (equal? opt '(()))))
771 (if (null? (cdr opt))
772 (report-error #f "Invalid compiler options" opt)
773 (let ((key (car opt))
774 (value (cadr opt)))
775 (case key
776 ((#:warnings) ; ignore
777 #f)
778 (else (report-error #f
779 "Invalid compiler option"
780 key)))))))
781
782 (define (compile-tree-il expr env opts)
783 (values
784 (with-fluids ((bindings-data (make-bindings)))
785 (process-options! opts)
786 (compile-expr expr))
787 env
788 env))