* reinstated (ikarus fasl read)

This commit is contained in:
Abdulaziz Ghuloum 2007-05-09 19:37:24 -04:00
parent e157388176
commit 4763b3e67e
4 changed files with 25 additions and 17 deletions

Binary file not shown.

View File

@ -840,7 +840,8 @@
645 list 645 list
|# |#
;;; FIXME: should handle (+ x k), (- x k) where k is a fixnum ;;; FIXME URGENT: should handle (+ x k), (- x k) where k is a fixnum
;;; also fx+, fx-
(module (optimize-primcall) (module (optimize-primcall)
(define (optimize-primcall ctxt op rand*) (define (optimize-primcall ctxt op rand*)
(cond (cond
@ -4748,7 +4749,6 @@
(map CodeExpr ls)))])) (map CodeExpr ls)))]))
(module ;assembly-labels (module ;assembly-labels
(refresh-cached-labels! (refresh-cached-labels!
sl-apply-label sl-fx+-type-label sl-fx+-types-label sl-apply-label sl-fx+-type-label sl-fx+-types-label
sl-continuation-code-label sl-invalid-args-label sl-continuation-code-label sl-invalid-args-label
@ -4756,7 +4756,6 @@
sl-cwv-label sl-top-level-value-error-label sl-cadr-error-label sl-cwv-label sl-top-level-value-error-label sl-cadr-error-label
sl-cdr-error-label sl-car-error-label sl-nonprocedure-error-label sl-cdr-error-label sl-car-error-label sl-nonprocedure-error-label
sl-fxsub1-error-label sl-fxadd1-error-label sl-fx+-overflow-label) sl-fxsub1-error-label sl-fxadd1-error-label sl-fx+-overflow-label)
(define-syntax define-cached (define-syntax define-cached
(lambda (x) (lambda (x)
(syntax-case x () (syntax-case x ()
@ -5067,8 +5066,7 @@
(movl (primref-loc 'fx+-overflow-error) cpr) (movl (primref-loc 'fx+-overflow-error) cpr)
(movl (int (argc-convention 2)) eax) (movl (int (argc-convention 2)) eax)
(tail-indirect-cpr-call)))) (tail-indirect-cpr-call))))
SL_fx+_overflow]) SL_fx+_overflow]))
)
(define (compile-core-expr->code p) (define (compile-core-expr->code p)
(let* ([p (recordize p)] (let* ([p (recordize p)]

View File

@ -237,15 +237,12 @@
#!eof
#not working yet
(library (ikarus fasl read) (library (ikarus fasl read)
(export) (export fasl-read)
(import ) (import (ikarus)
(ikarus code-objects)
(ikarus system $codes)
(ikarus system $records))
(define who 'fasl-read) (define who 'fasl-read)
(define (assert-eq? x y) (define (assert-eq? x y)
@ -457,5 +454,15 @@
(assert-eq? (read-char p) #\K) (assert-eq? (read-char p) #\K)
(assert-eq? (read-char p) #\0) (assert-eq? (read-char p) #\0)
(assert-eq? (read-char p) #\1) (assert-eq? (read-char p) #\1)
(do-read p)))) (do-read p)))
(define fasl-read
(case-lambda
[() ($fasl-read (current-input-port))]
[(p)
(if (input-port? p)
($fasl-read p)
(error 'fasl-read "~s is not an input port" p))]))
)

View File

@ -392,6 +392,7 @@
[record-length i] [record-length i]
[record-printer i] [record-printer i]
[record-ref i] [record-ref i]
[record-set! i]
[record-field-accessor i] [record-field-accessor i]
[record-field-mutator i] [record-field-mutator i]
[identifier? i syncase] [identifier? i syncase]
@ -588,6 +589,7 @@
[(assq x (export-subst)) [(assq x (export-subst))
(error who "ambiguous export of ~s" x)] (error who "ambiguous export of ~s" x)]
[(assq x subst) => [(assq x subst) =>
;;; primitive defined (exported) within the compiled libraries
(lambda (p) (lambda (p)
(let ([label (cdr p)]) (let ([label (cdr p)])
(cond (cond
@ -603,7 +605,8 @@
(error #f "invalid binding ~s for ~s" p x)])))] (error #f "invalid binding ~s for ~s" p x)])))]
[else (error #f "cannot find binding for ~s" x)])))] [else (error #f "cannot find binding for ~s" x)])))]
[else [else
;;; core primitive with no backing definition ;;; core primitive with no backing definition, assumed to
;;; be defined in other strata of the system
(let ([label (gensym)]) (let ([label (gensym)])
(export-subst (cons x label)) (export-subst (cons x label))
(export-env (cons label (cons 'core-prim x))))])) (export-env (cons label (cons 'core-prim x))))]))