diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 88594859a..e240cf885 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1244,7 +1244,8 @@ private: public: SigSpec() : width_(0), hash_(0) {} SigSpec(std::initializer_list parts); - + SigSpec(const SigSpec &) = default; + SigSpec(SigSpec &&) = default; SigSpec(const RTLIL::Const &value); SigSpec(RTLIL::Const &&value); SigSpec(const RTLIL::SigChunk &chunk); @@ -1261,6 +1262,9 @@ public: SigSpec(const std::set &bits); explicit SigSpec(bool bit); + SigSpec &operator=(const SigSpec &rhs) = default; + SigSpec &operator=(SigSpec &&rhs) = default; + inline const std::vector &chunks() const { pack(); return chunks_; } inline const std::vector &bits() const { inline_unpack(); return bits_; } diff --git a/passes/opt/opt_merge.cc b/passes/opt/opt_merge.cc index 541459c27..13b1cb293 100644 --- a/passes/opt/opt_merge.cc +++ b/passes/opt/opt_merge.cc @@ -25,6 +25,7 @@ #include "libs/sha1/sha1.h" #include #include +#include #include #include #include @@ -170,24 +171,20 @@ struct OptMergeWorker } } - if (cell1->type == ID($and) || cell1->type == ID($or) || cell1->type == ID($xor) || cell1->type == ID($xnor) || cell1->type == ID($add) || cell1->type == ID($mul) || - cell1->type == ID($logic_and) || cell1->type == ID($logic_or) || cell1->type == ID($_AND_) || cell1->type == ID($_OR_) || cell1->type == ID($_XOR_)) { + if (cell1->type.in(ID($and), ID($or), ID($xor), ID($xnor), ID($add), ID($mul), + ID($logic_and), ID($logic_or), ID($_AND_), ID($_OR_), ID($_XOR_))) { if (conn1.at(ID::A) < conn1.at(ID::B)) { - RTLIL::SigSpec tmp = conn1[ID::A]; - conn1[ID::A] = conn1[ID::B]; - conn1[ID::B] = tmp; + std::swap(conn1[ID::A], conn1[ID::B]); } if (conn2.at(ID::A) < conn2.at(ID::B)) { - RTLIL::SigSpec tmp = conn2[ID::A]; - conn2[ID::A] = conn2[ID::B]; - conn2[ID::B] = tmp; + std::swap(conn2[ID::A], conn2[ID::B]); } } else - if (cell1->type == ID($reduce_xor) || cell1->type == ID($reduce_xnor)) { + if (cell1->type.in(ID($reduce_xor), ID($reduce_xnor))) { conn1[ID::A].sort(); conn2[ID::A].sort(); } else - if (cell1->type == ID($reduce_and) || cell1->type == ID($reduce_or) || cell1->type == ID($reduce_bool)) { + if (cell1->type.in(ID($reduce_and), ID($reduce_or), ID($reduce_bool))) { conn1[ID::A].sort_and_unify(); conn2[ID::A].sort_and_unify(); } else