aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/show.cc
Commit message (Collapse)AuthorAgeFilesLines
* Using log_assert() instead of assert()Clifford Wolf2014-07-281-1/+1
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-271-2/+2
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-271-3/+3
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-271-1/+1
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-261-3/+3
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-261-5/+5
| | | | | | | | | 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-5/+5
|
* Various RTLIL::SigSpec related code cleanupsClifford Wolf2014-07-251-3/+3
|
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-241-2/+2
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-231-3/+0
|
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, ↵Clifford Wolf2014-07-221-2/+2
| | | | created interim RTLIL::SigSpec::chunks_rw()
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-221-17/+17
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-221-17/+17
|
* Improved seeding of color rng in show commandClifford Wolf2014-07-181-1/+3
|
* fixed syntax error in dot file created by "show" commandClifford Wolf2014-05-101-1/+1
|
* - kernel/register.h, kernel/driver.cc: refactor ↵Siesh1oo2014-03-121-1/+2
| | | | | | | rewrite_yosys_exe()/get_share_file_name() to portable proc_self_dirname()/proc_share_dirname(). This refactoring improves robustness and allows OSX support with only 7 new lines of code, and easy extension for other systems. - passes/abc/abc.cc, passes/cmds/show.cc, passes/techmap/techmap.cc: use new, refactored semantics.
* Added show -notitle optionClifford Wolf2014-02-021-4/+14
|
* Added show -color support for cells and finished show -label implementationClifford Wolf2014-02-011-13/+36
|
* Replaced RTLIL::Const::str with generic decoder methodClifford Wolf2013-12-041-1/+1
|
* Fixes and improvements in "show" commandClifford Wolf2013-11-281-10/+42
|
* Added "src" attribute to processesClifford Wolf2013-11-281-1/+4
|
* Added support for "show -pause" and "show -format dot"Clifford Wolf2013-11-281-6/+30
|
* Renamed "placeholder" to "blackbox"Clifford Wolf2013-11-221-3/+3
|
* Added placeholder check to dfflibmap and cleaned up some other placeholder ↵Clifford Wolf2013-10-311-2/+2
| | | | checks
* Fixed handling of boolean attributes (passes)Clifford Wolf2013-10-241-2/+2
|
* Some minor documentation fixesClifford Wolf2013-08-211-1/+1
|
* Renamed yosys-show temp files to be dot-files in the users home directoryClifford Wolf2013-06-121-3/+3
|
* Look for yosys-abc and yosys-svgviewer where the main exe isClifford Wolf2013-06-091-1/+1
|
* Moved cmds from kernel/ to passes/cmds/Clifford Wolf2013-06-081-0/+684