From 2975a9f2154c56b7f33fd6a05725f25f02d5f22b Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 28 Feb 2011 23:01:45 -0500 Subject: [PATCH] relooper start --- relooper.rkt | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++ sets.rkt | 17 +++++++++ 2 files changed, 121 insertions(+) create mode 100644 relooper.rkt diff --git a/relooper.rkt b/relooper.rkt new file mode 100644 index 0000000..940e229 --- /dev/null +++ b/relooper.rkt @@ -0,0 +1,104 @@ +#lang typed/racket/base + +(require "sets.rkt" + racket/list + racket/match) + + +;; What's the input? +;; What's the output? + +;; A label has a name and ends with a branch. +(define-struct: label ([name : Symbol] + [code : Any] + [branch : Branch] + ;; The values below will be initialized. + [inlabels : (Setof label)] + [outlabels : (Setof label)] + [inlabels* : (Setof label)] + [outlabels* : (Setof label)]) + #:transparent) + + +(: new-label (Symbol Branch -> label)) +;; Creates a label that's fairly uninitialized. +(define (new-label a-name a-branch) + (make-label a-name #f a-branch (new-seteq) (new-seteq) (new-seteq) (new-seteq))) + + +;; A branch is either simple, or branching. +(define-type Branch (U Symbol ;; simple, direct branch + #f ;; leaf + branching)) +(define-struct: branching ([consequent : Symbol] + [alternative : Symbol]) + #:transparent) + + + + +;; A soup is a set of labels. +(define-struct: soup ([labels : (HashTable Symbol label)]) + #:transparent) + +(: new-soup ((Listof label) -> soup)) +;; Constructs a new soup. +(define (new-soup labels) + (let: ([ht : (HashTable Symbol label) (make-hash)]) + ;; First install the labels. + (for-each (lambda: ([l : label]) + (hash-set! ht (label-name l) l)) + labels) + ;; Next, initialize the in and out edges. + (let: ([a-soup : soup (make-soup ht)]) + (for-each (lambda: ([l : label]) + (match (label-branch l) + [(and n (? symbol?)) + (set-insert! (label-outlabels l) (soup-lookup a-soup n)) + (set-insert! (label-inlabels (soup-lookup a-soup n)) + l)] + ['#f + (void)] + [(struct branching (c a)) + (set-insert! (label-outlabels l) (soup-lookup a-soup c)) + (set-insert! (label-outlabels l) (soup-lookup a-soup a)) + + (set-insert! (label-inlabels (soup-lookup a-soup c)) + l) + (set-insert! (label-inlabels (soup-lookup a-soup a)) + l)])) + labels) + a-soup))) + + +(: soup-lookup (soup Symbol -> label)) +(define (soup-lookup a-soup a-name) + (hash-ref (soup-labels a-soup) a-name)) + + +;; What is a sample Soup? +(define a-soup (new-soup (list + (new-label 'ENTRY 'e2) + (new-label 'e2 (make-branching 'e5 'e12)) + (new-label 'e5 'e9) + (new-label 'e9 'e2) + (new-label 'e12 #f)))) + + + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + + + +(define-type Block (U basic-block + loop-block + multiple-block)) + +(define-struct: basic-block ([label : label] + [next : Block])) + +(define-struct: loop-block ([inner : Block] + [next : Block])) + +(define-struct: multiple-block ([handled : (Listof Block)] + [next : Block])) \ No newline at end of file diff --git a/sets.rkt b/sets.rkt index fbdd60b..0e8ab97 100644 --- a/sets.rkt +++ b/sets.rkt @@ -1,5 +1,10 @@ #lang typed/racket/base +(provide Setof new-set new-seteq + set-insert! set-remove! set-contains? + set-for-each set-map + set->list list->set) + (define-struct: (A) set ([ht : (HashTable A Boolean)])) (define-type (Setof A) (set A)) @@ -38,3 +43,15 @@ (define (set-map f s) ((inst hash-map A Boolean B) (set-ht s) (lambda: ([k : A] [v : Boolean]) (f k)))) + +(: set->list (All (A) ((Setof A) -> (Listof A)))) +(define (set->list a-set) + (set-map (lambda: ([k : A]) k) a-set)) + +(: list->set (All (A) ((Listof A) -> (Setof A)))) +(define (list->set a-lst) + (let: ([a-set : (Setof A) (new-set)]) + (for-each (lambda: ([k : A]) + (set-insert! a-set k)) + a-lst) + a-set)) \ No newline at end of file