corewords get their own functions

native
Clyne 1 year ago
parent 636b4bbc1d
commit 22a89e9949
Signed by: clyne
GPG Key ID: 3267C8EBF3F9AFC7

@ -27,9 +27,6 @@ static void pushd(State&, DoubleCell);
LIBALEE_SECTION LIBALEE_SECTION
void CoreWords::run(Cell ins, State& state) void CoreWords::run(Cell ins, State& state)
{ {
Cell cell;
DoubleCell dcell;
Addr index = ins; Addr index = ins;
auto& ip = state.ip(); auto& ip = state.ip();
@ -40,120 +37,203 @@ execute:
ip = index; ip = index;
return; return;
} else switch (index) { } else switch (index) {
case token("_lit"): // Execution semantics of `literal`. case token("_lit"): word_lit(state); break;// Execution semantics of `literal`.
case token("drop"): word_drop(state); break;
case token("dup"): word_dup(state); break;
case token("swap"): word_swap(state); break;
case token("pick"): word_pick(state); break;
case token("sys"): word_sys(state); break; // Calls user-defined "system" handler.
case token("+"): word_add(state); break;
case token("-"): word_sub(state); break;
case token("m*"): word_mul(state); break; // ( n n -- d )
case token("_/"): word_div(state); break; // ( d n -- n )
case token("_%"): word_mod(state); break; // ( d n -- n )
case token("_@"): word_peek(state); break; // ( addr cell? -- n )
case token("_!"): word_poke(state); break; // ( n addr cell? -- )
case token(">r"): word_rpush(state); break;
case token("r>"): word_rpop(state); break;
case token("="): word_eq(state); break;
case token("<"): word_lt(state); break;
case token("&"): word_and(state); break;
case token("|"): word_or(state); break;
case token("^"): word_xor(state); break;
case token("<<"): word_shl(state); break;
case token(">>"): word_shr(state); break;
case token(":"): word_colon(state); break; // Begins definition/compilation of new word.
case token("_'"): word_tick(state); break; // Collects input word and finds execution token.
case token("execute"):
// TODO reimplement
index = state.pop();
goto execute;
case token("exit"): word_exit(state); break;
case token(";"): word_semic(state); break; // Concludes word definition.
case token("_jmp0"): word_jmp0(state); break; // Jump if popped value equals zero.
case token("_jmp"): word_jmp(state); break; // Unconditional jump.
case token("depth"): word_depth(state); break;
case token("_rdepth"): word_rdepth(state); break;
case token("_in"): word_in(state); break; // Fetches more input from the user input source.
case token("_ev"): word_ev(state); break; // Evaluates words from current input source.
case token("find"): word_find(state); break;
case token("_uma"): word_uma(state); break; // ( d u u -- d ): Unsigned multiply-add.
case token("u<"): word_ult(state); break;
case token("um/mod"): word_ummod(state); break;
}
ip += sizeof(Cell);
}
LIBALEE_SECTION
Cell CoreWords::findi(State& state, Word word)
{
return findi(word.begin(&state.dict), word.size());
}
LIBALEE_SECTION
void find(State& state, Word word)
{
Cell tok = 0;
Cell imm = 0;
if (auto j = state.dict.find(word); j > 0) {
tok = state.dict.getexec(j);
imm = (state.dict.read(j) & Dictionary::Immediate) ? 1 : -1;
} else if (tok = CoreWords::findi(state, word); tok >= 0) {
imm = (tok == CoreWords::token(";")) ? 1 : -1;
}
state.push(tok);
state.push(imm);
}
DoubleCell popd(State& s)
{
DoubleCell dcell = s.pop();
dcell <<= sizeof(Cell) * 8;
dcell |= static_cast<Addr>(s.pop());
return dcell;
}
void pushd(State& s, DoubleCell d)
{
s.push(static_cast<Cell>(d));
s.push(static_cast<Cell>(d >> (sizeof(Cell) * 8)));
}
void CoreWords::word_lit(State& state) { // Execution semantics of `literal`.
state.push(state.beyondip()); state.push(state.beyondip());
break; }
case token("drop"): void CoreWords::word_drop(State& state) {
state.pop(); state.pop();
break; }
case token("dup"): void CoreWords::word_dup(State& state) {
state.push(state.top()); state.push(state.top());
break; }
case token("swap"): void CoreWords::word_swap(State& state) {
std::swap(state.top(), state.pick(1)); std::swap(state.top(), state.pick(1));
break; }
case token("pick"): void CoreWords::word_pick(State& state) {
state.push(state.pick(state.pop())); state.push(state.pick(state.pop()));
break; }
case token("sys"): // Calls user-defined "system" handler. void CoreWords::word_sys(State& state) { // Calls user-defined "system" handler.
user_sys(state); user_sys(state);
break; }
case token("+"): void CoreWords::word_add(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() += cell; state.top() += cell;
break; }
case token("-"): void CoreWords::word_sub(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() -= cell; state.top() -= cell;
break; }
case token("m*"): // ( n n -- d ) void CoreWords::word_mul(State& state) { // ( n n -- d )
cell = state.pop(); auto cell = state.pop();
dcell = state.pop() * cell; auto dcell = state.pop() * cell;
pushd(state, dcell); pushd(state, dcell);
break; }
case token("_/"): // ( d n -- n ) void CoreWords::word_div(State& state) { // ( d n -- n )
cell = state.pop(); auto cell = state.pop();
dcell = popd(state); auto dcell = popd(state);
state.push(static_cast<Cell>(dcell / cell)); state.push(static_cast<Cell>(dcell / cell));
break; }
case token("_%"): // ( d n -- n ) void CoreWords::word_mod(State& state) { // ( d n -- n )
cell = state.pop(); auto cell = state.pop();
dcell = popd(state); auto dcell = popd(state);
state.push(static_cast<Cell>(dcell % cell)); state.push(static_cast<Cell>(dcell % cell));
break; }
case token("_@"): // ( addr cell? -- n ) void CoreWords::word_peek(State& state) { // ( addr cell? -- n )
if (state.pop()) if (state.pop())
state.push(state.dict.read(state.pop())); state.push(state.dict.read(state.pop()));
else else
state.push(state.dict.readbyte(state.pop())); state.push(state.dict.readbyte(state.pop()));
break; }
case token("_!"): // ( n addr cell? -- ) void CoreWords::word_poke(State& state) { // ( n addr cell? -- )
cell = state.pop(); auto cell = state.pop();
if (auto addr = state.pop(); cell) if (auto addr = state.pop(); cell)
state.dict.write(addr, state.pop()); state.dict.write(addr, state.pop());
else else
state.dict.writebyte(addr, state.pop() & 0xFFu); state.dict.writebyte(addr, state.pop() & 0xFFu);
break; }
case token(">r"): void CoreWords::word_rpush(State& state) {
state.pushr(state.pop()); state.pushr(state.pop());
break; }
case token("r>"): void CoreWords::word_rpop(State& state) {
state.push(state.popr()); state.push(state.popr());
break; }
case token("="): void CoreWords::word_eq(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() = state.top() == cell ? -1 : 0; state.top() = state.top() == cell ? -1 : 0;
break; }
case token("<"): void CoreWords::word_lt(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() = state.top() < cell ? -1 : 0; state.top() = state.top() < cell ? -1 : 0;
break; }
case token("&"): void CoreWords::word_and(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() &= cell; state.top() &= cell;
break; }
case token("|"): void CoreWords::word_or(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() |= cell; state.top() |= cell;
break; }
case token("^"): void CoreWords::word_xor(State& state) {
cell = state.pop(); auto cell = state.pop();
state.top() ^= cell; state.top() ^= cell;
break; }
case token("<<"): void CoreWords::word_shl(State& state) {
cell = state.pop(); auto cell = state.pop();
reinterpret_cast<Addr&>(state.top()) <<= static_cast<Addr>(cell); reinterpret_cast<Addr&>(state.top()) <<= static_cast<Addr>(cell);
break; }
case token(">>"): void CoreWords::word_shr(State& state) {
cell = state.pop(); auto cell = state.pop();
reinterpret_cast<Addr&>(state.top()) >>= static_cast<Addr>(cell); reinterpret_cast<Addr&>(state.top()) >>= static_cast<Addr>(cell);
break; }
case token(":"): // Begins definition/compilation of new word. void CoreWords::word_colon(State& state) { // Begins definition/compilation of new word.
state.push(state.dict.alignhere()); state.push(state.dict.alignhere());
state.dict.write(Dictionary::CompToken, state.top()); state.dict.write(Dictionary::CompToken, state.top());
while (!state.dict.hasInput()) while (!state.dict.hasInput())
state.input(); state.input();
state.dict.addDefinition(state.dict.input()); state.dict.addDefinition(state.dict.input());
state.compiling(true); state.compiling(true);
break; }
case token("_'"): // Collects input word and finds execution token. void CoreWords::word_tick(State& state) { // Collects input word and finds execution token.
while (!state.dict.hasInput()) while (!state.dict.hasInput())
state.input(); state.input();
find(state, state.dict.input()); find(state, state.dict.input());
break; }
case token("execute"): void CoreWords::word_execute(State& state) {
index = state.pop(); /*index =*/ state.pop();
goto execute; /* TODO goto execute; */
case token("exit"): }
ip = state.popr(); void CoreWords::word_exit(State& state) {
state.verify(ip != 0, Error::exit); state.ip() = state.popr();
break; state.verify(state.ip() != 0, Error::exit);
case token(";"): // Concludes word definition. }
void CoreWords::word_semic(State& state) { // Concludes word definition.
state.dict.add(token("exit")); state.dict.add(token("exit"));
state.compiling(false); state.compiling(false);
cell = state.pop(); auto cell = state.pop();
dcell = cell - state.dict.latest(); auto dcell = cell - state.dict.latest();
if (dcell >= Dictionary::MaxDistance) { if (dcell >= Dictionary::MaxDistance) {
// Large distance to previous entry: store in dedicated cell. // Large distance to previous entry: store in dedicated cell.
state.dict.write(static_cast<Addr>(cell) + sizeof(Cell), state.dict.write(static_cast<Addr>(cell) + sizeof(Cell),
@ -163,57 +243,54 @@ execute:
state.dict.write(cell, state.dict.write(cell,
(state.dict.read(cell) & 0x1F) | static_cast<Cell>(dcell << 6)); (state.dict.read(cell) & 0x1F) | static_cast<Cell>(dcell << 6));
state.dict.latest(cell); state.dict.latest(cell);
break; }
case token("_jmp0"): // Jump if popped value equals zero. void CoreWords::word_jmp0(State& state) { // Jump if popped value equals zero.
if (state.pop()) { if (state.pop()) {
state.beyondip(); state.beyondip();
break; } else {
state.ip() = static_cast<Addr>(state.beyondip() - sizeof(Cell));
} }
[[fallthrough]]; }
case token("_jmp"): // Unconditional jump. void CoreWords::word_jmp(State& state) { // Unconditional jump.
ip = state.beyondip(); state.ip() = static_cast<Addr>(state.beyondip() - sizeof(Cell));
return; }
case token("depth"): void CoreWords::word_depth(State& state) {
state.push(static_cast<Cell>(state.size())); state.push(static_cast<Cell>(state.size()));
break; }
case token("_rdepth"): void CoreWords::word_rdepth(State& state) {
state.push(static_cast<Cell>(state.rsize())); state.push(static_cast<Cell>(state.rsize()));
break; }
case token("_in"): // Fetches more input from the user input source. void CoreWords::word_in(State& state) { // Fetches more input from the user input source.
state.input(); state.input();
break; }
case token("_ev"): // Evaluates words from current input source. void CoreWords::word_ev(State& state) { // Evaluates words from current input source.
{
const auto st = state.save(); const auto st = state.save();
ip = 0; state.ip() = 0;
Parser::parseSource(state); Parser::parseSource(state);
state.load(st); state.load(st);
} }
break; void CoreWords::word_find(State& state) {
case token("find"): auto cell = state.pop();
cell = state.pop();
find(state, find(state,
Word::fromLength(static_cast<Addr>(cell + 1), Word::fromLength(static_cast<Addr>(cell + 1),
state.dict.readbyte(cell))); state.dict.readbyte(cell)));
break; }
case token("_uma"): // ( d u u -- d ): Unsigned multiply-add. void CoreWords::word_uma(State& state) { // ( d u u -- d ): Unsigned multiply-add.
{
const auto plus = state.pop(); const auto plus = state.pop();
cell = state.pop(); auto cell = state.pop();
dcell = popd(state); auto dcell = popd(state);
dcell *= static_cast<Addr>(cell); dcell *= static_cast<Addr>(cell);
dcell += static_cast<Addr>(plus); dcell += static_cast<Addr>(plus);
pushd(state, dcell); pushd(state, dcell);
} }
break; void CoreWords::word_ult(State& state) {
case token("u<"): auto cell = state.pop();
cell = state.pop();
state.top() = static_cast<Addr>(state.top()) < state.top() = static_cast<Addr>(state.top()) <
static_cast<Addr>(cell) ? -1 : 0; static_cast<Addr>(cell) ? -1 : 0;
break; }
case token("um/mod"): void CoreWords::word_ummod(State& state) {
cell = state.pop(); auto cell = state.pop();
dcell = popd(state); auto dcell = popd(state);
state.push(static_cast<Cell>( state.push(static_cast<Cell>(
static_cast<DoubleAddr>(dcell) % static_cast<DoubleAddr>(dcell) %
@ -221,49 +298,5 @@ execute:
state.push(static_cast<Cell>( state.push(static_cast<Cell>(
static_cast<DoubleAddr>(dcell) / static_cast<DoubleAddr>(dcell) /
static_cast<Addr>(cell))); static_cast<Addr>(cell)));
break;
default: // Compacted literals (WordCount <= ins < Begin).
state.push(ins - WordCount);
break;
}
ip += sizeof(Cell);
}
LIBALEE_SECTION
Cell CoreWords::findi(State& state, Word word)
{
return findi(word.begin(&state.dict), word.size());
}
LIBALEE_SECTION
void find(State& state, Word word)
{
Cell tok = 0;
Cell imm = 0;
if (auto j = state.dict.find(word); j > 0) {
tok = state.dict.getexec(j);
imm = (state.dict.read(j) & Dictionary::Immediate) ? 1 : -1;
} else if (tok = CoreWords::findi(state, word); tok >= 0) {
imm = (tok == CoreWords::token(";")) ? 1 : -1;
}
state.push(tok);
state.push(imm);
}
DoubleCell popd(State& s)
{
DoubleCell dcell = s.pop();
dcell <<= sizeof(Cell) * 8;
dcell |= static_cast<Addr>(s.pop());
return dcell;
}
void pushd(State& s, DoubleCell d)
{
s.push(static_cast<Cell>(d));
s.push(static_cast<Cell>(d >> (sizeof(Cell) * 8)));
} }

@ -113,6 +113,44 @@ private:
return -1; return -1;
} }
static void word_lit(State&);
static void word_drop(State&);
static void word_dup(State&);
static void word_swap(State&);
static void word_pick(State&);
static void word_sys(State&);
static void word_add(State&);
static void word_sub(State&);
static void word_mul(State&);
static void word_div(State&);
static void word_mod(State&);
static void word_peek(State&);
static void word_poke(State&);
static void word_rpush(State&);
static void word_rpop(State&);
static void word_eq(State&);
static void word_lt(State&);
static void word_and(State&);
static void word_or(State&);
static void word_xor(State&);
static void word_shl(State&);
static void word_shr(State&);
static void word_colon(State&);
static void word_tick(State&);
static void word_execute(State&);
static void word_exit(State&);
static void word_semic(State&);
static void word_jmp0(State&);
static void word_jmp(State&);
static void word_depth(State&);
static void word_rdepth(State&);
static void word_in(State&);
static void word_ev(State&);
static void word_find(State&);
static void word_uma(State&);
static void word_ult(State&);
static void word_ummod(State&);
}; };
#endif // ALEEFORTH_COREWORDS_HPP #endif // ALEEFORTH_COREWORDS_HPP

Loading…
Cancel
Save