diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-14 14:35:29 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-14 14:35:29 -0500 |
commit | a506b65bdd589997195e3f93222c37a539a29a28 (patch) | |
tree | 558f259f9e3eb2b8d1a03ced527b649bf0c5ed86 /dictionary.cpp | |
parent | 18bcd5dd0e283100d25ca44e60f1705f3c028456 (diff) |
allow byte indexing
Diffstat (limited to 'dictionary.cpp')
-rw-r--r-- | dictionary.cpp | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/dictionary.cpp b/dictionary.cpp index e1165d2..e047488 100644 --- a/dictionary.cpp +++ b/dictionary.cpp @@ -27,7 +27,15 @@ Addr Dictionary::allot(Cell amount) void Dictionary::add(Cell value) { - write(here++, value); + write(allot(sizeof(Cell)), value); +} + +Addr Dictionary::alignhere() +{ + if (here & (sizeof(Cell) - sizeof(uint8_t))) + here = (here + sizeof(Cell)) & ~(sizeof(Cell) - sizeof(uint8_t)); + + return here; } void Dictionary::addDefinition(std::string_view str) @@ -43,8 +51,10 @@ bool Dictionary::issame(Addr addr, std::string_view str, std::size_t n) return false; for (char c : str) { - if (read(addr++) != c) + if (read(addr) != c) return false; + + addr += sizeof(Cell); } return true; @@ -55,16 +65,17 @@ Addr Dictionary::find(std::string_view str) if (latest == 0) return 0; - auto lt = latest; + Addr lt = latest, oldlt; do { + oldlt = lt; const auto l = read(lt); const auto len = l & 0x1F; - if (issame(lt + 1, str, len)) + if (issame(lt + sizeof(Cell), str, len)) return lt; else lt -= l >> 6; - } while (lt); + } while (lt != oldlt); return 0; } @@ -72,6 +83,6 @@ Addr Dictionary::find(std::string_view str) Addr Dictionary::getexec(Addr addr) { const auto len = read(addr) & 0x1F; - return addr + 1 + len; + return addr + (1 + len) * sizeof(Cell); } |