trying to fight the code expansion
This commit is contained in:
parent
0522354d84
commit
95fba70f4d
|
@ -81,7 +81,8 @@
|
||||||
(lambda (ip)
|
(lambda (ip)
|
||||||
(get-compiled-code-from-port 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))))
|
(get-module-code p))))
|
||||||
|
|
||||||
|
|
||||||
|
@ -90,7 +91,8 @@
|
||||||
(define (get-compiled-code-from-port ip)
|
(define (get-compiled-code-from-port ip)
|
||||||
;(printf "get-compiled-code-from-port\n")
|
;(printf "get-compiled-code-from-port\n")
|
||||||
(parameterize ([read-accept-reader #t]
|
(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])
|
[current-namespace base-namespace])
|
||||||
(define stx (read-syntax (object-name ip) ip))
|
(define stx (read-syntax (object-name ip) ip))
|
||||||
;(printf "got stx; now expanding out the images\n")
|
;(printf "got stx; now expanding out the images\n")
|
||||||
|
|
|
@ -60,4 +60,4 @@
|
||||||
[(CallKernelPrimitiveProcedure? op)
|
[(CallKernelPrimitiveProcedure? op)
|
||||||
(open-code-kernel-primitive-procedure op blockht)]
|
(open-code-kernel-primitive-procedure op blockht)]
|
||||||
[(ApplyPrimitiveProcedure? op)
|
[(ApplyPrimitiveProcedure? op)
|
||||||
"M.p.rawImpl(M)"]))
|
"M.p._i(M)"]))
|
|
@ -567,8 +567,12 @@ EOF
|
||||||
(let: ([skip : OpArg (PopEnvironment-skip stmt)])
|
(let: ([skip : OpArg (PopEnvironment-skip stmt)])
|
||||||
(cond
|
(cond
|
||||||
[(and (Const? skip) (= (ensure-natural (Const-const skip)) 0))
|
[(and (Const? skip) (= (ensure-natural (Const-const skip)) 0))
|
||||||
(format "M.e.length-=~a;"
|
(cond [(equal? (PopEnvironment-n stmt)
|
||||||
(assemble-oparg (PopEnvironment-n stmt) blockht))]
|
(make-Const 1))
|
||||||
|
"M.e.pop();"]
|
||||||
|
[else
|
||||||
|
(format "M.e.length-=~a;"
|
||||||
|
(assemble-oparg (PopEnvironment-n stmt) blockht))])]
|
||||||
[else
|
[else
|
||||||
(format "M.e.splice(M.e.length-(~a+~a),~a);"
|
(format "M.e.splice(M.e.length-(~a+~a),~a);"
|
||||||
(assemble-oparg (PopEnvironment-skip stmt) blockht)
|
(assemble-oparg (PopEnvironment-skip stmt) blockht)
|
||||||
|
|
|
@ -327,7 +327,7 @@
|
||||||
},
|
},
|
||||||
[]);
|
[]);
|
||||||
// Also, record the raw implementation of the function.
|
// Also, record the raw implementation of the function.
|
||||||
proc.rawImpl = f;
|
proc._i = f;
|
||||||
return proc;
|
return proc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -6,4 +6,4 @@
|
||||||
|
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
(define version "1.50")
|
(define version "1.51")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user