aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/state.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-11 10:21:51 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-11 10:21:51 -0500
commite41b124320011cb1451f9869710a110058ee95aa (patch)
treea192a89a8c6a4b7bfab7d35ecf0cabe323048394 /libalee/state.hpp
parentbc3e952b487365fdf5e60e9fcfa0841c23972e30 (diff)
update documentation
Diffstat (limited to 'libalee/state.hpp')
-rw-r--r--libalee/state.hpp36
1 files changed, 27 insertions, 9 deletions
diff --git a/libalee/state.hpp b/libalee/state.hpp
index 325f405..4c74f9a 100644
--- a/libalee/state.hpp
+++ b/libalee/state.hpp
@@ -34,9 +34,8 @@ class State
public:
Addr ip = 0;
Dictionary& dict;
- void (*input)(State&);
-
- std::jmp_buf jmpbuf = {};
+ void (*input)(State&); // User-provided function to collect "stdin" input.
+ std::jmp_buf jmpbuf = {}; // Used when catching execution errors.
constexpr State(Dictionary& d, void (*i)(State&)):
dict(d), input(i) {}
@@ -44,10 +43,29 @@ public:
bool compiling() const;
void compiling(bool);
+ /**
+ * Saves execution state so that a new execution can begin.
+ * Used for EVALUATE.
+ */
std::pair<Addr, std::jmp_buf> save();
+
+ /**
+ * Reloads the given execution state.
+ */
void load(const std::pair<Addr, std::jmp_buf>&);
+ /**
+ * Begins execution at the given execution token.
+ * If the token is a CoreWord, this function exits after its execution.
+ * Otherwise, execution continues until the word's execution completes.
+ * Encountering an error will cause this function to exit immediately.
+ */
Error execute(Addr);
+
+ /**
+ * Clears the data and return stacks, sets ip to zero, and clears the
+ * compiling flag.
+ */
void reset();
std::size_t size() const noexcept;
@@ -65,11 +83,6 @@ public:
return *--dsp;
}
- inline Cell beyondip() {
- ip += sizeof(Cell);
- return dict.read(ip);
- }
-
inline void pushr(Cell value) {
if (rsp == rstack + ReturnStackSize)
std::longjmp(jmpbuf, static_cast<int>(Error::pushr));
@@ -94,12 +107,17 @@ public:
return *(dsp - i - 1);
}
+ // Advances the instruction pointer and returns that cell's contents.
+ inline Cell beyondip() {
+ ip += sizeof(Cell);
+ return dict.read(ip);
+ }
+
private:
Cell dstack[DataStackSize] = {};
Cell rstack[ReturnStackSize] = {};
Cell *dsp = dstack;
Cell *rsp = rstack;
-
};
#endif // ALEEFORTH_STATE_HPP