aboutsummaryrefslogtreecommitdiffstats
path: root/passes/abc/blifparse.cc
Commit message (Collapse)AuthorAgeFilesLines
* Less verbose ABC outputClifford Wolf2014-12-291-1/+2
|
* namespace YosysClifford Wolf2014-09-271-3/+4
|
* Renamed $lut ports to follow A-Y naming schemeClifford Wolf2014-08-151-2/+2
|
* Added module->portsClifford Wolf2014-08-141-2/+1
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-311-5/+5
|
* Added module->design and cell->module, wire->module pointersClifford Wolf2014-07-311-1/+1
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-1/+1
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-8/+8
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-261-16/+6
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-1/+1
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-6/+6
| | | | | | | | | 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-6/+6
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-251-18/+6
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-3/+0
|
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-5/+5
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-5/+5
|
* Fixed memory corruption in passes/abc/blifparse.ccClifford Wolf2014-03-111-1/+1
|
* Fixed use of limited length buffer in ABC blif parserClifford Wolf2013-12-311-7/+16
|
* Added abc -dff and -clk supportClifford Wolf2013-12-311-1/+27
|
* Always use BLIF as ABC output formatClifford Wolf2013-12-311-0/+26
|
* Renamed temp module generated by "abc" pass from "logic" to "netlist"Clifford Wolf2013-11-191-1/+1
|
* Fixed abc pass blif parser for constant bitsClifford Wolf2013-11-131-18/+57
|
* Added $lut cells and abc lut mapping supportClifford Wolf2013-07-231-0/+168