diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 14:48:49 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 14:48:49 -0500 |
commit | 4b50a9fafe793abf3c2c16e203072a98a0702814 (patch) | |
tree | 52283545e15153a2adeba8145d8e018f97699cfe /libalee/corewords.cpp | |
parent | 3dc947a7575bd23703644996d8e853e5e618b2e3 (diff) |
move main execution to State; bring back verify()optimize
Diffstat (limited to 'libalee/corewords.cpp')
-rw-r--r-- | libalee/corewords.cpp | 24 |
1 files changed, 7 insertions, 17 deletions
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<Cell>(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<Addr>(state.beyondip() - sizeof(Cell)); + break; case 29: // depth state.push(static_cast<Cell>(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) |