File: catsparse_parsing.sats

package info (click to toggle)
ats2-lang 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,064 kB
  • sloc: ansic: 389,637; makefile: 7,123; lisp: 812; sh: 657; php: 573; python: 387; perl: 365
file content (401 lines) | stat: -rw-r--r-- 7,260 bytes parent folder | download | duplicates (4)
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
(* ****** ****** *)
//
// CATS-parsemit
//
(* ****** ****** *)
//
// HX-2014-07-02: start
//
(* ****** ****** *)
//
#include
"share/atspre_define.hats"
//
(* ****** ****** *)
//
#define
ATS_PACKNAME"CATS-PARSEMIT"
//
(* ****** ****** *)
//
#staload "./catsparse.sats" // opened
//
(* ****** ****** *)

datatype
parerr_node =
//
  | PARERR_EOF
//
  | PARERR_COMMA
  | PARERR_COLON
  | PARERR_SEMICOLON
//
  | PARERR_LPAREN
  | PARERR_RPAREN
//
  | PARERR_LBRACE
  | PARERR_RBRACE
//
  | PARERR_INT of ()
  | PARERR_ZERO of ()
  | PARERR_INT10 of ()
//
  | PARERR_FLOAT of ()
//
  | PARERR_STRING of ()
//
  | PARERR_SRPendif
//
  | PARERR_ATSbranch_end of ()
  | PARERR_ATScaseof_end of ()
  | PARERR_ATSextcode_end of ()
  | PARERR_ATSfunbody_end of ()
  | PARERR_ATStailcal_end of ()
//
  | PARERR_ATSINSmove_con1_end of ()
  | PARERR_ATSINSmove_boxrec_end of ()
  | PARERR_ATSINSmove_fltrec_end of ()
//
  | PARERR_i0dex of ()
//
  | PARERR_s0exp of ()
  | PARERR_d0exp of ()
  | PARERR_d0ecl of ()
//
  | PARERR_instr of ()
//
  | PARERR_ATSclosurerize_end of ()
//
typedef parerr = '{
  parerr_loc= loc_t, parerr_node= parerr_node
} (* end of [parerr] *)
//
typedef parerrlst = List0 (parerr)

(* ****** ****** *)

fun fprint_parerr : fprint_type (parerr)
fun fprint_parerrlst : fprint_type (parerrlst)

(* ****** ****** *)
//
fun
parerr_make
  (loc: loc_t, node: parerr_node): parerr
//
(* ****** ****** *)

fun the_parerrlst_clear (): void
fun the_parerrlst_insert (err: parerr): void
fun the_parerrlst_pop_all ((*void*)): List0_vt(parerr)
fun the_parerrlst_print_free ((*void*)): int(*nerr*)

(* ****** ****** *)
//
fun
the_parerrlst_add
  (loc: loc_t, node: parerr_node): void
//
fun
the_parerrlst_add_ifnbt
(
  bt: int, loc: loc_t, node: parerr_node
) : void // end-of-function
//
(* ****** ****** *)

fun
tokbuf_set_ntok_null
  {a:type} (buf: &tokbuf >> _, n0: size_t): (a)
// end of [tokbuf_set_ntok_null]

(* ****** ****** *)

typedef
parser (a:type) =
  (&tokbuf(*buf*) >> _, int(*bt*), &int(*err*) >> _) -> a
// end of [parser]

(* ****** ****** *)

fun
ptoken_fun
(
  buf: &tokbuf >> _
, bt: int
, err: &int
, f: (tnode) -> bool
, enode: parerr_node
) : token // end of [ptoken_fun]

fun
ptoken_test_fun
(
  buf: &tokbuf >> _, f: (tnode) -> bool
) : bool // end of [ptoken_test_fun]

(* ****** ****** *)

fun p_EOF : parser (token)
fun is_EOF (x: tnode): bool

(* ****** ****** *)
//
fun p_COMMA : parser (token)
fun p_COMMA_test (buf: &tokbuf >> _): bool
fun is_COMMA (x: tnode): bool
//
fun p_COLON : parser (token)
fun p_COLON_test (buf: &tokbuf >> _): bool
fun is_COLON (x: tnode): bool
//
fun p_SEMICOLON : parser (token)
fun p_SEMICOLON_test (buf: &tokbuf >> _): bool
fun is_SEMICOLON (x: tnode): bool
//
(* ****** ****** *)
//
fun p_LPAREN : parser (token)
fun p_LPAREN_test (buf: &tokbuf >> _): bool
fun is_LPAREN (x: tnode): bool
//
fun p_RPAREN : parser (token)
fun p_RPAREN_test (buf: &tokbuf >> _): bool
fun is_RPAREN (x: tnode): bool
//
(* ****** ****** *)
//
fun p_LBRACE : parser (token)
fun is_LBRACE (x: tnode): bool
//
fun p_RBRACE : parser (token)
fun is_RBRACE (x: tnode): bool
//
(* ****** ****** *)
//
fun p_INT : parser (token)
fun is_INT (x: tnode): bool
//
fun p_ZERO : parser (token)
fun p_ZERO_test (buf: &tokbuf >> _): bool
fun is_ZERO (x: tnode): bool
//
fun p_INT10 : parser (token)
fun is_INT10 (x: tnode): bool
//
(* ****** ****** *)
//
fun p_FLOAT : parser (token)
fun is_FLOAT (x: tnode): bool
//
fun p_STRING : parser (token)
fun is_STRING (x: tnode): bool
//
(* ****** ****** *)

