mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
Add Const methods is_fully_zero(), is_fully_def(), and is_fully_undef()
This commit is contained in:
parent
0be738eaac
commit
4ba5bd12c6
2 changed files with 37 additions and 0 deletions
|
@ -479,6 +479,10 @@ struct RTLIL::Const
|
|||
inline RTLIL::State &operator[](int index) { return bits.at(index); }
|
||||
inline const RTLIL::State &operator[](int index) const { return bits.at(index); }
|
||||
|
||||
bool is_fully_zero() const;
|
||||
bool is_fully_def() const;
|
||||
bool is_fully_undef() const;
|
||||
|
||||
inline RTLIL::Const extract(int offset, int len = 1, RTLIL::State padding = RTLIL::State::S0) const {
|
||||
RTLIL::Const ret;
|
||||
ret.bits.reserve(len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue