pyGHDL.dom.NonStandard
#
Todo
Add a module documentation.
Classes
Design
: ADesign
represents all loaded and analysed files (seeDocument
). It’s the root of thisLibrary
: ALibrary
represents a VHDL library. It contains all primary and secondary design units.Document
: ADocument
represents a sourcefile. It contains primary and secondary design units.
Classes
- class pyGHDL.dom.NonStandard.Design(name=None)[source]#
Inheritance
- Parameters:
name (str | None) –
- __ghdl_init()#
Initialization: set options and then load libraries.
- _parent: ModelEntity#
Reference to a parent entity in the model.
- property Parent: ModelEntity#
Returns a reference to the parent entity.
- Returns:
Parent entity.
-
_dependencyGraph:
Graph
[None
,None
,None
,None
,None
,None
,None
,None
,str
,DesignUnit
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
]# The graph of all dependencies in the designs.
-
_compileOrderGraph:
Graph
[None
,None
,None
,None
,None
,None
,None
,None
,None
, Document,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
]# A graph derived from dependency graph containing the order of documents for compilation.
-
_hierarchyGraph:
Graph
[None
,None
,None
,None
,None
,None
,None
,None
,str
,DesignUnit
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
,None
]# A graph derived from dependency graph containing the design hierarchy.
-
_toplevel:
Union
[Entity
,Configuration
]# When computed, the toplevel design unit is cached in this field.
- class pyGHDL.dom.NonStandard.Library(identifier)[source]#
Inheritance
- Parameters:
identifier (str) –
- _parent: ModelEntity#
Reference to a parent entity in the model.
- property Architectures: Dict[str, Dict[str, Architecture]]#
Returns a list of all architectures declarations declared in this library.
- property Configurations: Dict[str, Configuration]#
Returns a list of all configuration declarations declared in this library.
- property Contexts: Dict[str, Context]#
Returns a list of all context declarations declared in this library.
- property Entities: Dict[str, Entity]#
Returns a list of all entity declarations declared in this library.
- property Identifier: str#
Returns a model entity’s identifier (name).
- Returns:
Name of a model entity.
- property NormalizedIdentifier: str#
Returns a model entity’s normalized identifier (lower case name).
- Returns:
Normalized name of a model entity.
- property PackageBodies: Dict[str, PackageBody]#
Returns a list of all package body declarations declared in this library.
- property Packages: Dict[str, Package]#
Returns a list of all package declarations declared in this library.
- property Parent: ModelEntity#
Returns a reference to the parent entity.
- Returns:
Parent entity.
-
_configurations:
Dict
[str
,Configuration
]# Dictionary of all configurations defined in a library.
-
_architectures:
Dict
[str
,Dict
[str
,Architecture
]]# Dictionary of all architectures defined in a library.
-
_packageBodies:
Dict
[str
,PackageBody
]# Dictionary of all package bodies defined in a library.
- _identifier: str#
The identifier of a model entity.
- _normalizedIdentifier: str#
The normalized (lower case) identifier of a model entity.
- class pyGHDL.dom.NonStandard.Document(path, sourceCode=None, vhdlVersion=VHDLVersion.VHDL2008, dontParse=False, dontTranslate=False)[source]#
Inheritance
- Parameters:
path (Path) –
sourceCode (str) –
vhdlVersion (VHDLVersion) –
dontParse (bool) –
dontTranslate (bool) –
- __init__(path, sourceCode=None, vhdlVersion=VHDLVersion.VHDL2008, dontParse=False, dontTranslate=False)[source]#
Initializes a VHDL model entity.
- Parameters:
path (Path) –
sourceCode (str | None) –
vhdlVersion (VHDLVersion) –
dontParse (bool) –
dontTranslate (bool) –
- _parent: ModelEntity#
Reference to a parent entity in the model.
- property Architectures: Dict[str, Dict[str, Architecture]]#
Returns a list of all architecture declarations found in this document.
- property Configurations: Dict[str, Configuration]#
Returns a list of all configuration declarations found in this document.
- property Contexts: Dict[str, Context]#
Returns a list of all context declarations found in this document.
- property DesignUnits: List[DesignUnit]#
Returns a list of all design units declarations found in this document.
- property Documentation: str | None#
Returns a model entity’s associated documentation.
- Returns:
Associated documentation of a model entity.
- property Entities: Dict[str, Entity]#
Returns a list of all entity declarations found in this document.
- property PackageBodies: Dict[str, PackageBody]#
Returns a list of all package body declarations found in this document.
- property Packages: Dict[str, Package]#
Returns a list of all package declarations found in this document.
- property Parent: ModelEntity#
Returns a reference to the parent entity.
- Returns:
Parent entity.
- property VerificationModes: Dict[str, VerificationMode]#
Returns a list of all verification mode declarations found in this document.
- property VerificationProperties: Dict[str, VerificationProperty]#
Returns a list of all verification property declarations found in this document.
- property VerificationUnits: Dict[str, VerificationUnit]#
Returns a list of all verification unit declarations found in this document.
- _path: Path#
path to the document.
None
if virtual document.
- _designUnits: List[DesignUnit]#
List of all design units defined in a document.
- _contexts: Dict[str, Context]#
Dictionary of all contexts defined in a document.
- _configurations: Dict[str, Configuration]#
Dictionary of all configurations defined in a document.
- _entities: Dict[str, Entity]#
Dictionary of all entities defined in a document.
- _architectures: Dict[str, Dict[str, Architecture]]#
Dictionary of all architectures defined in a document.
- _packages: Dict[str, Package]#
Dictionary of all packages defined in a document.
- _packageBodies: Dict[str, PackageBody]#
Dictionary of all package bodies defined in a document.
- _verificationUnits: Dict[str, VerificationUnit]#
Dictionary of all PSL verification units defined in a document.
- _verificationProperties: Dict[str, VerificationProperty]#
Dictionary of all PSL verification properties defined in a document.
- _verificationModes: Dict[str, VerificationMode]#
Dictionary of all PSL verification modes defined in a document.
- _documentation: Nullable[str]#
The associated documentation of a model entity.