aboutsummaryrefslogtreecommitdiffstats
path: root/corewords.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-26 08:10:43 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-26 08:10:43 -0500
commit739fce1848538a92f9ae2ca893b65fbd50e6a720 (patch)
treeb5e37e29c67fc4a7577606eea99a9e5ddc8084f3 /corewords.cpp
parenteb6009acbf97b364c63f4ada1dfde29d9e224d55 (diff)
pull exit check out of State::execute
Diffstat (limited to 'corewords.cpp')
-rw-r--r--corewords.cpp18
1 files changed, 11 insertions, 7 deletions
diff --git a/corewords.cpp b/corewords.cpp
index 6aec5ab..97f53dc 100644
--- a/corewords.cpp
+++ b/corewords.cpp
@@ -168,19 +168,23 @@ execute:
break;
case 25: // exit
state.ip = state.popr();
+ if (state.ip == 0) {
+ std::longjmp(state.jmpbuf,
+ static_cast<int>(State::Error::exit));
+ }
break;
case 26: // semic
state.dict.add(findi("exit"));
state.compiling(false);
break;
- case 27: // _jmp
- state.ip = state.beyondip() - sizeof(Cell);
- break;
- case 28: // _jmp0
- if (state.pop())
+ case 27: // _jmp0
+ if (state.pop()) {
state.beyondip();
- else
- state.ip = state.beyondip() - sizeof(Cell);
+ break;
+ }
+ [[fallthrough]];
+ case 28: // _jmp
+ state.ip = state.beyondip() - sizeof(Cell);
break;
case 29: // depth
state.push(state.size());