aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/dictionary.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-10-25 09:06:14 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-10-25 09:06:14 -0400
commit650a344aad4c32d9b476ce36a06aa7dce373bb30 (patch)
treee051d1248316cdee88f1a51caaf3cdbdf38dd19f /libalee/dictionary.cpp
parent7381e87be6f2fa545e11a0a538291e7e2fc1e1a6 (diff)
support long definitions; add tests as submodule
Diffstat (limited to 'libalee/dictionary.cpp')
-rw-r--r--libalee/dictionary.cpp35
1 files changed, 27 insertions, 8 deletions
diff --git a/libalee/dictionary.cpp b/libalee/dictionary.cpp
index 0d225e0..6c359bd 100644
--- a/libalee/dictionary.cpp
+++ b/libalee/dictionary.cpp
@@ -64,6 +64,9 @@ void Dictionary::addDefinition(Word word) noexcept
Cell wsize = word.size();
add(wsize);
+ if (alignhere() - latest() >= ((1 << (sizeof(Cell) * 8 - 6)) - 1))
+ add(0);
+
auto addr = allot(wsize);
auto it = word.begin(this);
const auto end = word.end(this);
@@ -81,14 +84,25 @@ Addr Dictionary::find(Word word) noexcept
for (;;) {
const Addr l = read(lt);
const Addr len = l & 0x1F;
+ Word lw;
- const auto lw = Word::fromLength(lt + sizeof(Cell), len);
- if (equal(word, lw))
- return lt;
- else if (lt == Begin)
- break;
- else
- lt -= l >> 6;
+ if ((l >> 6) < 1023) {
+ lw = Word::fromLength(lt + sizeof(Cell), len);
+ if (equal(word, lw))
+ return lt;
+ else if (lt == Begin)
+ break;
+ else
+ lt -= l >> 6;
+ } else {
+ lw = Word::fromLength(lt + 2 * sizeof(Cell), len);
+ if (equal(word, lw))
+ return lt;
+ else if (lt == Begin)
+ break;
+ else
+ lt -= static_cast<Addr>(read(lt + sizeof(Cell)));
+ }
}
return 0;
@@ -96,8 +110,13 @@ Addr Dictionary::find(Word word) noexcept
Addr Dictionary::getexec(Addr addr) noexcept
{
- const Addr len = read(addr) & 0x1Fu;
+ const Addr l = read(addr);
+ const Addr len = l & 0x1Fu;
+
addr += sizeof(Cell);
+ if ((l >> 6) == 1023)
+ addr += sizeof(Cell);
+
addr += len;
return aligned(addr);
}