swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
swissChili | 923b536 | 2021-05-09 20:31:43 -0700 | [diff] [blame] | 3 | #include "istream.h" |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 4 | #include <stdbool.h> |
swissChili | bed8092 | 2021-04-13 21:58:05 -0700 | [diff] [blame] | 5 | #include <stdio.h> |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 6 | |
swissChili | 8cfb7c4 | 2021-04-18 21:17:58 -0700 | [diff] [blame] | 7 | #define INT_MASK 0b11 |
| 8 | #define INT_TAG 0b00 |
| 9 | |
| 10 | #define CHAR_MASK 0xff |
| 11 | #define CHAR_TAG 0b00001111 |
| 12 | |
| 13 | #define BOOL_MASK 0b1111111 |
| 14 | #define BOOL_TAG 0b0011111 |
| 15 | |
| 16 | #define HEAP_MASK 0b111 |
| 17 | |
| 18 | #define CONS_TAG 0b001 |
| 19 | #define VECTOR_TAG 0b010 |
swissChili | 6eee4f9 | 2021-04-20 09:34:30 -0700 | [diff] [blame] | 20 | #define STRING_TAG 0b011 |
swissChili | 8cfb7c4 | 2021-04-18 21:17:58 -0700 | [diff] [blame] | 21 | #define SYMBOL_TAG 0b101 |
| 22 | #define CLOSURE_TAG 0b110 |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 23 | |
| 24 | struct cons; |
| 25 | |
swissChili | 2999dd1 | 2021-07-02 14:19:53 -0700 | [diff] [blame] | 26 | /// Represents a Lisp value |
swissChili | 8cfb7c4 | 2021-04-18 21:17:58 -0700 | [diff] [blame] | 27 | typedef unsigned int value_t; |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 28 | |
| 29 | struct cons |
| 30 | { |
swissChili | 8cfb7c4 | 2021-04-18 21:17:58 -0700 | [diff] [blame] | 31 | value_t car, cdr; |
swissChili | 2999dd1 | 2021-07-02 14:19:53 -0700 | [diff] [blame] | 32 | |
| 33 | /// Line of the input file from where this was parsed, 0 if it was created |
| 34 | /// in Lisp. |
| 35 | int line; |
| 36 | |
| 37 | /// Description of where the cons was parsed from, or NULL if generated in |
| 38 | /// code. |
| 39 | char *name; |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
swissChili | b8fd471 | 2021-06-23 15:32:04 -0700 | [diff] [blame] | 42 | /// Default pool (no pool) |
| 43 | #define NO_POOL 0 |
| 44 | |
| 45 | /** |
| 46 | * The max used pool number, don't touch this. |
| 47 | */ |
| 48 | extern unsigned char max_pool; |
| 49 | |
| 50 | /** |
| 51 | * Current allocation pool, default 0 (no pool) |
| 52 | */ |
| 53 | extern unsigned char current_pool; |
swissChili | e9fec8b | 2021-06-22 13:59:33 -0700 | [diff] [blame] | 54 | |
| 55 | // It is integral that this be 16 bytes long so that whatever follows it is |
| 56 | // still aligned to 4 bits. |
swissChili | 9e57da4 | 2021-06-15 22:22:46 -0700 | [diff] [blame] | 57 | struct alloc |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 58 | { |
swissChili | b8fd471 | 2021-06-23 15:32:04 -0700 | [diff] [blame] | 59 | /** |
| 60 | * One of the type tags, eg CONS_TAG, etc |
| 61 | */ |
swissChili | e9fec8b | 2021-06-22 13:59:33 -0700 | [diff] [blame] | 62 | unsigned int type_tag; // 4 |
| 63 | struct alloc *prev, *next; // + 8 |
swissChili | b8fd471 | 2021-06-23 15:32:04 -0700 | [diff] [blame] | 64 | /** |
| 65 | * Zero if this is not part of a release pool, pool number otherwise. |
| 66 | */ |
| 67 | unsigned char pool; // + 1 |
| 68 | /** |
| 69 | * Reserved for the GC. |
| 70 | */ |
| 71 | unsigned int mark : 24; // + 2 = 16 |
swissChili | 9e57da4 | 2021-06-15 22:22:46 -0700 | [diff] [blame] | 72 | |
| 73 | // Whatever else |
| 74 | }; |
| 75 | |
swissChili | e9fec8b | 2021-06-22 13:59:33 -0700 | [diff] [blame] | 76 | extern struct alloc *first_a, *last_a; |
| 77 | |
swissChili | 9e57da4 | 2021-06-15 22:22:46 -0700 | [diff] [blame] | 78 | struct cons_alloc |
| 79 | { |
| 80 | struct alloc alloc; |
| 81 | struct cons cons; |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
swissChili | b8fd471 | 2021-06-23 15:32:04 -0700 | [diff] [blame] | 84 | /** |
| 85 | * Create a new allocation pool. |
| 86 | */ |
| 87 | unsigned char make_pool(); |
| 88 | |
| 89 | /** |
| 90 | * Set the allocation pull |
| 91 | * @returns the old pool, you should reset this later with pop_pool. |
| 92 | */ |
| 93 | unsigned char push_pool(unsigned char pool); |
| 94 | |
| 95 | /** |
| 96 | * Set the allocation pool and throw away the old value. |
| 97 | */ |
| 98 | void pop_pool(unsigned char pool); |
| 99 | |
| 100 | /** |
| 101 | * @returns true if pool is still alive (in scope). |
| 102 | */ |
| 103 | bool pool_alive(unsigned char pool); |
| 104 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 105 | bool startswith(struct istream *s, char *pattern); |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 106 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 107 | bool readsym(struct istream *is, value_t *val); |
| 108 | bool readstr(struct istream *is, value_t *val); |
| 109 | bool readlist(struct istream *is, value_t *val); |
| 110 | bool readint(struct istream *is, value_t *val); |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 111 | |
swissChili | b6c858c | 2021-06-30 21:12:43 -0700 | [diff] [blame] | 112 | /** |
| 113 | * Read a quoted form, including `'` (quote) `\`` (backquote) and `,` (unquote) |
| 114 | * @returns true if read successfully, and sets `val`. |
| 115 | */ |
| 116 | bool readquote(struct istream *is, value_t *val); |
| 117 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 118 | value_t intval(int i); |
| 119 | value_t strval(char *str); |
swissChili | b6c858c | 2021-06-30 21:12:43 -0700 | [diff] [blame] | 120 | value_t symval(char *str); |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 121 | value_t cons(value_t car, value_t cdr); |
| 122 | bool read1(struct istream *is, value_t *val); |
| 123 | value_t read(struct istream *is); |
| 124 | value_t readn(struct istream *is); |
swissChili | bed8092 | 2021-04-13 21:58:05 -0700 | [diff] [blame] | 125 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 126 | value_t car(value_t v); |
| 127 | value_t cdr(value_t v); |
| 128 | value_t *carref(value_t v); |
| 129 | value_t *cdrref(value_t v); |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 130 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 131 | bool integerp(value_t v); |
| 132 | bool symbolp(value_t v); |
| 133 | bool stringp(value_t v); |
| 134 | bool consp(value_t v); |
| 135 | bool listp(value_t v); |
| 136 | bool nilp(value_t v); |
swissChili | 9e57da4 | 2021-06-15 22:22:46 -0700 | [diff] [blame] | 137 | bool heapp(value_t v); |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 138 | int length(value_t v); |
| 139 | value_t elt(value_t v, int index); |
swissChili | 8cfb7c4 | 2021-04-18 21:17:58 -0700 | [diff] [blame] | 140 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 141 | void printval(value_t v, int depth); |
swissChili | 7a6f5eb | 2021-04-13 16:46:02 -0700 | [diff] [blame] | 142 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 143 | void err(const char *msg); |
swissChili | bed8092 | 2021-04-13 21:58:05 -0700 | [diff] [blame] | 144 | |
swissChili | 53472e8 | 2021-05-08 16:06:32 -0700 | [diff] [blame] | 145 | bool symstreq(value_t sym, char *str); |
swissChili | ca107a0 | 2021-04-14 12:07:30 -0700 | [diff] [blame] | 146 | |
swissChili | 8fc5e2f | 2021-04-22 13:45:10 -0700 | [diff] [blame] | 147 | extern value_t nil; |
swissChili | 923b536 | 2021-05-09 20:31:43 -0700 | [diff] [blame] | 148 | extern value_t t; |