aboutsummaryrefslogtreecommitdiffstats
path: root/corewords.cpp
blob: 9b43fcffb6f8e158e16171b56f6158aaeabdb3e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/**
 * Alee Forth: A portable and concise Forth implementation in modern C++.
 * Copyright (C) 2023  Clyne Sullivan <clyne@bitgloo.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

#include "corewords.hpp"

Func CoreWords::get(int index)
{
    static const Func ops[WordCount] = {
        op_drop,  op_dup,  op_swap,    op_pick,    op_sys,
        op_add,   op_sub,  op_mul,     op_div,     op_mod,
        op_peek,  op_poke, op_rot,     op_pushr,   op_popr,
        op_eq,    op_lt,   op_allot,   op_and,     op_or,
        op_xor,   op_shl,  op_shr,     op_comment, op_colon,
        op_semic, op_here, op_imm,     op_const,   op_depth,
        op_key,   op_exit, op_tick,    op_execute, op_jmp,
        op_jmp0,  op_lit,  op_literal,
        op_jump
    };

    return index >= 0 && index < WordCount ? ops[index] : nullptr;
}

void CoreWords::op_drop(State& state)
{
    state.pop();
}

void CoreWords::op_dup(State& state)
{
    state.push(state.top());
}

void CoreWords::op_swap(State& state)
{
    std::swap(state.top(), state.pick(1));
}

void CoreWords::op_pick(State& state)
{
    state.push(state.pick(state.pop()));
}

void CoreWords::op_sys(State& state)
{
    return user_sys(state);
}

void CoreWords::op_add(State& state)
{
    const auto a = state.pop();
    state.top() += a;
}

void CoreWords::op_sub(State& state)
{
    const auto a = state.pop();
    state.top() -= a;
}

void CoreWords::op_mul(State& state) {
    const auto a = state.pop();
    state.top() *= a;
}

void CoreWords::op_div(State& state) {
    const auto a = state.pop();
    state.top() /= a;
}

void CoreWords::op_mod(State& state) {
    const auto a = state.pop();
    state.top() %= a;
}

void CoreWords::op_peek(State& state) {
    if (auto w = state.pop(); w == 1)
        state.push(state.dict.readbyte(state.pop()));
    else
        state.push(state.dict.read(state.pop()));
}

void CoreWords::op_poke(State& state) {
    const auto w = state.pop();
    const auto addr = state.pop();
    if (w == 1)
        state.dict.writebyte(addr, state.pop());
    else
        state.dict.write(addr, state.pop());
}

void CoreWords::op_rot(State& state) {
    std::swap(state.pick(2), state.pick(1));
    std::swap(state.pick(1), state.pick(0));
}

void CoreWords::op_pushr(State& state) {
    state.pushr(state.pop());
}

void CoreWords::op_popr(State& state) {
    state.push(state.popr());
}

void CoreWords::op_eq(State& state) {
    const auto a = state.pop();
    state.top() = state.top() == a;
}

void CoreWords::op_lt(State& state) {
    const auto a = state.pop();
    state.top() = state.top() < a;
}

void CoreWords::op_allot(State& state) {
    state.dict.allot(state.pop());
}

void CoreWords::op_and(State& state) {
    const auto a = state.pop();
    state.top() &= a;
}

void CoreWords::op_or(State& state) {
    const auto a = state.pop();
    state.top() |= a;
}

void CoreWords::op_xor(State& state) {
    const auto a = state.pop();
    state.top() ^= a;
}

void CoreWords::op_shl(State& state) {
    const auto a = state.pop();
    state.top() <<= a;
}

void CoreWords::op_shr(State& state) {
    const auto a = state.pop();
    state.top() >>= a;
}

void CoreWords::op_comment(State& state) {
    do {
        op_key(state);
    } while (state.pop() != ')');
}

void CoreWords::op_colon(State& state) {
    if (state.compiling()) {
        Word word = state.dict.input();
        while (word.size() == 0) {
            state.input(state);
            word = state.dict.input();
        }

        state.pushr(state.dict.alignhere());
        state.dict.addDefinition(word);
    }
}

void CoreWords::op_tick(State& state) {
    Word word = state.dict.input();
    while (word.size() == 0) {
        state.input(state);
        word = state.dict.input();
    }

    Cell xt = 0;
    if (auto i = CoreWords::findi(state, word); i >= 0) {
        xt = i & ~CoreWords::Compiletime;
    } else if (auto j = state.dict.find(word); j > 0) {
        xt = state.dict.getexec(j) - sizeof(Cell);
    }

    state.push(xt);
}

void CoreWords::op_execute(State& state) {
    state.execute(state.pop());
}

void CoreWords::op_exit(State& state) {
    state.ip = state.popr();
}

void CoreWords::op_semic(State& state) {
    if (state.compiling()) {
        state.dict.add(findi("exit"));

        auto begin = state.popr();

        state.dict.write(begin,
            (state.dict.read(begin) & 0x1F) |
            ((begin - state.dict.latest) << 6));

        state.dict.latest = begin;
        state.compiling(false);
    }
}

void CoreWords::op_here(State& state) {
    state.push(state.dict.here);
}

void CoreWords::op_imm(State& state)
{
    state.dict.write(state.dict.latest,
        state.dict.read(state.dict.latest) | Immediate);
}

void CoreWords::op_const(State& state)
{
    Word word = state.dict.input();
    while (word.size() == 0) {
        state.input(state);
        word = state.dict.input();
    }

    state.pushr(state.dict.alignhere());
    state.dict.addDefinition(word);
    state.dict.add(findi("_lit"));
    state.dict.add(state.pop());
    op_semic(state);
}

void CoreWords::op_lit(State& state)
{
    state.push(state.beyondip());
    state.ip += sizeof(Cell);
}

void CoreWords::op_literal(State& state)
{
    if (state.compiling()) {
        state.dict.add(findi("_lit"));
        state.dict.add(state.pop());
    }
}

void CoreWords::op_jump(State& state)
{
    state.pushr(state.ip + sizeof(Cell));
    state.ip = state.beyondip() - sizeof(Cell);
}

void CoreWords::op_jmp(State& state)
{
    state.ip = state.beyondip() - sizeof(Cell);
}

void CoreWords::op_jmp0(State& state)
{
    if (state.pop())
        state.ip += sizeof(Cell);
    else
        op_jmp(state);
}

void CoreWords::op_depth(State& state)
{
    state.push(state.size());
}

void CoreWords::op_key(State& state)
{
    auto len = state.dict.read(Dictionary::Input);
    while (len <= 0)
        state.input(state);

    state.dict.write(Dictionary::Input, len - 1);
    Addr addr = Dictionary::Input + sizeof(Cell) +
                Dictionary::InputCells - len;
    Cell val = state.dict.readbyte(addr);

    state.push(val);
}

int CoreWords::findi(std::string_view word)
{
    std::size_t i;
    int wordsi = 0;

    std::string_view words (wordsarr, sizeof(wordsarr));

    for (i = 0; i < words.size();) {
        const auto end = words.find_first_of({"\0\1", 2}, i);

        if (word == words.substr(i, end - i))
            return words[end] == '\0' ? wordsi : (wordsi | Compiletime);

        ++wordsi;
        i = end + 1;
    }

    return -1;
}

int CoreWords::findi(State& state, Word word)
{
    std::size_t i;
    int wordsi = 0;

    std::string_view words (wordsarr, sizeof(wordsarr));

    for (i = 0; i < words.size();) {
        const auto end = words.find_first_of({"\0\1", 2}, i);

        if (state.dict.equal(word, words.substr(i, end - i)))
            return words[end] == '\0' ? wordsi : (wordsi | Compiletime);

        ++wordsi;
        i = end + 1;
    }

    return -1;
}

Func CoreWords::find(State& state, Word word)
{
    const auto i = findi(state, word);
    return i >= 0 ? get(i & ~Compiletime) : nullptr;
}

void CoreWords::run(int i, State& state)
{
    i &= ~Compiletime;

    if (i >= 0 && i < WordCount)
        get(i)(state);
}