re-enabling some optimizations

This commit is contained in:
Danny Yoo 2011-05-31 15:18:22 -04:00
parent 5a04541fe3
commit e6ebaa1d3d
6 changed files with 48 additions and 31 deletions

14
NOTES
View File

@ -583,4 +583,16 @@ What's currently preventing racket/base?
Nan, INF Numbers, Regular expressions, keywords, byte strings, Nan, INF Numbers, Regular expressions, keywords, byte strings,
character literals character literals
Missing #%paramz module Missing #%paramz module
----------------------------------------------------------------------
What needs to be done next?
benchmarks
being able to write modules in javascript
being able to bundle external resources (like images)

View File

@ -22,7 +22,8 @@
(U '? ;; no knowledge (U '? ;; no knowledge
Prefix ;; placeholder: necessary since the toplevel lives in the environment too Prefix ;; placeholder: necessary since the toplevel lives in the environment too
StaticallyKnownLam ;; The value is a known lam StaticallyKnownLam ;; The value is a known lam
ModuleVariable ;; The value is a known module variable ModuleVariable ;; The value is a variable from a module
PrimitiveKernelValue
Const Const
)) ))

View File

@ -7,7 +7,7 @@
"kernel-primitives.rkt" "kernel-primitives.rkt"
"optimize-il.rkt" "optimize-il.rkt"
"analyzer-structs.rkt" "analyzer-structs.rkt"
"analyzer.rkt" #;"analyzer.rkt"
"../parameters.rkt" "../parameters.rkt"
"../sets.rkt" "../sets.rkt"
racket/match racket/match
@ -20,8 +20,8 @@
(: current-analysis (Parameterof Analysis)) #;(: current-analysis (Parameterof Analysis))
(define current-analysis (make-parameter (empty-analysis))) #;(define current-analysis (make-parameter (empty-analysis)))
@ -30,7 +30,7 @@
;; Note: the toplevel generates the lambda body streams at the head, and then the ;; Note: the toplevel generates the lambda body streams at the head, and then the
;; rest of the instruction stream. ;; rest of the instruction stream.
(define (-compile exp target linkage) (define (-compile exp target linkage)
(parameterize ([current-analysis (analyze exp)]) (parameterize (#;[current-analysis (analyze exp)])
(let* ([after-lam-bodies (make-label 'afterLamBodies)] (let* ([after-lam-bodies (make-label 'afterLamBodies)]
[before-pop-prompt-multiple (make-label 'beforePopPromptMultiple)] [before-pop-prompt-multiple (make-label 'beforePopPromptMultiple)]
[before-pop-prompt (make-LinkedLabel [before-pop-prompt (make-LinkedLabel
@ -60,6 +60,7 @@
(make-instruction-sequence (make-instruction-sequence
`(,(make-AssignImmediateStatement target (make-Reg 'val))))))))))) `(,(make-AssignImmediateStatement target (make-Reg 'val)))))))))))
(define-struct: lam+cenv ([lam : (U Lam CaseLam)] (define-struct: lam+cenv ([lam : (U Lam CaseLam)]
[cenv : CompileTimeEnvironment])) [cenv : CompileTimeEnvironment]))
@ -338,12 +339,10 @@
(make-PerformStatement (make-MarkModuleInvoked! path)) (make-PerformStatement (make-MarkModuleInvoked! path))
;; Module body definition: ;; Module body definition:
;; 1. First invoke all the modules that this requires. ;; 1. First invoke all the modules that this requires.
#;(make-DebugPrint (make-Const "handling internal requires"))
(apply append-instruction-sequences (apply append-instruction-sequences
(map compile-module-invoke (Module-requires mod))) (map compile-module-invoke (Module-requires mod)))
;; 2. Next, evaluate the module body. ;; 2. Next, evaluate the module body.
#;(make-DebugPrint (make-Const (format "evaluating module body of ~s" path)))
(make-PerformStatement (make-ExtendEnvironment/Prefix! names)) (make-PerformStatement (make-ExtendEnvironment/Prefix! names))
(make-AssignImmediateStatement (make-ModulePrefixTarget path) (make-AssignImmediateStatement (make-ModulePrefixTarget path)
@ -354,14 +353,11 @@
'val 'val
next-linkage/drop-multiple) next-linkage/drop-multiple)
#;(make-DebugPrint (make-Const (format "About to clean up ~s" path)))
;; 3. Finally, cleanup and return. ;; 3. Finally, cleanup and return.
(make-PopEnvironment (make-Const 1) (make-Const 0)) (make-PopEnvironment (make-Const 1) (make-Const 0))
(make-AssignImmediateStatement 'proc (make-ControlStackLabel)) (make-AssignImmediateStatement 'proc (make-ControlStackLabel))
(make-PopControlFrame) (make-PopControlFrame)
#;(make-DebugPrint (make-Const "Returning from module invokation."))
#;(make-DebugPrint (make-Reg 'proc))
(make-PerformStatement (make-FinalizeModuleInvokation! path)) (make-PerformStatement (make-FinalizeModuleInvokation! path))
(make-GotoStatement (make-Reg 'proc)) (make-GotoStatement (make-Reg 'proc))
@ -405,7 +401,6 @@
,(make-TestAndBranchStatement (make-TestTrue ,(make-TestAndBranchStatement (make-TestTrue
(make-IsModuleInvoked a-module-name)) (make-IsModuleInvoked a-module-name))
already-loaded) already-loaded)
#;,(make-DebugPrint (make-Const (format "entering module ~s" a-module-name)))
,(make-PushControlFrame/Call on-return) ,(make-PushControlFrame/Call on-return)
,(make-GotoStatement (ModuleEntry a-module-name)) ,(make-GotoStatement (ModuleEntry a-module-name))
,on-return-multiple ,on-return-multiple
@ -413,7 +408,6 @@
(make-Const 1)) (make-Const 1))
(make-Const 0)) (make-Const 0))
,on-return ,on-return
#;,(make-DebugPrint (make-Const (format "coming back from module ~s" a-module-name)))
,already-loaded)))])) ,already-loaded)))]))
@ -994,6 +988,13 @@
(cond (cond
[(eq? op-knowledge '?) [(eq? op-knowledge '?)
(default)] (default)]
[(PrimitiveKernelValue? op-knowledge)
(let ([id (PrimitiveKernelValue-id op-knowledge)])
(cond
[(KernelPrimitiveName/Inline? id)
(compile-kernel-primitive-application id exp cenv target linkage)]
[else
(default)]))]
[(ModuleVariable? op-knowledge) [(ModuleVariable? op-knowledge)
(cond (cond
[(symbol=? (ModuleLocator-name [(symbol=? (ModuleLocator-name
@ -1689,6 +1690,9 @@
[(Constant? exp) [(Constant? exp)
(make-Const (Constant-v exp))] (make-Const (Constant-v exp))]
[(PrimitiveKernelValue? exp)
exp]
[else [else
'?])) '?]))

View File

@ -14,10 +14,10 @@
(: optimize-il ((Listof Statement) -> (Listof Statement))) (: optimize-il ((Listof Statement) -> (Listof Statement)))
(define (optimize-il statements) (define (optimize-il statements)
statements #;statements
;; For now, replace pairs of PushEnvironment / AssignImmediate(0, ...) ;; For now, replace pairs of PushEnvironment / AssignImmediate(0, ...)
;; We should do some more optimizations here, like peephole... ;; We should do some more optimizations here, like peephole...
#;(let loop ([statements (filter not-no-op? statements)]) (let loop ([statements (filter not-no-op? statements)])
(cond (cond
[(empty? statements) [(empty? statements)
empty] empty]

View File

@ -140,7 +140,7 @@
(format "((~a) ? (~a) : RUNTIME.raiseArgumentTypeError(MACHINE, ~s, ~s, ~s, ~a))" (format "((~a) ? (~a) : RUNTIME.raiseArgumentTypeError(MACHINE, ~s, ~s, ~s, ~a))"
test-string test-string
operand-string operand-string
caller (symbol->string caller)
(symbol->string domain) (symbol->string domain)
pos pos
operand-string))])) operand-string))]))

View File

@ -235,7 +235,7 @@
;; number->string ;; number->string
;; string->number ;; string->number
;; procedure? ;; procedure?
;; pair? pair?
;; (undefined? -undefined?) ;; (undefined? -undefined?)
;; immutable? ;; immutable?
;; void? ;; void?
@ -263,7 +263,7 @@
;; box? ;; box?
;; hash? ;; hash?
;; eqv? ;; eqv?
;; equal? equal?
;; caar ;; caar
;; cadr ;; cadr
;; cdar ;; cdar
@ -277,20 +277,20 @@
;; caddr ;; caddr
;; cdddr ;; cdddr
;; cadddr ;; cadddr
;; length length
;; list? ;; list?
;; list* ;; list*
;; list-ref ;; list-ref
;; list-tail ;; list-tail
;; append append
;; reverse reverse
;; for-each ;; for-each
;; map map
;; andmap ;; andmap
;; ormap ;; ormap
;; memq ;; memq
;; memv ;; memv
;; member member
;; memf ;; memf
;; assq ;; assq
;; assv ;; assv
@ -354,13 +354,13 @@
;; bytes=? ;; bytes=?
;; bytes<? ;; bytes<?
;; bytes>? ;; bytes>?
;; make-vector make-vector
;; vector vector
;; vector-length vector-length
;; vector-ref vector-ref
;; vector-set! vector-set!
;; vector->list vector->list
;; list->vector list->vector
;; build-vector ;; build-vector
;; char=? ;; char=?
;; char<? ;; char<?