aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-23 23:58:03 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-23 23:58:03 +0200
commit82fa3560372bd89ad0985644a76cdd14f6701ec2 (patch)
tree441c6edff5b4467d58c3e1c9871073e0eb8af1cb /kernel/rtlil.h
parentf368d792fbe6a4430dbf710b11e89cbf58439542 (diff)
downloadyosys-82fa3560372bd89ad0985644a76cdd14f6701ec2.tar.gz
yosys-82fa3560372bd89ad0985644a76cdd14f6701ec2.tar.bz2
yosys-82fa3560372bd89ad0985644a76cdd14f6701ec2.zip
Added hashing to RTLIL::SigSpec relational and equal operators
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 95de5f8c6..c25f71855 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -505,13 +505,18 @@ struct RTLIL::SigSpecIterator {
struct RTLIL::SigSpec {
private:
+ int width_;
+ unsigned long hash_;
std::vector<RTLIL::SigChunk> chunks_; // LSB at index 0
std::vector<RTLIL::SigBit> bits_; // LSB at index 0
- int width_;
void pack() const;
void unpack() const;
- bool packed() const;
+ void hash() const;
+
+ inline bool packed() const {
+ return bits_.empty();
+ }
inline void inline_unpack() const {
if (!chunks_.empty())