aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/simplemap.cc
Commit message (Collapse)AuthorAgeFilesLines
* Renamed SIZE() to GetSize() because of name collision on Win32Clifford Wolf2014-10-101-9/+9
|
* namespace YosysClifford Wolf2014-09-271-1/+11
|
* Removed $bu0 cell typeClifford Wolf2014-09-041-12/+1
|
* Renamed $_INV_ cell type to $_NOT_Clifford Wolf2014-08-151-4/+4
|
* More cleanups related to RTLIL::IdString usageClifford Wolf2014-08-021-3/+3
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-85/+85
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-1/+0
|
* Using new obj iterator API in a few placesClifford Wolf2014-07-271-11/+9
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-1/+1
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-5/+5
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-99/+99
| | | | | | | | | 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-261-99/+99
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-60/+16
|
* Removed RTLIL::SigSpec::expand() methodClifford Wolf2014-07-231-98/+45
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-56/+56
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-56/+56
|
* Removed deprecated module->new_wire()Clifford Wolf2014-07-211-4/+4
|
* Added $slice and $concat cell typesClifford Wolf2014-02-071-0/+18
|
* Fixed undef extend for bitwise binary ops (bugs in simplemap and satgen)Clifford Wolf2013-12-291-2/+2
|
* Added new cell types to manualClifford Wolf2013-12-281-1/+1
|
* Added $bu0 cell (for easy correct $eq/$ne mapping)Clifford Wolf2013-12-281-0/+13
|
* Using simplemap mappers from techmapClifford Wolf2013-11-241-25/+30
|
* Added simplemap passClifford Wolf2013-11-241-0/+517