From 4b50a9fafe793abf3c2c16e203072a98a0702814 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 9 Nov 2023 14:48:49 -0500 Subject: move main execution to State; bring back verify() --- libalee/corewords.cpp | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) (limited to 'libalee/corewords.cpp') diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp index 138ade4..b177565 100644 --- a/libalee/corewords.cpp +++ b/libalee/corewords.cpp @@ -37,21 +37,12 @@ void find(State& state, Word word) state.push(imm); } -void CoreWords::run(Cell ins, State& state) +bool CoreWords::run(Cell ins, State& state) { DoubleCell dcell; - Addr index = ins; auto& ip = state.ip(); -execute: - if (index >= Dictionary::Begin) { - // must be calling a defined subroutine - state.pushr(ip); - ip = index; - return; - } else if (index >= WordCount) { - state.push(static_cast(index - WordCount)); - } else switch (index) { + switch (ins) { case 0: // _lit state.push(state.beyondip()); break; @@ -149,8 +140,7 @@ execute: find(state, state.dict.input()); break; case 24: // execute - index = state.pop(); - goto execute; + return true; case 25: // exit ip = state.popr(); if (ip == 0) @@ -180,8 +170,8 @@ execute: } [[fallthrough]]; case 28: // _jmp - ip = state.beyondip(); - return; + ip = static_cast(state.beyondip() - sizeof(Cell)); + break; case 29: // depth state.push(static_cast(state.size())); break; @@ -191,7 +181,7 @@ execute: case 31: // _in state.input(); break; - case 32: // _ex + case 32: // _ev { const auto st = state.save(); ip = 0; @@ -235,7 +225,7 @@ execute: break; } - ip += sizeof(Cell); + return false; } Cell CoreWords::findi(State& state, Word word) -- cgit v1.2.3