From bc3e952b487365fdf5e60e9fcfa0841c23972e30 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Mar 2023 07:36:11 -0500 Subject: common error enum; eval to _ev --- alee-standalone.cpp | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) (limited to 'alee-standalone.cpp') diff --git a/alee-standalone.cpp b/alee-standalone.cpp index 3c4eb3d..2c971ce 100644 --- a/alee-standalone.cpp +++ b/alee-standalone.cpp @@ -79,7 +79,6 @@ static void load(State& state) state.dict.writebyte(i++, file.get()); } -#include void user_sys(State& state) { char buf[32] = {0}; @@ -107,55 +106,41 @@ void user_sys(State& state) std::cout << buf << ' '; } break; - case 5: // eval - { - auto oldip = state.ip; - std::jmp_buf oldjb; - memcpy(oldjb, state.jmpbuf, sizeof(std::jmp_buf)); - state.ip = 0; - Parser::parseSource(state); - memcpy(state.jmpbuf, oldjb, sizeof(std::jmp_buf)); - state.ip = oldip; - } + default: break; } } void parseLine(State& state, const std::string& line) { - if (auto r = Parser::parse(state, line.c_str()); r == 0) { + if (auto r = Parser::parse(state, line.c_str()); r == Error::none) { if (okay) - std::cout << (state.compiling() ? "compiled" : "ok") << std::endl; + std::cout << (state.compiling() ? " compiled" : " ok") << std::endl; } else { switch (r) { - case Parser::UnknownWord: + case Error::noword: std::cout << "word not found in: " << line << std::endl; break; - case static_cast(State::Error::push): + case Error::push: std::cout << "stack overflow" << std::endl; break; - case static_cast(State::Error::pushr): + case Error::pushr: std::cout << "return stack overflow" << std::endl; break; - case static_cast(State::Error::popr): + case Error::popr: std::cout << "return stack underflow" << std::endl; break; - case static_cast(State::Error::pop): - case static_cast(State::Error::top): - case static_cast(State::Error::pick): + case Error::pop: + case Error::top: + case Error::pick: std::cout << "stack underflow" << std::endl; break; default: - std::cout << "error: " << r << std::endl; + std::cout << "unknown error" << std::endl; break; } - while (state.size()) - state.pop(); - while (state.rsize()) - state.popr(); - state.dict.write(Dictionary::Compiling, 0); - state.ip = 0; + state.reset(); } } -- cgit v1.2.3