pyIPCMI.ToolChain.GHDL¶
Exceptions
GHDLException: Base class for all tool specific exceptionsGHDLReanalyzeException: Base class for all tool specific exceptions
Classes
Configuration: Base class for all tool Configuration classes.GHDL: Represent an executable.GHDLAnalyze: Represent an executable.GHDLElaborate: Represent an executable.GHDLRun: Represent an executable.
Functions
GHDLAnalyzeFilter(): Undocumented.GHDLElaborateFilter(): Undocumented.GHDLRunFilter(): Undocumented.
-
exception
pyIPCMI.ToolChain.GHDL.GHDLException(message='')[source]¶ Inheritance
Members
-
args¶
-
with_traceback(tb)¶ Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
-
-
exception
pyIPCMI.ToolChain.GHDL.GHDLReanalyzeException(message='')[source]¶ Inheritance
Members
-
args¶
-
with_traceback(tb)¶ Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.
-
-
class
pyIPCMI.ToolChain.GHDL.Configuration(host: pyIPCMI.Base.IHost)[source]¶ Inheritance
Members
-
_vendor= 'tgingold'¶ The name of the tools vendor.
-
_toolName= 'GHDL'¶ The name of the tool.
-
_section= 'INSTALL.GHDL'¶ The name of the configuration section. Pattern:
INSTALL.Vendor.ToolName.
-
_multiVersionSupport= True¶ Git supports multiple versions installed on the same system.
-
_template= {'Darwin': {'INSTALL.GHDL': {'ScriptDirectory': ('${${SectionName}:ScriptDirectory}', '${InstallationDirectory}/lib/ghdl/vendors'), 'Backend': 'llvm', 'BinaryDirectory': ('${${SectionName}:BinaryDirectory}', '${InstallationDirectory}/bin'), 'InstallationDirectory': ('${${SectionName}:InstallationDirectory}', '/usr/local'), 'Version': '0.36-dev', 'SectionName': ('%{PathWithRoot}#${Version}-${Backend}', None)}}, 'Linux': {'INSTALL.GHDL': {'ScriptDirectory': ('${${SectionName}:ScriptDirectory}', '${InstallationDirectory}/lib/ghdl/vendors'), 'Backend': 'llvm', 'BinaryDirectory': ('${${SectionName}:BinaryDirectory}', '${InstallationDirectory}/bin'), 'InstallationDirectory': ('${${SectionName}:InstallationDirectory}', '/usr/local'), 'Version': '0.36-dev', 'SectionName': ('%{PathWithRoot}#${Version}-${Backend}', None)}}, 'MinGW': {'INSTALL.GHDL': {'ScriptDirectory': ('${${SectionName}:ScriptDirectory}', '${InstallationDirectory}/lib/ghdl/vendors'), 'Backend': 'llvm', 'BinaryDirectory': ('${${SectionName}:BinaryDirectory}', '${InstallationDirectory}/bin'), 'InstallationDirectory': ('${${SectionName}:InstallationDirectory}', '/c/Tools/GHDL/${Version}-${Runtime}-${Backend}'), 'Version': '0.36-dev', 'SectionName': ('%{PathWithRoot}#${Version}-${Backend}', None)}}, 'Windows': {'INSTALL.GHDL': {'ScriptDirectory': ('${${SectionName}:ScriptDirectory}', '${InstallationDirectory}/lib/vendors'), 'Backend': 'mcode', 'BinaryDirectory': ('${${SectionName}:BinaryDirectory}', '${InstallationDirectory}/bin'), 'Runtime': 'gnatgpl32', 'InstallationDirectory': ('${${SectionName}:InstallationDirectory}', 'C:/Tools/GHDL/${Version}-${Runtime}-${Backend}'), 'Version': '0.36-dev', 'SectionName': ('%{PathWithRoot}#${Version}-${Runtime}-${Backend}', None)}}}¶ The template for the configuration sections represented as nested dictionaries.
-
ConfigureForAll()[source]¶ Start a generic (platform independent) configuration procedure.
Overwrite this method to implement a generic configuration routine for a (tool) Configuration class.
-
_GetDefaultInstallationDirectory()[source]¶ Return unresolved default installation directory (str) from template.
Overwrite function in sub-class for automatic search of installation directory.
-
_ConfigureBinaryDirectory()[source]¶ Updates section with value from _template and returns directory as Path object.
-
_ConfigureScriptDirectory()[source]¶ Updates section with value from _template and returns directory as Path object.
-
CheckDependency()[source]¶ Check if all vendor or tool dependencies are fulfilled to configure this tool.
-
ClearSection(writeWarnings=False)[source]¶ Clear the configuration section associated to this Configuration class.
-
ConfigureForDarwin()[source]¶ Start the configuration procedure for Darwin.
This method is a wrapper for
ConfigureForAll(). Overwrite this method to implement a Darwin specific configuration routine.
-
ConfigureForLinux()[source]¶ Start the configuration procedure for Linux.
This method is a wrapper for
ConfigureForAll(). Overwrite this method to implement a Linux specific configuration routine.
-
ConfigureForWindows()[source]¶ Start the configuration procedure for Windows.
This method is a wrapper for
ConfigureForAll(). Overwrite this method to implement a Windows specific configuration routine.
-
Host¶ Return the hosting object.
-
IsSupportedPlatform()[source]¶ Return true if the given platform is supported by this configuration routine.
-
Log(entry, condition=True)¶ Write an entry to the local logger.
-
LogDebug(*args, condition=True, **kwargs)¶
-
LogDryRun(*args, condition=True, **kwargs)¶
-
LogError(*args, condition=True, **kwargs)¶
-
LogFatal(*args, condition=True, **kwargs)¶
-
LogInfo(*args, condition=True, **kwargs)¶
-
LogNormal(*args, condition=True, **kwargs)¶
-
LogQuiet(*args, condition=True, **kwargs)¶
-
LogVerbose(*args, condition=True, **kwargs)¶
-
LogWarning(*args, condition=True, **kwargs)¶
-
Logger¶ Return the local logger instance.
-
PrepareVersionedSections(writeWarnings=False)¶
-
SectionName¶ Return the configuration’s section name.
-
State¶ Return the configuration state.
-
_Ask(question, default, beforeDefault='', afterDefault='', indent=1)¶
-
_AskYes_NoPass(question, indent=1)¶ Ask a yes/NO/pass question.
-
_Ask_YesNoPass(question, indent=1)¶ Ask a YES/no/pass question.
-
_Configuration__WriteGHDLSection(binPath)¶
-
_ConfigureEdition(editions, defaultEdition)¶
-
_ConfigureInstallationDirectory()[source]¶ Asks for installation directory and updates section. Checks if entered directory exists and returns Path object. If no installation directory was configured before, then _GetDefaultInstallationDir is called.
-
_ConfigureVersion()¶ If no version was configured before, then _GetDefaultVersion is called. Asks for version and updates section. Returns version as string.
-
_GetDefaultEdition()¶ Returns unresolved default edition (str) from template.
Overwrite this method in a sub-class for automatic search of editions.
-
_GetDefaultVersion()¶ Returns unresolved default version (str) from template.
Overwrite this method in a sub-class for automatic search of version.
-
_PrintAvailableEditions(editions, selectedEdition)¶ Print all available editions and return the selected index.
-
_TestDefaultInstallPath(defaults)[source]¶ Helper function for automatic search of installation directory.
-
_TryLog(*args, condition=True, **kwargs)¶
-
-
class
pyIPCMI.ToolChain.GHDL.GHDL(platform, dryrun, binaryDirectoryPath, version, backend, logger=None)[source]¶ Inheritance
Members
-
BinaryDirectoryPath¶
-
Backend¶
-
Version¶
-
Executable¶
-
Parameters= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdAnalyze'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdElaborate'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdRun'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagVerbose'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagDebug'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagExplicit'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagRelaxedRules'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagWarnBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagNoVitalChecks'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagMultiByteComments'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagSynBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagPSL'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagProfileArcs'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagTestCoverage'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchCompilerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchAssemblerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchLinkerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEFlavor'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLVersion'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLLibrary'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgListLibraryReferences'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgSourceFile'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgTopLevel'>]¶
-
RunOptions= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEAsserts'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchStopDelta'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDGZWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchFastWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchGHDLWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchWaveformOptionFile'>]¶
-
GetReader()¶
-
HasErrors¶ True if errors or fatals errors were found while processing the output stream.
-
HasWarnings¶ True if errors or fatals errors were found while processing the output stream.
-
Log(entry, condition=True)¶ Write an entry to the local logger.
-
LogDebug(*args, condition=True, **kwargs)¶
-
LogDryRun(*args, condition=True, **kwargs)¶
-
LogError(*args, condition=True, **kwargs)¶
-
LogFatal(*args, condition=True, **kwargs)¶
-
LogInfo(*args, condition=True, **kwargs)¶
-
LogNormal(*args, condition=True, **kwargs)¶
-
LogQuiet(*args, condition=True, **kwargs)¶
-
LogVerbose(*args, condition=True, **kwargs)¶
-
LogWarning(*args, condition=True, **kwargs)¶
-
Logger¶ Return the local logger instance.
-
Path¶
-
ReadUntilBoundary(indent=0)¶
-
Send(line, end='\n')¶
-
SendBoundary()¶
-
StartProcess(parameterList)¶
-
Terminate()¶
-
_TryLog(*args, condition=True, **kwargs)¶
-
_pyIPCMI_BOUNDARY= '====== pyIPCMI BOUNDARY ======'¶
-
-
class
pyIPCMI.ToolChain.GHDL.GHDLAnalyze(platform, dryrun, binaryDirectoryPath, version, backend, logger=None)[source]¶ Inheritance
Members
-
class
ArgSourceFile¶
-
class
ArgTopLevel¶
-
Backend¶
-
BinaryDirectoryPath¶
-
Executable¶
-
GetGHDLAnalyze()¶
-
GetGHDLElaborate()¶
-
GetGHDLRun()¶
-
GetReader()¶
-
HasErrors¶ True if errors or fatals errors were found while processing the output stream.
-
HasWarnings¶ True if errors or fatals errors were found while processing the output stream.
-
Log(entry, condition=True)¶ Write an entry to the local logger.
-
LogDebug(*args, condition=True, **kwargs)¶
-
LogDryRun(*args, condition=True, **kwargs)¶
-
LogError(*args, condition=True, **kwargs)¶
-
LogFatal(*args, condition=True, **kwargs)¶
-
LogInfo(*args, condition=True, **kwargs)¶
-
LogNormal(*args, condition=True, **kwargs)¶
-
LogQuiet(*args, condition=True, **kwargs)¶
-
LogVerbose(*args, condition=True, **kwargs)¶
-
LogWarning(*args, condition=True, **kwargs)¶
-
Logger¶ Return the local logger instance.
-
Parameters= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdAnalyze'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdElaborate'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdRun'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagVerbose'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagDebug'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagExplicit'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagRelaxedRules'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagWarnBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagNoVitalChecks'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagMultiByteComments'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagSynBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagPSL'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagProfileArcs'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagTestCoverage'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchCompilerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchAssemblerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchLinkerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEFlavor'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLVersion'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLLibrary'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgListLibraryReferences'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgSourceFile'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgTopLevel'>]¶
-
Path¶
-
ReadUntilBoundary(indent=0)¶
-
RunOptions= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEAsserts'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchStopDelta'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDGZWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchFastWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchGHDLWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchWaveformOptionFile'>]¶
-
Send(line, end='\n')¶
-
SendBoundary()¶
-
StartProcess(parameterList)¶
-
Terminate()¶
-
Version¶
-
_TryLog(*args, condition=True, **kwargs)¶
-
_pyIPCMI_BOUNDARY= '====== pyIPCMI BOUNDARY ======'¶
-
deco()¶
-
class
-
class
pyIPCMI.ToolChain.GHDL.GHDLElaborate(platform, dryrun, binaryDirectoryPath, version, backend, logger=None)[source]¶ Inheritance
Members
-
class
ArgSourceFile¶
-
class
ArgTopLevel¶
-
Backend¶
-
BinaryDirectoryPath¶
-
Executable¶
-
GetGHDLAnalyze()¶
-
GetGHDLElaborate()¶
-
GetGHDLRun()¶
-
GetReader()¶
-
HasErrors¶ True if errors or fatals errors were found while processing the output stream.
-
HasWarnings¶ True if errors or fatals errors were found while processing the output stream.
-
Log(entry, condition=True)¶ Write an entry to the local logger.
-
LogDebug(*args, condition=True, **kwargs)¶
-
LogDryRun(*args, condition=True, **kwargs)¶
-
LogError(*args, condition=True, **kwargs)¶
-
LogFatal(*args, condition=True, **kwargs)¶
-
LogInfo(*args, condition=True, **kwargs)¶
-
LogNormal(*args, condition=True, **kwargs)¶
-
LogQuiet(*args, condition=True, **kwargs)¶
-
LogVerbose(*args, condition=True, **kwargs)¶
-
LogWarning(*args, condition=True, **kwargs)¶
-
Logger¶ Return the local logger instance.
-
Parameters= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdAnalyze'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdElaborate'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdRun'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagVerbose'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagDebug'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagExplicit'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagRelaxedRules'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagWarnBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagNoVitalChecks'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagMultiByteComments'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagSynBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagPSL'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagProfileArcs'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagTestCoverage'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchCompilerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchAssemblerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchLinkerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEFlavor'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLVersion'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLLibrary'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgListLibraryReferences'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgSourceFile'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgTopLevel'>]¶
-
Path¶
-
ReadUntilBoundary(indent=0)¶
-
RunOptions= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEAsserts'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchStopDelta'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDGZWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchFastWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchGHDLWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchWaveformOptionFile'>]¶
-
Send(line, end='\n')¶
-
SendBoundary()¶
-
StartProcess(parameterList)¶
-
Terminate()¶
-
Version¶
-
_TryLog(*args, condition=True, **kwargs)¶
-
_pyIPCMI_BOUNDARY= '====== pyIPCMI BOUNDARY ======'¶
-
deco()¶
-
class
-
class
pyIPCMI.ToolChain.GHDL.GHDLRun(platform, dryrun, binaryDirectoryPath, version, backend, logger=None)[source]¶ Inheritance
Members
-
class
ArgSourceFile¶
-
class
ArgTopLevel¶
-
Backend¶
-
BinaryDirectoryPath¶
-
Executable¶
-
GetGHDLAnalyze()¶
-
GetGHDLElaborate()¶
-
GetGHDLRun()¶
-
GetReader()¶
-
HasErrors¶ True if errors or fatals errors were found while processing the output stream.
-
HasWarnings¶ True if errors or fatals errors were found while processing the output stream.
-
Log(entry, condition=True)¶ Write an entry to the local logger.
-
LogDebug(*args, condition=True, **kwargs)¶
-
LogDryRun(*args, condition=True, **kwargs)¶
-
LogError(*args, condition=True, **kwargs)¶
-
LogFatal(*args, condition=True, **kwargs)¶
-
LogInfo(*args, condition=True, **kwargs)¶
-
LogNormal(*args, condition=True, **kwargs)¶
-
LogQuiet(*args, condition=True, **kwargs)¶
-
LogVerbose(*args, condition=True, **kwargs)¶
-
LogWarning(*args, condition=True, **kwargs)¶
-
Logger¶ Return the local logger instance.
-
Parameters= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdAnalyze'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdElaborate'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.CmdRun'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagVerbose'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagDebug'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagExplicit'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagRelaxedRules'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagWarnBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagNoVitalChecks'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagMultiByteComments'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagSynBinding'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagPSL'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagProfileArcs'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.FlagTestCoverage'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchCompilerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchAssemblerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchLinkerOption'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEFlavor'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLVersion'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVHDLLibrary'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgListLibraryReferences'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgSourceFile'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.ArgTopLevel'>]¶
-
Path¶
-
ReadUntilBoundary(indent=0)¶
-
RunOptions= [<class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchIEEEAsserts'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchStopDelta'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchVCDGZWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchFastWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchGHDLWaveform'>, <class 'pyIPCMI.ToolChain.GHDL.GHDL.SwitchWaveformOptionFile'>]¶
-
Send(line, end='\n')¶
-
SendBoundary()¶
-
StartProcess(parameterList)¶
-
Terminate()¶
-
Version¶
-
_TryLog(*args, condition=True, **kwargs)¶
-
_pyIPCMI_BOUNDARY= '====== pyIPCMI BOUNDARY ======'¶
-
deco()¶
-
class
Functions
-
pyIPCMI.ToolChain.GHDL.GHDLElaborateFilter(gen)¶