Dynamic Symbol Transformation
This technique is related to name mangling in programming languages. Name mangling is a technique used to solve problems regarding the need to resolve unique names for programming entities. You can learn more about name mangling here.
Problem
Before we begin, it is important to understand the problem we are trying to solve. An issue inherent to VHDL and many other languages is namespace pollution, which is when many programming language variables/identifiers/units/classes are defined at the global level. To learn more about namespace pollution, here is a StackOverflow post that explains it in relation to Javascript.
Namespace pollution can lead to namespace clashes. As you define more primary design units at the same scope, you are more likely to have two things that accidently have the same name. This is at the core the problem we are going to solve, because VHDL compilers and synthesizers are not built to gracefully handle clashes and will error out when a primary design unit at the same scope has multiple definitions.
In VHDL, a common example of a namespace clash is when different files define an entity by the same name, which may have different behaviors. Namespace clashes may start to appear when a higher-level IP requires the same entity from an IP but as different versions throughout its dependency tree.
Solution
We solve the namespace pollution problem with an algorithm called dynamic symbol transformation (DST). The DST algorithm solves the namespace clashing problem by rewriting conflicts with a new unique identifier without losing information in the original identifier.
Limitations
Orbit automatically handles resolving duplicate identifiers for primary design units due to two design contraints. The limitations are:
- All primary design unit identifiers in the current ip must be unique within the scope of the ip.
- All primary design units identifiers in the current ip must be unique within the scope of the ip's direct dependencies. An identifier can be duplicated for primary design units across indirect dependencies.
Example
This section walks through a basic demonstration of the DST algorithm. First, it defines some terminology, and then walks through the algorithm's functionality.
Symbols
Within the context of VHDL, let's consider a symbol to be the identifier of a primary design unit. A primary design unit is a VHDL construct that exists at the global namespace. There are four primary design units:
- entity
- package
- configuration
- context
Note: VHDL does support the concept of libraries, which can add 1 level of nested scope to a primary design unit, but for this example we will assume the primary design units are defined within the same library/scope.
In the following code, the symbol and_gate
corresponds to an entity.
Filename: lab1/and_gate.vhd
entity and_gate is
port(
a, b : in bit;
c : out bit
);
end entity;
Remember that this identifier could appear again at the same namespace level as this exsiting entity in a different VHDL file.
Now imagine you are integrating VHDL code from various existing ips. As you instantiate entities within larger entities, you realize there exists another entity named and_gate
further down in the hierarchy, but this one has a different behavior and port interface than the previously defined and_gate
circuit from the "lab1/" directory.
Filename: lab3/and_gate.vhd
entity and_gate is
port(
a, b : in bit_vector(3 downto 0);
c : out bit_vector(3 downto 0)
);
end entity;
Since the current ip requires both code segments, then traditionally your EDA tool would complain to you and be unable to resolve which and_gate
to be used where. It then falls on the developer to rename one of the entities where it is defined and everywhere it is referenced, which introduces additional overhead in time and possibilities for errors. This problem is solved with DST.
Walkthrough
We present an example project-level ip dependency tree.
final-project
├─ lab3
│ └─ lab2
| └─ lab1
└─ lab2
Imagine the final-project
ip has an entity called top_level
which is the root of circuit hierarchy. From there, it reuses entities from the other ip.
Let's look at the VHDL design tree hierarchy across the ips.
top_level (final-project)
├─ and_gate (lab3)
│ └─ adder (lab2)
| └─ and_gate (lab1)
└─ mux (lab2)
Notice lab1 and lab3 both have the and_gate
entity, but their interfaces and functionality are different as previously mentioned. How can we allow both units in the hierarchy while resolving the namespace clash?
DST identifies namespace clashes within the current dependency graph and automatically resolve the conflicts to produce a clean unambiguous graph.
top_level (final-project)
├─ and_gate (lab3)
│ └─ adder (lab2)*
| └─ and_gate_fbe4720d0 (lab1)*
└─ mux (lab2)
Let's dive into what happened here. DST handled the namespace clash by transforming, or renaming, the entity related to lab1. The entity's identifier in lab1 was appended with the first 10 digits of the original lab1 ip's checksum. This transformation occurred at that ip's source code level (lab1), and in the source code for all dependents of that entity (lab2). Therefore, DST produced new dynamic variants of the lab1 and lab2 ips that properly reference and associate with and_gate_fbe4720d0
.
DST specifically chose not to rename the and_gate
from lab3, or else the user would have to be burdened with trying to track and maintain the new unique identifier in the currently developed IP (final-project). As a result, DST has no additional overhead to the user and is kept abstracted away by Orbit. Direct dependencies are never chosen for DST.
Emphasis
Dynamic symbol transformation lets Orbit avoid the major issues and frustrations of package management that stem from dependency incompatibility. As projects grow in complexity and the number of dependencies increases, Orbit can continue to allow users to integrate different verisons of the same package throughout the overall design while retaining dependency compatibility. Conflicts in incompatible versions are avoided within the dependency graph through DST. You can learn more about dependency incompatibility here.
Further Reading
- https://stephencoakley.com/2019/04/24/how-rust-solved-dependency-hell