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