altos/lisp: convert GC to non-recursive
[fw/altos] / src / lisp / ao_lisp_prim.c
1 /*
2  * Copyright © 2016 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14
15 #include "ao_lisp.h"
16
17 #if 0
18 #define DBG(...) printf (__VA_ARGS__)
19 #else
20 #define DBG(...)
21 #endif
22
23 struct ao_lisp_funcs {
24         void (*print)(ao_poly);
25         void (*patom)(ao_poly);
26 };
27
28 static const struct ao_lisp_funcs ao_lisp_funcs[AO_LISP_NUM_TYPE] = {
29         [AO_LISP_CONS] = {
30                 .print = ao_lisp_cons_print,
31                 .patom = ao_lisp_cons_patom,
32         },
33         [AO_LISP_STRING] = {
34                 .print = ao_lisp_string_print,
35                 .patom = ao_lisp_string_patom,
36         },
37         [AO_LISP_INT] = {
38                 .print = ao_lisp_int_print,
39                 .patom = ao_lisp_int_print,
40         },
41         [AO_LISP_ATOM] = {
42                 .print = ao_lisp_atom_print,
43                 .patom = ao_lisp_atom_print,
44         },
45         [AO_LISP_BUILTIN] = {
46                 .print = ao_lisp_builtin_print,
47                 .patom = ao_lisp_builtin_print,
48         }
49 };
50
51 static const struct ao_lisp_funcs *
52 funcs(ao_poly p)
53 {
54         uint8_t type = ao_lisp_poly_type(p);
55
56         if (type < AO_LISP_NUM_TYPE)
57                 return &ao_lisp_funcs[type];
58         return NULL;
59 }
60
61 void
62 ao_lisp_poly_print(ao_poly p)
63 {
64         const struct ao_lisp_funcs *f = funcs(p);
65
66         if (f && f->print)
67                 f->print(p);
68 }
69
70 void
71 ao_lisp_poly_patom(ao_poly p)
72 {
73         const struct ao_lisp_funcs *f = funcs(p);
74
75         if (f && f->patom)
76                 f->patom(p);
77 }
78