aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/corewords.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-10 11:36:30 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-10 11:36:30 -0500
commitb31036813c7706527e2067392660c9068447fa2c (patch)
treedf1e9cf14b10a4faa7ff553e84152d0a58d9ab52 /libalee/corewords.cpp
parent7eeb515c5dc57658ac98554f44780a1f9a6fd2a4 (diff)
size reduction and refactoring
Diffstat (limited to 'libalee/corewords.cpp')
-rw-r--r--libalee/corewords.cpp22
1 files changed, 10 insertions, 12 deletions
diff --git a/libalee/corewords.cpp b/libalee/corewords.cpp
index 1d705f4..ced3973 100644
--- a/libalee/corewords.cpp
+++ b/libalee/corewords.cpp
@@ -214,22 +214,22 @@ execute:
state.ip += sizeof(Cell);
}
-template<class Comp>
-int findi(Comp comp)
+template<typename Iter>
+int findi(Iter it, int size)
{
- std::size_t i = 0;
+ auto ptr = CoreWords::wordsarr;
int wordsi = 0;
- while (i < sizeof(CoreWords::wordsarr)) {
- auto end = i;
- while (CoreWords::wordsarr[end])
+ while (ptr < CoreWords::wordsarr + sizeof(CoreWords::wordsarr)) {
+ auto end = ptr;
+ while (*end)
++end;
- if (comp(CoreWords::wordsarr + i, end - i))
+ if (end - ptr == size && Dictionary::equal(ptr, end, it))
return wordsi;
++wordsi;
- i = end + 1;
+ ptr = end + 1;
}
return -1;
@@ -237,13 +237,11 @@ int findi(Comp comp)
int CoreWords::findi(const char *word)
{
- return ::findi([word](auto b, auto e) {
- return !std::strncmp(word, b, e); });
+ return ::findi(word, strlen(word));
}
int CoreWords::findi(State& state, Word word)
{
- return ::findi([state, word](auto b, auto e) {
- return state.dict.equal(word, b, e); });
+ return ::findi(word.begin(&state.dict), word.size());
}