trying to do more profiling

This commit is contained in:
Danny Yoo 2011-09-23 15:20:20 -04:00
parent 69afabe3a6
commit 2a93508d41
4 changed files with 21 additions and 15 deletions

View File

@ -18,38 +18,44 @@
(define-runtime-path record.rkt "record.rkt") (define-runtime-path record.rkt "record.rkt")
(define ns (make-gui-namespace)) (define ns (make-gui-namespace))
(define (my-resolve-module-path a-module-path)
(resolve-module-path a-module-path #f))
;; query: module-path -> string? ;; query: module-path -> string?
;; Given a module, see if it's implemented via Javascript. ;; Given a module, see if it's implemented via Javascript.
(define (query a-module-path) (define (query a-module-path)
(let ([resolved-path (resolve-module-path a-module-path #f)]) (let ([resolved-path (my-resolve-module-path a-module-path)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
((dynamic-require-for-syntax record.rkt 'lookup-javascript-implementation) resolved-path)))) ((dynamic-require-for-syntax record.rkt 'lookup-javascript-implementation) resolved-path))))
;; has-javascript-implementation?: module-path -> boolean ;; has-javascript-implementation?: module-path -> boolean
(define (has-javascript-implementation? a-module-path) (define (has-javascript-implementation? a-module-path)
(let ([resolved-path (resolve-module-path a-module-path #f)]) (let ([resolved-path (my-resolve-module-path a-module-path)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
((dynamic-require-for-syntax record.rkt 'has-javascript-implementation?) resolved-path)))) ((dynamic-require-for-syntax record.rkt 'has-javascript-implementation?) resolved-path))))
;; redirected? path -> boolean ;; redirected? path -> boolean
(define (redirected? a-module-path) (define (redirected? a-module-path)
(let ([resolved-path (resolve-module-path a-module-path #f)]) (let ([resolved-path (my-resolve-module-path a-module-path)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
(path? ((dynamic-require-for-syntax record.rkt 'follow-redirection) (path? ((dynamic-require-for-syntax record.rkt 'follow-redirection)
resolved-path))))) resolved-path)))))
;; follow-redirection: module-path -> path ;; follow-redirection: module-path -> path
(define (follow-redirection a-module-path) (define (follow-redirection a-module-path)
(let ([resolved-path (resolve-module-path a-module-path #f)]) (let ([resolved-path (my-resolve-module-path a-module-path)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
((dynamic-require-for-syntax record.rkt 'follow-redirection) ((dynamic-require-for-syntax record.rkt 'follow-redirection)
resolved-path)))) resolved-path))))
@ -57,15 +63,15 @@
;; collect-redirections-to: module-path -> (listof path) ;; collect-redirections-to: module-path -> (listof path)
(define (collect-redirections-to a-module-path) (define (collect-redirections-to a-module-path)
(let ([resolved-path (resolve-module-path a-module-path #f)]) (let ([resolved-path (my-resolve-module-path a-module-path)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
((dynamic-require-for-syntax record.rkt 'collect-redirections-to) ((dynamic-require-for-syntax record.rkt 'collect-redirections-to)
resolved-path)))) resolved-path))))
(define (lookup-module-requires a-module-path) (define (lookup-module-requires a-module-path)
(let ([resolved-path (resolve-module-path a-module-path #f)]) (let ([resolved-path (my-resolve-module-path a-module-path)])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
((dynamic-require-for-syntax record.rkt 'lookup-module-requires) resolved-path)))) ((dynamic-require-for-syntax record.rkt 'lookup-module-requires) resolved-path))))

View File

@ -18,5 +18,5 @@
(define (query a-module-path) (define (query a-module-path)
(let ([resolved-path (normalize-path (resolve-module-path a-module-path #f))]) (let ([resolved-path (normalize-path (resolve-module-path a-module-path #f))])
(parameterize ([current-namespace ns]) (parameterize ([current-namespace ns])
(dynamic-require a-module-path (void)) ;; get the compile-time code running. (dynamic-require resolved-path (void)) ;; get the compile-time code running.
((dynamic-require-for-syntax record.rkt 'get-records) resolved-path)))) ((dynamic-require-for-syntax record.rkt 'get-records) resolved-path))))

View File

@ -6,4 +6,4 @@
(provide version) (provide version)
(: version String) (: version String)
(define version "1.27") (define version "1.38")

View File

@ -41,7 +41,7 @@
(if (with-profiling?) (if (with-profiling?)
(profile expr (profile expr
#:threads #t #:threads #t
#:delay 0.01 #:delay 0.0001
#:render (lambda (profile) #:render (lambda (profile)
(render profile (render profile
#:truncate-source 500))) #:truncate-source 500)))