altos/lisp: Add floats
[fw/altos] / src / lisp / ao_lisp_poly.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 struct ao_lisp_funcs {
18         void (*write)(ao_poly);
19         void (*display)(ao_poly);
20 };
21
22 static const struct ao_lisp_funcs ao_lisp_funcs[AO_LISP_NUM_TYPE] = {
23         [AO_LISP_CONS] = {
24                 .write = ao_lisp_cons_write,
25                 .display = ao_lisp_cons_display,
26         },
27         [AO_LISP_STRING] = {
28                 .write = ao_lisp_string_write,
29                 .display = ao_lisp_string_display,
30         },
31         [AO_LISP_INT] = {
32                 .write = ao_lisp_int_write,
33                 .display = ao_lisp_int_write,
34         },
35         [AO_LISP_ATOM] = {
36                 .write = ao_lisp_atom_write,
37                 .display = ao_lisp_atom_write,
38         },
39         [AO_LISP_BUILTIN] = {
40                 .write = ao_lisp_builtin_write,
41                 .display = ao_lisp_builtin_write,
42         },
43         [AO_LISP_FRAME] = {
44                 .write = ao_lisp_frame_write,
45                 .display = ao_lisp_frame_write,
46         },
47         [AO_LISP_LAMBDA] = {
48                 .write = ao_lisp_lambda_write,
49                 .display = ao_lisp_lambda_write,
50         },
51         [AO_LISP_STACK] = {
52                 .write = ao_lisp_stack_write,
53                 .display = ao_lisp_stack_write,
54         },
55         [AO_LISP_BOOL] = {
56                 .write = ao_lisp_bool_write,
57                 .display = ao_lisp_bool_write,
58         },
59         [AO_LISP_BIGINT] = {
60                 .write = ao_lisp_bigint_write,
61                 .display = ao_lisp_bigint_write,
62         },
63         [AO_LISP_FLOAT] = {
64                 .write = ao_lisp_float_write,
65                 .display = ao_lisp_float_write,
66         },
67 };
68
69 static const struct ao_lisp_funcs *
70 funcs(ao_poly p)
71 {
72         uint8_t type = ao_lisp_poly_type(p);
73
74         if (type < AO_LISP_NUM_TYPE)
75                 return &ao_lisp_funcs[type];
76         return NULL;
77 }
78
79 void
80 ao_lisp_poly_write(ao_poly p)
81 {
82         const struct ao_lisp_funcs *f = funcs(p);
83
84         if (f && f->write)
85                 f->write(p);
86 }
87
88 void
89 ao_lisp_poly_display(ao_poly p)
90 {
91         const struct ao_lisp_funcs *f = funcs(p);
92
93         if (f && f->display)
94                 f->display(p);
95 }
96
97 void *
98 ao_lisp_ref(ao_poly poly) {
99         if (poly == AO_LISP_NIL)
100                 return NULL;
101         if (poly & AO_LISP_CONST)
102                 return (void *) (ao_lisp_const + (poly & AO_LISP_REF_MASK) - 4);
103         return (void *) (ao_lisp_pool + (poly & AO_LISP_REF_MASK) - 4);
104 }
105
106 ao_poly
107 ao_lisp_poly(const void *addr, ao_poly type) {
108         const uint8_t   *a = addr;
109         if (a == NULL)
110                 return AO_LISP_NIL;
111         if (AO_LISP_IS_CONST(a))
112                 return AO_LISP_CONST | (a - ao_lisp_const + 4) | type;
113         return (a - ao_lisp_pool + 4) | type;
114 }