aboutsummaryrefslogtreecommitdiffstats
path: root/state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'state.cpp')
-rw-r--r--state.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/state.cpp b/state.cpp
index 6165ce4..ae9c059 100644
--- a/state.cpp
+++ b/state.cpp
@@ -20,6 +20,13 @@
#include <iterator>
+struct pop {};
+struct push {};
+struct popr {};
+struct pushr {};
+struct top {};
+struct pick {};
+
bool State::compiling() const
{
return dict.read(Dictionary::Compiling);
@@ -32,48 +39,48 @@ void State::compiling(bool yes)
Cell State::beyondip() const
{
- return dict.read(ip + 1);
+ return dict.read(ip + sizeof(Cell));
}
void State::pushr(Cell value)
{
if (rsize() == ReturnStackSize)
- throw;
+ throw ::pushr();
*++rsp = value;
}
Cell State::popr()
{
if (rsize() == 0)
- throw;
+ throw ::popr();
return *rsp--;
}
void State::push(Cell value)
{
if (size() == DataStackSize)
- throw;
+ throw ::push();
*++dsp = value;
}
Cell State::pop()
{
if (size() == 0)
- throw;
+ throw ::pop();
return *dsp--;
}
Cell& State::top()
{
if (size() == 0)
- throw;
+ throw ::top();
return *dsp;
}
Cell& State::pick(std::size_t i)
{
if (i >= size())
- throw;
+ throw ::pick();
return *(dsp - i);
}