3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-22 22:03:40 +00:00

Added RTLIL::SigSpec is_chunk()/as_chunk() API

This commit is contained in:
Clifford Wolf 2014-07-25 14:23:10 +02:00
parent 1834af5e53
commit c762050e7f
2 changed files with 20 additions and 0 deletions

View file

@ -2007,6 +2007,14 @@ bool RTLIL::SigSpec::is_wire() const
return SIZE(chunks_) == 1 && chunks_[0].wire && chunks_[0].wire->width == width_;
}
bool RTLIL::SigSpec::is_chunk() const
{
cover("kernel.rtlil.sigspec.is_chunk");
pack();
return SIZE(chunks_) == 1;
}
bool RTLIL::SigSpec::is_fully_const() const
{
cover("kernel.rtlil.sigspec.is_fully_const");
@ -2121,6 +2129,15 @@ RTLIL::Wire *RTLIL::SigSpec::as_wire() const
return chunks_[0].wire;
}
RTLIL::SigChunk RTLIL::SigSpec::as_chunk() const
{
cover("kernel.rtlil.sigspec.as_chunk");
pack();
assert(is_chunk());
return chunks_[0];
}
bool RTLIL::SigSpec::match(std::string pattern) const
{
cover("kernel.rtlil.sigspec.match");