diff options
Diffstat (limited to 'libalee/state.hpp')
-rw-r--r-- | libalee/state.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libalee/state.hpp b/libalee/state.hpp index 60ff95f..a5e49b5 100644 --- a/libalee/state.hpp +++ b/libalee/state.hpp @@ -21,6 +21,7 @@ #ifndef ALEEFORTH_STATE_HPP #define ALEEFORTH_STATE_HPP +#include "config.hpp" #include "dictionary.hpp" #include "types.hpp" @@ -82,11 +83,13 @@ public: void reset(); /** Returns a reference to the instruction pointer. */ + LIBALEE_SECTION Addr& ip() noexcept { return context.ip; } /** Calls the user input function with this state as the argument. */ + LIBALEE_SECTION void input() noexcept { inputfunc(*this); } @@ -114,6 +117,7 @@ public: /** * Pushes the given value to the data stack. */ + LIBALEE_SECTION inline void push(Cell value) { verify(dsp < dstack + DataStackSize, Error::push); *dsp++ = value; @@ -122,6 +126,7 @@ public: /** * Pops a value from the data stack and returns that value. */ + LIBALEE_SECTION inline Cell pop() { verify(dsp > dstack, Error::pop); return *--dsp; @@ -130,6 +135,7 @@ public: /** * Pushes the given value to the return stack. */ + LIBALEE_SECTION inline void pushr(Cell value) { verify(rsp < rstack + ReturnStackSize, Error::pushr); *rsp++ = value; @@ -138,6 +144,7 @@ public: /** * Pops a value from the return stack and returns that value. */ + LIBALEE_SECTION inline Cell popr() { verify(rsp > rstack, Error::popr); return *--rsp; @@ -146,6 +153,7 @@ public: /** * Returns the value stored at the current data stack position. */ + LIBALEE_SECTION inline Cell& top() { verify(dsp > dstack, Error::top); return *(dsp - 1); @@ -156,6 +164,7 @@ public: * @param i Index from current position to fetch from * @return The value stored at the given index */ + LIBALEE_SECTION inline Cell& pick(std::size_t i) { verify(dsp - i > dstack, Error::pick); return *(dsp - i - 1); @@ -164,6 +173,7 @@ public: /** * Advances the instruction pointer and returns that cell's contents. */ + LIBALEE_SECTION inline Cell beyondip() { context.ip += sizeof(Cell); return dict.read(context.ip); @@ -175,6 +185,7 @@ public: * @param condition Condition to be tested * @param error Error code to report via longjmp() on false condition */ + LIBALEE_SECTION inline void verify(bool condition, Error error) { if (!condition) std::longjmp(context.jmpbuf, static_cast<int>(error)); |