hgdb
hgdb copied to clipboard
Hardware generator debugger
|HGDB Logo|
hgdb is a flexible hardware debugging framework. It offers runtime APIs to interact with the simulator.
Core features
hgdb is designed to be versatile and provides an abstraction to facilitate hardware debugging. It offers the following features:
- Breakpoints, including step-over and conditional breakpoint.
- Frame/context reconstruction with complex data types.
- Full reverse debugging in replay mode, and limited capability in interactive debugging.
- Set signal values in interactive debugging
- Symbol table and query. No RTL modification required.
- High-level synthesis (HLS) support.
Supported Simulators
The simulators listed below have been tested in regression tests.
Theoretically hgdb can run on any Verilog/SystemVerilog specification
compliant simulator.
- Cadence® Xcelium™
- Synopsys VCS®
- Mentor Questa®
- Verilator
- Icarus Verilog
Supported Generator Frameworks
We are working on passes to extract symbol tables from different generator frameworks. The list below will be growing!
- Chisel/Firrtl, via
hgdb-firrtl_. - CIRCT, native support. Current requires patch |circt-link|_.
- Kratos, native support.
- LegUp (HLS), experimental support, via
hgdb-legup_. - Xilinx Vitis (HLS), via
hgdb-vitis_. - Hand-written Verilog/SystemVerilog, via
hgdb-rtl_.
Usage
The easiest way to get started is to install the compiled shared object
via pip. To do so, simply type
.. code-block::
pip install libhgdb
You can find the download shared library using the following one-liner
.. code-block:: bash
python -c "import pkgutil; print(pkgutil.get_loader('libhgdb').path)"
You can copy it or symbolic link to places you want to use.
Compile from source
To compile it from source, you need a C++20 compatible compiler, such as
``gcc-10`` or ``clang-10``. Make sure that git submodules are properly cloned.
.. code-block:: bash
git clone --recurse-submodules -j8 https://github.com/Kuree/hgdb
cd hgdb
mkdir build && cd build && cmake ..
make hgdb -j
You should see the compiled shared library in ``build/src/``
How to use it with simulators
If you have installed hgdb via pip, you can directly use the wrapper
script to invoke popular simulators. For instance, you can use hgdb-vcs
in lieu of vcs and reuse the exact command line arguments. The wrapper
scripts insert proper flags to enable hgdb. Here is a list of tools:
hgdb-vcshgdb-xrunhgdb-vsimhgdb-verilatorhgdb-vvp
If you want more freedom or you compile hgdb from source,
you need to provide specific flags to the simulator in order to load the
runtime. Notice that in most cases you need to make sure that the
simulator can find libhgdb.so. The easiest way is to invoke commands
with LD_LIBRARY_PATH=${hgdb_lib_path}$, where ${hgdb_lib_path}
is the directory containing libhgdb.so. Here are some examples on
how to use it with different simulators.
-
Cadence® Xcelium™
.. code-block:: bash
xrun [commands] -access +rw -loadvpi libhgdb.so:initialize_hgdb_runtime
-
Synopsys VCS®
.. code-block:: bash
vcs [commands] -debug_acc+all -load libhgdb.so
-
Mentor Questa®
.. code-block:: bash
vsim [flags] -pli libghdb.so
-
Verilator
Verilator is a little bit tedious since it is not specification-compliant.
First, we need to generate the verilator files with extra VPI flags
.. code-block:: bash
verilator [flags] --vpi ${path_to_libhgdb.so}``
In addition, most signals should be labeled as public, otherwise breakpoints and frame inspection will not work. An easy way is to use
--public-flat-rwflag when invokingverilator. In addition to the flags, we need add following code to the test bench:-
Forward declare the runtime call:
.. code-block:: C++
namespace hgdb { void initialize_hgdb_runtime_cxx(); } -
At the beginning of the test bench code:
.. code-block:: C++
hgdb::initialize_hgdb_runtime_cxx();
Also make sure
argcandargvare properly passed to verilator:.. code-block:: C++
Verilated::commandArgs(argc, argv);
-
At each posedge of the clock, we need to call specific callback:
.. code-block:: C++
VerilatedVpi::callCbs(cbNextSimTime);
You can check out this
example test bench_ for more details.
-
-
Icarus Verilog
Icarus Verilog only takes shared library with
.vpiextension. As a result, it is a good idea to simply symbolic linklibhgdb.sotolibhgdb.vpiin the current working directory. When you run the compiled circuit withvvp, add the following command:.. code-block:: bash
vvp -M. -mlibhgdb [commands]
Runtime command-line arguments
You can change the runtime settings using plus-args when invoking the simulator. Here is
a short list of options you can change:
- ``+DEBUG_PORT=num``, where ``num`` is the port number. By default this is ``8888``
- ``+DEBUG_LOG=1``, enable the debugging log. Useful when debugging the behavior of the
runtime
There are several predefined environment variables one can use to debug the runtime. It
is not recommended for production usage:
- ``DEBUG_DISABLE_BLOCKING``: when present, will disable the initial blocking. As a result,
the simulator will starts execution without user's explicit "start" or "continue"
command.
- ``DEBUG_DATABASE_FILENAME=filename``: when present, will preload the debug table into the system.
- ``DEBUG_BREAKPOINT#=filename:line_num@[condition]``: where ``#`` counts from 0. The runtime will
query the predefined breakpoints starting from 0 and stops if corresponding environment
variable name not found. ``condition`` is optional.
- ``DEBUG_PERF_COUNT``: when present, the system will collect performance information. Only valid
when the library is build with ``-DPERF_COUNT=ON`` when invoking ``cmake``.
- ``DEBUG_PERF_COUNT_LOG``: when set, the system will dump the performance data into the set value
instead of cout;
Which debugger to use
~~~~~~~~~~~~~~~~~~~~~
hgdb offers several open-sourced debuggers:
- Visual Studio Code Debugger Extension
- ``gdb``-style debugger
You can check out the debuggers `here`_.
Reverse-debugging
~~~~~~~~~~~~~~~~~
hgdb supports full reverse-debugging via trace file. Users can forward
and backward any time, with breakpoint support. This is achieved by a
trace replay tool that implements hgdb's compatibility layer. The tool,
``hgdb-replay``, is shipped with `libhgdb` package. To use it, simply do
.. code-block:: bash
hgdb-replay waveform.vcd [args]
where ``[args]`` are optional arguments passed to the debug runtime. Due to
the license issue, the public release version of hgdb does not build with
FSDB. You have to first load Verdi (or setting ``$VERDI_HOME``) and then build
the project from source. This allows `hgdb-replay` automatically detects FSDB
waveforms.
Source-level waveform
~~~~~~~~~~~~~~~~~~~~~
hgdb also supports source-level waveform by rewriting existing waveform against
the symbol table. The rewritten waveform will produce source-level
constructs, such as ``Bundle`` and arrays. Currently only VCD format is
supported. The rewrite tool ``hgdb-rewrite-vcd`` is shipped with ``libhgdb``
package.
.. code-block:: bash
$ hgdb-rewrite-vcd <original.vcd> <debug.db> <new.vcd>
Symbol table generation
-----------------------
The symbol table used by hgdb is designed to be compiler-friendly and
language-independent. Hardware generator framework developers should
check this `document`_ out to see more details.
Available language bindings
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Below shows a list of language bindings offered by hgdb and their implementation status
- C/C++: ``creation`` ``query`` ``runtime``
- Python: ``creation`` ``query``
- SystemVerilog: ``runtime``
- tcl: ``query``
Citation
~~~~~~~~
You can check the pre-print version at `arxiv`_ (DAC '22).
@misc{https://doi.org/10.48550/arxiv.2203.05742,
doi = {10.48550/ARXIV.2203.05742},
url = {https://arxiv.org/abs/2203.05742},
author = {Zhang, Keyi and Asgar, Zain and Horowitz, Mark},
title = {Bringing Source-Level Debugging Frameworks to Hardware Generators},
publisher = {arXiv},
year = {2022},
}
.. _hgdb-firrtl: https://github.com/Kuree/hgdb-firrtl
.. _hgdb-legup: https://github.com/Kuree/hgdb-legup
.. _hgdb-vitis: https://github.com/Kuree/hgdb-vitis
.. _hgdb-rtl: https://github.com/Kuree/hgdb-rtl
.. |HGDB Logo| image:: https://github.com/Kuree/files/raw/master/images/hgdb-logo-header.svg
.. _here: https://github.com/Kuree/hgdb-debugger
.. _document: https://hgdb.dev/internal/
.. _example test bench: https://github.com/Kuree/hgdb/blob/master/tests/vectors/test_set_value_tb.cc
.. |circt-link| replace:: here
.. _circt-link: https://github.com/llvm/circt/pull/2581
.. _arxiv: https://arxiv.org/abs/2203.05742