This file is indexed.

/usr/lib/goo/mods/eval/ast-print.goo is in goo 0.155-13.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
;;;; Copyright 2002, Jonathan Bachrach.  See file TERMS.

(use goo)
(use goo/io/write)
(use eval/ast)
(use eval/ast-linearize)

(dm type-out (out|<out-port> x))

(dm type-out (out|<out-port> x|<type>)
  (unless (or (== x <any>) (isa? x <bot>))
    (msg out "|%t" x)))

(dm type-out (out|<out-port> x|<binding>)
  (type-out out (binding-inferred-type x)))

(dm type-out (out|<out-port> x|<program>)
  (type-out out (program-type x)))

(dm write-binding (out|<out-port> x|<module-binding> k|<sym>)
  (msg out "MB_%s" (binding-name x)))

(dm write-binding (out|<out-port> x|<module-binding> k|(t= 'global))
  (msg out "GB_%s" (binding-name x)))

(dm write-binding (out|<out-port> x|<module-binding> k|(t= 'predefined))
  (msg out "PB_%s" (binding-name x)))

(dm write-binding (out|<out-port> x|<module-binding> k|(t= 'dynamic))
  (msg out "DB_%s" (binding-name x)))

(dm write-binding (out|<out-port> x|<module-binding> k|(t= 'quotation))
  (msg out "QB(%= %=)" (binding-name x) (binding-value x)))

(dm ast-write (out|<out-port> x|<any> d|<int>)
  (emit out x))

(dm ast-write (out|<out-port> x|<module-binding> d|<int>)
  (write-binding out x (binding-kind x)) (type-out out x))

(dm ast-write (out|<out-port> x|<local-binding> d|<int>)
  (puts out "LB")
  (when (binding-mutable? x)
    (puts out "M"))
  ;; (when (binding-dotted? x)
  ;;   (write out "D"))
  (msg out "_%s" (binding-name x))
  (type-out out x))

(dm ast-write (out|<out-port> x|<local-reference> d|<int>)
  (msg out "LR^%s" (binding-name (reference-binding x))))

(dm ast-write (out|<out-port> x|<global-reference> d|<int>)
  (msg out "GR^%s" (reference-binding x)))

(dm ast-write (out|<out-port> x|<runtime-reference> d|<int>)
  (msg out "RR^%s" (reference-binding x)))

;; (dm ast-write (out|<out-port> x|<predefined-reference> d|<int>)
;;   (msg out "PR^%s" (reference-binding x)))

(ds ast-between-parentheses-spaced ((,out-val ,depth-val) ,@body)
  (let ((out-var (gensym)) (depth-var (gensym)))
    `(let ((,out-var ,out-val) (,depth-var (+ ,depth-val 1)))
       (put ,out-var #\() 
       ,@(packing 
           (rep loop ((body body) (first? #t))
             (unless (nul? body)
               (unless first? (pack `(put ,out-var #\space)))
               (pack `(ast-write ,out-var ,(head body) ,depth-var))
               (loop (tail body) #f))))
       (put ,out-var #\)))))

(ds ast-between-parentheses-spaced+typed ((,out ,depth ,x) ,@body)
  `(seq (ast-between-parentheses-spaced (,out ,depth) ,@body) 
        (type-out ,out ,x)))

(dm ast-write (out|<out-port> x|<local-assignment> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "SET" (assignment-reference x) (assignment-form x)))

(dm ast-write (out|<out-port> x|<global-assignment> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "SET" (assignment-binding x) (assignment-form x)))

(dm ast-write (out|<out-port> x|<definition> d|<int>)
  (ast-between-parentheses-spaced (out d)
    "DEF" (assignment-binding x) (assignment-form x)))

(dm do-ast-write-list 
    (out|<out-port> x prefix|<str> suffix|<str> d|<int> do-first? print)
  (puts out prefix)
  (rep loop ((x x) (first? #t))
    (unless (nul? x)
      (when (or (not do-first?) (not first?)) (puts out " "))
      (print out (head x) d)
      (loop (tail x) #f)))
  (puts out suffix))

(dm ast-write-list (out|<out-port> x|<list> d|<int>)
  (do-ast-write-list out x "(" ")" d #t ast-write))

(dm ast-write (out|<out-port> x|<list> d|<int>)
  (ast-write-list out x d))

(dm ast-write (out|<out-port> x|<ast-function> d|<int>)
  (ast-between-parentheses-spaced (out d)
    (function-kind x) (function-bindings x)
    (function-body x)))

(dm ast-write (out|<out-port> x|<alternative> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "IF" (alternative-condition x) 
    (alternative-consequent x) (alternative-alternant x)))

(dm ast-write (out|<out-port> x|<sequential> d|<int>)
  (do-ast-write-list out x "(SEQ" ")" d #f ast-write)
  (type-out out (last x)))

(dm ast-write (out|<out-port> x|<constant> d|<int>)
  (msg out "C(%=)" (constant-value x)))

(dm ast-write (out|<out-port> x|<regular-application> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    (application-function x) (application-arguments x)))

(dm ast-write (out|<out-port> x|<method-application> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    (puts out "MC") (application-function x) (application-next-methods x) 
    (application-arguments x)))

(dm ast-write (out|<out-port> x|<predefined-application> d|<int>)
  (ast-between-parentheses-spaced (out d)
    (application-binding x) (application-arguments x)))

(dm ast-write (out|<out-port> x|<loop-application> d|<int>)
  (ast-between-parentheses-spaced (out d)
    "GOTO" (application-arguments x)))

(dm ast-write (out|<out-port> x|<fix-let> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "LET" (map2 list (fix-let-bindings x) (fix-let-arguments x))
    (fix-let-body x)))

(dm ast-write (out|<out-port> x|<arguments> d|<int>)
  (do-ast-write-list out x "" "" d #t ast-write))

(dm ast-write (out|<out-port> x|<locals> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "LOC" (map2 list (locals-bindings x) (locals-functions x))
    (locals-body x)))

(dm ast-write (out|<out-port> x|<loop> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "LOOP" (LOOP-bindings x) (loop-body x)))

(dm ast-write (out|<out-port> x|<bind-exit> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "ESC" (bind-exit-main-fun x)))

(dm ast-write (out|<out-port> x|<unwind-protect> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "FIN" (unwind-protect-protected-thunk x) (unwind-protect-cleanup-thunk x)))

(dm ast-write (out|<out-port> x|<monitor> d|<int>)
  (ast-between-parentheses-spaced+typed (out d x)
    "MON" (monitor-handler x) (monitor-main-thunk x)))

(dm ast-write (out|<out-port> x|<closure-creation> d|<int>)
  (msg out "CC-%=(F %=)" 
          (closure-creation-index x) (closure-creation-free x)))

(dm ast-write (out|<out-port> x|<free-reference> d|<int>)
  (msg out "FR^%s" (binding-name (reference-binding x))))

(dm ast-write (out|<out-port> x|<box-creation> d|<int>)
  (msg out "BC(%=)" (box-reference x)))

(dm ast-write (out|<out-port> x|<box-read> d|<int>)
  (msg out "BR(%=)" (box-reference x)))

(dm ast-write (out|<out-port> x|<box-write> d|<int>)
  (msg out "BW(%= %=)" (box-reference x) (box-form x)))

(dm function-kind (x|<ast-function>)
  "FUN")

;; (dm function-kind (x|<function-definition>)
;;   (msg-to-str "FD-%=" (function-index x)))
;; 
;; (dm function-kind (x|<method-definition>)
;;   "MD")
;; 
;; (dm function-kind (x|<primitive-definition>)
;;   (msg-to-str "PD-%=" (function-name x)))

;; (dm ast-write (out|<out-port> x|<top-level-form> d|<int>)
;;   (msg out "FRM(PG %= QS %= DS %=)" 
;;        (form-program x) (form-quotations x) (form-definitions x)))

;; (dm ast-write (out|<out-port> x|<flattened-program> d|<int>)
;;   (msg out "PG(FM %=\n   QS %=\n   DS %=)" 
;;        (program-form x) (program-quotations x) (program-definitions x)))

(dm recurring-write (port|<out-port> x|<program> d|<int> recur|<fun>)
  (ast-write port x d))

(dm recurring-write (port|<out-port> x|<programs> d|<int> recur|<fun>)
  (ast-write port x d))

(export ast-write)