altos/scheme: inline some mem calls to reduce stack usage.
[fw/altos] / src / scheme / ao_scheme_mem.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 #define AO_SCHEME_CONST_BITS
16
17 #include "ao_scheme.h"
18 #include <stdio.h>
19 #include <assert.h>
20
21 #ifdef AO_SCHEME_MAKE_CONST
22
23 /*
24  * When building the constant table, it is the
25  * pool for allocations.
26  */
27
28 #include <stdlib.h>
29 uint8_t ao_scheme_const[AO_SCHEME_POOL_CONST] __attribute__((aligned(4)));
30 #define ao_scheme_pool ao_scheme_const
31 #undef AO_SCHEME_POOL
32 #define AO_SCHEME_POOL AO_SCHEME_POOL_CONST
33
34 #else
35
36 uint8_t ao_scheme_pool[AO_SCHEME_POOL + AO_SCHEME_POOL_EXTRA] __attribute__((aligned(4)));
37
38 #endif
39
40 #ifndef DBG_MEM_STATS
41 #define DBG_MEM_STATS   DBG_MEM
42 #endif
43
44 #define DBG_MEM_STACK   0
45 #if DBG_MEM_STACK
46 char    *mem_collect_stack;
47 int64_t mem_collect_max_depth;
48
49 static void
50 ao_scheme_check_stack(void)
51 {
52         char    x;
53         int64_t depth;
54
55         depth = mem_collect_stack - &x;
56         if (depth > mem_collect_max_depth)
57                 mem_collect_max_depth = depth;
58 }
59
60 static void
61 _ao_scheme_reset_stack(char *x)
62 {
63         mem_collect_stack = x;
64 //      mem_collect_max_depth = 0;
65 }
66 #define ao_scheme_declare_stack char x;
67 #define ao_scheme_reset_stack() _ao_scheme_reset_stack(&x)
68 #else
69 #define ao_scheme_check_stack()
70 #define ao_scheme_declare_stack
71 #define ao_scheme_reset_stack()
72 #endif
73
74 #if DBG_MEM
75 int dbg_move_depth;
76 int dbg_mem = DBG_MEM_START;
77 int dbg_validate = 0;
78
79 struct ao_scheme_record {
80         struct ao_scheme_record         *next;
81         const struct ao_scheme_type     *type;
82         void                            *addr;
83         int                             size;
84 };
85
86 static struct ao_scheme_record  *record_head, **record_tail;
87
88 static void
89 ao_scheme_record_free(struct ao_scheme_record *record)
90 {
91         while (record) {
92                 struct ao_scheme_record *next = record->next;
93                 free(record);
94                 record = next;
95         }
96 }
97
98 static void
99 ao_scheme_record_reset(void)
100 {
101         ao_scheme_record_free(record_head);
102         record_head = NULL;
103         record_tail = &record_head;
104 }
105
106 static void
107 ao_scheme_record(const struct ao_scheme_type    *type,
108                void                             *addr,
109                int                              size)
110 {
111         struct ao_scheme_record *r = malloc(sizeof (struct ao_scheme_record));
112
113         r->next = NULL;
114         r->type = type;
115         r->addr = addr;
116         r->size = size;
117         *record_tail = r;
118         record_tail = &r->next;
119 }
120
121 static struct ao_scheme_record *
122 ao_scheme_record_save(void)
123 {
124         struct ao_scheme_record *r = record_head;
125
126         record_head = NULL;
127         record_tail = &record_head;
128         return r;
129 }
130
131 static void
132 ao_scheme_record_compare(char *where,
133                        struct ao_scheme_record *a,
134                        struct ao_scheme_record *b)
135 {
136         while (a && b) {
137                 if (a->type != b->type || a->size != b->size) {
138                         printf("%s record difers %d %s %d -> %d %s %d\n",
139                                where,
140                                MDBG_OFFSET(a->addr),
141                                a->type->name,
142                                a->size,
143                                MDBG_OFFSET(b->addr),
144                                b->type->name,
145                                b->size);
146                         ao_scheme_abort();
147                 }
148                 a = a->next;
149                 b = b->next;
150         }
151         if (a) {
152                 printf("%s record differs %d %s %d -> NULL\n",
153                        where,
154                        MDBG_OFFSET(a->addr),
155                        a->type->name,
156                        a->size);
157                 ao_scheme_abort();
158         }
159         if (b) {
160                 printf("%s record differs NULL -> %d %s %d\n",
161                        where,
162                        MDBG_OFFSET(b->addr),
163                        b->type->name,
164                        b->size);
165                 ao_scheme_abort();
166         }
167 }
168
169 #else
170 #define ao_scheme_record_reset()
171 #endif
172
173 uint8_t ao_scheme_exception;
174
175 struct ao_scheme_root {
176         const struct ao_scheme_type     *type;
177         void                            **addr;
178 };
179
180 static struct ao_scheme_cons    *save_cons[2];
181 static char                     *save_string[2];
182 static struct ao_scheme_frame   *save_frame[1];
183 static ao_poly                  save_poly[3];
184
185 static const struct ao_scheme_root      ao_scheme_root[] = {
186         {
187                 .type = &ao_scheme_cons_type,
188                 .addr = (void **) &save_cons[0],
189         },
190         {
191                 .type = &ao_scheme_cons_type,
192                 .addr = (void **) &save_cons[1],
193         },
194         {
195                 .type = &ao_scheme_string_type,
196                 .addr = (void **) &save_string[0],
197         },
198         {
199                 .type = &ao_scheme_string_type,
200                 .addr = (void **) &save_string[1],
201         },
202         {
203                 .type = &ao_scheme_frame_type,
204                 .addr = (void **) &save_frame[0],
205         },
206         {
207                 .type = NULL,
208                 .addr = (void **) (void *) &save_poly[0]
209         },
210         {
211                 .type = NULL,
212                 .addr = (void **) (void *) &save_poly[1]
213         },
214         {
215                 .type = NULL,
216                 .addr = (void **) (void *) &save_poly[2]
217         },
218         {
219                 .type = &ao_scheme_atom_type,
220                 .addr = (void **) &ao_scheme_atoms
221         },
222         {
223                 .type = &ao_scheme_frame_type,
224                 .addr = (void **) &ao_scheme_frame_global,
225         },
226         {
227                 .type = &ao_scheme_frame_type,
228                 .addr = (void **) &ao_scheme_frame_current,
229         },
230         {
231                 .type = &ao_scheme_stack_type,
232                 .addr = (void **) &ao_scheme_stack,
233         },
234         {
235                 .type = NULL,
236                 .addr = (void **) (void *) &ao_scheme_v,
237         },
238         {
239                 .type = &ao_scheme_cons_type,
240                 .addr = (void **) &ao_scheme_read_cons,
241         },
242         {
243                 .type = &ao_scheme_cons_type,
244                 .addr = (void **) &ao_scheme_read_cons_tail,
245         },
246         {
247                 .type = &ao_scheme_cons_type,
248                 .addr = (void **) &ao_scheme_read_stack,
249         },
250 #ifdef AO_SCHEME_MAKE_CONST
251         {
252                 .type = &ao_scheme_bool_type,
253                 .addr = (void **) &ao_scheme_false,
254         },
255         {
256                 .type = &ao_scheme_bool_type,
257                 .addr = (void **) &ao_scheme_true,
258         },
259 #endif
260 };
261
262 #define AO_SCHEME_ROOT  (sizeof (ao_scheme_root) / sizeof (ao_scheme_root[0]))
263
264 static const void ** const ao_scheme_cache[] = {
265         (const void **) &ao_scheme_cons_free_list,
266         (const void **) &ao_scheme_stack_free_list,
267         (const void **) &ao_scheme_frame_free_list[0],
268         (const void **) &ao_scheme_frame_free_list[1],
269         (const void **) &ao_scheme_frame_free_list[2],
270         (const void **) &ao_scheme_frame_free_list[3],
271         (const void **) &ao_scheme_frame_free_list[4],
272         (const void **) &ao_scheme_frame_free_list[5],
273 };
274
275 #if AO_SCHEME_FRAME_FREE != 6
276 #error Unexpected AO_SCHEME_FRAME_FREE value
277 #endif
278
279 #define AO_SCHEME_CACHE (sizeof (ao_scheme_cache) / sizeof (ao_scheme_cache[0]))
280
281 #define AO_SCHEME_BUSY_SIZE     ((AO_SCHEME_POOL + 31) / 32)
282
283 static uint8_t  ao_scheme_busy[AO_SCHEME_BUSY_SIZE];
284 static uint8_t  ao_scheme_cons_note[AO_SCHEME_BUSY_SIZE];
285 static uint8_t  ao_scheme_cons_last[AO_SCHEME_BUSY_SIZE];
286 static uint8_t  ao_scheme_cons_noted;
287
288 uint16_t        ao_scheme_top;
289
290 struct ao_scheme_chunk {
291         uint16_t                old_offset;
292         union {
293                 uint16_t        size;
294                 uint16_t        new_offset;
295         };
296 };
297
298 #define AO_SCHEME_NCHUNK        64
299
300 static struct ao_scheme_chunk ao_scheme_chunk[AO_SCHEME_NCHUNK];
301
302 /* Offset of an address within the pool. */
303 static inline uint16_t pool_offset(void *addr) {
304 #if DBG_MEM
305         if (!AO_SCHEME_IS_POOL(addr))
306                 ao_scheme_abort();
307 #endif
308         return ((uint8_t *) addr) - ao_scheme_pool;
309 }
310
311 static inline void mark(uint8_t *tag, int offset) {
312         int     byte = offset >> 5;
313         int     bit = (offset >> 2) & 7;
314         ao_scheme_check_stack();
315         tag[byte] |= (1 << bit);
316 }
317
318 static inline void clear(uint8_t *tag, int offset) {
319         int     byte = offset >> 5;
320         int     bit = (offset >> 2) & 7;
321         tag[byte] &= ~(1 << bit);
322 }
323
324 static inline int busy(uint8_t *tag, int offset) {
325         int     byte = offset >> 5;
326         int     bit = (offset >> 2) & 7;
327         return (tag[byte] >> bit) & 1;
328 }
329
330 static inline int min(int a, int b) { return a < b ? a : b; }
331 static inline int max(int a, int b) { return a > b ? a : b; }
332
333 static inline int limit(int offset) {
334         return min(AO_SCHEME_POOL, max(offset, 0));
335 }
336
337 static inline void
338 note_cons(uint16_t offset)
339 {
340         MDBG_MOVE("note cons %d\n", offset);
341         ao_scheme_cons_noted = 1;
342         mark(ao_scheme_cons_note, offset);
343 }
344
345 static uint16_t chunk_low, chunk_high;
346 static uint16_t chunk_first, chunk_last;
347
348 static int
349 find_chunk(uint16_t offset)
350 {
351         int l, r;
352         /* Binary search for the location */
353         l = chunk_first;
354         r = chunk_last - 1;
355         while (l <= r) {
356                 int m = (l + r) >> 1;
357                 if (ao_scheme_chunk[m].old_offset < offset)
358                         l = m + 1;
359                 else
360                         r = m - 1;
361         }
362         return l;
363 }
364
365 static void
366 note_chunk(uint16_t offset, uint16_t size)
367 {
368         int l;
369         int end;
370
371         if (offset < chunk_low || chunk_high <= offset)
372                 return;
373
374         l = find_chunk(offset);
375
376         /*
377          * The correct location is always in 'l', with r = l-1 being
378          * the entry before the right one
379          */
380
381 #if DBG_MEM
382         /* Off the right side */
383         if (l >= AO_SCHEME_NCHUNK)
384                 ao_scheme_abort();
385
386         /* Off the left side */
387         if (l == 0 && chunk_last && offset > ao_scheme_chunk[0].old_offset)
388                 ao_scheme_abort();
389 #endif
390
391         /* Shuffle existing entries right */
392         end = min(AO_SCHEME_NCHUNK, chunk_last + 1);
393
394         memmove(&ao_scheme_chunk[l+1],
395                 &ao_scheme_chunk[l],
396                 (end - (l+1)) * sizeof (struct ao_scheme_chunk));
397
398         /* Add new entry */
399         ao_scheme_chunk[l].old_offset = offset;
400         ao_scheme_chunk[l].size = size;
401
402         /* Increment the number of elements up to the size of the array */
403         if (chunk_last < AO_SCHEME_NCHUNK)
404                 chunk_last++;
405
406         /* Set the top address if the array is full */
407         if (chunk_last == AO_SCHEME_NCHUNK)
408                 chunk_high = ao_scheme_chunk[AO_SCHEME_NCHUNK-1].old_offset +
409                         ao_scheme_chunk[AO_SCHEME_NCHUNK-1].size;
410 }
411
412 static void
413 reset_chunks(void)
414 {
415         chunk_high = ao_scheme_top;
416         chunk_last = 0;
417         chunk_first = 0;
418 }
419
420 /*
421  * Walk all referenced objects calling functions on each one
422  */
423
424 static void
425 walk(int (*visit_addr)(const struct ao_scheme_type *type, void **addr),
426      int (*visit_poly)(ao_poly *p, uint8_t do_note_cons))
427 {
428         int i;
429
430         ao_scheme_record_reset();
431         memset(ao_scheme_busy, '\0', sizeof (ao_scheme_busy));
432         memset(ao_scheme_cons_note, '\0', sizeof (ao_scheme_cons_note));
433         ao_scheme_cons_noted = 0;
434         for (i = 0; i < (int) AO_SCHEME_ROOT; i++) {
435                 if (ao_scheme_root[i].type) {
436                         void **a = ao_scheme_root[i].addr, *v;
437                         if (a && (v = *a)) {
438                                 MDBG_MOVE("root ptr %d\n", MDBG_OFFSET(v));
439                                 visit_addr(ao_scheme_root[i].type, a);
440                         }
441                 } else {
442                         ao_poly *a = (ao_poly *) ao_scheme_root[i].addr, p;
443                         if (a && (p = *a)) {
444                                 MDBG_MOVE("root poly %d\n", MDBG_OFFSET(ao_scheme_ref(p)));
445                                 visit_poly(a, 0);
446                         }
447                 }
448         }
449         while (ao_scheme_cons_noted) {
450                 memcpy(ao_scheme_cons_last, ao_scheme_cons_note, sizeof (ao_scheme_cons_note));
451                 memset(ao_scheme_cons_note, '\0', sizeof (ao_scheme_cons_note));
452                 ao_scheme_cons_noted = 0;
453                 for (i = 0; i < AO_SCHEME_POOL; i += 4) {
454                         if (busy(ao_scheme_cons_last, i)) {
455                                 void *v = ao_scheme_pool + i;
456                                 MDBG_MOVE("root cons %d\n", MDBG_OFFSET(v));
457                                 visit_addr(&ao_scheme_cons_type, &v);
458                         }
459                 }
460         }
461 }
462
463 #if MDBG_DUMP
464 static void
465 dump_busy(void)
466 {
467         int     i;
468         MDBG_MOVE("busy:");
469         for (i = 0; i < ao_scheme_top; i += 4) {
470                 if ((i & 0xff) == 0) {
471                         MDBG_MORE("\n");
472                         MDBG_MOVE("%s", "");
473                 }
474                 else if ((i & 0x1f) == 0)
475                         MDBG_MORE(" ");
476                 if (busy(ao_scheme_busy, i))
477                         MDBG_MORE("*");
478                 else
479                         MDBG_MORE("-");
480         }
481         MDBG_MORE ("\n");
482 }
483 #define DUMP_BUSY()     dump_busy()
484 #else
485 #define DUMP_BUSY()
486 #endif
487
488 static const struct ao_scheme_type * const ao_scheme_types[AO_SCHEME_NUM_TYPE] = {
489         [AO_SCHEME_CONS] = &ao_scheme_cons_type,
490         [AO_SCHEME_INT] = NULL,
491         [AO_SCHEME_STRING] = &ao_scheme_string_type,
492         [AO_SCHEME_OTHER] = (void *) 0x1,
493         [AO_SCHEME_ATOM] = &ao_scheme_atom_type,
494         [AO_SCHEME_BUILTIN] = &ao_scheme_builtin_type,
495         [AO_SCHEME_FRAME] = &ao_scheme_frame_type,
496         [AO_SCHEME_FRAME_VALS] = &ao_scheme_frame_vals_type,
497         [AO_SCHEME_LAMBDA] = &ao_scheme_lambda_type,
498         [AO_SCHEME_STACK] = &ao_scheme_stack_type,
499         [AO_SCHEME_BOOL] = &ao_scheme_bool_type,
500 #ifdef AO_SCHEME_FEATURE_BIGINT
501         [AO_SCHEME_BIGINT] = &ao_scheme_bigint_type,
502 #endif
503 #ifdef AO_SCHEME_FEATURE_FLOAT
504         [AO_SCHEME_FLOAT] = &ao_scheme_float_type,
505 #endif
506 #ifdef AO_SCHEME_FEATURE_VECTOR
507         [AO_SCHEME_VECTOR] = &ao_scheme_vector_type,
508 #endif
509 };
510
511 static int
512 ao_scheme_mark(const struct ao_scheme_type *type, void *addr);
513
514 static int
515 ao_scheme_move(const struct ao_scheme_type *type, void **ref);
516
517 static int
518 ao_scheme_mark_ref(const struct ao_scheme_type *type, void **ref)
519 {
520         return ao_scheme_mark(type, *ref);
521 }
522
523 static int
524 ao_scheme_poly_mark_ref(ao_poly *p, uint8_t do_note_cons)
525 {
526         return ao_scheme_poly_mark(*p, do_note_cons);
527 }
528
529 #if DBG_MEM_STATS
530 uint64_t ao_scheme_collects[2];
531 uint64_t ao_scheme_freed[2];
532 uint64_t ao_scheme_loops[2];
533 #endif
534
535 int ao_scheme_last_top;
536
537 int
538 ao_scheme_collect(uint8_t style)
539 {
540         ao_scheme_declare_stack
541         int     i;
542         int     top;
543 #if DBG_MEM_STATS
544         int     loops = 0;
545 #endif
546 #if DBG_MEM
547         struct ao_scheme_record *mark_record = NULL, *move_record = NULL;
548
549         MDBG_MOVE("collect %d\n", ao_scheme_collects[style]);
550 #endif
551         MDBG_DO(ao_scheme_frame_write(ao_scheme_frame_poly(ao_scheme_frame_global)));
552
553         ao_scheme_reset_stack();
554
555         /* The first time through, we're doing a full collect */
556         if (ao_scheme_last_top == 0)
557                 style = AO_SCHEME_COLLECT_FULL;
558
559         /* Clear references to all caches */
560         for (i = 0; i < (int) AO_SCHEME_CACHE; i++)
561                 *ao_scheme_cache[i] = NULL;
562         if (style == AO_SCHEME_COLLECT_FULL) {
563                 chunk_low = top = 0;
564         } else {
565                 chunk_low = top = ao_scheme_last_top;
566         }
567         for (;;) {
568 #if DBG_MEM_STATS
569                 loops++;
570 #endif
571                 MDBG_MOVE("move chunks from %d to %d\n", chunk_low, top);
572                 /* Find the sizes of the first chunk of objects to move */
573                 reset_chunks();
574                 walk(ao_scheme_mark_ref, ao_scheme_poly_mark_ref);
575 #if DBG_MEM
576
577                 ao_scheme_record_free(mark_record);
578                 mark_record = ao_scheme_record_save();
579                 if (mark_record && move_record)
580                         ao_scheme_record_compare("mark", move_record, mark_record);
581 #endif
582
583                 DUMP_BUSY();
584
585                 /* Find the first moving object */
586                 for (i = 0; i < chunk_last; i++) {
587                         uint16_t        size = ao_scheme_chunk[i].size;
588
589 #if DBG_MEM
590                         if (!size)
591                                 ao_scheme_abort();
592 #endif
593
594                         if (ao_scheme_chunk[i].old_offset > top)
595                                 break;
596
597                         MDBG_MOVE("chunk %d %d not moving\n",
598                                   ao_scheme_chunk[i].old_offset,
599                                   ao_scheme_chunk[i].size);
600 #if DBG_MEM
601                         if (ao_scheme_chunk[i].old_offset != top)
602                                 ao_scheme_abort();
603 #endif
604                         top += size;
605                 }
606
607                 /*
608                  * Limit amount of chunk array used in mapping moves
609                  * to the active region
610                  */
611                 chunk_first = i;
612                 chunk_low = ao_scheme_chunk[i].old_offset;
613
614                 /* Copy all of the objects */
615                 for (; i < chunk_last; i++) {
616                         uint16_t        size = ao_scheme_chunk[i].size;
617
618 #if DBG_MEM
619                         if (!size)
620                                 ao_scheme_abort();
621 #endif
622
623                         MDBG_MOVE("chunk %d %d -> %d\n",
624                                   ao_scheme_chunk[i].old_offset,
625                                   size,
626                                   top);
627                         ao_scheme_chunk[i].new_offset = top;
628
629                         memmove(&ao_scheme_pool[top],
630                                 &ao_scheme_pool[ao_scheme_chunk[i].old_offset],
631                                 size);
632
633                         top += size;
634                 }
635
636                 if (chunk_first < chunk_last) {
637                         /* Relocate all references to the objects */
638                         walk(ao_scheme_move, ao_scheme_poly_move);
639
640 #if DBG_MEM
641                         ao_scheme_record_free(move_record);
642                         move_record = ao_scheme_record_save();
643                         if (mark_record && move_record)
644                                 ao_scheme_record_compare("move", mark_record, move_record);
645 #endif
646                 }
647
648                 /* If we ran into the end of the heap, then
649                  * there's no need to keep walking
650                  */
651                 if (chunk_last != AO_SCHEME_NCHUNK)
652                         break;
653
654                 /* Next loop starts right above this loop */
655                 chunk_low = chunk_high;
656         }
657
658 #if DBG_MEM_STATS
659         /* Collect stats */
660         ++ao_scheme_collects[style];
661         ao_scheme_freed[style] += ao_scheme_top - top;
662         ao_scheme_loops[style] += loops;
663 #endif
664
665         ao_scheme_top = top;
666         if (style == AO_SCHEME_COLLECT_FULL)
667                 ao_scheme_last_top = top;
668
669         MDBG_DO(memset(ao_scheme_chunk, '\0', sizeof (ao_scheme_chunk));
670                 walk(ao_scheme_mark_ref, ao_scheme_poly_mark_ref));
671
672 #if DBG_MEM_STACK
673         fprintf(stderr, "max collect stack depth %lu\n", mem_collect_max_depth);
674 #endif
675         return AO_SCHEME_POOL - ao_scheme_top;
676 }
677
678 #if DBG_FREE_CONS
679 void
680 ao_scheme_cons_check(struct ao_scheme_cons *cons)
681 {
682         ao_poly cdr;
683         int offset;
684
685         chunk_low = 0;
686         reset_chunks();
687         walk(ao_scheme_mark_ref, ao_scheme_poly_mark_ref);
688         while (cons) {
689                 if (!AO_SCHEME_IS_POOL(cons))
690                         break;
691                 offset = pool_offset(cons);
692                 if (busy(ao_scheme_busy, offset)) {
693                         ao_scheme_printf("cons at %p offset %d poly %d is busy\n\t%v\n", cons, offset, ao_scheme_cons_poly(cons), ao_scheme_cons_poly(cons));
694                         abort();
695                 }
696                 cdr = cons->cdr;
697                 if (!ao_scheme_is_pair(cdr))
698                         break;
699                 cons = ao_scheme_poly_cons(cdr);
700         }
701 }
702 #endif
703
704 /*
705  * Mark interfaces for objects
706  */
707
708
709 /*
710  * Note a reference to memory and collect information about a few
711  * object sizes at a time
712  */
713
714 int
715 ao_scheme_mark_memory(const struct ao_scheme_type *type, void *addr)
716 {
717         int offset;
718         if (!AO_SCHEME_IS_POOL(addr))
719                 return 1;
720
721         offset = pool_offset(addr);
722         MDBG_MOVE("mark memory %d\n", MDBG_OFFSET(addr));
723         if (busy(ao_scheme_busy, offset)) {
724                 MDBG_MOVE("already marked\n");
725                 return 1;
726         }
727         mark(ao_scheme_busy, offset);
728         note_chunk(offset, ao_scheme_size(type, addr));
729         return 0;
730 }
731
732 /*
733  * Mark an object and all that it refereces
734  */
735 static int
736 ao_scheme_mark(const struct ao_scheme_type *type, void *addr)
737 {
738         int ret;
739         MDBG_MOVE("mark %d\n", MDBG_OFFSET(addr));
740         MDBG_MOVE_IN();
741         ret = ao_scheme_mark_memory(type, addr);
742         if (!ret) {
743                 MDBG_MOVE("mark recurse\n");
744                 type->mark(addr);
745         }
746         MDBG_MOVE_OUT();
747         return ret;
748 }
749
750 /*
751  * Mark an object, unless it is a cons cell and
752  * do_note_cons is set. In that case, just
753  * set a bit in the cons note array; those
754  * will be marked in a separate pass to avoid
755  * deep recursion in the collector
756  */
757 int
758 ao_scheme_poly_mark(ao_poly p, uint8_t do_note_cons)
759 {
760         uint8_t type;
761         void    *addr;
762         int     ret;
763
764         type = ao_scheme_poly_base_type(p);
765
766         if (type == AO_SCHEME_INT)
767                 return 1;
768
769         addr = ao_scheme_ref(p);
770         if (!AO_SCHEME_IS_POOL(addr))
771                 return 1;
772
773         if (type == AO_SCHEME_CONS && do_note_cons) {
774                 note_cons(pool_offset(addr));
775                 return 1;
776         } else {
777                 const struct ao_scheme_type *lisp_type;
778
779                 if (type == AO_SCHEME_OTHER)
780                         type = ao_scheme_other_type(addr);
781
782                 lisp_type = ao_scheme_types[type];
783 #if DBG_MEM
784                 if (!lisp_type)
785                         ao_scheme_abort();
786 #endif
787
788                 MDBG_MOVE("mark %d\n", MDBG_OFFSET(addr));
789                 MDBG_MOVE_IN();
790                 ret = ao_scheme_mark_memory(lisp_type, addr);
791                 if (!ret) {
792                         MDBG_MOVE("mark recurse\n");
793                         lisp_type->mark(addr);
794                 }
795                 MDBG_MOVE_OUT();
796                 return ret;
797         }
798 }
799
800 /*
801  * Find the current location of an object
802  * based on the original location. For unmoved
803  * objects, this is simple. For moved objects,
804  * go search for it
805  */
806
807 static uint16_t
808 move_map(uint16_t offset)
809 {
810         int             l;
811
812         if (offset < chunk_low || chunk_high <= offset)
813                 return offset;
814
815         l = find_chunk(offset);
816
817 #if DBG_MEM
818         if (ao_scheme_chunk[l].old_offset != offset)
819                 ao_scheme_abort();
820 #endif
821         return ao_scheme_chunk[l].new_offset;
822 }
823
824 int
825 ao_scheme_move_memory(const struct ao_scheme_type *type, void **ref)
826 {
827         void            *addr = *ref;
828         uint16_t        offset, orig_offset;
829
830         if (!AO_SCHEME_IS_POOL(addr))
831                 return 1;
832
833         (void) type;
834
835         MDBG_MOVE("move memory %d\n", MDBG_OFFSET(addr));
836         orig_offset = pool_offset(addr);
837         offset = move_map(orig_offset);
838         if (offset != orig_offset) {
839                 MDBG_MOVE("update ref %d %d -> %d\n",
840                           AO_SCHEME_IS_POOL(ref) ? MDBG_OFFSET(ref) : -1,
841                           orig_offset, offset);
842                 *ref = ao_scheme_pool + offset;
843         }
844         if (busy(ao_scheme_busy, offset)) {
845                 MDBG_MOVE("already moved\n");
846                 return 1;
847         }
848         mark(ao_scheme_busy, offset);
849         MDBG_DO(ao_scheme_record(type, addr, ao_scheme_size(type, addr)));
850         return 0;
851 }
852
853 static int
854 ao_scheme_move(const struct ao_scheme_type *type, void **ref)
855 {
856         int ret;
857         MDBG_MOVE("move object %d\n", MDBG_OFFSET(*ref));
858         MDBG_MOVE_IN();
859         ret = ao_scheme_move_memory(type, ref);
860         if (!ret) {
861                 MDBG_MOVE("move recurse\n");
862                 type->move(*ref);
863         }
864         MDBG_MOVE_OUT();
865         return ret;
866 }
867
868 int
869 ao_scheme_poly_move(ao_poly *ref, uint8_t do_note_cons)
870 {
871         ao_poly         p = *ref;
872         int             ret;
873         void            *addr;
874         uint16_t        offset, orig_offset;
875
876         if (ao_scheme_poly_base_type(p) == AO_SCHEME_INT)
877                 return 1;
878
879         addr = ao_scheme_ref(p);
880         if (!AO_SCHEME_IS_POOL(addr))
881                 return 1;
882
883         orig_offset = pool_offset(addr);
884         offset = move_map(orig_offset);
885
886         if (ao_scheme_poly_base_type(p) == AO_SCHEME_CONS && do_note_cons) {
887                 note_cons(orig_offset);
888                 ret = 1;
889         } else {
890                 uint8_t type = ao_scheme_poly_base_type(p);
891                 const struct ao_scheme_type *lisp_type;
892
893                 if (type == AO_SCHEME_OTHER)
894                         type = ao_scheme_other_type(ao_scheme_pool + offset);
895
896                 lisp_type = ao_scheme_types[type];
897 #if DBG_MEM
898                 if (!lisp_type)
899                         ao_scheme_abort();
900 #endif
901                 /* inline ao_scheme_move to save stack space */
902                 MDBG_MOVE("move object %d\n", MDBG_OFFSET(addr));
903                 MDBG_MOVE_IN();
904                 ret = ao_scheme_move_memory(lisp_type, &addr);
905                 if (!ret) {
906                         MDBG_MOVE("move recurse\n");
907                         lisp_type->move(addr);
908                 }
909                 MDBG_MOVE_OUT();
910         }
911
912         /* Re-write the poly value */
913         if (offset != orig_offset) {
914                 ao_poly np = ao_scheme_poly(ao_scheme_pool + offset, ao_scheme_poly_base_type(p));
915                 MDBG_MOVE("poly %d moved %d -> %d\n",
916                           type, orig_offset, offset);
917                 *ref = np;
918         }
919         return ret;
920 }
921
922 #if DBG_MEM
923 void
924 ao_scheme_validate(void)
925 {
926         chunk_low = 0;
927         memset(ao_scheme_chunk, '\0', sizeof (ao_scheme_chunk));
928         walk(ao_scheme_mark_ref, ao_scheme_poly_mark_ref);
929 }
930
931 int dbg_allocs;
932
933 #endif
934
935 void *
936 ao_scheme_alloc(int size)
937 {
938         void    *addr;
939
940         MDBG_DO(++dbg_allocs);
941         MDBG_DO(if (dbg_validate) ao_scheme_validate());
942         size = ao_scheme_size_round(size);
943         if (AO_SCHEME_POOL - ao_scheme_top < size &&
944             ao_scheme_collect(AO_SCHEME_COLLECT_INCREMENTAL) < size &&
945             ao_scheme_collect(AO_SCHEME_COLLECT_FULL) < size)
946         {
947                 ao_scheme_error(AO_SCHEME_OOM, "out of memory");
948                 return NULL;
949         }
950         addr = ao_scheme_pool + ao_scheme_top;
951         ao_scheme_top += size;
952         MDBG_MOVE("alloc %d size %d\n", MDBG_OFFSET(addr), size);
953         return addr;
954 }
955
956 void
957 ao_scheme_cons_stash(int id, struct ao_scheme_cons *cons)
958 {
959         assert(save_cons[id] == 0);
960         save_cons[id] = cons;
961 }
962
963 struct ao_scheme_cons *
964 ao_scheme_cons_fetch(int id)
965 {
966         struct ao_scheme_cons *cons = save_cons[id];
967         save_cons[id] = NULL;
968         return cons;
969 }
970
971 void
972 ao_scheme_poly_stash(int id, ao_poly poly)
973 {
974         assert(save_poly[id] == AO_SCHEME_NIL);
975         save_poly[id] = poly;
976 }
977
978 ao_poly
979 ao_scheme_poly_fetch(int id)
980 {
981         ao_poly poly = save_poly[id];
982         save_poly[id] = AO_SCHEME_NIL;
983         return poly;
984 }
985
986 void
987 ao_scheme_string_stash(int id, char *string)
988 {
989         assert(save_string[id] == NULL);
990         save_string[id] = string;
991 }
992
993 char *
994 ao_scheme_string_fetch(int id)
995 {
996         char *string = save_string[id];
997         save_string[id] = NULL;
998         return string;
999 }
1000
1001 void
1002 ao_scheme_frame_stash(int id, struct ao_scheme_frame *frame)
1003 {
1004         assert(save_frame[id] == NULL);
1005         save_frame[id] = frame;
1006 }
1007
1008 struct ao_scheme_frame *
1009 ao_scheme_frame_fetch(int id)
1010 {
1011         struct ao_scheme_frame *frame = save_frame[id];
1012         save_frame[id] = NULL;
1013         return frame;
1014 }