1f7c85e18a5f5201ad29dacaf6a9304045f1286c
[fw/altos] / src / lisp / ao_lisp.h
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 #ifndef _AO_LISP_H_
16 #define _AO_LISP_H_
17
18 #define DBG_MEM         0
19 #define DBG_EVAL        0
20
21 #include <stdint.h>
22 #include <string.h>
23 //#include <stdio.h>
24 #include <ao_lisp_os.h>
25
26 typedef uint16_t        ao_poly;
27 typedef int16_t         ao_signed_poly;
28
29 #ifdef AO_LISP_SAVE
30
31 struct ao_lisp_os_save {
32         ao_poly         atoms;
33         ao_poly         globals;
34         uint16_t        const_checksum;
35         uint16_t        const_checksum_inv;
36 };
37
38 #define AO_LISP_POOL_EXTRA      (sizeof(struct ao_lisp_os_save))
39 #define AO_LISP_POOL    ((int) (AO_LISP_POOL_TOTAL - AO_LISP_POOL_EXTRA))
40
41 int
42 ao_lisp_os_save(void);
43
44 int
45 ao_lisp_os_restore_save(struct ao_lisp_os_save *save, int offset);
46
47 int
48 ao_lisp_os_restore(void);
49
50 #endif
51
52 #ifdef AO_LISP_MAKE_CONST
53 #define AO_LISP_POOL_CONST      16384
54 extern uint8_t ao_lisp_const[AO_LISP_POOL_CONST];
55 #define ao_lisp_pool ao_lisp_const
56 #define AO_LISP_POOL AO_LISP_POOL_CONST
57
58 #define _atom(n) ao_lisp_atom_poly(ao_lisp_atom_intern(n))
59
60 #define _ao_lisp_atom_quote     _atom("quote")
61 #define _ao_lisp_atom_set       _atom("set")
62 #define _ao_lisp_atom_setq      _atom("setq")
63 #define _ao_lisp_atom_t         _atom("t")
64 #define _ao_lisp_atom_car       _atom("car")
65 #define _ao_lisp_atom_cdr       _atom("cdr")
66 #define _ao_lisp_atom_cons      _atom("cons")
67 #define _ao_lisp_atom_last      _atom("last")
68 #define _ao_lisp_atom_length    _atom("length")
69 #define _ao_lisp_atom_cond      _atom("cond")
70 #define _ao_lisp_atom_lambda    _atom("lambda")
71 #define _ao_lisp_atom_led       _atom("led")
72 #define _ao_lisp_atom_delay     _atom("delay")
73 #define _ao_lisp_atom_pack      _atom("pack")
74 #define _ao_lisp_atom_unpack    _atom("unpack")
75 #define _ao_lisp_atom_flush     _atom("flush")
76 #define _ao_lisp_atom_eval      _atom("eval")
77 #define _ao_lisp_atom_read      _atom("read")
78 #define _ao_lisp_atom_eof       _atom("eof")
79 #define _ao_lisp_atom_save      _atom("save")
80 #define _ao_lisp_atom_restore   _atom("restore")
81 #define _ao_lisp_atom_call2fcc  _atom("call/cc")
82 #else
83 #include "ao_lisp_const.h"
84 #ifndef AO_LISP_POOL
85 #define AO_LISP_POOL    3072
86 #endif
87 extern uint8_t          ao_lisp_pool[AO_LISP_POOL + AO_LISP_POOL_EXTRA];
88 #endif
89
90 /* Primitive types */
91 #define AO_LISP_CONS            0
92 #define AO_LISP_INT             1
93 #define AO_LISP_STRING          2
94 #define AO_LISP_OTHER           3
95
96 #define AO_LISP_TYPE_MASK       0x0003
97 #define AO_LISP_TYPE_SHIFT      2
98 #define AO_LISP_REF_MASK        0x7ffc
99 #define AO_LISP_CONST           0x8000
100
101 /* These have a type value at the start of the struct */
102 #define AO_LISP_ATOM            4
103 #define AO_LISP_BUILTIN         5
104 #define AO_LISP_FRAME           6
105 #define AO_LISP_LAMBDA          7
106 #define AO_LISP_STACK           8
107 #define AO_LISP_NUM_TYPE        9
108
109 /* Leave two bits for types to use as they please */
110 #define AO_LISP_OTHER_TYPE_MASK 0x3f
111
112 #define AO_LISP_NIL     0
113
114 extern uint16_t         ao_lisp_top;
115
116 #define AO_LISP_OOM             0x01
117 #define AO_LISP_DIVIDE_BY_ZERO  0x02
118 #define AO_LISP_INVALID         0x04
119 #define AO_LISP_UNDEFINED       0x08
120 #define AO_LISP_EOF             0x10
121
122 extern uint8_t          ao_lisp_exception;
123
124 static inline int
125 ao_lisp_is_const(ao_poly poly) {
126         return poly & AO_LISP_CONST;
127 }
128
129 #define AO_LISP_IS_CONST(a)     (ao_lisp_const <= ((uint8_t *) (a)) && ((uint8_t *) (a)) < ao_lisp_const + AO_LISP_POOL_CONST)
130 #define AO_LISP_IS_POOL(a)      (ao_lisp_pool <= ((uint8_t *) (a)) && ((uint8_t *) (a)) < ao_lisp_pool + AO_LISP_POOL)
131 #define AO_LISP_IS_INT(p)       (ao_lisp_base_type(p) == AO_LISP_INT);
132
133 void *
134 ao_lisp_ref(ao_poly poly);
135
136 ao_poly
137 ao_lisp_poly(const void *addr, ao_poly type);
138
139 struct ao_lisp_type {
140         int     (*size)(void *addr);
141         void    (*mark)(void *addr);
142         void    (*move)(void *addr);
143         char    name[];
144 };
145
146 struct ao_lisp_cons {
147         ao_poly         car;
148         ao_poly         cdr;
149 };
150
151 struct ao_lisp_atom {
152         uint8_t         type;
153         uint8_t         pad[1];
154         ao_poly         next;
155         char            name[];
156 };
157
158 struct ao_lisp_val {
159         ao_poly         atom;
160         ao_poly         val;
161 };
162
163 struct ao_lisp_frame {
164         uint8_t                 type;
165         uint8_t                 num;
166         ao_poly                 prev;
167         struct ao_lisp_val      vals[];
168 };
169
170 /* Set on type when the frame escapes the lambda */
171 #define AO_LISP_FRAME_MARK      0x80
172 #define AO_LISP_FRAME_PRINT     0x40
173
174 static inline int ao_lisp_frame_marked(struct ao_lisp_frame *f) {
175         return f->type & AO_LISP_FRAME_MARK;
176 }
177
178 static inline struct ao_lisp_frame *
179 ao_lisp_poly_frame(ao_poly poly) {
180         return ao_lisp_ref(poly);
181 }
182
183 static inline ao_poly
184 ao_lisp_frame_poly(struct ao_lisp_frame *frame) {
185         return ao_lisp_poly(frame, AO_LISP_OTHER);
186 }
187
188 enum eval_state {
189         eval_sexpr,             /* Evaluate an sexpr */
190         eval_val,               /* Value computed */
191         eval_formal,            /* Formal computed */
192         eval_exec,              /* Start a lambda evaluation */
193         eval_cond,              /* Start next cond clause */
194         eval_cond_test,         /* Check cond condition */
195         eval_progn,             /* Start next progn entry */
196         eval_while,             /* Start while condition */
197         eval_while_test,        /* Check while condition */
198         eval_macro,             /* Finished with macro generation */
199 };
200
201 struct ao_lisp_stack {
202         uint8_t                 type;           /* AO_LISP_STACK */
203         uint8_t                 state;          /* enum eval_state */
204         ao_poly                 prev;           /* previous stack frame */
205         ao_poly                 sexprs;         /* expressions to evaluate */
206         ao_poly                 values;         /* values computed */
207         ao_poly                 values_tail;    /* end of the values list for easy appending */
208         ao_poly                 frame;          /* current lookup frame */
209         ao_poly                 list;           /* most recent function call */
210 };
211
212 #define AO_LISP_STACK_MARK      0x80    /* set on type when a reference has been taken */
213 #define AO_LISP_STACK_PRINT     0x40    /* stack is being printed */
214
215 static inline int ao_lisp_stack_marked(struct ao_lisp_stack *s) {
216         return s->type & AO_LISP_STACK_MARK;
217 }
218
219 static inline void ao_lisp_stack_mark(struct ao_lisp_stack *s) {
220         s->type |= AO_LISP_STACK_MARK;
221 }
222
223 static inline struct ao_lisp_stack *
224 ao_lisp_poly_stack(ao_poly p)
225 {
226         return ao_lisp_ref(p);
227 }
228
229 static inline ao_poly
230 ao_lisp_stack_poly(struct ao_lisp_stack *stack)
231 {
232         return ao_lisp_poly(stack, AO_LISP_OTHER);
233 }
234
235 extern ao_poly                  ao_lisp_v;
236
237 #define AO_LISP_FUNC_LAMBDA     0
238 #define AO_LISP_FUNC_NLAMBDA    1
239 #define AO_LISP_FUNC_MACRO      2
240 #define AO_LISP_FUNC_LEXPR      3
241
242 #define AO_LISP_FUNC_FREE_ARGS  0x80
243 #define AO_LISP_FUNC_MASK       0x7f
244
245 #define AO_LISP_FUNC_F_LAMBDA   (AO_LISP_FUNC_FREE_ARGS | AO_LISP_FUNC_LAMBDA)
246 #define AO_LISP_FUNC_F_NLAMBDA  (AO_LISP_FUNC_FREE_ARGS | AO_LISP_FUNC_NLAMBDA)
247 #define AO_LISP_FUNC_F_MACRO    (AO_LISP_FUNC_FREE_ARGS | AO_LISP_FUNC_MACRO)
248 #define AO_LISP_FUNC_F_LEXPR    (AO_LISP_FUNC_FREE_ARGS | AO_LISP_FUNC_LEXPR)
249
250 struct ao_lisp_builtin {
251         uint8_t         type;
252         uint8_t         args;
253         uint16_t        func;
254 };
255
256 enum ao_lisp_builtin_id {
257         builtin_eval,
258         builtin_read,
259         builtin_lambda,
260         builtin_lexpr,
261         builtin_nlambda,
262         builtin_macro,
263         builtin_car,
264         builtin_cdr,
265         builtin_cons,
266         builtin_last,
267         builtin_length,
268         builtin_quote,
269         builtin_set,
270         builtin_setq,
271         builtin_cond,
272         builtin_progn,
273         builtin_while,
274         builtin_print,
275         builtin_patom,
276         builtin_plus,
277         builtin_minus,
278         builtin_times,
279         builtin_divide,
280         builtin_mod,
281         builtin_equal,
282         builtin_less,
283         builtin_greater,
284         builtin_less_equal,
285         builtin_greater_equal,
286         builtin_pack,
287         builtin_unpack,
288         builtin_flush,
289         builtin_delay,
290         builtin_led,
291         builtin_save,
292         builtin_restore,
293         builtin_call_cc,
294         _builtin_last
295 };
296
297 typedef ao_poly (*ao_lisp_func_t)(struct ao_lisp_cons *cons);
298
299 extern const ao_lisp_func_t     ao_lisp_builtins[];
300
301 static inline ao_lisp_func_t
302 ao_lisp_func(struct ao_lisp_builtin *b)
303 {
304         return ao_lisp_builtins[b->func];
305 }
306
307 struct ao_lisp_lambda {
308         uint8_t         type;
309         uint8_t         args;
310         ao_poly         code;
311         ao_poly         frame;
312 };
313
314 static inline struct ao_lisp_lambda *
315 ao_lisp_poly_lambda(ao_poly poly)
316 {
317         return ao_lisp_ref(poly);
318 }
319
320 static inline ao_poly
321 ao_lisp_lambda_poly(struct ao_lisp_lambda *lambda)
322 {
323         return ao_lisp_poly(lambda, AO_LISP_OTHER);
324 }
325
326 static inline void *
327 ao_lisp_poly_other(ao_poly poly) {
328         return ao_lisp_ref(poly);
329 }
330
331 static inline uint8_t
332 ao_lisp_other_type(void *other) {
333 #if DBG_MEM
334         if ((*((uint8_t *) other) & AO_LISP_OTHER_TYPE_MASK) >= AO_LISP_NUM_TYPE)
335                 ao_lisp_abort();
336 #endif
337         return *((uint8_t *) other) & AO_LISP_OTHER_TYPE_MASK;
338 }
339
340 static inline ao_poly
341 ao_lisp_other_poly(const void *other)
342 {
343         return ao_lisp_poly(other, AO_LISP_OTHER);
344 }
345
346 static inline int
347 ao_lisp_size_round(int size)
348 {
349         return (size + 3) & ~3;
350 }
351
352 static inline int
353 ao_lisp_size(const struct ao_lisp_type *type, void *addr)
354 {
355         return ao_lisp_size_round(type->size(addr));
356 }
357
358 #define AO_LISP_OTHER_POLY(other) ((ao_poly)(other) + AO_LISP_OTHER)
359
360 static inline int ao_lisp_poly_base_type(ao_poly poly) {
361         return poly & AO_LISP_TYPE_MASK;
362 }
363
364 static inline int ao_lisp_poly_type(ao_poly poly) {
365         int     type = poly & AO_LISP_TYPE_MASK;
366         if (type == AO_LISP_OTHER)
367                 return ao_lisp_other_type(ao_lisp_poly_other(poly));
368         return type;
369 }
370
371 static inline struct ao_lisp_cons *
372 ao_lisp_poly_cons(ao_poly poly)
373 {
374         return ao_lisp_ref(poly);
375 }
376
377 static inline ao_poly
378 ao_lisp_cons_poly(struct ao_lisp_cons *cons)
379 {
380         return ao_lisp_poly(cons, AO_LISP_CONS);
381 }
382
383 static inline int
384 ao_lisp_poly_int(ao_poly poly)
385 {
386         return (int) ((ao_signed_poly) poly >> AO_LISP_TYPE_SHIFT);
387 }
388
389 static inline ao_poly
390 ao_lisp_int_poly(int i)
391 {
392         return ((ao_poly) i << 2) | AO_LISP_INT;
393 }
394
395 static inline char *
396 ao_lisp_poly_string(ao_poly poly)
397 {
398         return ao_lisp_ref(poly);
399 }
400
401 static inline ao_poly
402 ao_lisp_string_poly(char *s)
403 {
404         return ao_lisp_poly(s, AO_LISP_STRING);
405 }
406
407 static inline struct ao_lisp_atom *
408 ao_lisp_poly_atom(ao_poly poly)
409 {
410         return ao_lisp_ref(poly);
411 }
412
413 static inline ao_poly
414 ao_lisp_atom_poly(struct ao_lisp_atom *a)
415 {
416         return ao_lisp_poly(a, AO_LISP_OTHER);
417 }
418
419 static inline struct ao_lisp_builtin *
420 ao_lisp_poly_builtin(ao_poly poly)
421 {
422         return ao_lisp_ref(poly);
423 }
424
425 static inline ao_poly
426 ao_lisp_builtin_poly(struct ao_lisp_builtin *b)
427 {
428         return ao_lisp_poly(b, AO_LISP_OTHER);
429 }
430
431 /* memory functions */
432
433 extern int ao_lisp_collects[2];
434 extern int ao_lisp_freed[2];
435 extern int ao_lisp_loops[2];
436
437 /* returns 1 if the object was already marked */
438 int
439 ao_lisp_mark(const struct ao_lisp_type *type, void *addr);
440
441 /* returns 1 if the object was already marked */
442 int
443 ao_lisp_mark_memory(const struct ao_lisp_type *type, void *addr);
444
445 void *
446 ao_lisp_move_map(void *addr);
447
448 /* returns 1 if the object was already moved */
449 int
450 ao_lisp_move(const struct ao_lisp_type *type, void **ref);
451
452 /* returns 1 if the object was already moved */
453 int
454 ao_lisp_move_memory(const struct ao_lisp_type *type, void **ref);
455
456 void *
457 ao_lisp_alloc(int size);
458
459 #define AO_LISP_COLLECT_FULL            1
460 #define AO_LISP_COLLECT_INCREMENTAL     0
461
462 int
463 ao_lisp_collect(uint8_t style);
464
465 void
466 ao_lisp_cons_stash(int id, struct ao_lisp_cons *cons);
467
468 struct ao_lisp_cons *
469 ao_lisp_cons_fetch(int id);
470
471 void
472 ao_lisp_poly_stash(int id, ao_poly poly);
473
474 ao_poly
475 ao_lisp_poly_fetch(int id);
476
477 void
478 ao_lisp_string_stash(int id, char *string);
479
480 char *
481 ao_lisp_string_fetch(int id);
482
483 static inline void
484 ao_lisp_stack_stash(int id, struct ao_lisp_stack *stack) {
485         ao_lisp_poly_stash(id, ao_lisp_stack_poly(stack));
486 }
487
488 static inline struct ao_lisp_stack *
489 ao_lisp_stack_fetch(int id) {
490         return ao_lisp_poly_stack(ao_lisp_poly_fetch(id));
491 }
492
493 /* cons */
494 extern const struct ao_lisp_type ao_lisp_cons_type;
495
496 struct ao_lisp_cons *
497 ao_lisp_cons_cons(ao_poly car, struct ao_lisp_cons *cdr);
498
499 extern struct ao_lisp_cons *ao_lisp_cons_free_list;
500
501 void
502 ao_lisp_cons_free(struct ao_lisp_cons *cons);
503
504 void
505 ao_lisp_cons_print(ao_poly);
506
507 void
508 ao_lisp_cons_patom(ao_poly);
509
510 int
511 ao_lisp_cons_length(struct ao_lisp_cons *cons);
512
513 /* string */
514 extern const struct ao_lisp_type ao_lisp_string_type;
515
516 char *
517 ao_lisp_string_copy(char *a);
518
519 char *
520 ao_lisp_string_cat(char *a, char *b);
521
522 ao_poly
523 ao_lisp_string_pack(struct ao_lisp_cons *cons);
524
525 ao_poly
526 ao_lisp_string_unpack(char *a);
527
528 void
529 ao_lisp_string_print(ao_poly s);
530
531 void
532 ao_lisp_string_patom(ao_poly s);
533
534 /* atom */
535 extern const struct ao_lisp_type ao_lisp_atom_type;
536
537 extern struct ao_lisp_atom      *ao_lisp_atoms;
538 extern struct ao_lisp_frame     *ao_lisp_frame_global;
539 extern struct ao_lisp_frame     *ao_lisp_frame_current;
540
541 void
542 ao_lisp_atom_print(ao_poly a);
543
544 struct ao_lisp_atom *
545 ao_lisp_atom_intern(char *name);
546
547 ao_poly *
548 ao_lisp_atom_ref(struct ao_lisp_frame *frame, ao_poly atom);
549
550 ao_poly
551 ao_lisp_atom_get(ao_poly atom);
552
553 ao_poly
554 ao_lisp_atom_set(ao_poly atom, ao_poly val);
555
556 /* int */
557 void
558 ao_lisp_int_print(ao_poly i);
559
560 /* prim */
561 void
562 ao_lisp_poly_print(ao_poly p);
563
564 void
565 ao_lisp_poly_patom(ao_poly p);
566
567 int
568 ao_lisp_poly_mark(ao_poly p, uint8_t note_cons);
569
570 /* returns 1 if the object has already been moved */
571 int
572 ao_lisp_poly_move(ao_poly *p, uint8_t note_cons);
573
574 /* eval */
575
576 void
577 ao_lisp_eval_clear_globals(void);
578
579 int
580 ao_lisp_eval_restart(void);
581
582 ao_poly
583 ao_lisp_eval(ao_poly p);
584
585 ao_poly
586 ao_lisp_set_cond(struct ao_lisp_cons *cons);
587
588 /* builtin */
589 void
590 ao_lisp_builtin_print(ao_poly b);
591
592 extern const struct ao_lisp_type ao_lisp_builtin_type;
593
594 /* Check argument count */
595 ao_poly
596 ao_lisp_check_argc(ao_poly name, struct ao_lisp_cons *cons, int min, int max);
597
598 /* Check argument type */
599 ao_poly
600 ao_lisp_check_argt(ao_poly name, struct ao_lisp_cons *cons, int argc, int type, int nil_ok);
601
602 /* Fetch an arg (nil if off the end) */
603 ao_poly
604 ao_lisp_arg(struct ao_lisp_cons *cons, int argc);
605
606 char *
607 ao_lisp_args_name(uint8_t args);
608
609 /* read */
610 extern struct ao_lisp_cons      *ao_lisp_read_cons;
611 extern struct ao_lisp_cons      *ao_lisp_read_cons_tail;
612 extern struct ao_lisp_cons      *ao_lisp_read_stack;
613
614 ao_poly
615 ao_lisp_read(void);
616
617 /* rep */
618 ao_poly
619 ao_lisp_read_eval_print(void);
620
621 /* frame */
622 extern const struct ao_lisp_type ao_lisp_frame_type;
623
624 #define AO_LISP_FRAME_FREE      6
625
626 extern struct ao_lisp_frame     *ao_lisp_frame_free_list[AO_LISP_FRAME_FREE];
627
628 ao_poly
629 ao_lisp_frame_mark(struct ao_lisp_frame *frame);
630
631 ao_poly *
632 ao_lisp_frame_ref(struct ao_lisp_frame *frame, ao_poly atom);
633
634 struct ao_lisp_frame *
635 ao_lisp_frame_new(int num);
636
637 void
638 ao_lisp_frame_free(struct ao_lisp_frame *frame);
639
640 void
641 ao_lisp_frame_bind(struct ao_lisp_frame *frame, int num, ao_poly atom, ao_poly val);
642
643 int
644 ao_lisp_frame_add(struct ao_lisp_frame **frame, ao_poly atom, ao_poly val);
645
646 void
647 ao_lisp_frame_print(ao_poly p);
648
649 /* lambda */
650 extern const struct ao_lisp_type ao_lisp_lambda_type;
651
652 extern const char *ao_lisp_state_names[];
653
654 struct ao_lisp_lambda *
655 ao_lisp_lambda_new(ao_poly cons);
656
657 void
658 ao_lisp_lambda_print(ao_poly lambda);
659
660 ao_poly
661 ao_lisp_lambda(struct ao_lisp_cons *cons);
662
663 ao_poly
664 ao_lisp_lexpr(struct ao_lisp_cons *cons);
665
666 ao_poly
667 ao_lisp_nlambda(struct ao_lisp_cons *cons);
668
669 ao_poly
670 ao_lisp_macro(struct ao_lisp_cons *cons);
671
672 ao_poly
673 ao_lisp_lambda_eval(void);
674
675 /* save */
676
677 ao_poly
678 ao_lisp_save(struct ao_lisp_cons *cons);
679
680 ao_poly
681 ao_lisp_restore(struct ao_lisp_cons *cons);
682
683 /* stack */
684
685 extern const struct ao_lisp_type ao_lisp_stack_type;
686 extern struct ao_lisp_stack     *ao_lisp_stack;
687 extern struct ao_lisp_stack     *ao_lisp_stack_free_list;
688
689 void
690 ao_lisp_stack_reset(struct ao_lisp_stack *stack);
691
692 int
693 ao_lisp_stack_push(void);
694
695 void
696 ao_lisp_stack_pop(void);
697
698 void
699 ao_lisp_stack_clear(void);
700
701 void
702 ao_lisp_stack_print(ao_poly stack);
703
704 ao_poly
705 ao_lisp_stack_eval(void);
706
707 ao_poly
708 ao_lisp_call_cc(struct ao_lisp_cons *cons);
709
710 /* error */
711
712 void
713 ao_lisp_error_poly(char *name, ao_poly poly, ao_poly last);
714
715 void
716 ao_lisp_error_frame(int indent, char *name, struct ao_lisp_frame *frame);
717
718 ao_poly
719 ao_lisp_error(int error, char *format, ...);
720
721 /* debugging macros */
722
723 #if DBG_EVAL
724 #define DBG_CODE        1
725 int ao_lisp_stack_depth;
726 #define DBG_DO(a)       a
727 #define DBG_INDENT()    do { int _s; for(_s = 0; _s < ao_lisp_stack_depth; _s++) printf("  "); } while(0)
728 #define DBG_IN()        (++ao_lisp_stack_depth)
729 #define DBG_OUT()       (--ao_lisp_stack_depth)
730 #define DBG_RESET()     (ao_lisp_stack_depth = 0)
731 #define DBG(...)        printf(__VA_ARGS__)
732 #define DBGI(...)       do { DBG("%4d: ", __LINE__); DBG_INDENT(); DBG(__VA_ARGS__); } while (0)
733 #define DBG_CONS(a)     ao_lisp_cons_print(ao_lisp_cons_poly(a))
734 #define DBG_POLY(a)     ao_lisp_poly_print(a)
735 #define OFFSET(a)       ((a) ? (int) ((uint8_t *) a - ao_lisp_pool) : -1)
736 #define DBG_STACK()     ao_lisp_stack_print()
737 static inline void
738 ao_lisp_frames_dump(void)
739 {
740         struct ao_lisp_stack *s;
741         DBGI(".. current frame: "); DBG_POLY(ao_lisp_frame_poly(ao_lisp_frame_current)); DBG("\n");
742         for (s = ao_lisp_stack; s; s = ao_lisp_poly_stack(s->prev)) {
743                 DBGI(".. stack frame: "); DBG_POLY(s->frame); DBG("\n");
744         }
745 }
746 #define DBG_FRAMES()    ao_lisp_frames_dump()
747 #else
748 #define DBG_DO(a)
749 #define DBG_INDENT()
750 #define DBG_IN()
751 #define DBG_OUT()
752 #define DBG(...)
753 #define DBGI(...)
754 #define DBG_CONS(a)
755 #define DBG_POLY(a)
756 #define DBG_RESET()
757 #define DBG_STACK()
758 #define DBG_FRAMES()
759 #endif
760
761 #define DBG_MEM_START   1
762
763 #if DBG_MEM
764
765 #include <assert.h>
766 extern int dbg_move_depth;
767 #define MDBG_DUMP 1
768 #define MDBG_OFFSET(a)  ((int) ((uint8_t *) (a) - ao_lisp_pool))
769
770 extern int dbg_mem;
771
772 #define MDBG_DO(a)      a
773 #define MDBG_MOVE(...) do { if (dbg_mem) { int d; for (d = 0; d < dbg_move_depth; d++) printf ("  "); printf(__VA_ARGS__); } } while (0)
774 #define MDBG_MORE(...) do { if (dbg_mem) printf(__VA_ARGS__); } while (0)
775 #define MDBG_MOVE_IN()  (dbg_move_depth++)
776 #define MDBG_MOVE_OUT() (assert(--dbg_move_depth >= 0))
777
778 #else
779
780 #define MDBG_DO(a)
781 #define MDBG_MOVE(...)
782 #define MDBG_MORE(...)
783 #define MDBG_MOVE_IN()
784 #define MDBG_MOVE_OUT()
785
786 #endif
787
788 #endif /* _AO_LISP_H_ */