altos/lisp: Separate out values from atoms
[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 static void (*const ao_lisp_print_funcs[AO_LISP_NUM_TYPE])(ao_poly) = {
18         [AO_LISP_CONS] = ao_lisp_cons_print,
19         [AO_LISP_STRING] = ao_lisp_string_print,
20         [AO_LISP_INT] = ao_lisp_int_print,
21         [AO_LISP_ATOM] = ao_lisp_atom_print,
22         [AO_LISP_BUILTIN] = ao_lisp_builtin_print
23 };
24
25 ao_poly
26 ao_lisp_poly_print(ao_poly p)
27 {
28         void (*print)(ao_poly) = ao_lisp_print_funcs[ao_lisp_poly_type(p)];
29         if (print)
30                 print(p);
31         return p;
32 }
33
34 static const struct ao_lisp_type const *ao_lisp_types[AO_LISP_NUM_TYPE] = {
35         [AO_LISP_CONS] = &ao_lisp_cons_type,
36         [AO_LISP_STRING] = &ao_lisp_string_type,
37         [AO_LISP_ATOM] = &ao_lisp_atom_type,
38         [AO_LISP_BUILTIN] = &ao_lisp_builtin_type,
39 };
40
41 void
42 ao_lisp_poly_mark(ao_poly p)
43 {
44         const struct ao_lisp_type *lisp_type = ao_lisp_types[ao_lisp_poly_type(p)];
45         if (lisp_type)
46                 ao_lisp_mark(lisp_type, ao_lisp_ref(p));
47 }
48
49 ao_poly
50 ao_lisp_poly_move(ao_poly p)
51 {
52         uint8_t                         type = p & AO_LISP_TYPE_MASK;
53         const struct ao_lisp_type       *lisp_type;
54
55         if (type == AO_LISP_OTHER)
56                 type = ao_lisp_other_type(ao_lisp_move_map(ao_lisp_poly_other(p)));
57
58         lisp_type = ao_lisp_types[type];
59         if (lisp_type)
60                 p = ao_lisp_poly(ao_lisp_move(lisp_type, ao_lisp_ref(p)), p & AO_LISP_TYPE_MASK);
61         return p;
62 }