hashlib: allow forcing Hasher state, use it for IdString trivial hashing

This commit is contained in:
Emil J. Tywoniak 2024-10-30 10:49:17 +01:00
parent c1af19fabc
commit 4d14399749
2 changed files with 13 additions and 0 deletions

View File

@ -132,6 +132,13 @@ class Hasher {
state ^= t;
}
void force(hash_t new_state) {
state = new_state;
}
bool is_new() const {
return state == Hasher().state;
}
};
template<typename T>

View File

@ -361,6 +361,12 @@ namespace RTLIL
}
Hasher hash_acc(Hasher h) const {
// If we're starting a hashing sequence, simply start with unhashed ID
if (h.is_new()) {
h.force((Hasher::hash_t) index_);
return h;
}
return hash_ops<int>::hash_acc(index_, h);
}