moving structure definitions from assemble into structs.
This commit is contained in:
parent
671ce83b14
commit
8e8a26c016
23
assemble.rkt
23
assemble.rkt
|
@ -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)
|
||||
|
|
35
structs.rkt
35
structs.rkt
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user