diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 06:39:02 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-09 06:39:02 -0500 |
commit | 0810456e9c5c19a47511a682eeabc71008632a2c (patch) | |
tree | 9153fe7d3f42fde88491090b59aeb77519d270dc /libalee/parser.cpp | |
parent | 513136558e55f8a843f8f326ccafe1503acf67e4 (diff) |
MaxDistance constant; some .cpp comments
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r-- | libalee/parser.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp index 328198a..3699d5f 100644 --- a/libalee/parser.cpp +++ b/libalee/parser.cpp @@ -29,14 +29,17 @@ Error Parser::parse(State& state, const char *str) { auto addr = Dictionary::Input; + // Set source and input length const auto len = static_cast<Cell>(std::strlen(str)); state.dict.write(addr, 0); state.dict.write(Dictionary::SourceLen, len); + // Fill input buffer with string contents addr += sizeof(Cell); while (*str) state.dict.writebyte(addr++, *str++); + // Zero the remaining input buffer while (addr < Dictionary::Input + Dictionary::InputCells) state.dict.writebyte(addr++, '\0'); @@ -56,8 +59,10 @@ Error Parser::parseSource(State& state) Error Parser::parseWord(State& state, Word word) { bool imm; - Addr ins = state.dict.find(word); + Addr ins; + // Search order: dictionary, core word-set, number, custom parse. + ins = state.dict.find(word); if (ins == 0) { auto cw = CoreWords::findi(state, word); @@ -121,6 +126,9 @@ void Parser::processLiteral(State& state, Cell value) if (state.compiling()) { constexpr auto ins = CoreWords::token("_lit"); + // Literal compression: opcodes between WordCount and Begin are unused, + // so we assign literals to them to save space. Opcode "WordCount" + // pushes zero to the stack, "WordCount + 1" pushes a one, etc. const Cell maxlit = Dictionary::Begin - CoreWords::WordCount; if (value >= 0 && value < maxlit) value += CoreWords::WordCount; |