Project#

This section covers the definition of an API for binding the sources and options from the Core to the interfaces in Tool, Runner and Logging. The Project and Design management API handles tools independent information (files/filesets, primary design units, testbenches, constraints, etc.) and some tool specific parameters.

  • Project: a set of sources (HDL, software, data, assets, configuration files, etc.) for handling multiple designs.

  • Design: a design unit, the dependencies, the parent units (testbenches and BoardTop) and the parameters for execution.

This is probably the most complex piece, because it is the less constrained. Interaction with tools and manipulation of file formats are technically limited by the interfaces and capabilities in those. Therefore, although there is flexibility in the implementation of Core, Tool, Runner and Logging, all of them need to match some external resource. Conversely, defining what a project is and how to handle it tends to be specific for each use case (say organisation, company, open source project…), so there is a vast space of different workflows, all similar but particular enough. Therefore, the elaboration of the API in this section is delayed until others are defined, since that will allow working on a finite scope.

Nevertheless, there are some features available already for dealing with “whole repositories” of VHDL sources. The proofs of concept below showcase pyGHDL.dom, the Python Document Object Model (DOM) interface built on top of GHDL’s parsing capabilities.

References#