trying to do paired labels

This commit is contained in:
Danny Yoo 2011-04-05 16:42:47 -04:00
parent 668dc4a938
commit 22f213213c
3 changed files with 43 additions and 19 deletions

View File

@ -29,6 +29,10 @@
(displayln (assemble-basic-block basic-block) op) (displayln (assemble-basic-block basic-block) op)
(newline op)) (newline op))
basic-blocks) basic-blocks)
(for-each (lambda: ([a-paired-label : PairedLabel])
(assemble-paired-label a-paired-label op)
(newline op))
(collect-paired-labels stmts))
(fprintf op "MACHINE.params.currentErrorHandler = fail;\n") (fprintf op "MACHINE.params.currentErrorHandler = fail;\n")
(fprintf op "MACHINE.params.currentSuccessHandler = success;\n") (fprintf op "MACHINE.params.currentSuccessHandler = success;\n")
(fprintf op #<<EOF (fprintf op #<<EOF
@ -124,7 +128,18 @@ EOF
(: collect-paired-labels ((Listof Statement) -> (Listof PairedLabel)))
(define (collect-paired-labels stmts)
(cond
[(empty? stmts)
empty]
[else
(let ([first-stmt (first stmts)])
(cond
[(PairedLabel? first-stmt)
(cons first-stmt (collect-paired-labels (rest stmts)))]
[else
(collect-paired-labels (rest stmts))]))]))
;; collect-general-jump-targets: (listof stmt) -> (listof label) ;; collect-general-jump-targets: (listof stmt) -> (listof label)
@ -493,3 +508,10 @@ EOF
(assemble-label a-location)])) (assemble-label a-location)]))
(: assemble-paired-label (PairedLabel Output-Port -> 'ok))
;; Write out the code to make it easy to jump to the previous label.
(define (assemble-paired-label a-paired-label op)
(fprintf op "~a.predecessor = ~a;"
(PairedLabel-label a-paired-label)
(PairedLabel-previous a-paired-label))
'ok)

View File

@ -821,20 +821,22 @@
(: compile-procedure-call/statically-known-lam (: compile-procedure-call/statically-known-lam
(StaticallyKnownLam CompileTimeEnvironment CompileTimeEnvironment Natural Target Linkage -> InstructionSequence)) (StaticallyKnownLam CompileTimeEnvironment CompileTimeEnvironment Natural Target Linkage -> InstructionSequence))
(define (compile-procedure-call/statically-known-lam static-knowledge cenv extended-cenv n target linkage) (define (compile-procedure-call/statically-known-lam static-knowledge cenv extended-cenv n target linkage)
(let*: ([after-call : LabelLinkage (make-LabelLinkage (make-label 'afterCall))] (let-values ([(after-call-multiple
[compiled-linkage : Linkage (if (ReturnLinkage? linkage) after-call-single)
linkage (make-paired-labels 'afterCallMultiple 'afterCallSingle)])
after-call)]) (let*: ([compiled-linkage : Linkage (if (ReturnLinkage? linkage)
(append-instruction-sequences linkage
(compile-proc-appl extended-cenv (make-Label after-call-single))])
(make-Label (StaticallyKnownLam-entry-point static-knowledge)) (append-instruction-sequences
n (compile-proc-appl extended-cenv
target (make-Label (StaticallyKnownLam-entry-point static-knowledge))
compiled-linkage) n
(end-with-linkage target
linkage compiled-linkage)
cenv (end-with-linkage
(LabelLinkage-label after-call))))) linkage
cenv
after-call-single)))))

View File

@ -304,10 +304,10 @@
(: make-paired-labels (Symbol -> (values Symbol PairedLabel))) (: make-paired-labels (Symbol Symbol -> (values Symbol PairedLabel)))
(define (make-paired-labels name) (define (make-paired-labels first-name second-name)
(let* ([first-label (make-label name)] (let* ([first-label (make-label first-name)]
[second-label (make-label name)]) [second-label (make-label second-name)])
(values first-label (make-PairedLabel second-label first-label)))) (values first-label (make-PairedLabel second-label first-label))))