You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
Racket
48 lines
1.7 KiB
Racket
#lang debug racket/base
|
|
(require racket/match
|
|
(for-syntax racket/base)
|
|
"param.rkt"
|
|
"quad.rkt")
|
|
(provide (all-defined-out))
|
|
|
|
(struct pipeline (passes)
|
|
#:constructor-name make-pipeline
|
|
#:guard (λ (procs name)
|
|
(unless ((list-of procedure?) procs)
|
|
(raise-argument-error 'bad-input-to-compiler-constructor "list of procedures" procs))
|
|
procs)
|
|
#:property prop:procedure
|
|
(λ args
|
|
(match-define (list* pipeline pass-arg _) args)
|
|
(let ([show-timing? (current-show-timing?)])
|
|
(for/fold ([pass-arg pass-arg])
|
|
([pass (in-list (pipeline-passes pipeline))])
|
|
(define thunk (λ () (pass pass-arg)))
|
|
(if show-timing?
|
|
(time (displayln pass) (thunk))
|
|
(thunk))))))
|
|
|
|
(define (compiler-append c passes)
|
|
(make-pipeline (append (pipeline-passes c) passes)))
|
|
|
|
(define-syntax (define-pass stx)
|
|
(syntax-case stx ()
|
|
[(_ (PASS-NAME ARG OTHER-ARG ...)
|
|
#:pre PRECOND-PROC
|
|
#:post POSTCOND-PROC
|
|
EXPRS ...)
|
|
#`(define PASS-NAME
|
|
(make-pipeline
|
|
(list
|
|
(procedure-rename
|
|
#,(syntax/loc stx
|
|
(λ (ARG OTHER-ARG ...)
|
|
(when (current-use-preconditions?)
|
|
(unless (PRECOND-PROC ARG)
|
|
(raise-argument-error 'PASS-NAME (format "~a (as precondition)" 'PRECOND-PROC) ARG)))
|
|
(define res (let () EXPRS ...))
|
|
(when (current-use-postconditions?)
|
|
(unless (POSTCOND-PROC res)
|
|
(raise-argument-error 'PASS-NAME (format "~a (as postcondition)" 'POSTCOND-PROC) res)))
|
|
res))
|
|
'PASS-NAME))))])) |