mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 09:34:09 +00:00
Revert changes to celltypes.h. Use dict instead of std::unordered_map and most hash function for uint64_t to hashlib.h to support this.
This commit is contained in:
parent
7b454d4633
commit
8e0308b5e7
|
@ -90,6 +90,12 @@ template<> struct hash_ops<uint32_t> : hash_int_ops
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
template<> struct hash_ops<uint64_t> : hash_int_ops
|
||||||
|
{
|
||||||
|
static inline unsigned int hash(uint64_t a) {
|
||||||
|
return mkhash((unsigned int)(a), (unsigned int)(a >> 32));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
template<> struct hash_ops<std::string> {
|
template<> struct hash_ops<std::string> {
|
||||||
static inline bool cmp(const std::string &a, const std::string &b) {
|
static inline bool cmp(const std::string &a, const std::string &b) {
|
||||||
|
|
|
@ -267,7 +267,7 @@ struct OptMergeWorker
|
||||||
}
|
}
|
||||||
|
|
||||||
did_something = false;
|
did_something = false;
|
||||||
std::unordered_map<FingerPrint, RTLIL::Cell*> sharemap;
|
dict<FingerPrint, RTLIL::Cell*> sharemap;
|
||||||
for (auto cell : cells)
|
for (auto cell : cells)
|
||||||
{
|
{
|
||||||
if ((!mode_share_all && !ct.cell_known(cell->type)) || !cell->known())
|
if ((!mode_share_all && !ct.cell_known(cell->type)) || !cell->known())
|
||||||
|
|
|
@ -29,13 +29,6 @@
|
||||||
|
|
||||||
USING_YOSYS_NAMESPACE
|
USING_YOSYS_NAMESPACE
|
||||||
|
|
||||||
template<> struct hashlib::hash_ops<uint64_t> : hashlib::hash_int_ops
|
|
||||||
{
|
|
||||||
static inline unsigned int hash(uint64_t a) {
|
|
||||||
return mkhash((unsigned int)(a), (unsigned int)(a >> 32));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
PRIVATE_NAMESPACE_BEGIN
|
PRIVATE_NAMESPACE_BEGIN
|
||||||
|
|
||||||
// xorshift128 params
|
// xorshift128 params
|
||||||
|
|
Loading…
Reference in a new issue