summaryrefslogtreecommitdiff
path: root/passes/techmap/dfflibmap.cc
Commit message (Collapse)AuthorAge
* Added "dfflibmap -prepare" helpClifford Wolf2014-12-24
|
* Added "dfflibmap -prepare"Clifford Wolf2014-12-24
|
* Fixed various VS warningsClifford Wolf2014-10-18
|
* Renamed SIZE() to GetSize() because of name collision on Win32Clifford Wolf2014-10-10
|
* namespace YosysClifford Wolf2014-09-27
|
* Fixed inserting of Q-inverters in dfflibmapClifford Wolf2014-08-27
|
* Changed frontend-api from FILE to std::istreamClifford Wolf2014-08-23
|
* Renamed $_INV_ cell type to $_NOT_Clifford Wolf2014-08-15
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-02
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-31
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-27
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-27
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-26
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-26
| | | | | | | | | git grep -l 'connections_' | xargs sed -i -r -e ' s/(->|\.)connections_\["([^"]*)"\] = (.*);/\1set("\2", \3);/g; s/(->|\.)connections_\["([^"]*)"\]/\1get("\2")/g; s/(->|\.)connections_.at\("([^"]*)"\)/\1get("\2")/g; s/(->|\.)connections_.push_back/\1connect/g; s/(->|\.)connections_/\1connections()/g;'
* Renamed RTLIL::{Module,Cell}::connections to connections_Clifford Wolf2014-07-26
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-25
|
* Merged a few fixes for non-posix systems from github.com/Siesh1oo/yosysClifford Wolf2014-03-11
| | | | (see https://github.com/cliffordwolf/yosys/pull/28)
* Fixed dfflibmap for cell libraries with no set-reset-ffClifford Wolf2014-02-15
|
* renamed LibertyParer to LibertyParserClifford Wolf2014-01-14
|
* Fixed dfflibmap for unused output portsClifford Wolf2013-12-21
|
* Now prefer smallest cells in dfflibmapClifford Wolf2013-12-21
|
* Cleanup of dfflibmap cellmap exploration codeClifford Wolf2013-12-20
|
* Further improved dfflibmap cellmap explorationClifford Wolf2013-12-20
|
* Fixed dfflibmap endless-loop bugClifford Wolf2013-12-20
|
* Prefer non-inverted clocks in dfflibmapClifford Wolf2013-12-19
|
* Renamed "placeholder" to "blackbox"Clifford Wolf2013-11-22
|
* Added placeholder check to dfflibmap and cleaned up some other placeholder ↵Clifford Wolf2013-10-31
| | | | checks
* Added support for sr flip-flops to dfflibmapClifford Wolf2013-10-24
|
* Moved dfflibmap from passes/dfflibmap to passes/techmapClifford Wolf2013-10-16