Pyverilog_toolbox is Pyverilog-based verification/design tool including code clone finder, metrics calculator and so on. Pyverilog_toolbox accerating your digital circuit design verification. Thanks to Pyverilog developer shtaxxx.
- Python (2.7 or 3.4)
- Pyverilog (you can download from https://github.com/shtaxxx/Pyverilog) Pyverilog requires Icarus verilog
(If you want to use GUI stand alone version for windows, Click here to get detail
If you want to use Pyverilog as a general library, you can install on your environment by using setup.py.
python setup.py install
Or you can use pip
pip install pyverilog_toolbox
codeclone_finder can find pair of the register clone, which always hold same value. Also can find pair of the invert register, which always hold different value.
Combinational logic loop is sticky problem, but you can find it by combloop_finder easily.
Unreferenced_finder can find signals which isn't referenced by any signals. Also floating nodes can be found. By using this, you can delte unnecessary codes.
metrics_analyzer is metrics measurment tools for Verilog HDL. You can visualize complecity of module/register/function/.
regmap_analyzer can analyze register map structure from RTL.
cnt_analyzer analyze counter property(up or down, max value, reset value and counter dependency). And extracting event which depends on counter value. This feature help you finding redundunt counter, deadlock loop, and other counter trouble.
Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
Copyright (C) 2015, Ryosuke Fukatani
Pyverilog https://github.com/shtaxxx/Pyverilog
Blog entry(in Japanese) http://segafreder.hatenablog.com/entry/2015/05/23/161000