#lang racket/base (require racket/list "matcher.rkt") ;; don't provide reduction-relation directly, so that we can use that for the macro's name. (provide reduction-relation-lang reduction-relation-make-procs reduction-relation-rule-names reduction-relation-lws reduction-relation-procs reduction-relation-domain-pat build-reduction-relation make-reduction-relation reduction-relation? empty-reduction-relation make-rewrite-proc rewrite-proc? rewrite-proc-name rewrite-proc-lhs rewrite-proc-lhs-src rewrite-proc-id (struct-out rule-pict)) (define-struct rule-pict (arrow lhs rhs label computed-label side-conditions/pattern-binds fresh-vars)) ;; type proc = (exp exp (any -> any) (listof any) -> (listof any))) ;; a proc is a `cached' version of a make-proc, specialized to a particular language ;; since that first application does all the work of compiling a pattern (wrt to a language), ;; we want to avoid doing it multiple times, so it is cached in a reduction-relation struct (define-values (make-rewrite-proc rewrite-proc? rewrite-proc-name rewrite-proc-lhs rewrite-proc-lhs-src rewrite-proc-id) (let () (define-values (type constructor predicate accessor mutator) (make-struct-type 'rewrite-proc #f 5 0 #f '() #f 0)) (values constructor predicate (make-struct-field-accessor accessor 1 'name) (make-struct-field-accessor accessor 2 'lhs) (make-struct-field-accessor accessor 3 'lhs-src) (make-struct-field-accessor accessor 4 'id)))) ;; lang : compiled-language ;; make-procs = (listof (compiled-lang -> proc)) ;; rule-names : (listof sym) ;; procs : (listof proc) (define-struct reduction-relation (lang make-procs rule-names lws procs domain-pat)) (define empty-reduction-relation (make-reduction-relation 'empty-reduction-relations-language '() '() '() '() #f)) (define (build-reduction-relation original language rules rule-names lws domain) (define combined-rules (if original (append (filter (λ (rule) (or (not (rewrite-proc-name rule)) (not (member (string->symbol (rewrite-proc-name rule)) rule-names)))) (reduction-relation-make-procs original)) rules) rules)) (define combined-rule-names (if original (remove-duplicates (append rule-names (reduction-relation-rule-names original))) rule-names)) (define compiled-domain (compile-pattern language domain #f)) (make-reduction-relation language combined-rules combined-rule-names lws (map (λ (rule) (define specialized (rule language)) (define (checked-rewrite t) (unless (match-pattern compiled-domain t) (error 'reduction-relation "relation reduced to ~s via ~a, which is outside its domain" t (let ([name (rewrite-proc-name rule)]) (if name (format "the rule named ~a" name) "an unnamed rule")))) t) (λ (exp acc) (unless (match-pattern compiled-domain exp) (error 'reduction-relation "relation not defined for ~s" exp)) (specialized exp exp checked-rewrite acc))) combined-rules) domain))