turning off block inlining and the list library for the moment; need to analyze il and generate cleaner code

This commit is contained in:
Danny Yoo 2011-07-30 18:41:15 -04:00
parent a8af8dc9b6
commit 11f461886a
3 changed files with 17 additions and 11 deletions

View File

@ -9,7 +9,6 @@
(: collect-general-jump-targets ((Listof Statement) -> (Listof Symbol)))
;; collects all the labels that are potential targets for GOTOs or branches.
(define (collect-general-jump-targets stmts)

View File

@ -15,7 +15,9 @@
(define-type Blockht (HashTable Symbol BasicBlock))
(define-type Bodyht (HashTable (Listof UnlabeledStatement) Symbol))
;; We want maps from unlabeled statements to their respective blocks.
(define-type Bodyht (HashTable (Listof UnlabeledStatement) (Listof Symbol)))
(: optimize-basic-blocks ((Listof BasicBlock) -> (Listof BasicBlock)))
@ -24,20 +26,25 @@
(: blockht : Blockht)
(define blockht (make-hasheq))
(: bodyht : Blockht)
(: bodyht : Bodyht)
(define bodyht (make-hasheq))
;; First, scan through the blocks, and pick up their names and bodies.
(for ([b blocks])
(hash-set! blockht (BasicBlock-name b) b))
(hash-set! blockht (BasicBlock-name b) b)
(define inlined-blocks
(when (hash-has-key? bodyht (BasicBlock-stmts b))
(log-debug (format "block ~a has the same content as another block" (BasicBlock-name b))))
(hash-set! bodyht (BasicBlock-stmts b)
(cons (BasicBlock-name b)
(hash-ref bodyht (BasicBlock-stmts b) (lambda () '())))))
blocks
#;(define inlined-blocks
(map (lambda: ([b : BasicBlock])
(optimize-block b blockht))
blocks))
inlined-blocks)
#;inlined-blocks)

View File

@ -1,5 +1,5 @@
#lang s-exp "kernel.rkt"
(provide (all-from-out "kernel.rkt")
(all-from-out "private/list.rkt"))
#;(all-from-out "private/list.rkt"))
(require racket/private/modbeg
"private/list.rkt")
#;"private/list.rkt")