diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-02 18:01:34 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-03-02 18:01:34 -0500 |
commit | 2ece0e4993c838f620e5c19dfa04a86d9d35df49 (patch) | |
tree | de8c4ad3b3772e7fdc44e564daeefedd4b2bc8fc /dictionary.cpp | |
parent | d175fa6a882805212cd489d6afbda9f54443bd7b (diff) |
major compliance refactor; undo packed literals for now
Diffstat (limited to 'dictionary.cpp')
-rw-r--r-- | dictionary.cpp | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/dictionary.cpp b/dictionary.cpp index fe19684..27fcb47 100644 --- a/dictionary.cpp +++ b/dictionary.cpp @@ -21,6 +21,14 @@ #include <cctype> #include <cstring> +void Dictionary::initialize() +{ + write(Base, 10); + write(Here, Begin); + write(Latest, Begin); + write(Compiling, 0); +} + Addr Dictionary::allot(Cell amount) noexcept { Addr old = here(); @@ -62,7 +70,7 @@ Addr Dictionary::find(Word word) noexcept Addr lt = latest(), oldlt; do { oldlt = lt; - const Cell l = read(lt); + const auto l = static_cast<Addr>(read(lt)); const Addr len = l & 0x1F; const Word lw { static_cast<Addr>(lt + sizeof(Cell)), @@ -72,7 +80,7 @@ Addr Dictionary::find(Word word) noexcept if (equal(word, lw)) return lt; else - lt -= l >> 7; + lt -= l >> 6; } while (lt != oldlt); return 0; @@ -118,8 +126,15 @@ bool Dictionary::equal(Word word, const char *str, unsigned len) const noexcept return false; for (auto w = word.start; w != word.end; ++w) { - if (readbyte(w) != *str) + auto wc = readbyte(w); + if (wc != *str) { + if (isalpha(wc) && isalpha(*str) && (wc | 32) == (*str | 32)) { + ++str; + continue; + } + return false; + } ++str; } @@ -134,8 +149,15 @@ bool Dictionary::equal(Word word, Word other) const noexcept auto w = word.start, o = other.start; while (w != word.end) { - if (readbyte(w) != readbyte(o)) + auto wc = readbyte(w), oc = readbyte(o); + if (wc != oc) { + if (isalpha(wc) && isalpha(oc) && (wc | 32) == (oc | 32)) { + ++w, ++o; + continue; + } + return false; + } ++w, ++o; } |