aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-24 08:50:28 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-24 08:50:28 -0500
commitdac0553eb5a4bd7b8b6ce408c18bd4d2779e094f (patch)
tree724997dd683bfa6adef88e47ca4446f869374dcd /alee.cpp
parent81b2fa5d3c270a377504eb5002f0168fc02fd2ff (diff)
remove ParseStatus; reduce stack usage
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp42
1 files changed, 24 insertions, 18 deletions
diff --git a/alee.cpp b/alee.cpp
index 6c2c135..41610e4 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -25,23 +25,10 @@
static bool okay = false;
+static void readchar(State& state);
static void parseLine(Parser&, State&, std::string_view);
static void parseFile(Parser&, State&, std::istream&);
-static void readchar(State& state)
-{
- auto len = state.dict.read(Dictionary::Input);
- Addr addr = Dictionary::Input + sizeof(Cell) +
- Dictionary::InputCells - len - 1;
-
- for (Addr i = 0; i < len; ++i, ++addr)
- state.dict.writebyte(addr, state.dict.readbyte(addr + 1));
-
- auto c = std::cin.get();
- state.dict.writebyte(addr, c ? c : ' ');
- state.dict.write(Dictionary::Input, len + 1);
-}
-
int main(int argc, char *argv[])
{
MemDict dict;
@@ -65,6 +52,20 @@ int main(int argc, char *argv[])
return 0;
}
+static void readchar(State& state)
+{
+ auto len = state.dict.read(Dictionary::Input);
+ Addr addr = Dictionary::Input + sizeof(Cell) +
+ Dictionary::InputCells - len - 1;
+
+ for (Addr i = 0; i < len; ++i, ++addr)
+ state.dict.writebyte(addr, state.dict.readbyte(addr + 1));
+
+ auto c = std::cin.get();
+ state.dict.writebyte(addr, c ? c : ' ');
+ state.dict.write(Dictionary::Input, len + 1);
+}
+
static void save(State& state)
{
std::ofstream file ("alee.dat", std::ios::binary);
@@ -106,13 +107,17 @@ void user_sys(State& state)
void parseLine(Parser& parser, State& state, std::string_view line)
{
- auto r = parser.parse(state, line);
-
- if (r == ParseStatus::Finished) {
+ if (auto r = parser.parse(state, line); r == 0) {
if (okay)
std::cout << (state.compiling() ? "compiled" : "ok") << std::endl;
} else {
- std::cout << to_string(r) << ": " << line << std::endl;
+ switch (r) {
+ case Parser::UnknownWord:
+ std::cout << "word not found in: " << line << std::endl;
+ break;
+ default:
+ break;
+ }
}
}
@@ -123,6 +128,7 @@ void parseFile(Parser& parser, State& state, std::istream& file)
std::getline(file, line);
if (line == "bye")
exit(0);
+
parseLine(parser, state, line);
}
}