-
Notifications
You must be signed in to change notification settings - Fork 1
/
fmts.pretty
18 lines (18 loc) · 887 Bytes
/
fmts.pretty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(pretty-format 'define-who '(_ x #f ...))
(pretty-format 'trace-define-who '(_ x #f ...))
(pretty-format 'match '(_ x #f [bracket e 0 ...] ...))
(pretty-format 'code '(_ #f e ...))
(pretty-format 'locals '(_ (var ...) #f e))
(pretty-format 'ulocals '(_ (var ...) #f e))
(pretty-format 'spills '(_ (var ...) #f e))
(pretty-format 'locate '(_ ([bracket var loc] 0 ...) #f e))
(pretty-format 'register-conflict '(_ ([bracket fill 0 x ...] 0 ...) #f e))
(pretty-format 'frame-conflict '(_ ([bracket fill 0 x ...] 0 ...) #f e))
(pretty-format 'new-frames '(_ ((var ...) 0 ...) #f e))
(pretty-format 'return-point '(_ rplab #f e))
(pretty-format 'call-live '(_ (var ...) #f e))
(pretty-format 'free '(_ x #f e))
(pretty-format 'closures '(_ ([bracket x ...] 0 ...) #f e ...))
(pretty-format 'bind-free '(_ x #f e))
(pretty-format 'well-known '(_ x #f e))
(pretty-format 'assigned '(_ x #f e))