You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hash_table.h is a rather large file (900 lines of code). Only one of the types, BinHashTable, is used, and only in one place (enumerator.h / enumerator.cpp). Together with hist_table.h, this appears to form the history hash table.
What data structure is BinHashTable? If we can understand it well enough, we may be able to replace it with llvm or standard library data structures, removing quite a bit of otherwise unused code.
The text was updated successfully, but these errors were encountered:
hash_table.h is a rather large file (900 lines of code). Only one of the types,
BinHashTable
, is used, and only in one place (enumerator.h
/enumerator.cpp
). Together withhist_table.h
, this appears to form the history hash table.What data structure is BinHashTable? If we can understand it well enough, we may be able to replace it with llvm or standard library data structures, removing quite a bit of otherwise unused code.
The text was updated successfully, but these errors were encountered: