moving structure definitions from assemble into structs.

This commit is contained in:
Danny Yoo 2011-02-09 17:45:09 -05:00
parent 671ce83b14
commit 8e8a26c016
2 changed files with 35 additions and 23 deletions

View File

@ -7,7 +7,6 @@
(define-struct basic-block (name stmts) #:transparent)
;; fracture: (listof stmt) -> (listof basic-block)
@ -192,28 +191,6 @@
(string-join (map assemble-stmt (basic-block-stmts a-basic-block))
"\n")))
(define (location? stmt)
(or (tagged-list? stmt 'reg)
(tagged-list? stmt 'label)))
(define (const? stmt)
(tagged-list? stmt 'const))
(define (reg? s)
(tagged-list? s 'reg))
(define (label? s)
(tagged-list? s 'label))
(define (label-name a-label)
(cadr a-label))
(define (op? s)
(tagged-list? s 'op))
(define (op-name s)
(cadr s))
;; assemble-stmt: stmt -> string
(define (assemble-stmt stmt)

View File

@ -91,3 +91,38 @@
(if (symbol? s) '() (instruction-sequence-modifies s)))
(define (statements s)
(if (symbol? s) (list s) (instruction-sequence-statements s)))
;; Statements
(define (location? stmt)
(or (tagged-list? stmt 'reg)
(tagged-list? stmt 'label)))
(define (const? stmt)
(tagged-list? stmt 'const))
(define (reg? s)
(tagged-list? s 'reg))
(define (label? s)
(tagged-list? s 'label))
(define (label-name a-label)
(cadr a-label))
(define (op? s)
(tagged-list? s 'op))
(define (op-name s)
(cadr s))
;; Basic blocks
(define-struct basic-block (name stmts) #:transparent)