altos/lisp: Add save/restore infrastructure. Needs OS support to work.
[fw/altos] / src / lisp / ao_lisp_save.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 ao_poly
18 ao_lisp_save(struct ao_lisp_cons *cons)
19 {
20 #ifdef AO_LISP_SAVE
21         struct ao_lisp_os_save *os = (struct ao_lisp_os_save *) &ao_lisp_pool[AO_LISP_POOL];
22
23         ao_lisp_collect();
24         os->ao_lisp_atoms = ao_lisp_atom_poly(ao_lisp_atoms);
25         os->ao_lisp_globals = ao_lisp_frame_poly(ao_lisp_frame_global);
26         if (ao_lisp_os_save())
27                 return _ao_lisp_atom_t;
28 #endif
29         return AO_LISP_NIL;
30 }
31
32 ao_poly
33 ao_lisp_restore(struct ao_lisp_cons *cons)
34 {
35 #ifdef AO_LISP_SAVE
36         struct ao_lisp_os_save *os = (struct ao_lisp_os_save *) &ao_lisp_pool[AO_LISP_POOL];
37
38         if (ao_lisp_os_restore()) {
39
40                 ao_lisp_atoms = ao_lisp_poly_atom(os->ao_lisp_atoms);
41                 ao_lisp_frame_global = ao_lisp_poly_frame(os->ao_lisp_globals);
42
43                 /* Clear the eval global variabls */
44                 ao_lisp_eval_clear_globals();
45
46                 /* Reset the allocator */
47                 ao_lisp_top = AO_LISP_POOL;
48                 ao_lisp_collect();
49
50                 /* Re-create the evaluator stack */
51                 if (!ao_lisp_eval_restart())
52                         return AO_LISP_NIL;
53                 return _ao_lisp_atom_t;
54         }
55 #endif
56         return AO_LISP_NIL;
57 }