trying to fight the code expansion

This commit is contained in:
Danny Yoo 2011-11-02 15:27:38 -04:00
parent 0522354d84
commit 95fba70f4d
5 changed files with 13 additions and 7 deletions

View File

@ -81,7 +81,8 @@
(lambda (ip)
(get-compiled-code-from-port ip)))
)])
(parameterize ([compile-context-preservation-enabled #f])
;; Note: we're trying to preserve the context, to avoid code expansion.
(parameterize ([compile-context-preservation-enabled #t])
(get-module-code p))))
@ -90,7 +91,8 @@
(define (get-compiled-code-from-port ip)
;(printf "get-compiled-code-from-port\n")
(parameterize ([read-accept-reader #t]
[compile-context-preservation-enabled #f]
;; Note: we're trying to preserve the context, to avoid code expansion.
[compile-context-preservation-enabled #t]
[current-namespace base-namespace])
(define stx (read-syntax (object-name ip) ip))
;(printf "got stx; now expanding out the images\n")

View File

@ -60,4 +60,4 @@
[(CallKernelPrimitiveProcedure? op)
(open-code-kernel-primitive-procedure op blockht)]
[(ApplyPrimitiveProcedure? op)
"M.p.rawImpl(M)"]))
"M.p._i(M)"]))

View File

@ -567,8 +567,12 @@ EOF
(let: ([skip : OpArg (PopEnvironment-skip stmt)])
(cond
[(and (Const? skip) (= (ensure-natural (Const-const skip)) 0))
(format "M.e.length-=~a;"
(assemble-oparg (PopEnvironment-n stmt) blockht))]
(cond [(equal? (PopEnvironment-n stmt)
(make-Const 1))
"M.e.pop();"]
[else
(format "M.e.length-=~a;"
(assemble-oparg (PopEnvironment-n stmt) blockht))])]
[else
(format "M.e.splice(M.e.length-(~a+~a),~a);"
(assemble-oparg (PopEnvironment-skip stmt) blockht)

View File

@ -327,7 +327,7 @@
},
[]);
// Also, record the raw implementation of the function.
proc.rawImpl = f;
proc._i = f;
return proc;
};

View File

@ -6,4 +6,4 @@
(provide version)
(: version String)
(define version "1.50")
(define version "1.51")