aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds
Commit message (Collapse)AuthorAgeFilesLines
* autoname: do not autoname portsEddie Hung2020-01-141-1/+1
|
* Add RTLIL::constpad, init by yosys_setup(); use for abc9Eddie Hung2020-01-081-7/+18
|
* scc to use design->selected_modules() which avoids black/white-boxesEddie Hung2020-01-071-26/+25
|
* use extra_argsN. Engelhardt2019-12-181-1/+1
|
* add assert option to scratchpad commandN. Engelhardt2019-12-161-5/+44
|
* add periods and newlines to help messageN. Engelhardt2019-12-131-5/+5
|
* add test and make help message more verboseN. Engelhardt2019-12-121-1/+6
|
* add a command to read/modify scratchpad contentsN. Engelhardt2019-12-122-0/+87
|
* Add "autoname" pass and use it in "synth_ice40"Clifford Wolf2019-11-132-0/+135
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add "check -allow-tbuf"Clifford Wolf2019-10-031-8/+22
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add "check -mapped"Clifford Wolf2019-10-021-21/+35
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Improve "portlist" commandClifford Wolf2019-09-251-9/+26
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add "portlist" commandClifford Wolf2019-09-242-0/+77
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* fix show command for macosN. Engelhardt2019-09-231-0/+8
|
* Add "add -mod"Clifford Wolf2019-09-201-0/+18
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Fix select command error msg, fixes issue #1081Miodrag Milanovic2019-09-011-2/+2
|
* More use of IdString::in()Eddie Hung2019-08-151-1/+1
|
* substr() -> compare()Eddie Hung2019-08-074-30/+30
|
* Tweak default gate costs, cleanup "stat -tech cmos"Clifford Wolf2019-08-071-16/+6
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add $_NMUX_, add "abc -g cmos", add proper cmos cell costsClifford Wolf2019-08-061-0/+4
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add "stat -tech cmos"Clifford Wolf2019-07-201-2/+29
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* bugpoint: add -assigns and -updates options.whitequark2019-07-091-9/+81
|
* Fix typo, fixes #1095Clifford Wolf2019-06-201-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Fix typoClifford Wolf2019-06-201-2/+2
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Fixed the help summary line for a few commandsacw12512019-06-191-1/+1
|
* Major rewrite of wire selection in setundef -initClifford Wolf2019-06-051-30/+89
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Indent fixClifford Wolf2019-06-051-23/+25
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Merge pull request #999 from jakobwenzel/setundefInitFixClifford Wolf2019-06-051-16/+23
|\ | | | | initialize more registers in setundef -init
| * initialize more registers in setundef -initJakob Wenzel2019-05-091-16/+23
| |
* | Fix "tee" handling of log_streamsClifford Wolf2019-05-311-0/+5
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* | Do not leak file descriptors in cover.ccClifford Wolf2019-05-151-5/+6
| | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* | Fix two instances of integer-assignment to string.Henner Zeller2019-05-141-1/+2
| | | | | | | | | | | | | | | | | | o In cover.cc, the int-result of mkstemps() was assigned to a string and silently interpreted as a single-character filename with a funny value. Fix with the intent: assign the filename. o in libparse.cc, an int was assigned to a string, but depending on visible constructors, this is ambiguous. Explicitly cast this to a char.
* | bugpoint: check for -script option.whitequark2019-05-141-0/+3
| | | | | | | | Fixes #925.
* | Add "stat -tech xilinx"Clifford Wolf2019-05-111-3/+73
|/ | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Fix all warnings that occurred when compiling with gcc9Kristoffer Ellersgaard Koch2019-05-081-2/+1
|
* Fix floating point exception in qwp, fixes #923Clifford Wolf2019-05-011-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add log_debug() frameworkClifford Wolf2019-04-221-0/+34
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Merge pull request #905 from christian-krieg/feature/python_bindingsClifford Wolf2019-04-221-0/+50
|\ | | | | Feature/python bindings
| * Used PyImport_ImportModule instead of PyImport_Import to avoid the explicit ↵Benedikt Tutzer2019-04-041-10/+2
| | | | | | | | conversion to a python string
| * Changed filesystem dependency to boost instead of experimental std libraryBenedikt Tutzer2019-04-041-2/+3
| |
| * Added cross-platform support for plugin-pathsBenedikt Tutzer2019-04-031-6/+10
| |
| * Improved Error reporting when Python passes are loadedBenedikt Tutzer2019-04-031-0/+2
| |
| * Merge remote-tracking branch 'origin/master' into feature/python_bindingsBenedikt Tutzer2019-03-2832-127/+831
| |\
| * | added some checks if python is enabled to make sure everything compiles if ↵Benedikt Tutzer2018-08-201-0/+4
| | | | | | | | | | | | python is disabled in the makefile
| * | Two passes are not allowed to have the same filenameBenedikt Tutzer2018-08-201-1/+1
| | |
| * | Python passes are now looked for in share/plugins and can be added by ↵Benedikt Tutzer2018-08-201-20/+4
| | | | | | | | | | | | specifying a relative or absolute path
| * | Python Passes can now be added with the -m option or with the plugin ↵Benedikt Tutzer2018-08-161-0/+63
| | | | | | | | | | | | command. There are still issues when run in shell mode, but they can be used just fine in a python script
* | | Merge pull request #943 from YosysHQ/clifford/whiteboxClifford Wolf2019-04-204-7/+46
|\ \ \ | | | | | | | | [WIP] Add "whitebox" attribute, add "read_verilog -wb"
| * | | Add "wbflip" commandClifford Wolf2019-04-201-0/+39
| | | | | | | | | | | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
| * | | Add "whitebox" attribute, add "read_verilog -wb"Clifford Wolf2019-04-183-7/+7
| | |/ | |/| | | | | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>