aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds
Commit message (Collapse)AuthorAgeFilesLines
...
* Preparations for RTLIL::IdString redesign: cleanup of existing codeClifford Wolf2014-08-023-6/+6
|
* Added ModIndex helper class, some changes to RTLIL::MonitorClifford Wolf2014-08-011-3/+3
|
* Renamed port access function on RTLIL::Cell, added param access functionsClifford Wolf2014-07-313-10/+10
|
* Added "trace" commandClifford Wolf2014-07-313-2/+100
|
* Added module->design and cell->module, wire->module pointersClifford Wolf2014-07-312-4/+6
|
* Moved some stuff to kernel/yosys.{h,cc}, using Yosys:: namespaceClifford Wolf2014-07-311-0/+4
|
* Added write_file commandClifford Wolf2014-07-302-0/+77
|
* Using log_assert() instead of assert()Clifford Wolf2014-07-283-5/+5
|
* Refactoring: Renamed RTLIL::Design::modules to modules_Clifford Wolf2014-07-2716-62/+62
|
* Refactoring: Renamed RTLIL::Module::cells to cells_Clifford Wolf2014-07-2714-38/+38
|
* Refactoring: Renamed RTLIL::Module::wires to wires_Clifford Wolf2014-07-2711-35/+35
|
* Changed more code to the new RTLIL::Wire constructorsClifford Wolf2014-07-262-15/+9
|
* Changed a lot of code to the new RTLIL::Wire constructorsClifford Wolf2014-07-264-58/+25
|
* Added RTLIL::Cell::has(portname)Clifford Wolf2014-07-261-1/+1
|
* Manual fixes for new cell connections APIClifford Wolf2014-07-266-10/+10
|
* Changed users of cell->connections_ to the new API (sed command)Clifford Wolf2014-07-2610-33/+33
| | | | | | | | | 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-2610-33/+33
|
* Use only module->addCell() and module->remove() to create and delete cellsClifford Wolf2014-07-252-13/+6
|
* Various RTLIL::SigSpec related code cleanupsClifford Wolf2014-07-251-3/+3
|
* Disabled cover() for non-linux buildsClifford Wolf2014-07-251-2/+5
|
* Improvements in "cover" commandClifford Wolf2014-07-251-11/+37
|
* Replaced more old SigChunk programming patternsClifford Wolf2014-07-241-2/+2
|
* Added "cover" commandClifford Wolf2014-07-243-1/+117
|
* Removed RTLIL::SigSpec::optimize()Clifford Wolf2014-07-234-7/+1
|
* Fixed all users of SigSpec::chunks_rw() and removed itClifford Wolf2014-07-233-36/+34
|
* SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, ↵Clifford Wolf2014-07-224-5/+5
| | | | created interim RTLIL::SigSpec::chunks_rw()
* SigSpec refactoring: using the accessor functions everywhereClifford Wolf2014-07-2210-39/+39
|
* SigSpec refactoring: renamed chunks and width to __chunks and __widthClifford Wolf2014-07-2210-39/+39
|
* Removed deprecated module->new_wire()Clifford Wolf2014-07-213-4/+4
|
* Added "select -assert-count"Clifford Wolf2014-07-201-6/+43
|
* Improved seeding of color rng in show commandClifford Wolf2014-07-181-1/+3
|
* Added %D and %c select commandsClifford Wolf2014-06-141-2/+20
|
* added tee cmdClifford Wolf2014-06-032-0/+89
|
* 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.
* Merged a few fixes for non-posix systems from github.com/Siesh1oo/yosysClifford Wolf2014-03-111-0/+1
| | | | (see https://github.com/cliffordwolf/yosys/pull/28)
* Added "design -push" and "design -pop"Clifford Wolf2014-02-201-8/+45
|
* Added connwrappers commandClifford Wolf2014-02-202-0/+206
|
* Fixed use of selection in splitnets commandClifford Wolf2014-02-161-1/+1
|
* Added != support for relational select patternClifford Wolf2014-02-161-1/+7
|
* Added delete {-input|-output|-port}Clifford Wolf2014-02-091-5/+36
|
* Bugfix in delete commandClifford Wolf2014-02-091-1/+3
|
* Build fixes for log cmdClifford Wolf2014-02-081-2/+2
|
* added "log" commandJohann Glaser2014-02-082-0/+79
|
* Added various new options to splice commandClifford Wolf2014-02-081-5/+105
|
* Added %a select operatorClifford Wolf2014-02-081-0/+32
|
* Moved some passes to other source directoriesClifford Wolf2014-02-082-0/+300
|
* Now also move net labes to the right position in splice cmdClifford Wolf2014-02-081-3/+10
|
* Added splice commandClifford Wolf2014-02-072-0/+253
|
* Added log_header() to splitnetsClifford Wolf2014-02-071-0/+2
|