7f02505df7d3c7b2f95b5a780c2a2df1824fa8ce
[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 static void (*const ao_lisp_print_funcs[AO_LISP_NUM_TYPE])(ao_poly) = {
24         [AO_LISP_CONS] = ao_lisp_cons_print,
25         [AO_LISP_STRING] = ao_lisp_string_print,
26         [AO_LISP_INT] = ao_lisp_int_print,
27         [AO_LISP_ATOM] = ao_lisp_atom_print,
28         [AO_LISP_BUILTIN] = ao_lisp_builtin_print
29 };
30
31 ao_poly
32 ao_lisp_poly_print(ao_poly p)
33 {
34         void (*print)(ao_poly) = ao_lisp_print_funcs[ao_lisp_poly_type(p)];
35         if (print)
36                 print(p);
37         return p;
38 }
39
40 static const struct ao_lisp_type const *ao_lisp_types[AO_LISP_NUM_TYPE] = {
41         [AO_LISP_CONS] = &ao_lisp_cons_type,
42         [AO_LISP_INT] = NULL,
43         [AO_LISP_STRING] = &ao_lisp_string_type,
44         [AO_LISP_OTHER] = (void *) 0x1,
45         [AO_LISP_ATOM] = &ao_lisp_atom_type,
46         [AO_LISP_BUILTIN] = &ao_lisp_builtin_type,
47         [AO_LISP_FRAME] = &ao_lisp_frame_type,
48 };
49
50 int
51 ao_lisp_poly_mark(ao_poly p)
52 {
53         const struct ao_lisp_type *lisp_type = ao_lisp_types[ao_lisp_poly_type(p)];
54         if (lisp_type)
55                 return ao_lisp_mark(lisp_type, ao_lisp_ref(p));
56         return 1;
57 }
58
59 int
60 ao_lisp_poly_move(ao_poly *ref)
61 {
62         uint8_t                         type;
63         ao_poly                         p = *ref;
64         const struct ao_lisp_type       *lisp_type;
65         int                             ret;
66         void                            *addr;
67
68         if (!p)
69                 return 1;
70
71         type = p & AO_LISP_TYPE_MASK;
72         if (type == AO_LISP_OTHER)
73                 type = ao_lisp_other_type(ao_lisp_move_map(ao_lisp_poly_other(p)));
74
75         if (type >= AO_LISP_NUM_TYPE)
76                 abort();
77
78         lisp_type = ao_lisp_types[type];
79         if (!lisp_type)
80                 return 1;
81         addr = ao_lisp_ref(p);
82         ret = ao_lisp_move(lisp_type, &addr);
83         if (addr != ao_lisp_ref(p)) {
84                 ao_poly np = ao_lisp_poly(addr, p & AO_LISP_TYPE_MASK);
85                 DBG("poly %d moved %04x -> %04x\n",
86                     type, p, np);
87                 *ref = np;
88         }
89         return ret;
90 }