diff options
author | Patrick Lehmann <Paebbels@gmail.com> | 2023-01-12 05:53:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 05:53:48 +0100 |
commit | fb7ef864c019d325f3fc37125e6d6cdc50ae4b83 (patch) | |
tree | 8ecca65254f939c987f182531b0cc7e13ff422b3 /pyGHDL/dom/DesignUnit.py | |
parent | 60774db2a547493b7f89de6239794b7354a0e31f (diff) | |
download | ghdl-fb7ef864c019d325f3fc37125e6d6cdc50ae4b83.tar.gz ghdl-fb7ef864c019d325f3fc37125e6d6cdc50ae4b83.tar.bz2 ghdl-fb7ef864c019d325f3fc37125e6d6cdc50ae4b83.zip |
Dependency Graphs (#2308)
* Further fixes to the example code.
* Bumped dependencies.
* Fixed Debouncer example code.
* Some more cleanup.
* Black's opinion.
* Run with pyVHDLModel dev-branch.
* Fixed imports for Name.
* Fixed test case.
* Added a formatter to write dependency graphs and hierarchy as graphml.
* Improved GraphML formatting.
* Write compile order graph.
* Computing compile order.
* Bumped dependencies.
* Black's opinion.
* Fixed incorrect dependency.
Diffstat (limited to 'pyGHDL/dom/DesignUnit.py')
-rw-r--r-- | pyGHDL/dom/DesignUnit.py | 56 |
1 files changed, 23 insertions, 33 deletions
diff --git a/pyGHDL/dom/DesignUnit.py b/pyGHDL/dom/DesignUnit.py index 881a7f2eb..079364742 100644 --- a/pyGHDL/dom/DesignUnit.py +++ b/pyGHDL/dom/DesignUnit.py @@ -39,56 +39,46 @@ This module contains all DOM classes for VHDL's design units (:class:`context <E """ -from typing import Iterable, Union +from typing import Iterable from pyTooling.Decorators import export -from pyVHDLModel import ( - ContextUnion as VHDLModel_ContextUnion, - LibraryClause as VHDLModel_LibraryClause, - UseClause as VHDLModel_UseClause, - ContextReference as VHDLModel_ContextReference, - Name, - ContextUnion, -) -from pyVHDLModel.SyntaxModel import ( - Entity as VHDLModel_Entity, - Architecture as VHDLModel_Architecture, - Package as VHDLModel_Package, - PackageBody as VHDLModel_PackageBody, - PackageInstantiation as VHDLModel_PackageInstantiation, - Context as VHDLModel_Context, - Configuration as VHDLModel_Configuration, - Component as VHDLModel_Component, - GenericInterfaceItem, - PortInterfaceItem, - ConcurrentStatement, -) +from pyVHDLModel.Symbol import Symbol +from pyVHDLModel.Instantiation import PackageInstantiation as VHDLModel_PackageInstantiation +from pyVHDLModel.Interface import GenericInterfaceItem, PortInterfaceItem +from pyVHDLModel.Concurrent import ConcurrentStatement +from pyVHDLModel.DesignUnit import Context as VHDLModel_Context +from pyVHDLModel.DesignUnit import Package as VHDLModel_Package +from pyVHDLModel.DesignUnit import PackageBody as VHDLModel_PackageBody +from pyVHDLModel.DesignUnit import Entity as VHDLModel_Entity +from pyVHDLModel.DesignUnit import Architecture as VHDLModel_Architecture +from pyVHDLModel.DesignUnit import Component as VHDLModel_Component +from pyVHDLModel.DesignUnit import Configuration as VHDLModel_Configuration +from pyVHDLModel.DesignUnit import LibraryClause as VHDLModel_LibraryClause +from pyVHDLModel.DesignUnit import UseClause as VHDLModel_UseClause +from pyVHDLModel.DesignUnit import ContextReference as VHDLModel_ContextReference +from pyVHDLModel.DesignUnit import ContextUnion as VHDLModel_ContextUnion from pyGHDL.libghdl import utils from pyGHDL.libghdl._types import Iir from pyGHDL.libghdl.vhdl import nodes from pyGHDL.dom import DOMMixin, Position, DOMException from pyGHDL.dom._Utils import GetNameOfNode, GetDocumentationOfNode, GetPackageMemberSymbol, GetContextSymbol -from pyGHDL.dom._Translate import ( - GetGenericsFromChainedNodes, - GetPortsFromChainedNodes, - GetDeclaredItemsFromChainedNodes, - GetConcurrentStatementsFromChainedNodes, -) +from pyGHDL.dom._Translate import GetGenericsFromChainedNodes, GetPortsFromChainedNodes +from pyGHDL.dom._Translate import GetDeclaredItemsFromChainedNodes, GetConcurrentStatementsFromChainedNodes from pyGHDL.dom.Symbol import EntitySymbol, ContextReferenceSymbol, LibraryReferenceSymbol, PackageSymbol @export class LibraryClause(VHDLModel_LibraryClause, DOMMixin): - def __init__(self, libraryNode: Iir, symbols: Iterable[Name]): + def __init__(self, libraryNode: Iir, symbols: Iterable[Symbol]): super().__init__(symbols) DOMMixin.__init__(self, libraryNode) @export class UseClause(VHDLModel_UseClause, DOMMixin): - def __init__(self, useNode: Iir, symbols: Iterable[Name]): + def __init__(self, useNode: Iir, symbols: Iterable[Symbol]): super().__init__(symbols) DOMMixin.__init__(self, useNode) @@ -103,7 +93,7 @@ class UseClause(VHDLModel_UseClause, DOMMixin): @export class ContextReference(VHDLModel_ContextReference, DOMMixin): - def __init__(self, contextNode: Iir, symbols: Iterable[Name]): + def __init__(self, contextNode: Iir, symbols: Iterable[Symbol]): super().__init__(symbols) DOMMixin.__init__(self, contextNode) @@ -269,7 +259,7 @@ class PackageInstantiation(VHDLModel_PackageInstantiation, DOMMixin): self, node: Iir, identifier: str, - uninstantiatedPackageName: Name, + uninstantiatedPackageName: Symbol, # genericItems: List[GenericInterfaceItem] = None, documentation: str = None, ): @@ -296,7 +286,7 @@ class Context(VHDLModel_Context, DOMMixin): self, node: Iir, identifier: str, - references: Iterable[ContextUnion] = None, + references: Iterable[VHDLModel_ContextUnion] = None, documentation: str = None, ): super().__init__(identifier, references, documentation) |