fun p_SRPendif : parser (token)  
fun is_SRPendif (x: tnode): bool
  
(* ****** ****** *)

fun p_ATSbranch_end : parser (token)
fun is_ATSbranch_end (x: tnode): bool

(* ****** ****** *)

fun p_ATScaseof_end : parser (token)
fun is_ATScaseof_end (x: tnode): bool

(* ****** ****** *)

fun p_ATSextcode_end : parser (token)
fun is_ATSextcode_end (x: tnode): bool

(* ****** ****** *)

fun p_ATSfunbody_end : parser (token)
fun is_ATSfunbody_end (x: tnode): bool

(* ****** ****** *)

fun p_ATStailcal_end : parser (token)
fun is_ATStailcal_end (x: tnode): bool

(* ****** ****** *)
//
fun p_ATSINSmove_con1_end : parser (token)
fun is_ATSINSmove_con1_end (x: tnode): bool
//
fun p_ATSINSmove_fltrec_end : parser (token)
fun is_ATSINSmove_fltrec_end (x: tnode): bool
//
fun p_ATSINSmove_boxrec_end : parser (token)
fun is_ATSINSmove_boxrec_end (x: tnode): bool
//
(* ****** ****** *)

fun
ptest_fun{a:type}
(
  buf: &tokbuf >> _
, f: parser (a), ent: &synent? >> synent
) : bool // end of [ptest_fun]

(* ****** ****** *)

fun
pstar_fun{a:type}
(
  buf: &tokbuf >> _, bt: int, f: parser (a)
) : List0_vt(a) // end of [pstar_fun]

(* ****** ****** *)

fun
pstar_sep_fun
  {a:type}
(
  buf: &tokbuf >> _, bt: int
, sep: (&tokbuf >> _) -> bool, f: parser(a)
) : List0_vt (a) // end of [pstar_sep_fun]

(* ****** ****** *)

fun
pstar_COMMA_fun
  {a:type}
(
  buf: &tokbuf >> _, bt: int, f: parser(a)
) : List0_vt(a) // end of [pstar_COMMA_fun]

(* ****** ****** *)

fun
pstar_fun0_sep
  {a:type} (
  buf: &tokbuf >> _, bt: int
, f: parser (a), sep: (&tokbuf >> _) -> bool
) : List0_vt (a) // end of [pstar_fun0_sep]

(* ****** ****** *)

fun
pstar_fun0_COMMA
  {a:type}
  (buf: &tokbuf, bt: int, f: parser (a)) : List0_vt (a)
// end of [pstar_fun0_COMMA]

(* ****** ****** *)

fun pif_fun
  {a:type} (
  buf: &tokbuf >> _
, bt: int, err: &int, f: parser (a), err0: int
) : (a) // end of [pif_fun]

(* ****** ****** *)
//
fun
ptest_SRPif0 (buf: &tokbuf >> _): bool
fun
pskip_SRPif0{n:pos}
  (buf: &tokbuf >> _, level: int(n)): void
//
(* ****** ****** *)
//
fun
parse_signed : parser (signed)
//
(* ****** ****** *)

fun parse_i0dex : parser (i0de)

(* ****** ****** *)

fun parse_label : parser (label)

(* ****** ****** *)
//
fun parse_s0exp : parser (s0exp)
fun parse_s0expseq : parser (s0explst)
//
fun parse_s0exparg : parser (s0exp)
fun parse_s0expargopt : parser (s0expopt)
//
(* ****** ****** *)
//
fun parse_d0exp : parser (d0exp)
//
fun parse_d0exparg : parser (d0exp)
fun parse_d0expargopt : parser (d0expopt)
//
(* ****** ****** *)

fun parse_d0ecl : parser (d0ecl)
fun parse_d0eclseq : parser (d0eclist)

(* ****** ****** *)

fun parse_tyfld : parser (tyfld)
fun parse_tyrec : parser (tyrec)

(* ****** ****** *)
//
fun parse_fkind : parser (fkind)
//
fun parse_f0arg : parser (f0arg)
fun parse_f0marg : parser (f0marg)
//
fun parse_f0head : parser (f0head)
//
(* ****** ****** *)

fun parse_tmpdec : parser (tmpdec)
fun parse_tmpdecs : parser (tmpdeclst)

(* ****** ****** *)

fun parse_instr : parser (instr)
fun parse_instrseq : parser (instrlst)

(* ****** ****** *)

fun parse_extval : parser (tokenlst)
fun parse_extcode : parser (tokenlst)

(* ****** ****** *)

fun parse_f0body : parser (f0body)

(* ****** ****** *)

fun parse_f0decl : parser (f0decl)

(* ****** ****** *)

fun parse_closurerize : parser (token)

(* ****** ****** *)

fun parse_toplevel (buf: &tokbuf >> _): d0eclist

(* ****** ****** *)

fun
parse_from_string{a:type}
  (inp: string, f: parser a): Option_vt (a)
// end of [parse_from_string]

(* ****** ****** *)

fun
parse_from_tokbuf (buf: &tokbuf >> _): d0eclist

(* ****** ****** *)

fun parse_from_fileref (inp: FILEref): d0eclist

(* ****** ****** *)

(* end of [catsparse_parsing.sats] *)