blob: eb9e5f66c4575a5c02c1d22652cc0271e0cfd167 [file] [log] [blame]
swissChili7a6f5eb2021-04-13 16:46:02 -07001#pragma once
2
swissChili923b5362021-05-09 20:31:43 -07003#include "istream.h"
swissChili7a6f5eb2021-04-13 16:46:02 -07004#include <stdbool.h>
swissChilibed80922021-04-13 21:58:05 -07005#include <stdio.h>
swissChili7a6f5eb2021-04-13 16:46:02 -07006
swissChili8cfb7c42021-04-18 21:17:58 -07007#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
swissChili6eee4f92021-04-20 09:34:30 -070020#define STRING_TAG 0b011
swissChili8cfb7c42021-04-18 21:17:58 -070021#define SYMBOL_TAG 0b101
22#define CLOSURE_TAG 0b110
swissChili7a6f5eb2021-04-13 16:46:02 -070023
24struct cons;
25
swissChili2999dd12021-07-02 14:19:53 -070026/// Represents a Lisp value
swissChili8cfb7c42021-04-18 21:17:58 -070027typedef unsigned int value_t;
swissChili7a6f5eb2021-04-13 16:46:02 -070028
29struct cons
30{
swissChili8cfb7c42021-04-18 21:17:58 -070031 value_t car, cdr;
swissChili2999dd12021-07-02 14:19:53 -070032
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;
swissChili7a6f5eb2021-04-13 16:46:02 -070040};
41
swissChilib8fd4712021-06-23 15:32:04 -070042/// Default pool (no pool)
43#define NO_POOL 0
44
45/**
46 * The max used pool number, don't touch this.
47 */
48extern unsigned char max_pool;
49
50/**
51 * Current allocation pool, default 0 (no pool)
52 */
53extern unsigned char current_pool;
swissChilie9fec8b2021-06-22 13:59:33 -070054
55// It is integral that this be 16 bytes long so that whatever follows it is
56// still aligned to 4 bits.
swissChili9e57da42021-06-15 22:22:46 -070057struct alloc
swissChili7a6f5eb2021-04-13 16:46:02 -070058{
swissChilib8fd4712021-06-23 15:32:04 -070059 /**
60 * One of the type tags, eg CONS_TAG, etc
61 */
swissChilie9fec8b2021-06-22 13:59:33 -070062 unsigned int type_tag; // 4
63 struct alloc *prev, *next; // + 8
swissChilib8fd4712021-06-23 15:32:04 -070064 /**
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
swissChili9e57da42021-06-15 22:22:46 -070072
73 // Whatever else
74};
75
swissChilie9fec8b2021-06-22 13:59:33 -070076extern struct alloc *first_a, *last_a;
77
swissChili9e57da42021-06-15 22:22:46 -070078struct cons_alloc
79{
80 struct alloc alloc;
81 struct cons cons;
swissChili7a6f5eb2021-04-13 16:46:02 -070082};
83
swissChilib8fd4712021-06-23 15:32:04 -070084/**
85 * Create a new allocation pool.
86 */
87unsigned char make_pool();
88
89/**
90 * Set the allocation pull
91 * @returns the old pool, you should reset this later with pop_pool.
92 */
93unsigned char push_pool(unsigned char pool);
94
95/**
96 * Set the allocation pool and throw away the old value.
97 */
98void pop_pool(unsigned char pool);
99
100/**
101 * @returns true if pool is still alive (in scope).
102 */
103bool pool_alive(unsigned char pool);
104
swissChili53472e82021-05-08 16:06:32 -0700105bool startswith(struct istream *s, char *pattern);
swissChili7a6f5eb2021-04-13 16:46:02 -0700106
swissChili53472e82021-05-08 16:06:32 -0700107bool readsym(struct istream *is, value_t *val);
108bool readstr(struct istream *is, value_t *val);
109bool readlist(struct istream *is, value_t *val);
110bool readint(struct istream *is, value_t *val);
swissChili7a6f5eb2021-04-13 16:46:02 -0700111
swissChilib6c858c2021-06-30 21:12:43 -0700112/**
113 * Read a quoted form, including `'` (quote) `\`` (backquote) and `,` (unquote)
114 * @returns true if read successfully, and sets `val`.
115 */
116bool readquote(struct istream *is, value_t *val);
117
swissChili53472e82021-05-08 16:06:32 -0700118value_t intval(int i);
119value_t strval(char *str);
swissChilib6c858c2021-06-30 21:12:43 -0700120value_t symval(char *str);
swissChili53472e82021-05-08 16:06:32 -0700121value_t cons(value_t car, value_t cdr);
122bool read1(struct istream *is, value_t *val);
123value_t read(struct istream *is);
124value_t readn(struct istream *is);
swissChilibed80922021-04-13 21:58:05 -0700125
swissChili53472e82021-05-08 16:06:32 -0700126value_t car(value_t v);
127value_t cdr(value_t v);
128value_t *carref(value_t v);
129value_t *cdrref(value_t v);
swissChili7a6f5eb2021-04-13 16:46:02 -0700130
swissChili53472e82021-05-08 16:06:32 -0700131bool integerp(value_t v);
132bool symbolp(value_t v);
133bool stringp(value_t v);
134bool consp(value_t v);
135bool listp(value_t v);
136bool nilp(value_t v);
swissChili9e57da42021-06-15 22:22:46 -0700137bool heapp(value_t v);
swissChili53472e82021-05-08 16:06:32 -0700138int length(value_t v);
139value_t elt(value_t v, int index);
swissChili8cfb7c42021-04-18 21:17:58 -0700140
swissChili53472e82021-05-08 16:06:32 -0700141void printval(value_t v, int depth);
swissChili7a6f5eb2021-04-13 16:46:02 -0700142
swissChili53472e82021-05-08 16:06:32 -0700143void err(const char *msg);
swissChilibed80922021-04-13 21:58:05 -0700144
swissChili53472e82021-05-08 16:06:32 -0700145bool symstreq(value_t sym, char *str);
swissChilica107a02021-04-14 12:07:30 -0700146
swissChili8fc5e2f2021-04-22 13:45:10 -0700147extern value_t nil;
swissChili923b5362021-05-09 20:31:43 -0700148extern value_t t;