trying to introduce promises so I can pre-cache some of the compilations
This commit is contained in:
parent
cf9412710b
commit
6598c4d0d1
|
@ -10,6 +10,7 @@
|
||||||
"../parser/path-rewriter.rkt"
|
"../parser/path-rewriter.rkt"
|
||||||
"../parser/parse-bytecode.rkt"
|
"../parser/parse-bytecode.rkt"
|
||||||
"../resource/structs.rkt"
|
"../resource/structs.rkt"
|
||||||
|
"../promise.rkt"
|
||||||
racket/match
|
racket/match
|
||||||
racket/list
|
racket/list
|
||||||
racket/promise
|
racket/promise
|
||||||
|
@ -283,7 +284,7 @@ M.modules[~s] =
|
||||||
(fprintf op "(function(M) { ~a }(plt.runtime.currentMachine));" (UninterpretedSource-datum src))]
|
(fprintf op "(function(M) { ~a }(plt.runtime.currentMachine));" (UninterpretedSource-datum src))]
|
||||||
[else
|
[else
|
||||||
(fprintf op "(")
|
(fprintf op "(")
|
||||||
(assemble/write-invoke stmts op)
|
(assemble/write-invoke (my-force stmts) op)
|
||||||
(fprintf op ")(plt.runtime.currentMachine,
|
(fprintf op ")(plt.runtime.currentMachine,
|
||||||
function() {
|
function() {
|
||||||
if (window.console && window.console.log) {
|
if (window.console && window.console.log) {
|
||||||
|
@ -361,7 +362,7 @@ M.modules[~s] =
|
||||||
(lambda (src) #t)
|
(lambda (src) #t)
|
||||||
;; on
|
;; on
|
||||||
(lambda (src ast stmts)
|
(lambda (src ast stmts)
|
||||||
(assemble/write-invoke stmts op)
|
(assemble/write-invoke (my-force stmts) op)
|
||||||
(fprintf op "(M, function() { "))
|
(fprintf op "(M, function() { "))
|
||||||
|
|
||||||
;; after
|
;; after
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
(require "../compiler/il-structs.rkt"
|
(require "../compiler/il-structs.rkt"
|
||||||
"../compiler/bootstrapped-primitives.rkt"
|
"../compiler/bootstrapped-primitives.rkt"
|
||||||
"../compiler/expression-structs.rkt"
|
"../compiler/expression-structs.rkt"
|
||||||
"get-dependencies.rkt")
|
"get-dependencies.rkt"
|
||||||
|
"../promise.rkt")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -51,11 +52,11 @@
|
||||||
(define-struct: Configuration
|
(define-struct: Configuration
|
||||||
([wrap-source : (Source -> Source)]
|
([wrap-source : (Source -> Source)]
|
||||||
[should-follow-children? : (Source -> Boolean)]
|
[should-follow-children? : (Source -> Boolean)]
|
||||||
[on-module-statements : (Source
|
[on-source : (Source
|
||||||
(U Expression #f)
|
(U Expression #f)
|
||||||
(Listof Statement)
|
(MyPromise (Listof Statement))
|
||||||
-> Void)]
|
-> Void)]
|
||||||
[after-module-statements : (Source -> Void)]
|
[after-source : (Source -> Void)]
|
||||||
[after-last : (-> Void)])
|
[after-last : (-> Void)])
|
||||||
#:mutable)
|
#:mutable)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
"get-dependencies.rkt"
|
"get-dependencies.rkt"
|
||||||
"make-structs.rkt"
|
"make-structs.rkt"
|
||||||
racket/list
|
racket/list
|
||||||
racket/match)
|
racket/match
|
||||||
|
"../promise.rkt")
|
||||||
|
|
||||||
|
|
||||||
(require/typed "../logger.rkt"
|
(require/typed "../logger.rkt"
|
||||||
|
@ -39,36 +40,41 @@
|
||||||
|
|
||||||
|
|
||||||
(: get-ast-and-statements (Source -> (values (U False Expression)
|
(: get-ast-and-statements (Source -> (values (U False Expression)
|
||||||
(Listof Statement))))
|
(MyPromise (Listof Statement)))))
|
||||||
(define (get-ast-and-statements a-source)
|
(define (get-ast-and-statements a-source)
|
||||||
(cond
|
(cond
|
||||||
[(StatementsSource? a-source)
|
[(StatementsSource? a-source)
|
||||||
(values #f (StatementsSource-stmts a-source))]
|
(values #f (my-delay (StatementsSource-stmts a-source)))]
|
||||||
|
|
||||||
[(UninterpretedSource? a-source)
|
[(UninterpretedSource? a-source)
|
||||||
(values #f '())]
|
(values #f (my-delay '()))]
|
||||||
|
|
||||||
[(MainModuleSource? a-source)
|
[(MainModuleSource? a-source)
|
||||||
(let-values ([(ast stmts)
|
(let-values ([(ast stmts)
|
||||||
(get-ast-and-statements (MainModuleSource-source a-source))])
|
(get-ast-and-statements (MainModuleSource-source a-source))])
|
||||||
(let ([maybe-module-locator (find-module-locator ast)])
|
(values ast
|
||||||
(cond
|
(my-delay
|
||||||
[(ModuleLocator? maybe-module-locator)
|
(let ([maybe-module-locator (find-module-locator ast)])
|
||||||
(values ast (append stmts
|
(cond
|
||||||
;; Set the main module name
|
[(ModuleLocator? maybe-module-locator)
|
||||||
(list (make-PerformStatement
|
(append (my-force stmts)
|
||||||
(make-AliasModuleAsMain!
|
;; Set the main module name
|
||||||
maybe-module-locator)))))]
|
(list (make-PerformStatement
|
||||||
[else
|
(make-AliasModuleAsMain!
|
||||||
(values ast stmts)])))]
|
maybe-module-locator))))]
|
||||||
|
[else
|
||||||
|
(my-force stmts)])))))]
|
||||||
[else
|
[else
|
||||||
(let ([ast (get-ast a-source)])
|
(let ([ast (get-ast a-source)])
|
||||||
(define start-time (current-inexact-milliseconds))
|
(values ast
|
||||||
(define compiled-code (compile ast 'val next-linkage/drop-multiple))
|
(my-delay
|
||||||
(define stop-time (current-inexact-milliseconds))
|
(define start-time (current-inexact-milliseconds))
|
||||||
(fprintf (current-timing-port) " compile ast: ~a milliseconds\n" (- stop-time start-time))
|
(define compiled-code (compile ast 'val next-linkage/drop-multiple))
|
||||||
(values ast compiled-code))]))
|
(define stop-time (current-inexact-milliseconds))
|
||||||
|
(fprintf (current-timing-port)
|
||||||
|
" compile ast: ~a milliseconds\n"
|
||||||
|
(- stop-time start-time))
|
||||||
|
compiled-code)))]))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -122,7 +128,7 @@
|
||||||
(match config
|
(match config
|
||||||
[(struct Configuration (wrap-source
|
[(struct Configuration (wrap-source
|
||||||
should-follow-children?
|
should-follow-children?
|
||||||
on-module-statements
|
on-source
|
||||||
after-module-statements
|
after-module-statements
|
||||||
after-last))
|
after-last))
|
||||||
|
|
||||||
|
@ -177,7 +183,7 @@
|
||||||
[(ast stmts)
|
[(ast stmts)
|
||||||
(get-ast-and-statements this-source)])
|
(get-ast-and-statements this-source)])
|
||||||
(log-debug (format "visiting ~a\n" (source-name this-source)))
|
(log-debug (format "visiting ~a\n" (source-name this-source)))
|
||||||
(on-module-statements this-source ast stmts)
|
((Configuration-on-source config) this-source ast stmts)
|
||||||
(define start-time (current-inexact-milliseconds))
|
(define start-time (current-inexact-milliseconds))
|
||||||
(define new-dependencies (map wrap-source (collect-new-dependencies this-source ast)))
|
(define new-dependencies (map wrap-source (collect-new-dependencies this-source ast)))
|
||||||
(define end-time (current-inexact-milliseconds))
|
(define end-time (current-inexact-milliseconds))
|
||||||
|
|
39
promise.rkt
Normal file
39
promise.rkt
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
#lang typed/racket/base
|
||||||
|
(require (for-syntax racket/base))
|
||||||
|
|
||||||
|
;; Working around what appears to be a bug in Typed Racket
|
||||||
|
;; by implementing my own promises.
|
||||||
|
|
||||||
|
(provide my-delay my-force MyPromise)
|
||||||
|
|
||||||
|
|
||||||
|
(define-struct: Sentinel ())
|
||||||
|
|
||||||
|
|
||||||
|
(define-struct: (a) MyPromise ([forced? : Boolean]
|
||||||
|
[thunk : (-> a)]
|
||||||
|
[val : (U Sentinel a)])
|
||||||
|
#:mutable)
|
||||||
|
|
||||||
|
|
||||||
|
(define-syntax (my-delay stx)
|
||||||
|
(syntax-case stx ()
|
||||||
|
[(_ expr ...)
|
||||||
|
(syntax/loc stx
|
||||||
|
(make-MyPromise #f
|
||||||
|
(lambda () expr ...)
|
||||||
|
(make-Sentinel)))]))
|
||||||
|
|
||||||
|
(: my-force (All (a) (MyPromise a) -> a))
|
||||||
|
(define (my-force a-promise)
|
||||||
|
(cond
|
||||||
|
[(MyPromise-forced? a-promise)
|
||||||
|
(define val (MyPromise-val a-promise))
|
||||||
|
(if (Sentinel? val)
|
||||||
|
(error 'force "Impossible")
|
||||||
|
val)]
|
||||||
|
[else
|
||||||
|
(define val ((MyPromise-thunk a-promise)))
|
||||||
|
(set-MyPromise-val! a-promise val)
|
||||||
|
(set-MyPromise-forced?! a-promise #t)
|
||||||
|
val]))
|
Loading…
Reference in New Issue
Block a user