altos/lisp: Add 'big' ints -- 24 bits wide
[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 };
64
65 static const struct ao_lisp_funcs *
66 funcs(ao_poly p)
67 {
68         uint8_t type = ao_lisp_poly_type(p);
69
70         if (type < AO_LISP_NUM_TYPE)
71                 return &ao_lisp_funcs[type];
72         return NULL;
73 }
74
75 void
76 ao_lisp_poly_write(ao_poly p)
77 {
78         const struct ao_lisp_funcs *f = funcs(p);
79
80         if (f && f->write)
81                 f->write(p);
82 }
83
84 void
85 ao_lisp_poly_display(ao_poly p)
86 {
87         const struct ao_lisp_funcs *f = funcs(p);
88
89         if (f && f->display)
90                 f->display(p);
91 }
92
93 void *
94 ao_lisp_ref(ao_poly poly) {
95         if (poly == AO_LISP_NIL)
96                 return NULL;
97         if (poly & AO_LISP_CONST)
98                 return (void *) (ao_lisp_const + (poly & AO_LISP_REF_MASK) - 4);
99         return (void *) (ao_lisp_pool + (poly & AO_LISP_REF_MASK) - 4);
100 }
101
102 ao_poly
103 ao_lisp_poly(const void *addr, ao_poly type) {
104         const uint8_t   *a = addr;
105         if (a == NULL)
106                 return AO_LISP_NIL;
107         if (AO_LISP_IS_CONST(a))
108                 return AO_LISP_CONST | (a - ao_lisp_const + 4) | type;
109         return (a - ao_lisp_pool + 4) | type;
110 }