aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.cc
Commit message (Expand)AuthorAgeFilesLines
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-11/+11
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-82/+82
* Added some missing "const" in rtlil.hClifford Wolf2014-07-261-5/+5
* Added RTLIL::Module::connections()Clifford Wolf2014-07-261-0/+5
* Added RTLIL::Module::connect(const RTLIL::SigSig&)Clifford Wolf2014-07-261-0/+5
* Automatically pack SigSpec on copy/assignClifford Wolf2014-07-261-17/+60
* Added new RTLIL::Cell port access methodsClifford Wolf2014-07-261-0/+63
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-261-83/+88
* Added copy-constructor-like module->addCell(name, other) methodClifford Wolf2014-07-261-8/+11
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-2/+35
* Added RTLIL::SigSpec is_chunk()/as_chunk() APIClifford Wolf2014-07-251-0/+17
* Fixed typo in cover idClifford Wolf2014-07-251-1/+1
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-241-0/+17
* Some improvements in SigSpec packing/unpacking and checkingClifford Wolf2014-07-241-8/+29
* Small changes regarding cover() and check() in SigSpecClifford Wolf2014-07-241-10/+5
* Added support for YOSYS_COVER_FILE env variableClifford Wolf2014-07-241-0/+2
* Added cover() calls to RTLIL::SigSpec methodsClifford Wolf2014-07-241-5/+93
* Added hashing to RTLIL::SigSpec relational and equal operatorsClifford Wolf2014-07-231-15/+64
* Disabled RTLIL::SigSpec::check() in release buildsClifford Wolf2014-07-231-0/+2
* Fixed release buildClifford Wolf2014-07-231-0/+2
* Added RTLIL::SigSpec::repeat()Clifford Wolf2014-07-231-0/+8
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-105/+9
* Turned RTLIL::SigSpec::optimize() to a no-op: a packed SigSpec is now always ...Clifford Wolf2014-07-231-7/+42
* Removed RTLIL::SigSpec::expand() methodClifford Wolf2014-07-231-41/+0
* Replaced RTLIL::SigSpec::operator!=() with inline versionClifford Wolf2014-07-231-7/+0
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 3/3Clifford Wolf2014-07-231-14/+10
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 2/3Clifford Wolf2014-07-231-16/+2
* Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 1/3Clifford Wolf2014-07-231-0/+32
* Some cleanups in RTLIL::SigChunk::SigChunk(const RTLIL::Const&)Clifford Wolf2014-07-231-4/+4
* SigSpec refactoring: More cleanups of old SigSpec use patternClifford Wolf2014-07-221-1/+11
* SigSpec refactoring: rewrote some RTLIL::SigSpec methods to use unpacked formClifford Wolf2014-07-221-182/+113
* Removed RTLIL::SigChunk::compare()Clifford Wolf2014-07-221-24/+5
* SigSpec refactoring: added RTLIL::SigSpec::bits() and pack/unpack apiClifford Wolf2014-07-221-8/+103
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, created...Clifford Wolf2014-07-221-1/+1
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-44/+44
* SigSpec refactoring: renamed the SigSpec members to chunks_ and width_ and ad...Clifford Wolf2014-07-221-149/+149
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-193/+193
* Removed deprecated module->new_wire()Clifford Wolf2014-07-211-15/+6
* Added module->remove(), module->addWire(), module->addCell(), cell->check()Clifford Wolf2014-07-211-8/+39
* Added std::set<RTLIL::SigBit> to RTLIL::SigSpec conversionClifford Wolf2014-07-201-3/+10
* Added function-like cell creation helpersClifford Wolf2014-07-181-73/+103
* Fixed RTLIL::SigSpec::append_bit() for appending constantsClifford Wolf2014-07-171-2/+3
* Changed the $mem/$memwr WR_EN input to a per-data-bit enable signalClifford Wolf2014-07-161-2/+2
* Add support for cell arraysClifford Wolf2014-06-071-1/+2
* Added support for dlatchsr cellsClifford Wolf2014-03-311-1/+58
* Fixed typo in RTLIL::Module::addAdff()Clifford Wolf2014-03-171-1/+1
* Fixed typo in RTLIL::Module::{addSshl,addSshr}Clifford Wolf2014-03-151-2/+2
* Added RTLIL::Module::add{Dff,Dffsr,Adff,Dlatch}Gate() APIClifford Wolf2014-03-151-1/+54
* Progress in Verific bindingsClifford Wolf2014-03-141-1/+1
* Added RTLIL::Module::Add{Inv,And,Or,Xor,Mux}Gate APIClifford Wolf2014-03-141-0/+42