partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
test
isSameHVal
:return: True if two Value instances are same :note: not just equal
hwt/hdl/statements.py
def isSameHVal(a: Value, b: Value) -> bool: """ :return: True if two Value instances are same :note: not just equal """ return a is b or (isinstance(a, Value) and isinstance(b, Value) and a.val == b.val and a.vldMask == b.vldMask)
def isSameHVal(a: Value, b: Value) -> bool: """ :return: True if two Value instances are same :note: not just equal """ return a is b or (isinstance(a, Value) and isinstance(b, Value) and a.val == b.val and a.vldMask == b.vldMask)
[ ":", "return", ":", "True", "if", "two", "Value", "instances", "are", "same", ":", "note", ":", "not", "just", "equal" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L534-L542
[ "def", "isSameHVal", "(", "a", ":", "Value", ",", "b", ":", "Value", ")", "->", "bool", ":", "return", "a", "is", "b", "or", "(", "isinstance", "(", "a", ",", "Value", ")", "and", "isinstance", "(", "b", ",", "Value", ")", "and", "a", ".", "val...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
areSameHVals
:return: True if two vectors of Value instances are same :note: not just equal
hwt/hdl/statements.py
def areSameHVals(a: Union[None, List[Value]], b: Union[None, List[Value]]) -> bool: """ :return: True if two vectors of Value instances are same :note: not just equal """ if a is b: return True if a is None or b is None: return False if len(a) == len(b): ...
def areSameHVals(a: Union[None, List[Value]], b: Union[None, List[Value]]) -> bool: """ :return: True if two vectors of Value instances are same :note: not just equal """ if a is b: return True if a is None or b is None: return False if len(a) == len(b): ...
[ ":", "return", ":", "True", "if", "two", "vectors", "of", "Value", "instances", "are", "same", ":", "note", ":", "not", "just", "equal" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L545-L561
[ "def", "areSameHVals", "(", "a", ":", "Union", "[", "None", ",", "List", "[", "Value", "]", "]", ",", "b", ":", "Union", "[", "None", ",", "List", "[", "Value", "]", "]", ")", "->", "bool", ":", "if", "a", "is", "b", ":", "return", "True", "i...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
isSameStatementList
:return: True if two lists of HdlStatement instances are same
hwt/hdl/statements.py
def isSameStatementList(stmListA: List[HdlStatement], stmListB: List[HdlStatement]) -> bool: """ :return: True if two lists of HdlStatement instances are same """ if stmListA is stmListB: return True if stmListA is None or stmListB is None: return False f...
def isSameStatementList(stmListA: List[HdlStatement], stmListB: List[HdlStatement]) -> bool: """ :return: True if two lists of HdlStatement instances are same """ if stmListA is stmListB: return True if stmListA is None or stmListB is None: return False f...
[ ":", "return", ":", "True", "if", "two", "lists", "of", "HdlStatement", "instances", "are", "same" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L564-L578
[ "def", "isSameStatementList", "(", "stmListA", ":", "List", "[", "HdlStatement", "]", ",", "stmListB", ":", "List", "[", "HdlStatement", "]", ")", "->", "bool", ":", "if", "stmListA", "is", "stmListB", ":", "return", "True", "if", "stmListA", "is", "None",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
statementsAreSame
:return: True if all statements are same
hwt/hdl/statements.py
def statementsAreSame(statements: List[HdlStatement]) -> bool: """ :return: True if all statements are same """ iterator = iter(statements) try: first = next(iterator) except StopIteration: return True return all(first.isSame(rest) for rest in iterator)
def statementsAreSame(statements: List[HdlStatement]) -> bool: """ :return: True if all statements are same """ iterator = iter(statements) try: first = next(iterator) except StopIteration: return True return all(first.isSame(rest) for rest in iterator)
[ ":", "return", ":", "True", "if", "all", "statements", "are", "same" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L581-L591
[ "def", "statementsAreSame", "(", "statements", ":", "List", "[", "HdlStatement", "]", ")", "->", "bool", ":", "iterator", "=", "iter", "(", "statements", ")", "try", ":", "first", "=", "next", "(", "iterator", ")", "except", "StopIteration", ":", "return",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
_get_stm_with_branches
:return: first statement with rank > 0 or None if iterator empty
hwt/hdl/statements.py
def _get_stm_with_branches(stm_it): """ :return: first statement with rank > 0 or None if iterator empty """ last = None while last is None or last.rank == 0: try: last = next(stm_it) except StopIteration: last = None break return last
def _get_stm_with_branches(stm_it): """ :return: first statement with rank > 0 or None if iterator empty """ last = None while last is None or last.rank == 0: try: last = next(stm_it) except StopIteration: last = None break return last
[ ":", "return", ":", "first", "statement", "with", "rank", ">", "0", "or", "None", "if", "iterator", "empty" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L595-L607
[ "def", "_get_stm_with_branches", "(", "stm_it", ")", ":", "last", "=", "None", "while", "last", "is", "None", "or", "last", ".", "rank", "==", "0", ":", "try", ":", "last", "=", "next", "(", "stm_it", ")", "except", "StopIteration", ":", "last", "=", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._clean_signal_meta
Clean informations about enclosure for outputs and sensitivity of this statement
hwt/hdl/statements.py
def _clean_signal_meta(self): """ Clean informations about enclosure for outputs and sensitivity of this statement """ self._enclosed_for = None self._sensitivity = None for stm in self._iter_stms(): stm._clean_signal_meta()
def _clean_signal_meta(self): """ Clean informations about enclosure for outputs and sensitivity of this statement """ self._enclosed_for = None self._sensitivity = None for stm in self._iter_stms(): stm._clean_signal_meta()
[ "Clean", "informations", "about", "enclosure", "for", "outputs", "and", "sensitivity", "of", "this", "statement" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L52-L60
[ "def", "_clean_signal_meta", "(", "self", ")", ":", "self", ".", "_enclosed_for", "=", "None", "self", ".", "_sensitivity", "=", "None", "for", "stm", "in", "self", ".", "_iter_stms", "(", ")", ":", "stm", ".", "_clean_signal_meta", "(", ")" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._collect_io
Collect inputs/outputs from all child statements to :py:attr:`~_input` / :py:attr:`_output` attribure on this object
hwt/hdl/statements.py
def _collect_io(self) -> None: """ Collect inputs/outputs from all child statements to :py:attr:`~_input` / :py:attr:`_output` attribure on this object """ in_add = self._inputs.extend out_add = self._outputs.extend for stm in self._iter_stms(): in_ad...
def _collect_io(self) -> None: """ Collect inputs/outputs from all child statements to :py:attr:`~_input` / :py:attr:`_output` attribure on this object """ in_add = self._inputs.extend out_add = self._outputs.extend for stm in self._iter_stms(): in_ad...
[ "Collect", "inputs", "/", "outputs", "from", "all", "child", "statements", "to", ":", "py", ":", "attr", ":", "~_input", "/", ":", "py", ":", "attr", ":", "_output", "attribure", "on", "this", "object" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L63-L73
[ "def", "_collect_io", "(", "self", ")", "->", "None", ":", "in_add", "=", "self", ".", "_inputs", ".", "extend", "out_add", "=", "self", ".", "_outputs", ".", "extend", "for", "stm", "in", "self", ".", "_iter_stms", "(", ")", ":", "in_add", "(", "stm...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._discover_enclosure_for_statements
Discover enclosure for list of statements :param statements: list of statements in one code branch :param outputs: list of outputs which should be driven from this statement list :return: set of signals for which this statement list have always some driver (is enclosed)
hwt/hdl/statements.py
def _discover_enclosure_for_statements(statements: List['HdlStatement'], outputs: List['HdlStatement']): """ Discover enclosure for list of statements :param statements: list of statements in one code branch :param outputs: list of outputs whic...
def _discover_enclosure_for_statements(statements: List['HdlStatement'], outputs: List['HdlStatement']): """ Discover enclosure for list of statements :param statements: list of statements in one code branch :param outputs: list of outputs whic...
[ "Discover", "enclosure", "for", "list", "of", "statements" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L112-L141
[ "def", "_discover_enclosure_for_statements", "(", "statements", ":", "List", "[", "'HdlStatement'", "]", ",", "outputs", ":", "List", "[", "'HdlStatement'", "]", ")", ":", "result", "=", "set", "(", ")", "if", "not", "statements", ":", "return", "result", "f...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._discover_sensitivity_seq
Discover sensitivity for list of signals
hwt/hdl/statements.py
def _discover_sensitivity_seq(self, signals: List[RtlSignalBase], seen: set, ctx: SensitivityCtx)\ -> None: """ Discover sensitivity for list of signals """ casualSensitivity = set() for s in signals...
def _discover_sensitivity_seq(self, signals: List[RtlSignalBase], seen: set, ctx: SensitivityCtx)\ -> None: """ Discover sensitivity for list of signals """ casualSensitivity = set() for s in signals...
[ "Discover", "sensitivity", "for", "list", "of", "signals" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L161-L177
[ "def", "_discover_sensitivity_seq", "(", "self", ",", "signals", ":", "List", "[", "RtlSignalBase", "]", ",", "seen", ":", "set", ",", "ctx", ":", "SensitivityCtx", ")", "->", "None", ":", "casualSensitivity", "=", "set", "(", ")", "for", "s", "in", "sig...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._get_rtl_context
get RtlNetlist context from signals
hwt/hdl/statements.py
def _get_rtl_context(self): """ get RtlNetlist context from signals """ for sig in chain(self._inputs, self._outputs): if sig.ctx: return sig.ctx else: # Param instances does not have context continue raise H...
def _get_rtl_context(self): """ get RtlNetlist context from signals """ for sig in chain(self._inputs, self._outputs): if sig.ctx: return sig.ctx else: # Param instances does not have context continue raise H...
[ "get", "RtlNetlist", "context", "from", "signals" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L180-L191
[ "def", "_get_rtl_context", "(", "self", ")", ":", "for", "sig", "in", "chain", "(", "self", ".", "_inputs", ",", "self", ".", "_outputs", ")", ":", "if", "sig", ".", "ctx", ":", "return", "sig", ".", "ctx", "else", ":", "# Param instances does not have c...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._on_reduce
Update signal IO after reuce atempt :param self_reduced: if True this object was reduced :param io_changed: if True IO of this object may changed and has to be updated :param result_statements: list of statements which are result of reduce operation on this statement
hwt/hdl/statements.py
def _on_reduce(self, self_reduced: bool, io_changed: bool, result_statements: List["HdlStatement"]) -> None: """ Update signal IO after reuce atempt :param self_reduced: if True this object was reduced :param io_changed: if True IO of this object may changed ...
def _on_reduce(self, self_reduced: bool, io_changed: bool, result_statements: List["HdlStatement"]) -> None: """ Update signal IO after reuce atempt :param self_reduced: if True this object was reduced :param io_changed: if True IO of this object may changed ...
[ "Update", "signal", "IO", "after", "reuce", "atempt" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L202-L242
[ "def", "_on_reduce", "(", "self", ",", "self_reduced", ":", "bool", ",", "io_changed", ":", "bool", ",", "result_statements", ":", "List", "[", "\"HdlStatement\"", "]", ")", "->", "None", ":", "parentStm", "=", "self", ".", "parentStm", "if", "self_reduced",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._on_merge
After merging statements update IO, sensitivity and context :attention: rank is not updated
hwt/hdl/statements.py
def _on_merge(self, other): """ After merging statements update IO, sensitivity and context :attention: rank is not updated """ self._inputs.extend(other._inputs) self._outputs.extend(other._outputs) if self._sensitivity is not None: self._sensitivit...
def _on_merge(self, other): """ After merging statements update IO, sensitivity and context :attention: rank is not updated """ self._inputs.extend(other._inputs) self._outputs.extend(other._outputs) if self._sensitivity is not None: self._sensitivit...
[ "After", "merging", "statements", "update", "IO", "sensitivity", "and", "context" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L245-L273
[ "def", "_on_merge", "(", "self", ",", "other", ")", ":", "self", ".", "_inputs", ".", "extend", "(", "other", ".", "_inputs", ")", "self", ".", "_outputs", ".", "extend", "(", "other", ".", "_outputs", ")", "if", "self", ".", "_sensitivity", "is", "n...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._is_mergable_statement_list
Walk statements and compare if they can be merged into one statement list
hwt/hdl/statements.py
def _is_mergable_statement_list(cls, stmsA, stmsB): """ Walk statements and compare if they can be merged into one statement list """ if stmsA is None and stmsB is None: return True elif stmsA is None or stmsB is None: return False a_it = iter(st...
def _is_mergable_statement_list(cls, stmsA, stmsB): """ Walk statements and compare if they can be merged into one statement list """ if stmsA is None and stmsB is None: return True elif stmsA is None or stmsB is None: return False a_it = iter(st...
[ "Walk", "statements", "and", "compare", "if", "they", "can", "be", "merged", "into", "one", "statement", "list" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L298-L321
[ "def", "_is_mergable_statement_list", "(", "cls", ",", "stmsA", ",", "stmsB", ")", ":", "if", "stmsA", "is", "None", "and", "stmsB", "is", "None", ":", "return", "True", "elif", "stmsA", "is", "None", "or", "stmsB", "is", "None", ":", "return", "False", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._merge_statements
Merge statements in list to remove duplicated if-then-else trees :return: tuple (list of merged statements, rank decrease due merging) :note: rank decrease is sum of ranks of reduced statements :attention: statement list has to me mergable
hwt/hdl/statements.py
def _merge_statements(statements: List["HdlStatement"])\ -> Tuple[List["HdlStatement"], int]: """ Merge statements in list to remove duplicated if-then-else trees :return: tuple (list of merged statements, rank decrease due merging) :note: rank decrease is sum of ranks of re...
def _merge_statements(statements: List["HdlStatement"])\ -> Tuple[List["HdlStatement"], int]: """ Merge statements in list to remove duplicated if-then-else trees :return: tuple (list of merged statements, rank decrease due merging) :note: rank decrease is sum of ranks of re...
[ "Merge", "statements", "in", "list", "to", "remove", "duplicated", "if", "-", "then", "-", "else", "trees" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L325-L368
[ "def", "_merge_statements", "(", "statements", ":", "List", "[", "\"HdlStatement\"", "]", ")", "->", "Tuple", "[", "List", "[", "\"HdlStatement\"", "]", ",", "int", "]", ":", "order", "=", "{", "}", "for", "i", ",", "stm", "in", "enumerate", "(", "stat...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._merge_statement_lists
Merge two lists of statements into one :return: list of merged statements
hwt/hdl/statements.py
def _merge_statement_lists(stmsA: List["HdlStatement"], stmsB: List["HdlStatement"])\ -> List["HdlStatement"]: """ Merge two lists of statements into one :return: list of merged statements """ if stmsA is None and stmsB is None: return None tmp =...
def _merge_statement_lists(stmsA: List["HdlStatement"], stmsB: List["HdlStatement"])\ -> List["HdlStatement"]: """ Merge two lists of statements into one :return: list of merged statements """ if stmsA is None and stmsB is None: return None tmp =...
[ "Merge", "two", "lists", "of", "statements", "into", "one" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L372-L423
[ "def", "_merge_statement_lists", "(", "stmsA", ":", "List", "[", "\"HdlStatement\"", "]", ",", "stmsB", ":", "List", "[", "\"HdlStatement\"", "]", ")", "->", "List", "[", "\"HdlStatement\"", "]", ":", "if", "stmsA", "is", "None", "and", "stmsB", "is", "Non...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._try_reduce_list
Simplify statements in the list
hwt/hdl/statements.py
def _try_reduce_list(statements: List["HdlStatement"]): """ Simplify statements in the list """ io_change = False new_statements = [] for stm in statements: reduced, _io_change = stm._try_reduce() new_statements.extend(reduced) io_chan...
def _try_reduce_list(statements: List["HdlStatement"]): """ Simplify statements in the list """ io_change = False new_statements = [] for stm in statements: reduced, _io_change = stm._try_reduce() new_statements.extend(reduced) io_chan...
[ "Simplify", "statements", "in", "the", "list" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L427-L442
[ "def", "_try_reduce_list", "(", "statements", ":", "List", "[", "\"HdlStatement\"", "]", ")", ":", "io_change", "=", "False", "new_statements", "=", "[", "]", "for", "stm", "in", "statements", ":", "reduced", ",", "_io_change", "=", "stm", ".", "_try_reduce"...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._on_parent_event_dependent
After parrent statement become event dependent propagate event dependency flag to child statements
hwt/hdl/statements.py
def _on_parent_event_dependent(self): """ After parrent statement become event dependent propagate event dependency flag to child statements """ if not self._is_completly_event_dependent: self._is_completly_event_dependent = True for stm in self._iter_stms...
def _on_parent_event_dependent(self): """ After parrent statement become event dependent propagate event dependency flag to child statements """ if not self._is_completly_event_dependent: self._is_completly_event_dependent = True for stm in self._iter_stms...
[ "After", "parrent", "statement", "become", "event", "dependent", "propagate", "event", "dependency", "flag", "to", "child", "statements" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L445-L453
[ "def", "_on_parent_event_dependent", "(", "self", ")", ":", "if", "not", "self", ".", "_is_completly_event_dependent", ":", "self", ".", "_is_completly_event_dependent", "=", "True", "for", "stm", "in", "self", ".", "_iter_stms", "(", ")", ":", "stm", ".", "_o...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._set_parent_stm
Assign parent statement and propagate dependency flags if necessary
hwt/hdl/statements.py
def _set_parent_stm(self, parentStm: "HdlStatement"): """ Assign parent statement and propagate dependency flags if necessary """ was_top = self.parentStm is None self.parentStm = parentStm if not self._now_is_event_dependent\ and parentStm._now_is_event_d...
def _set_parent_stm(self, parentStm: "HdlStatement"): """ Assign parent statement and propagate dependency flags if necessary """ was_top = self.parentStm is None self.parentStm = parentStm if not self._now_is_event_dependent\ and parentStm._now_is_event_d...
[ "Assign", "parent", "statement", "and", "propagate", "dependency", "flags", "if", "necessary" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L456-L487
[ "def", "_set_parent_stm", "(", "self", ",", "parentStm", ":", "\"HdlStatement\"", ")", ":", "was_top", "=", "self", ".", "parentStm", "is", "None", "self", ".", "parentStm", "=", "parentStm", "if", "not", "self", ".", "_now_is_event_dependent", "and", "parentS...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._register_stements
Append statements to this container under conditions specified by condSet
hwt/hdl/statements.py
def _register_stements(self, statements: List["HdlStatement"], target: List["HdlStatement"]): """ Append statements to this container under conditions specified by condSet """ for stm in flatten(statements): assert stm.parentStm is None, stm...
def _register_stements(self, statements: List["HdlStatement"], target: List["HdlStatement"]): """ Append statements to this container under conditions specified by condSet """ for stm in flatten(statements): assert stm.parentStm is None, stm...
[ "Append", "statements", "to", "this", "container", "under", "conditions", "specified", "by", "condSet" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L490-L499
[ "def", "_register_stements", "(", "self", ",", "statements", ":", "List", "[", "\"HdlStatement\"", "]", ",", "target", ":", "List", "[", "\"HdlStatement\"", "]", ")", ":", "for", "stm", "in", "flatten", "(", "statements", ")", ":", "assert", "stm", ".", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlStatement._destroy
Disconnect this statement from signals and delete it from RtlNetlist context :attention: signal endpoints/drivers will be altered that means they can not be used for iteration
hwt/hdl/statements.py
def _destroy(self): """ Disconnect this statement from signals and delete it from RtlNetlist context :attention: signal endpoints/drivers will be altered that means they can not be used for iteration """ ctx = self._get_rtl_context() for i in self._inputs: ...
def _destroy(self): """ Disconnect this statement from signals and delete it from RtlNetlist context :attention: signal endpoints/drivers will be altered that means they can not be used for iteration """ ctx = self._get_rtl_context() for i in self._inputs: ...
[ "Disconnect", "this", "statement", "from", "signals", "and", "delete", "it", "from", "RtlNetlist", "context" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/statements.py#L509-L523
[ "def", "_destroy", "(", "self", ")", ":", "ctx", "=", "self", ".", "_get_rtl_context", "(", ")", "for", "i", "in", "self", ".", "_inputs", ":", "i", ".", "endpoints", ".", "discard", "(", "self", ")", "for", "o", "in", "self", ".", "_outputs", ":",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
StringVal.fromPy
:param val: python string or None :param typeObj: instance of String HdlType :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid
hwt/hdl/types/stringVal.py
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: python string or None :param typeObj: instance of String HdlType :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid """ as...
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: python string or None :param typeObj: instance of String HdlType :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid """ as...
[ ":", "param", "val", ":", "python", "string", "or", "None", ":", "param", "typeObj", ":", "instance", "of", "String", "HdlType", ":", "param", "vldMask", ":", "if", "is", "None", "validity", "is", "resolved", "from", "val", "if", "is", "0", "value", "i...
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/stringVal.py#L13-L31
[ "def", "fromPy", "(", "cls", ",", "val", ",", "typeObj", ",", "vldMask", "=", "None", ")", ":", "assert", "isinstance", "(", "val", ",", "str", ")", "or", "val", "is", "None", "vld", "=", "0", "if", "val", "is", "None", "else", "1", "if", "not", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
UnitImplHelpers._reg
Create register in this unit :param defVal: default value of this register, if this value is specified reset of this component is used (unit has to have single interface of class Rst or Rst_n) :param clk: optional clok signal specification :param rst: optional reset sign...
hwt/synthesizer/interfaceLevel/unitImplHelpers.py
def _reg(self, name, dtype=BIT, defVal=None, clk=None, rst=None): """ Create register in this unit :param defVal: default value of this register, if this value is specified reset of this component is used (unit has to have single interface of class Rst or Rst_n) ...
def _reg(self, name, dtype=BIT, defVal=None, clk=None, rst=None): """ Create register in this unit :param defVal: default value of this register, if this value is specified reset of this component is used (unit has to have single interface of class Rst or Rst_n) ...
[ "Create", "register", "in", "this", "unit" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/unitImplHelpers.py#L51-L89
[ "def", "_reg", "(", "self", ",", "name", ",", "dtype", "=", "BIT", ",", "defVal", "=", "None", ",", "clk", "=", "None", ",", "rst", "=", "None", ")", ":", "if", "clk", "is", "None", ":", "clk", "=", "getClk", "(", "self", ")", "if", "defVal", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
UnitImplHelpers._sig
Create signal in this unit
hwt/synthesizer/interfaceLevel/unitImplHelpers.py
def _sig(self, name, dtype=BIT, defVal=None): """ Create signal in this unit """ if isinstance(dtype, HStruct): if defVal is not None: raise NotImplementedError() container = dtype.fromPy(None) for f in dtype.fields: if ...
def _sig(self, name, dtype=BIT, defVal=None): """ Create signal in this unit """ if isinstance(dtype, HStruct): if defVal is not None: raise NotImplementedError() container = dtype.fromPy(None) for f in dtype.fields: if ...
[ "Create", "signal", "in", "this", "unit" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/unitImplHelpers.py#L91-L106
[ "def", "_sig", "(", "self", ",", "name", ",", "dtype", "=", "BIT", ",", "defVal", "=", "None", ")", ":", "if", "isinstance", "(", "dtype", ",", "HStruct", ")", ":", "if", "defVal", "is", "not", "None", ":", "raise", "NotImplementedError", "(", ")", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
UnitImplHelpers._cleanAsSubunit
Disconnect internal signals so unit can be reused by parent unit
hwt/synthesizer/interfaceLevel/unitImplHelpers.py
def _cleanAsSubunit(self): """Disconnect internal signals so unit can be reused by parent unit""" for pi in self._entity.ports: pi.connectInternSig() for i in chain(self._interfaces, self._private_interfaces): i._clean()
def _cleanAsSubunit(self): """Disconnect internal signals so unit can be reused by parent unit""" for pi in self._entity.ports: pi.connectInternSig() for i in chain(self._interfaces, self._private_interfaces): i._clean()
[ "Disconnect", "internal", "signals", "so", "unit", "can", "be", "reused", "by", "parent", "unit" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/unitImplHelpers.py#L109-L114
[ "def", "_cleanAsSubunit", "(", "self", ")", ":", "for", "pi", "in", "self", ".", "_entity", ".", "ports", ":", "pi", ".", "connectInternSig", "(", ")", "for", "i", "in", "chain", "(", "self", ".", "_interfaces", ",", "self", ".", "_private_interfaces", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HStruct_selectFields
Select fields from structure (rest will become spacing) :param structT: HStruct type instance :param fieldsToUse: dict {name:{...}} or set of names to select, dictionary is used to select nested fields in HStruct or HUnion fields (f.e. {"struct1": {"field1", "field2"}, "field3":{}} ...
hwt/hdl/types/structUtils.py
def HStruct_selectFields(structT, fieldsToUse): """ Select fields from structure (rest will become spacing) :param structT: HStruct type instance :param fieldsToUse: dict {name:{...}} or set of names to select, dictionary is used to select nested fields in HStruct or HUnion fields ...
def HStruct_selectFields(structT, fieldsToUse): """ Select fields from structure (rest will become spacing) :param structT: HStruct type instance :param fieldsToUse: dict {name:{...}} or set of names to select, dictionary is used to select nested fields in HStruct or HUnion fields ...
[ "Select", "fields", "from", "structure", "(", "rest", "will", "become", "spacing", ")" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/structUtils.py#L8-L52
[ "def", "HStruct_selectFields", "(", "structT", ",", "fieldsToUse", ")", ":", "template", "=", "[", "]", "fieldsToUse", "=", "fieldsToUse", "foundNames", "=", "set", "(", ")", "for", "f", "in", "structT", ".", "fields", ":", "name", "=", "None", "subfields"...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
walkFlattenFields
Walk all simple values in HStruct or HArray
hwt/hdl/types/structUtils.py
def walkFlattenFields(sigOrVal, skipPadding=True): """ Walk all simple values in HStruct or HArray """ t = sigOrVal._dtype if isinstance(t, Bits): yield sigOrVal elif isinstance(t, HUnion): yield from walkFlattenFields(sigOrVal._val, skipPadding=skipPadding) elif isinstance(t...
def walkFlattenFields(sigOrVal, skipPadding=True): """ Walk all simple values in HStruct or HArray """ t = sigOrVal._dtype if isinstance(t, Bits): yield sigOrVal elif isinstance(t, HUnion): yield from walkFlattenFields(sigOrVal._val, skipPadding=skipPadding) elif isinstance(t...
[ "Walk", "all", "simple", "values", "in", "HStruct", "or", "HArray" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/structUtils.py#L55-L79
[ "def", "walkFlattenFields", "(", "sigOrVal", ",", "skipPadding", "=", "True", ")", ":", "t", "=", "sigOrVal", ".", "_dtype", "if", "isinstance", "(", "t", ",", "Bits", ")", ":", "yield", "sigOrVal", "elif", "isinstance", "(", "t", ",", "HUnion", ")", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HStruct_unpack
opposite of packAxiSFrame
hwt/hdl/types/structUtils.py
def HStruct_unpack(structT, data, getDataFn=None, dataWidth=None): """ opposite of packAxiSFrame """ if getDataFn is None: assert dataWidth is not None def _getDataFn(x): return toHVal(x)._auto_cast(Bits(dataWidth)) getDataFn = _getDataFn val = structT.fromPy(N...
def HStruct_unpack(structT, data, getDataFn=None, dataWidth=None): """ opposite of packAxiSFrame """ if getDataFn is None: assert dataWidth is not None def _getDataFn(x): return toHVal(x)._auto_cast(Bits(dataWidth)) getDataFn = _getDataFn val = structT.fromPy(N...
[ "opposite", "of", "packAxiSFrame" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/structUtils.py#L82-L150
[ "def", "HStruct_unpack", "(", "structT", ",", "data", ",", "getDataFn", "=", "None", ",", "dataWidth", "=", "None", ")", ":", "if", "getDataFn", "is", "None", ":", "assert", "dataWidth", "is", "not", "None", "def", "_getDataFn", "(", "x", ")", ":", "re...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
BitsVal._convSign
Convert signum, no bit manipulation just data are represented differently :param signed: if True value will be signed, if False value will be unsigned, if None value will be vector without any sign specification
hwt/hdl/types/bitsVal.py
def _convSign(self, signed): """ Convert signum, no bit manipulation just data are represented differently :param signed: if True value will be signed, if False value will be unsigned, if None value will be vector without any sign specification """ ...
def _convSign(self, signed): """ Convert signum, no bit manipulation just data are represented differently :param signed: if True value will be signed, if False value will be unsigned, if None value will be vector without any sign specification """ ...
[ "Convert", "signum", "no", "bit", "manipulation", "just", "data", "are", "represented", "differently" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitsVal.py#L63-L86
[ "def", "_convSign", "(", "self", ",", "signed", ")", ":", "if", "isinstance", "(", "self", ",", "Value", ")", ":", "return", "self", ".", "_convSign__val", "(", "signed", ")", "else", ":", "if", "self", ".", "_dtype", ".", "signed", "==", "signed", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
BitsVal.fromPy
Construct value from pythonic value (int, bytes, enum.Enum member)
hwt/hdl/types/bitsVal.py
def fromPy(cls, val, typeObj, vldMask=None): """ Construct value from pythonic value (int, bytes, enum.Enum member) """ assert not isinstance(val, Value) if val is None: vld = 0 val = 0 assert vldMask is None or vldMask == 0 else: ...
def fromPy(cls, val, typeObj, vldMask=None): """ Construct value from pythonic value (int, bytes, enum.Enum member) """ assert not isinstance(val, Value) if val is None: vld = 0 val = 0 assert vldMask is None or vldMask == 0 else: ...
[ "Construct", "value", "from", "pythonic", "value", "(", "int", "bytes", "enum", ".", "Enum", "member", ")" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitsVal.py#L98-L145
[ "def", "fromPy", "(", "cls", ",", "val", ",", "typeObj", ",", "vldMask", "=", "None", ")", ":", "assert", "not", "isinstance", "(", "val", ",", "Value", ")", "if", "val", "is", "None", ":", "vld", "=", "0", "val", "=", "0", "assert", "vldMask", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
BitsVal._concat
Concatenate this with other to one wider value/signal
hwt/hdl/types/bitsVal.py
def _concat(self, other): """ Concatenate this with other to one wider value/signal """ w = self._dtype.bit_length() try: other_bit_length = other._dtype.bit_length except AttributeError: raise TypeError("Can not concat bits and", other._dtype) ...
def _concat(self, other): """ Concatenate this with other to one wider value/signal """ w = self._dtype.bit_length() try: other_bit_length = other._dtype.bit_length except AttributeError: raise TypeError("Can not concat bits and", other._dtype) ...
[ "Concatenate", "this", "with", "other", "to", "one", "wider", "value", "/", "signal" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitsVal.py#L165-L202
[ "def", "_concat", "(", "self", ",", "other", ")", ":", "w", "=", "self", ".", "_dtype", ".", "bit_length", "(", ")", "try", ":", "other_bit_length", "=", "other", ".", "_dtype", ".", "bit_length", "except", "AttributeError", ":", "raise", "TypeError", "(...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
sensitivity
register sensitivity for process
hwt/simulator/simModel.py
def sensitivity(proc: HWProcess, *sensitiveTo): """ register sensitivity for process """ for s in sensitiveTo: if isinstance(s, tuple): sen, s = s if sen == SENSITIVITY.ANY: s.simSensProcs.add(proc) elif sen == SENSITIVITY.RISING: ...
def sensitivity(proc: HWProcess, *sensitiveTo): """ register sensitivity for process """ for s in sensitiveTo: if isinstance(s, tuple): sen, s = s if sen == SENSITIVITY.ANY: s.simSensProcs.add(proc) elif sen == SENSITIVITY.RISING: ...
[ "register", "sensitivity", "for", "process" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/simulator/simModel.py#L11-L27
[ "def", "sensitivity", "(", "proc", ":", "HWProcess", ",", "*", "sensitiveTo", ")", ":", "for", "s", "in", "sensitiveTo", ":", "if", "isinstance", "(", "s", ",", "tuple", ")", ":", "sen", ",", "s", "=", "s", "if", "sen", "==", "SENSITIVITY", ".", "A...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
simEvalCond
Evaluate list of values as condition
hwt/simulator/simModel.py
def simEvalCond(simulator, *conds): """ Evaluate list of values as condition """ _cond = True _vld = True for v in conds: val = bool(v.val) fullVld = v.vldMask == 1 if fullVld: if not val: return False, True else: return Fal...
def simEvalCond(simulator, *conds): """ Evaluate list of values as condition """ _cond = True _vld = True for v in conds: val = bool(v.val) fullVld = v.vldMask == 1 if fullVld: if not val: return False, True else: return Fal...
[ "Evaluate", "list", "of", "values", "as", "condition" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/simulator/simModel.py#L31-L49
[ "def", "simEvalCond", "(", "simulator", ",", "*", "conds", ")", ":", "_cond", "=", "True", "_vld", "=", "True", "for", "v", "in", "conds", ":", "val", "=", "bool", "(", "v", ".", "val", ")", "fullVld", "=", "v", ".", "vldMask", "==", "1", "if", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
connectSimPort
Connect ports of simulation models by name
hwt/simulator/simModel.py
def connectSimPort(simUnit, subSimUnit, srcName, dstName, direction): """ Connect ports of simulation models by name """ if direction == DIRECTION.OUT: origPort = getattr(subSimUnit, srcName) newPort = getattr(simUnit, dstName) setattr(subSimUnit, srcName, newPort) else: ...
def connectSimPort(simUnit, subSimUnit, srcName, dstName, direction): """ Connect ports of simulation models by name """ if direction == DIRECTION.OUT: origPort = getattr(subSimUnit, srcName) newPort = getattr(simUnit, dstName) setattr(subSimUnit, srcName, newPort) else: ...
[ "Connect", "ports", "of", "simulation", "models", "by", "name" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/simulator/simModel.py#L60-L73
[ "def", "connectSimPort", "(", "simUnit", ",", "subSimUnit", ",", "srcName", ",", "dstName", ",", "direction", ")", ":", "if", "direction", "==", "DIRECTION", ".", "OUT", ":", "origPort", "=", "getattr", "(", "subSimUnit", ",", "srcName", ")", "newPort", "=...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
mkUpdater
Create value updater for simulation :param nextVal: instance of Value which will be asssiggned to signal :param invalidate: flag which tells if value has been compromised and if it should be invaidated :return: function(value) -> tuple(valueHasChangedFlag, nextVal)
hwt/simulator/simModel.py
def mkUpdater(nextVal: Value, invalidate: bool): """ Create value updater for simulation :param nextVal: instance of Value which will be asssiggned to signal :param invalidate: flag which tells if value has been compromised and if it should be invaidated :return: function(value) -> tuple(va...
def mkUpdater(nextVal: Value, invalidate: bool): """ Create value updater for simulation :param nextVal: instance of Value which will be asssiggned to signal :param invalidate: flag which tells if value has been compromised and if it should be invaidated :return: function(value) -> tuple(va...
[ "Create", "value", "updater", "for", "simulation" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/simulator/simModel.py#L77-L92
[ "def", "mkUpdater", "(", "nextVal", ":", "Value", ",", "invalidate", ":", "bool", ")", ":", "def", "updater", "(", "currentVal", ")", ":", "_nextVal", "=", "nextVal", ".", "clone", "(", ")", "if", "invalidate", ":", "_nextVal", ".", "vldMask", "=", "0"...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
mkArrayUpdater
Create value updater for simulation for value of array type :param nextVal: instance of Value which will be asssiggned to signal :param indexes: tuple on indexes where value should be updated in target array :return: function(value) -> tuple(valueHasChangedFlag, nextVal)
hwt/simulator/simModel.py
def mkArrayUpdater(nextItemVal: Value, indexes: Tuple[Value], invalidate: bool): """ Create value updater for simulation for value of array type :param nextVal: instance of Value which will be asssiggned to signal :param indexes: tuple on indexes where value should be updated ...
def mkArrayUpdater(nextItemVal: Value, indexes: Tuple[Value], invalidate: bool): """ Create value updater for simulation for value of array type :param nextVal: instance of Value which will be asssiggned to signal :param indexes: tuple on indexes where value should be updated ...
[ "Create", "value", "updater", "for", "simulation", "for", "value", "of", "array", "type" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/simulator/simModel.py#L96-L120
[ "def", "mkArrayUpdater", "(", "nextItemVal", ":", "Value", ",", "indexes", ":", "Tuple", "[", "Value", "]", ",", "invalidate", ":", "bool", ")", ":", "def", "updater", "(", "currentVal", ")", ":", "if", "len", "(", "indexes", ")", ">", "1", ":", "rai...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HArrayVal.fromPy
:param val: None or dictionary {index:value} or iterrable of values :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid
hwt/hdl/types/arrayVal.py
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: None or dictionary {index:value} or iterrable of values :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid """ size = evalParam(ty...
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: None or dictionary {index:value} or iterrable of values :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid """ size = evalParam(ty...
[ ":", "param", "val", ":", "None", "or", "dictionary", "{", "index", ":", "value", "}", "or", "iterrable", "of", "values", ":", "param", "vldMask", ":", "if", "is", "None", "validity", "is", "resolved", "from", "val", "if", "is", "0", "value", "is", "...
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/arrayVal.py#L18-L55
[ "def", "fromPy", "(", "cls", ",", "val", ",", "typeObj", ",", "vldMask", "=", "None", ")", ":", "size", "=", "evalParam", "(", "typeObj", ".", "size", ")", "if", "isinstance", "(", "size", ",", "Value", ")", ":", "size", "=", "int", "(", "size", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HArrayVal._getitem__val
:atention: this will clone item from array, iterate over .val if you need to modify items
hwt/hdl/types/arrayVal.py
def _getitem__val(self, key): """ :atention: this will clone item from array, iterate over .val if you need to modify items """ try: kv = key.val if not key._isFullVld(): raise KeyError() else: if kv >= self....
def _getitem__val(self, key): """ :atention: this will clone item from array, iterate over .val if you need to modify items """ try: kv = key.val if not key._isFullVld(): raise KeyError() else: if kv >= self....
[ ":", "atention", ":", "this", "will", "clone", "item", "from", "array", "iterate", "over", ".", "val", "if", "you", "need", "to", "modify", "items" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/arrayVal.py#L71-L86
[ "def", "_getitem__val", "(", "self", ",", "key", ")", ":", "try", ":", "kv", "=", "key", ".", "val", "if", "not", "key", ".", "_isFullVld", "(", ")", ":", "raise", "KeyError", "(", ")", "else", ":", "if", "kv", ">=", "self", ".", "_dtype", ".", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
vec
create hdl vector value
hwt/hdl/typeShortcuts.py
def vec(val, width, signed=None): """create hdl vector value""" return Bits(width, signed, forceVector=True).fromPy(val)
def vec(val, width, signed=None): """create hdl vector value""" return Bits(width, signed, forceVector=True).fromPy(val)
[ "create", "hdl", "vector", "value" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/typeShortcuts.py#L25-L27
[ "def", "vec", "(", "val", ",", "width", ",", "signed", "=", "None", ")", ":", "return", "Bits", "(", "width", ",", "signed", ",", "forceVector", "=", "True", ")", ".", "fromPy", "(", "val", ")" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HandshakedAgent.monitor
Collect data from interface
hwt/interfaces/agents/handshaked.py
def monitor(self, sim): """ Collect data from interface """ r = sim.read if self.notReset(sim): # update rd signal only if required if self._lastRd is not 1: self.wrRd(sim.write, 1) self._lastRd = 1 # try to...
def monitor(self, sim): """ Collect data from interface """ r = sim.read if self.notReset(sim): # update rd signal only if required if self._lastRd is not 1: self.wrRd(sim.write, 1) self._lastRd = 1 # try to...
[ "Collect", "data", "from", "interface" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/interfaces/agents/handshaked.py#L73-L114
[ "def", "monitor", "(", "self", ",", "sim", ")", ":", "r", "=", "sim", ".", "read", "if", "self", ".", "notReset", "(", "sim", ")", ":", "# update rd signal only if required", "if", "self", ".", "_lastRd", "is", "not", "1", ":", "self", ".", "wrRd", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HandshakedAgent.driver
Push data to interface set vld high and wait on rd in high then pass new data
hwt/interfaces/agents/handshaked.py
def driver(self, sim): """ Push data to interface set vld high and wait on rd in high then pass new data """ r = sim.read # pop new data if there are not any pending if self.actualData is NOP and self.data: self.actualData = self.data.popleft() ...
def driver(self, sim): """ Push data to interface set vld high and wait on rd in high then pass new data """ r = sim.read # pop new data if there are not any pending if self.actualData is NOP and self.data: self.actualData = self.data.popleft() ...
[ "Push", "data", "to", "interface" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/interfaces/agents/handshaked.py#L129-L194
[ "def", "driver", "(", "self", ",", "sim", ")", ":", "r", "=", "sim", ".", "read", "# pop new data if there are not any pending", "if", "self", ".", "actualData", "is", "NOP", "and", "self", ".", "data", ":", "self", ".", "actualData", "=", "self", ".", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
ResourceAnalyzer.HWProcess
Gues resource usage by HWProcess
hwt/serializer/resourceAnalyzer/analyzer.py
def HWProcess(cls, proc: HWProcess, ctx: ResourceContext) -> None: """ Gues resource usage by HWProcess """ seen = ctx.seen for stm in proc.statements: encl = stm._enclosed_for full_ev_dep = stm._is_completly_event_dependent now_ev_dep = stm._n...
def HWProcess(cls, proc: HWProcess, ctx: ResourceContext) -> None: """ Gues resource usage by HWProcess """ seen = ctx.seen for stm in proc.statements: encl = stm._enclosed_for full_ev_dep = stm._is_completly_event_dependent now_ev_dep = stm._n...
[ "Gues", "resource", "usage", "by", "HWProcess" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/resourceAnalyzer/analyzer.py#L113-L163
[ "def", "HWProcess", "(", "cls", ",", "proc", ":", "HWProcess", ",", "ctx", ":", "ResourceContext", ")", "->", "None", ":", "seen", "=", "ctx", ".", "seen", "for", "stm", "in", "proc", ".", "statements", ":", "encl", "=", "stm", ".", "_enclosed_for", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HArray.bit_length
:return: bit width for this type
hwt/hdl/types/array.py
def bit_length(self): """ :return: bit width for this type """ try: itemSize = self.elmType.bit_length except AttributeError: itemSize = None if itemSize is None: raise TypeError( "Can not determine size of array because...
def bit_length(self): """ :return: bit width for this type """ try: itemSize = self.elmType.bit_length except AttributeError: itemSize = None if itemSize is None: raise TypeError( "Can not determine size of array because...
[ ":", "return", ":", "bit", "width", "for", "this", "type" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/array.py#L30-L46
[ "def", "bit_length", "(", "self", ")", ":", "try", ":", "itemSize", "=", "self", ".", "elmType", ".", "bit_length", "except", "AttributeError", ":", "itemSize", "=", "None", "if", "itemSize", "is", "None", ":", "raise", "TypeError", "(", "\"Can not determine...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
evalParam
Get value of parameter
hwt/synthesizer/param.py
def evalParam(p): """ Get value of parameter """ while isinstance(p, Param): p = p.get() if isinstance(p, RtlSignalBase): return p.staticEval() # use rather param inheritance instead of param as param value return toHVal(p)
def evalParam(p): """ Get value of parameter """ while isinstance(p, Param): p = p.get() if isinstance(p, RtlSignalBase): return p.staticEval() # use rather param inheritance instead of param as param value return toHVal(p)
[ "Get", "value", "of", "parameter" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/param.py#L105-L115
[ "def", "evalParam", "(", "p", ")", ":", "while", "isinstance", "(", "p", ",", "Param", ")", ":", "p", "=", "p", ".", "get", "(", ")", "if", "isinstance", "(", "p", ",", "RtlSignalBase", ")", ":", "return", "p", ".", "staticEval", "(", ")", "# use...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
Param.set
set value of this param
hwt/synthesizer/param.py
def set(self, val): """ set value of this param """ assert not self.__isReadOnly, \ ("This parameter(%s) was locked" " and now it can not be changed" % self.name) assert self.replacedWith is None, \ ("This param was replaced with new one and t...
def set(self, val): """ set value of this param """ assert not self.__isReadOnly, \ ("This parameter(%s) was locked" " and now it can not be changed" % self.name) assert self.replacedWith is None, \ ("This param was replaced with new one and t...
[ "set", "value", "of", "this", "param" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/param.py#L50-L64
[ "def", "set", "(", "self", ",", "val", ")", ":", "assert", "not", "self", ".", "__isReadOnly", ",", "(", "\"This parameter(%s) was locked\"", "\" and now it can not be changed\"", "%", "self", ".", "name", ")", "assert", "self", ".", "replacedWith", "is", "None"...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HTypeFromIntfMap
Generate flattened register map for HStruct :param interfaceMap: sequence of tuple (type, name) or (will create standard struct field member) interface or (will create a struct field from interface) instance of hdl type (is used as padding) tuple (list of interface, name) :param...
hwt/interfaces/structIntf.py
def HTypeFromIntfMap(interfaceMap): """ Generate flattened register map for HStruct :param interfaceMap: sequence of tuple (type, name) or (will create standard struct field member) interface or (will create a struct field from interface) instance of hdl type (is used as padding) ...
def HTypeFromIntfMap(interfaceMap): """ Generate flattened register map for HStruct :param interfaceMap: sequence of tuple (type, name) or (will create standard struct field member) interface or (will create a struct field from interface) instance of hdl type (is used as padding) ...
[ "Generate", "flattened", "register", "map", "for", "HStruct" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/interfaces/structIntf.py#L143-L163
[ "def", "HTypeFromIntfMap", "(", "interfaceMap", ")", ":", "structFields", "=", "[", "]", "for", "m", "in", "interfaceMap", ":", "f", "=", "HTypeFromIntfMapItem", "(", "m", ")", "structFields", ".", "append", "(", "f", ")", "return", "HStruct", "(", "*", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
ResourceContext.registerMUX
mux record is in format (self.MUX, n, m) where n is number of bits of this mux and m is number of possible inputs
hwt/serializer/resourceAnalyzer/utils.py
def registerMUX(self, stm: Union[HdlStatement, Operator], sig: RtlSignal, inputs_cnt: int): """ mux record is in format (self.MUX, n, m) where n is number of bits of this mux and m is number of possible inputs """ assert inputs_cnt > 1 res = se...
def registerMUX(self, stm: Union[HdlStatement, Operator], sig: RtlSignal, inputs_cnt: int): """ mux record is in format (self.MUX, n, m) where n is number of bits of this mux and m is number of possible inputs """ assert inputs_cnt > 1 res = se...
[ "mux", "record", "is", "in", "format", "(", "self", ".", "MUX", "n", "m", ")", "where", "n", "is", "number", "of", "bits", "of", "this", "mux", "and", "m", "is", "number", "of", "possible", "inputs" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/resourceAnalyzer/utils.py#L39-L52
[ "def", "registerMUX", "(", "self", ",", "stm", ":", "Union", "[", "HdlStatement", ",", "Operator", "]", ",", "sig", ":", "RtlSignal", ",", "inputs_cnt", ":", "int", ")", ":", "assert", "inputs_cnt", ">", "1", "res", "=", "self", ".", "resources", "w", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
ResourceContext.finalize
Resolve ports of discovered memories
hwt/serializer/resourceAnalyzer/utils.py
def finalize(self): """ Resolve ports of discovered memories """ ff_to_remove = 0 res = self.resources for m, addrDict in self.memories.items(): rwSyncPorts, rSyncPorts, wSyncPorts = 0, 0, 0 rwAsyncPorts, rAsyncPorts, wAsyncPorts = 0, 0, 0 ...
def finalize(self): """ Resolve ports of discovered memories """ ff_to_remove = 0 res = self.resources for m, addrDict in self.memories.items(): rwSyncPorts, rSyncPorts, wSyncPorts = 0, 0, 0 rwAsyncPorts, rAsyncPorts, wAsyncPorts = 0, 0, 0 ...
[ "Resolve", "ports", "of", "discovered", "memories" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/resourceAnalyzer/utils.py#L98-L157
[ "def", "finalize", "(", "self", ")", ":", "ff_to_remove", "=", "0", "res", "=", "self", ".", "resources", "for", "m", ",", "addrDict", "in", "self", ".", "memories", ".", "items", "(", ")", ":", "rwSyncPorts", ",", "rSyncPorts", ",", "wSyncPorts", "=",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
RtlSignalOps.naryOp
Try lookup operator with this parameters in _usedOps if not found create new one and soter it in _usedOps :param operator: instance of OpDefinition :param opCreateDelegate: function (*ops) to create operator :param otherOps: other operands (ops = self + otherOps) :return: RtlSi...
hwt/synthesizer/rtlLevel/signalUtils/ops.py
def naryOp(self, operator, opCreateDelegate, *otherOps) -> RtlSignalBase: """ Try lookup operator with this parameters in _usedOps if not found create new one and soter it in _usedOps :param operator: instance of OpDefinition :param opCreateDelegate: function (*ops) to create op...
def naryOp(self, operator, opCreateDelegate, *otherOps) -> RtlSignalBase: """ Try lookup operator with this parameters in _usedOps if not found create new one and soter it in _usedOps :param operator: instance of OpDefinition :param opCreateDelegate: function (*ops) to create op...
[ "Try", "lookup", "operator", "with", "this", "parameters", "in", "_usedOps", "if", "not", "found", "create", "new", "one", "and", "soter", "it", "in", "_usedOps" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/rtlLevel/signalUtils/ops.py#L35-L86
[ "def", "naryOp", "(", "self", ",", "operator", ",", "opCreateDelegate", ",", "*", "otherOps", ")", "->", "RtlSignalBase", ":", "k", "=", "(", "operator", ",", "*", "otherOps", ")", "used", "=", "self", ".", "_usedOps", "try", ":", "return", "used", "["...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
RtlSignalOps._eq
__eq__ is not overloaded because it will destroy hashability of object
hwt/synthesizer/rtlLevel/signalUtils/ops.py
def _eq(self, other): """ __eq__ is not overloaded because it will destroy hashability of object """ return self.naryOp(AllOps.EQ, tv(self)._eq, other)
def _eq(self, other): """ __eq__ is not overloaded because it will destroy hashability of object """ return self.naryOp(AllOps.EQ, tv(self)._eq, other)
[ "__eq__", "is", "not", "overloaded", "because", "it", "will", "destroy", "hashability", "of", "object" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/rtlLevel/signalUtils/ops.py#L124-L128
[ "def", "_eq", "(", "self", ",", "other", ")", ":", "return", "self", ".", "naryOp", "(", "AllOps", ".", "EQ", ",", "tv", "(", "self", ")", ".", "_eq", ",", "other", ")" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
RtlSignalOps._getIndexCascade
Find out if this signal is something indexed
hwt/synthesizer/rtlLevel/signalUtils/ops.py
def _getIndexCascade(self): """ Find out if this signal is something indexed """ try: # now I am result of the index xxx[xx] <= source # get index op d = self.singleDriver() try: op = d.operator except Attribute...
def _getIndexCascade(self): """ Find out if this signal is something indexed """ try: # now I am result of the index xxx[xx] <= source # get index op d = self.singleDriver() try: op = d.operator except Attribute...
[ "Find", "out", "if", "this", "signal", "is", "something", "indexed" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/rtlLevel/signalUtils/ops.py#L174-L198
[ "def", "_getIndexCascade", "(", "self", ")", ":", "try", ":", "# now I am result of the index xxx[xx] <= source", "# get index op", "d", "=", "self", ".", "singleDriver", "(", ")", "try", ":", "op", "=", "d", ".", "operator", "except", "AttributeError", ":", "r...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlType.fromPy
Construct value of this type. Delegated on value class for this type
hwt/hdl/types/hdlType.py
def fromPy(self, v, vldMask=None): """ Construct value of this type. Delegated on value class for this type """ return self.getValueCls().fromPy(v, self, vldMask=vldMask)
def fromPy(self, v, vldMask=None): """ Construct value of this type. Delegated on value class for this type """ return self.getValueCls().fromPy(v, self, vldMask=vldMask)
[ "Construct", "value", "of", "this", "type", ".", "Delegated", "on", "value", "class", "for", "this", "type" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/hdlType.py#L28-L33
[ "def", "fromPy", "(", "self", ",", "v", ",", "vldMask", "=", "None", ")", ":", "return", "self", ".", "getValueCls", "(", ")", ".", "fromPy", "(", "v", ",", "self", ",", "vldMask", "=", "vldMask", ")" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlType.auto_cast
Cast value or signal of this type to another compatible type. :param sigOrVal: instance of signal or value to cast :param toType: instance of HdlType to cast into
hwt/hdl/types/hdlType.py
def auto_cast(self, sigOrVal, toType): """ Cast value or signal of this type to another compatible type. :param sigOrVal: instance of signal or value to cast :param toType: instance of HdlType to cast into """ if sigOrVal._dtype == toType: return sigOrVal ...
def auto_cast(self, sigOrVal, toType): """ Cast value or signal of this type to another compatible type. :param sigOrVal: instance of signal or value to cast :param toType: instance of HdlType to cast into """ if sigOrVal._dtype == toType: return sigOrVal ...
[ "Cast", "value", "or", "signal", "of", "this", "type", "to", "another", "compatible", "type", "." ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/hdlType.py#L35-L51
[ "def", "auto_cast", "(", "self", ",", "sigOrVal", ",", "toType", ")", ":", "if", "sigOrVal", ".", "_dtype", "==", "toType", ":", "return", "sigOrVal", "try", ":", "c", "=", "self", ".", "_auto_cast_fn", "except", "AttributeError", ":", "c", "=", "self", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HdlType.reinterpret_cast
Cast value or signal of this type to another type of same size. :param sigOrVal: instance of signal or value to cast :param toType: instance of HdlType to cast into
hwt/hdl/types/hdlType.py
def reinterpret_cast(self, sigOrVal, toType): """ Cast value or signal of this type to another type of same size. :param sigOrVal: instance of signal or value to cast :param toType: instance of HdlType to cast into """ try: return self.auto_cast(sigOrVal, toT...
def reinterpret_cast(self, sigOrVal, toType): """ Cast value or signal of this type to another type of same size. :param sigOrVal: instance of signal or value to cast :param toType: instance of HdlType to cast into """ try: return self.auto_cast(sigOrVal, toT...
[ "Cast", "value", "or", "signal", "of", "this", "type", "to", "another", "type", "of", "same", "size", "." ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/hdlType.py#L53-L71
[ "def", "reinterpret_cast", "(", "self", ",", "sigOrVal", ",", "toType", ")", ":", "try", ":", "return", "self", ".", "auto_cast", "(", "sigOrVal", ",", "toType", ")", "except", "TypeConversionErr", ":", "pass", "try", ":", "r", "=", "self", ".", "_reinte...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
walkParams
walk parameter instances on this interface
hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py
def walkParams(intf, discovered): """ walk parameter instances on this interface """ for si in intf._interfaces: yield from walkParams(si, discovered) for p in intf._params: if p not in discovered: discovered.add(p) yield p
def walkParams(intf, discovered): """ walk parameter instances on this interface """ for si in intf._interfaces: yield from walkParams(si, discovered) for p in intf._params: if p not in discovered: discovered.add(p) yield p
[ "walk", "parameter", "instances", "on", "this", "interface" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py#L22-L32
[ "def", "walkParams", "(", "intf", ",", "discovered", ")", ":", "for", "si", "in", "intf", ".", "_interfaces", ":", "yield", "from", "walkParams", "(", "si", ",", "discovered", ")", "for", "p", "in", "intf", ".", "_params", ":", "if", "p", "not", "in"...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
connectPacked
Connect 1D vector signal to this structuralized interface :param packedSrc: vector which should be connected :param dstInterface: structuralized interface where should packedSrc be connected to :param exclude: sub interfaces of self which should be excluded
hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py
def connectPacked(srcPacked, dstInterface, exclude=None): """ Connect 1D vector signal to this structuralized interface :param packedSrc: vector which should be connected :param dstInterface: structuralized interface where should packedSrc be connected to :param exclude: sub interfaces of s...
def connectPacked(srcPacked, dstInterface, exclude=None): """ Connect 1D vector signal to this structuralized interface :param packedSrc: vector which should be connected :param dstInterface: structuralized interface where should packedSrc be connected to :param exclude: sub interfaces of s...
[ "Connect", "1D", "vector", "signal", "to", "this", "structuralized", "interface" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py#L35-L60
[ "def", "connectPacked", "(", "srcPacked", ",", "dstInterface", ",", "exclude", "=", "None", ")", ":", "offset", "=", "0", "connections", "=", "[", "]", "for", "i", "in", "reversed", "(", "list", "(", "walkPhysInterfaces", "(", "dstInterface", ")", ")", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
walkFlatten
:param shouldEnterIntfFn: function (actual interface) returns tuple (shouldEnter, shouldYield)
hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py
def walkFlatten(interface, shouldEnterIntfFn): """ :param shouldEnterIntfFn: function (actual interface) returns tuple (shouldEnter, shouldYield) """ _shouldEnter, _shouldYield = shouldEnterIntfFn(interface) if _shouldYield: yield interface if shouldEnterIntfFn: for intf...
def walkFlatten(interface, shouldEnterIntfFn): """ :param shouldEnterIntfFn: function (actual interface) returns tuple (shouldEnter, shouldYield) """ _shouldEnter, _shouldYield = shouldEnterIntfFn(interface) if _shouldYield: yield interface if shouldEnterIntfFn: for intf...
[ ":", "param", "shouldEnterIntfFn", ":", "function", "(", "actual", "interface", ")", "returns", "tuple", "(", "shouldEnter", "shouldYield", ")" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py#L63-L74
[ "def", "walkFlatten", "(", "interface", ",", "shouldEnterIntfFn", ")", ":", "_shouldEnter", ",", "_shouldYield", "=", "shouldEnterIntfFn", "(", "interface", ")", "if", "_shouldYield", ":", "yield", "interface", "if", "shouldEnterIntfFn", ":", "for", "intf", "in", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
packIntf
Concatenate all signals to one big signal, recursively :param masterDirEqTo: only signals with this direction are packed :param exclude: sequence of signals/interfaces to exclude
hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py
def packIntf(intf, masterDirEqTo=DIRECTION.OUT, exclude=None): """ Concatenate all signals to one big signal, recursively :param masterDirEqTo: only signals with this direction are packed :param exclude: sequence of signals/interfaces to exclude """ if not intf._interfaces: if intf._mas...
def packIntf(intf, masterDirEqTo=DIRECTION.OUT, exclude=None): """ Concatenate all signals to one big signal, recursively :param masterDirEqTo: only signals with this direction are packed :param exclude: sequence of signals/interfaces to exclude """ if not intf._interfaces: if intf._mas...
[ "Concatenate", "all", "signals", "to", "one", "big", "signal", "recursively" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/interfaceLevel/interfaceUtils/utils.py#L77-L112
[ "def", "packIntf", "(", "intf", ",", "masterDirEqTo", "=", "DIRECTION", ".", "OUT", ",", "exclude", "=", "None", ")", ":", "if", "not", "intf", ".", "_interfaces", ":", "if", "intf", ".", "_masterDir", "==", "masterDirEqTo", ":", "return", "intf", ".", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
VerilogSerializer.hardcodeRomIntoProcess
Due to verilog restrictions it is not posible to use array constants and rom memories has to be hardcoded as process
hwt/serializer/verilog/serializer.py
def hardcodeRomIntoProcess(cls, rom): """ Due to verilog restrictions it is not posible to use array constants and rom memories has to be hardcoded as process """ processes = [] signals = [] for e in rom.endpoints: assert isinstance(e, Operator) and e....
def hardcodeRomIntoProcess(cls, rom): """ Due to verilog restrictions it is not posible to use array constants and rom memories has to be hardcoded as process """ processes = [] signals = [] for e in rom.endpoints: assert isinstance(e, Operator) and e....
[ "Due", "to", "verilog", "restrictions", "it", "is", "not", "posible", "to", "use", "array", "constants", "and", "rom", "memories", "has", "to", "be", "hardcoded", "as", "process" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/verilog/serializer.py#L55-L95
[ "def", "hardcodeRomIntoProcess", "(", "cls", ",", "rom", ")", ":", "processes", "=", "[", "]", "signals", "=", "[", "]", "for", "e", "in", "rom", ".", "endpoints", ":", "assert", "isinstance", "(", "e", ",", "Operator", ")", "and", "e", ".", "operato...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
VerilogSerializer.Architecture_var
:return: list of extra discovered processes
hwt/serializer/verilog/serializer.py
def Architecture_var(cls, v, serializerVars, extraTypes, extraTypes_serialized, ctx, childCtx): """ :return: list of extra discovered processes """ t = v._dtype # if type requires extra definition if isinstance(t, HArray) and v.defVal.vldMask: ...
def Architecture_var(cls, v, serializerVars, extraTypes, extraTypes_serialized, ctx, childCtx): """ :return: list of extra discovered processes """ t = v._dtype # if type requires extra definition if isinstance(t, HArray) and v.defVal.vldMask: ...
[ ":", "return", ":", "list", "of", "extra", "discovered", "processes" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/verilog/serializer.py#L98-L121
[ "def", "Architecture_var", "(", "cls", ",", "v", ",", "serializerVars", ",", "extraTypes", ",", "extraTypes_serialized", ",", "ctx", ",", "childCtx", ")", ":", "t", "=", "v", ".", "_dtype", "# if type requires extra definition", "if", "isinstance", "(", "t", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
Unit._toRtl
synthesize all subunits, make connections between them, build entity and component for this unit
hwt/synthesizer/unit.py
def _toRtl(self, targetPlatform: DummyPlatform): """ synthesize all subunits, make connections between them, build entity and component for this unit """ assert not self._wasSynthetised() self._targetPlatform = targetPlatform if not hasattr(self, "_name"): ...
def _toRtl(self, targetPlatform: DummyPlatform): """ synthesize all subunits, make connections between them, build entity and component for this unit """ assert not self._wasSynthetised() self._targetPlatform = targetPlatform if not hasattr(self, "_name"): ...
[ "synthesize", "all", "subunits", "make", "connections", "between", "them", "build", "entity", "and", "component", "for", "this", "unit" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/unit.py#L46-L95
[ "def", "_toRtl", "(", "self", ",", "targetPlatform", ":", "DummyPlatform", ")", ":", "assert", "not", "self", ".", "_wasSynthetised", "(", ")", "self", ".", "_targetPlatform", "=", "targetPlatform", "if", "not", "hasattr", "(", "self", ",", "\"_name\"", ")",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
Unit._loadDeclarations
Load all declarations from _decl() method, recursively for all interfaces/units.
hwt/synthesizer/unit.py
def _loadDeclarations(self): """ Load all declarations from _decl() method, recursively for all interfaces/units. """ if not hasattr(self, "_interfaces"): self._interfaces = [] if not hasattr(self, "_private_interfaces"): self._private_interfaces =...
def _loadDeclarations(self): """ Load all declarations from _decl() method, recursively for all interfaces/units. """ if not hasattr(self, "_interfaces"): self._interfaces = [] if not hasattr(self, "_private_interfaces"): self._private_interfaces =...
[ "Load", "all", "declarations", "from", "_decl", "()", "method", "recursively", "for", "all", "interfaces", "/", "units", "." ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/unit.py#L130-L151
[ "def", "_loadDeclarations", "(", "self", ")", ":", "if", "not", "hasattr", "(", "self", ",", "\"_interfaces\"", ")", ":", "self", ".", "_interfaces", "=", "[", "]", "if", "not", "hasattr", "(", "self", ",", "\"_private_interfaces\"", ")", ":", "self", "....
8cbb399e326da3b22c233b98188a9d08dec057e6
test
Unit._registerIntfInImpl
Register interface in implementation phase
hwt/synthesizer/unit.py
def _registerIntfInImpl(self, iName, intf): """ Register interface in implementation phase """ self._registerInterface(iName, intf, isPrivate=True) self._loadInterface(intf, False) intf._signalsForInterface(self._ctx)
def _registerIntfInImpl(self, iName, intf): """ Register interface in implementation phase """ self._registerInterface(iName, intf, isPrivate=True) self._loadInterface(intf, False) intf._signalsForInterface(self._ctx)
[ "Register", "interface", "in", "implementation", "phase" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/unit.py#L154-L160
[ "def", "_registerIntfInImpl", "(", "self", ",", "iName", ",", "intf", ")", ":", "self", ".", "_registerInterface", "(", "iName", ",", "intf", ",", "isPrivate", "=", "True", ")", "self", ".", "_loadInterface", "(", "intf", ",", "False", ")", "intf", ".", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
reverseByteOrder
Reverse byteorder (littleendian/bigendian) of signal or value
hwt/synthesizer/byteOrder.py
def reverseByteOrder(signalOrVal): """ Reverse byteorder (littleendian/bigendian) of signal or value """ w = signalOrVal._dtype.bit_length() i = w items = [] while i > 0: # take last 8 bytes or rest lower = max(i - 8, 0) items.append(signalOrVal[i:lower]) i -...
def reverseByteOrder(signalOrVal): """ Reverse byteorder (littleendian/bigendian) of signal or value """ w = signalOrVal._dtype.bit_length() i = w items = [] while i > 0: # take last 8 bytes or rest lower = max(i - 8, 0) items.append(signalOrVal[i:lower]) i -...
[ "Reverse", "byteorder", "(", "littleendian", "/", "bigendian", ")", "of", "signal", "or", "value" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/byteOrder.py#L5-L19
[ "def", "reverseByteOrder", "(", "signalOrVal", ")", ":", "w", "=", "signalOrVal", ".", "_dtype", ".", "bit_length", "(", ")", "i", "=", "w", "items", "=", "[", "]", "while", "i", ">", "0", ":", "# take last 8 bytes or rest", "lower", "=", "max", "(", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
tryReduceAnd
Return sig and val reduced by & operator or None if it is not possible to statically reduce expression
hwt/hdl/types/bitVal_opReduce.py
def tryReduceAnd(sig, val): """ Return sig and val reduced by & operator or None if it is not possible to statically reduce expression """ m = sig._dtype.all_mask() if val._isFullVld(): v = val.val if v == m: return sig elif v == 0: return val
def tryReduceAnd(sig, val): """ Return sig and val reduced by & operator or None if it is not possible to statically reduce expression """ m = sig._dtype.all_mask() if val._isFullVld(): v = val.val if v == m: return sig elif v == 0: return val
[ "Return", "sig", "and", "val", "reduced", "by", "&", "operator", "or", "None", "if", "it", "is", "not", "possible", "to", "statically", "reduce", "expression" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitVal_opReduce.py#L4-L15
[ "def", "tryReduceAnd", "(", "sig", ",", "val", ")", ":", "m", "=", "sig", ".", "_dtype", ".", "all_mask", "(", ")", "if", "val", ".", "_isFullVld", "(", ")", ":", "v", "=", "val", ".", "val", "if", "v", "==", "m", ":", "return", "sig", "elif", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
tryReduceXor
Return sig and val reduced by ^ operator or None if it is not possible to statically reduce expression
hwt/hdl/types/bitVal_opReduce.py
def tryReduceXor(sig, val): """ Return sig and val reduced by ^ operator or None if it is not possible to statically reduce expression """ m = sig._dtype.all_mask() if not val.vldMask: return val if val._isFullVld(): v = val.val if v == m: return ~sig ...
def tryReduceXor(sig, val): """ Return sig and val reduced by ^ operator or None if it is not possible to statically reduce expression """ m = sig._dtype.all_mask() if not val.vldMask: return val if val._isFullVld(): v = val.val if v == m: return ~sig ...
[ "Return", "sig", "and", "val", "reduced", "by", "^", "operator", "or", "None", "if", "it", "is", "not", "possible", "to", "statically", "reduce", "expression" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitVal_opReduce.py#L37-L51
[ "def", "tryReduceXor", "(", "sig", ",", "val", ")", ":", "m", "=", "sig", ".", "_dtype", ".", "all_mask", "(", ")", "if", "not", "val", ".", "vldMask", ":", "return", "val", "if", "val", ".", "_isFullVld", "(", ")", ":", "v", "=", "val", ".", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
GenericSerializer.getBaseNameScope
Get root of name space
hwt/serializer/generic/serializer.py
def getBaseNameScope(cls): """ Get root of name space """ s = NameScope(False) s.setLevel(1) s[0].update(cls._keywords_dict) return s
def getBaseNameScope(cls): """ Get root of name space """ s = NameScope(False) s.setLevel(1) s[0].update(cls._keywords_dict) return s
[ "Get", "root", "of", "name", "space" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/serializer.py#L52-L59
[ "def", "getBaseNameScope", "(", "cls", ")", ":", "s", "=", "NameScope", "(", "False", ")", "s", ".", "setLevel", "(", "1", ")", "s", "[", "0", "]", ".", "update", "(", "cls", ".", "_keywords_dict", ")", "return", "s" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
GenericSerializer.asHdl
Convert object to HDL string :param obj: object to serialize :param ctx: SerializerCtx instance
hwt/serializer/generic/serializer.py
def asHdl(cls, obj, ctx: SerializerCtx): """ Convert object to HDL string :param obj: object to serialize :param ctx: SerializerCtx instance """ if isinstance(obj, RtlSignalBase): return cls.SignalItem(obj, ctx) elif isinstance(obj, Value): ...
def asHdl(cls, obj, ctx: SerializerCtx): """ Convert object to HDL string :param obj: object to serialize :param ctx: SerializerCtx instance """ if isinstance(obj, RtlSignalBase): return cls.SignalItem(obj, ctx) elif isinstance(obj, Value): ...
[ "Convert", "object", "to", "HDL", "string" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/serializer.py#L66-L82
[ "def", "asHdl", "(", "cls", ",", "obj", ",", "ctx", ":", "SerializerCtx", ")", ":", "if", "isinstance", "(", "obj", ",", "RtlSignalBase", ")", ":", "return", "cls", ".", "SignalItem", "(", "obj", ",", "ctx", ")", "elif", "isinstance", "(", "obj", ","...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
GenericSerializer.Entity
Entity is just forward declaration of Architecture, it is not used in most HDL languages as there is no recursion in hierarchy
hwt/serializer/generic/serializer.py
def Entity(cls, ent: Entity, ctx: SerializerCtx): """ Entity is just forward declaration of Architecture, it is not used in most HDL languages as there is no recursion in hierarchy """ ent.name = ctx.scope.checkedName(ent.name, ent, isGlobal=True) return ""
def Entity(cls, ent: Entity, ctx: SerializerCtx): """ Entity is just forward declaration of Architecture, it is not used in most HDL languages as there is no recursion in hierarchy """ ent.name = ctx.scope.checkedName(ent.name, ent, isGlobal=True) return ""
[ "Entity", "is", "just", "forward", "declaration", "of", "Architecture", "it", "is", "not", "used", "in", "most", "HDL", "languages", "as", "there", "is", "no", "recursion", "in", "hierarchy" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/serializer.py#L110-L117
[ "def", "Entity", "(", "cls", ",", "ent", ":", "Entity", ",", "ctx", ":", "SerializerCtx", ")", ":", "ent", ".", "name", "=", "ctx", ".", "scope", ".", "checkedName", "(", "ent", ".", "name", ",", "ent", ",", "isGlobal", "=", "True", ")", "return", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
GenericSerializer.serializationDecision
Decide if this unit should be serialized or not eventually fix name to fit same already serialized unit :param obj: object to serialize :param serializedClasses: dict {unitCls : unitobj} :param serializedConfiguredUnits: (unitCls, paramsValues) : unitObj where paramsValues a...
hwt/serializer/generic/serializer.py
def serializationDecision(cls, obj, serializedClasses, serializedConfiguredUnits): """ Decide if this unit should be serialized or not eventually fix name to fit same already serialized unit :param obj: object to serialize :param serializedClasses: ...
def serializationDecision(cls, obj, serializedClasses, serializedConfiguredUnits): """ Decide if this unit should be serialized or not eventually fix name to fit same already serialized unit :param obj: object to serialize :param serializedClasses: ...
[ "Decide", "if", "this", "unit", "should", "be", "serialized", "or", "not", "eventually", "fix", "name", "to", "fit", "same", "already", "serialized", "unit" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/serializer.py#L120-L148
[ "def", "serializationDecision", "(", "cls", ",", "obj", ",", "serializedClasses", ",", "serializedConfiguredUnits", ")", ":", "isDeclaration", "=", "isinstance", "(", "obj", ",", "Entity", ")", "isDefinition", "=", "isinstance", "(", "obj", ",", "Architecture", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
GenericSerializer.HdlType
Serialize HdlType instance
hwt/serializer/generic/serializer.py
def HdlType(cls, typ: HdlType, ctx: SerializerCtx, declaration=False): """ Serialize HdlType instance """ if isinstance(typ, Bits): sFn = cls.HdlType_bits elif isinstance(typ, HEnum): sFn = cls.HdlType_enum elif isinstance(typ, HArray): ...
def HdlType(cls, typ: HdlType, ctx: SerializerCtx, declaration=False): """ Serialize HdlType instance """ if isinstance(typ, Bits): sFn = cls.HdlType_bits elif isinstance(typ, HEnum): sFn = cls.HdlType_enum elif isinstance(typ, HArray): ...
[ "Serialize", "HdlType", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/serializer.py#L151-L170
[ "def", "HdlType", "(", "cls", ",", "typ", ":", "HdlType", ",", "ctx", ":", "SerializerCtx", ",", "declaration", "=", "False", ")", ":", "if", "isinstance", "(", "typ", ",", "Bits", ")", ":", "sFn", "=", "cls", ".", "HdlType_bits", "elif", "isinstance",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
GenericSerializer.IfContainer
Srialize IfContainer instance
hwt/serializer/generic/serializer.py
def IfContainer(cls, ifc: IfContainer, ctx: SerializerCtx): """ Srialize IfContainer instance """ childCtx = ctx.withIndent() def asHdl(statements): return [cls.asHdl(s, childCtx) for s in statements] try: cond = cls.condAsHdl(ifc.cond, True, ctx...
def IfContainer(cls, ifc: IfContainer, ctx: SerializerCtx): """ Srialize IfContainer instance """ childCtx = ctx.withIndent() def asHdl(statements): return [cls.asHdl(s, childCtx) for s in statements] try: cond = cls.condAsHdl(ifc.cond, True, ctx...
[ "Srialize", "IfContainer", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/serializer.py#L177-L219
[ "def", "IfContainer", "(", "cls", ",", "ifc", ":", "IfContainer", ",", "ctx", ":", "SerializerCtx", ")", ":", "childCtx", "=", "ctx", ".", "withIndent", "(", ")", "def", "asHdl", "(", "statements", ")", ":", "return", "[", "cls", ".", "asHdl", "(", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
pullDownAfter
:return: simulation driver which keeps signal value high for initDelay then it sets value to 0
hwt/interfaces/agents/rst.py
def pullDownAfter(sig, initDelay=6 * Time.ns): """ :return: simulation driver which keeps signal value high for initDelay then it sets value to 0 """ def _pullDownAfter(s): s.write(True, sig) yield s.wait(initDelay) s.write(False, sig) return _pullDownAfter
def pullDownAfter(sig, initDelay=6 * Time.ns): """ :return: simulation driver which keeps signal value high for initDelay then it sets value to 0 """ def _pullDownAfter(s): s.write(True, sig) yield s.wait(initDelay) s.write(False, sig) return _pullDownAfter
[ ":", "return", ":", "simulation", "driver", "which", "keeps", "signal", "value", "high", "for", "initDelay", "then", "it", "sets", "value", "to", "0" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/interfaces/agents/rst.py#L5-L15
[ "def", "pullDownAfter", "(", "sig", ",", "initDelay", "=", "6", "*", "Time", ".", "ns", ")", ":", "def", "_pullDownAfter", "(", "s", ")", ":", "s", ".", "write", "(", "True", ",", "sig", ")", "yield", "s", ".", "wait", "(", "initDelay", ")", "s",...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
getBaseCond
if is negated return original cond and negated flag
hwt/synthesizer/termUsageResolver.py
def getBaseCond(c): """ if is negated return original cond and negated flag """ isNegated = False try: drivers = c.drivers except AttributeError: return (c, isNegated) if len(drivers) == 1: d = list(c.drivers)[0] if isinstance(d, Operator) and d.operator == A...
def getBaseCond(c): """ if is negated return original cond and negated flag """ isNegated = False try: drivers = c.drivers except AttributeError: return (c, isNegated) if len(drivers) == 1: d = list(c.drivers)[0] if isinstance(d, Operator) and d.operator == A...
[ "if", "is", "negated", "return", "original", "cond", "and", "negated", "flag" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/termUsageResolver.py#L7-L23
[ "def", "getBaseCond", "(", "c", ")", ":", "isNegated", "=", "False", "try", ":", "drivers", "=", "c", ".", "drivers", "except", "AttributeError", ":", "return", "(", "c", ",", "isNegated", ")", "if", "len", "(", "drivers", ")", "==", "1", ":", "d", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
simBitsT
Construct SimBitsT with cache
hwt/simulator/types/simBits.py
def simBitsT(width: int, signed: Union[bool, None]): """ Construct SimBitsT with cache """ k = (width, signed) try: return __simBitsTCache[k] except KeyError: t = SimBitsT(width, signed) __simBitsTCache[k] = t return t
def simBitsT(width: int, signed: Union[bool, None]): """ Construct SimBitsT with cache """ k = (width, signed) try: return __simBitsTCache[k] except KeyError: t = SimBitsT(width, signed) __simBitsTCache[k] = t return t
[ "Construct", "SimBitsT", "with", "cache" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/simulator/types/simBits.py#L12-L22
[ "def", "simBitsT", "(", "width", ":", "int", ",", "signed", ":", "Union", "[", "bool", ",", "None", "]", ")", ":", "k", "=", "(", "width", ",", "signed", ")", "try", ":", "return", "__simBitsTCache", "[", "k", "]", "except", "KeyError", ":", "t", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
StructValBase.fromPy
:param val: None or dict {field name: field value} :param typeObj: instance of String HdlType :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid
hwt/hdl/types/structValBase.py
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: None or dict {field name: field value} :param typeObj: instance of String HdlType :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid ...
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: None or dict {field name: field value} :param typeObj: instance of String HdlType :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid ...
[ ":", "param", "val", ":", "None", "or", "dict", "{", "field", "name", ":", "field", "value", "}", ":", "param", "typeObj", ":", "instance", "of", "String", "HdlType", ":", "param", "vldMask", ":", "if", "is", "None", "validity", "is", "resolved", "from...
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/structValBase.py#L49-L59
[ "def", "fromPy", "(", "cls", ",", "val", ",", "typeObj", ",", "vldMask", "=", "None", ")", ":", "if", "vldMask", "==", "0", ":", "val", "=", "None", "return", "cls", "(", "val", ",", "typeObj", ")" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
VectSignal
Create basic :class:`.Signal` interface where type is vector
hwt/interfaces/std.py
def VectSignal(width, signed=None, masterDir=D.OUT, loadConfig=True): """ Create basic :class:`.Signal` interface where type is vector """ return Signal(masterDir, Bits(width, signed, forceVector=True), loadConfig)
def VectSignal(width, signed=None, masterDir=D.OUT, loadConfig=True): """ Create basic :class:`.Signal` interface where type is vector """ return Signal(masterDir, Bits(width, signed, forceVector=True), loadConfig)
[ "Create", "basic", ":", "class", ":", ".", "Signal", "interface", "where", "type", "is", "vector" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/interfaces/std.py#L42-L51
[ "def", "VectSignal", "(", "width", ",", "signed", "=", "None", ",", "masterDir", "=", "D", ".", "OUT", ",", "loadConfig", "=", "True", ")", ":", "return", "Signal", "(", "masterDir", ",", "Bits", "(", "width", ",", "signed", ",", "forceVector", "=", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
ConstCache.getConstName
Get constant name for value name of constant is reused if same value was used before
hwt/serializer/generic/constCache.py
def getConstName(self, val): """ Get constant name for value name of constant is reused if same value was used before """ try: return self._cache[val] except KeyError: if isinstance(val.val, int): name = "const_%d_" % val.val ...
def getConstName(self, val): """ Get constant name for value name of constant is reused if same value was used before """ try: return self._cache[val] except KeyError: if isinstance(val.val, int): name = "const_%d_" % val.val ...
[ "Get", "constant", "name", "for", "value", "name", "of", "constant", "is", "reused", "if", "same", "value", "was", "used", "before" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/constCache.py#L14-L29
[ "def", "getConstName", "(", "self", ",", "val", ")", ":", "try", ":", "return", "self", ".", "_cache", "[", "val", "]", "except", "KeyError", ":", "if", "isinstance", "(", "val", ".", "val", ",", "int", ")", ":", "name", "=", "\"const_%d_\"", "%", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
Assignment._cut_off_drivers_of
Cut off statements which are driver of specified signal
hwt/hdl/assignment.py
def _cut_off_drivers_of(self, sig: RtlSignalBase): """ Cut off statements which are driver of specified signal """ if self.dst is sig: self.parentStm = None return self else: return None
def _cut_off_drivers_of(self, sig: RtlSignalBase): """ Cut off statements which are driver of specified signal """ if self.dst is sig: self.parentStm = None return self else: return None
[ "Cut", "off", "statements", "which", "are", "driver", "of", "specified", "signal" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/assignment.py#L69-L77
[ "def", "_cut_off_drivers_of", "(", "self", ",", "sig", ":", "RtlSignalBase", ")", ":", "if", "self", ".", "dst", "is", "sig", ":", "self", ".", "parentStm", "=", "None", "return", "self", "else", ":", "return", "None" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl._loadFromArray
Parse HArray type to this transaction template instance :return: address of it's end
hwt/hdl/transTmpl.py
def _loadFromArray(self, dtype: HdlType, bitAddr: int) -> int: """ Parse HArray type to this transaction template instance :return: address of it's end """ self.itemCnt = evalParam(dtype.size).val self.children = TransTmpl( dtype.elmType, 0, parent=self, orig...
def _loadFromArray(self, dtype: HdlType, bitAddr: int) -> int: """ Parse HArray type to this transaction template instance :return: address of it's end """ self.itemCnt = evalParam(dtype.size).val self.children = TransTmpl( dtype.elmType, 0, parent=self, orig...
[ "Parse", "HArray", "type", "to", "this", "transaction", "template", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L119-L128
[ "def", "_loadFromArray", "(", "self", ",", "dtype", ":", "HdlType", ",", "bitAddr", ":", "int", ")", "->", "int", ":", "self", ".", "itemCnt", "=", "evalParam", "(", "dtype", ".", "size", ")", ".", "val", "self", ".", "children", "=", "TransTmpl", "(...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl._loadFromHStruct
Parse HStruct type to this transaction template instance :return: address of it's end
hwt/hdl/transTmpl.py
def _loadFromHStruct(self, dtype: HdlType, bitAddr: int): """ Parse HStruct type to this transaction template instance :return: address of it's end """ for f in dtype.fields: t = f.dtype origin = f isPadding = f.name is None if is...
def _loadFromHStruct(self, dtype: HdlType, bitAddr: int): """ Parse HStruct type to this transaction template instance :return: address of it's end """ for f in dtype.fields: t = f.dtype origin = f isPadding = f.name is None if is...
[ "Parse", "HStruct", "type", "to", "this", "transaction", "template", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L140-L159
[ "def", "_loadFromHStruct", "(", "self", ",", "dtype", ":", "HdlType", ",", "bitAddr", ":", "int", ")", ":", "for", "f", "in", "dtype", ".", "fields", ":", "t", "=", "f", ".", "dtype", "origin", "=", "f", "isPadding", "=", "f", ".", "name", "is", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl._loadFromUnion
Parse HUnion type to this transaction template instance :return: address of it's end
hwt/hdl/transTmpl.py
def _loadFromUnion(self, dtype: HdlType, bitAddr: int) -> int: """ Parse HUnion type to this transaction template instance :return: address of it's end """ for field in dtype.fields.values(): ch = TransTmpl(field.dtype, 0, parent=self, origin=field) self....
def _loadFromUnion(self, dtype: HdlType, bitAddr: int) -> int: """ Parse HUnion type to this transaction template instance :return: address of it's end """ for field in dtype.fields.values(): ch = TransTmpl(field.dtype, 0, parent=self, origin=field) self....
[ "Parse", "HUnion", "type", "to", "this", "transaction", "template", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L162-L171
[ "def", "_loadFromUnion", "(", "self", ",", "dtype", ":", "HdlType", ",", "bitAddr", ":", "int", ")", "->", "int", ":", "for", "field", "in", "dtype", ".", "fields", ".", "values", "(", ")", ":", "ch", "=", "TransTmpl", "(", "field", ".", "dtype", "...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl._loadFromHStream
Parse HUnion type to this transaction template instance :return: address of it's end
hwt/hdl/transTmpl.py
def _loadFromHStream(self, dtype: HStream, bitAddr: int) -> int: """ Parse HUnion type to this transaction template instance :return: address of it's end """ ch = TransTmpl(dtype.elmType, 0, parent=self, origin=self.origin) self.children.append(ch) return bitAddr...
def _loadFromHStream(self, dtype: HStream, bitAddr: int) -> int: """ Parse HUnion type to this transaction template instance :return: address of it's end """ ch = TransTmpl(dtype.elmType, 0, parent=self, origin=self.origin) self.children.append(ch) return bitAddr...
[ "Parse", "HUnion", "type", "to", "this", "transaction", "template", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L174-L182
[ "def", "_loadFromHStream", "(", "self", ",", "dtype", ":", "HStream", ",", "bitAddr", ":", "int", ")", "->", "int", ":", "ch", "=", "TransTmpl", "(", "dtype", ".", "elmType", ",", "0", ",", "parent", "=", "self", ",", "origin", "=", "self", ".", "o...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl._loadFromHType
Parse any HDL type to this transaction template instance
hwt/hdl/transTmpl.py
def _loadFromHType(self, dtype: HdlType, bitAddr: int) -> None: """ Parse any HDL type to this transaction template instance """ self.bitAddr = bitAddr childrenAreChoice = False if isinstance(dtype, Bits): ld = self._loadFromBits elif isinstance(dtype,...
def _loadFromHType(self, dtype: HdlType, bitAddr: int) -> None: """ Parse any HDL type to this transaction template instance """ self.bitAddr = bitAddr childrenAreChoice = False if isinstance(dtype, Bits): ld = self._loadFromBits elif isinstance(dtype,...
[ "Parse", "any", "HDL", "type", "to", "this", "transaction", "template", "instance" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L184-L205
[ "def", "_loadFromHType", "(", "self", ",", "dtype", ":", "HdlType", ",", "bitAddr", ":", "int", ")", "->", "None", ":", "self", ".", "bitAddr", "=", "bitAddr", "childrenAreChoice", "=", "False", "if", "isinstance", "(", "dtype", ",", "Bits", ")", ":", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl.getItemWidth
Only for transactions derived from HArray :return: width of item in original array
hwt/hdl/transTmpl.py
def getItemWidth(self) -> int: """ Only for transactions derived from HArray :return: width of item in original array """ if not isinstance(self.dtype, HArray): raise TypeError() return (self.bitAddrEnd - self.bitAddr) // self.itemCnt
def getItemWidth(self) -> int: """ Only for transactions derived from HArray :return: width of item in original array """ if not isinstance(self.dtype, HArray): raise TypeError() return (self.bitAddrEnd - self.bitAddr) // self.itemCnt
[ "Only", "for", "transactions", "derived", "from", "HArray" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L207-L215
[ "def", "getItemWidth", "(", "self", ")", "->", "int", ":", "if", "not", "isinstance", "(", "self", ".", "dtype", ",", "HArray", ")", ":", "raise", "TypeError", "(", ")", "return", "(", "self", ".", "bitAddrEnd", "-", "self", ".", "bitAddr", ")", "//"...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
TransTmpl.walkFlatten
Walk fields in instance of TransTmpl :param offset: optional offset for all children in this TransTmpl :param shouldEnterFn: function (transTmpl) which returns True when field should be split on it's children :param shouldEnterFn: function(transTmpl) which should return ...
hwt/hdl/transTmpl.py
def walkFlatten(self, offset: int=0, shouldEnterFn=_default_shouldEnterFn, otherObjItCtx: ObjIteratorCtx =_DummyIteratorCtx() ) -> Generator[ Union[Tuple[Tuple[int, int], 'TransTmpl'], 'OneOfTransaction'], None, None]: """ ...
def walkFlatten(self, offset: int=0, shouldEnterFn=_default_shouldEnterFn, otherObjItCtx: ObjIteratorCtx =_DummyIteratorCtx() ) -> Generator[ Union[Tuple[Tuple[int, int], 'TransTmpl'], 'OneOfTransaction'], None, None]: """ ...
[ "Walk", "fields", "in", "instance", "of", "TransTmpl" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L223-L278
[ "def", "walkFlatten", "(", "self", ",", "offset", ":", "int", "=", "0", ",", "shouldEnterFn", "=", "_default_shouldEnterFn", ",", "otherObjItCtx", ":", "ObjIteratorCtx", "=", "_DummyIteratorCtx", "(", ")", ")", "->", "Generator", "[", "Union", "[", "Tuple", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
OneOfTransaction.walkFlattenChilds
:return: generator of generators of tuples ((startBitAddress, endBitAddress), TransTmpl instance) for each possiblility in this transaction
hwt/hdl/transTmpl.py
def walkFlattenChilds(self) -> Generator[ Union[Tuple[Tuple[int, int], TransTmpl], 'OneOfTransaction'], None, None]: """ :return: generator of generators of tuples ((startBitAddress, endBitAddress), TransTmpl instance) for each possiblility in this transac...
def walkFlattenChilds(self) -> Generator[ Union[Tuple[Tuple[int, int], TransTmpl], 'OneOfTransaction'], None, None]: """ :return: generator of generators of tuples ((startBitAddress, endBitAddress), TransTmpl instance) for each possiblility in this transac...
[ ":", "return", ":", "generator", "of", "generators", "of", "tuples", "((", "startBitAddress", "endBitAddress", ")", "TransTmpl", "instance", ")", "for", "each", "possiblility", "in", "this", "transaction" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/transTmpl.py#L338-L348
[ "def", "walkFlattenChilds", "(", "self", ")", "->", "Generator", "[", "Union", "[", "Tuple", "[", "Tuple", "[", "int", ",", "int", "]", ",", "TransTmpl", "]", ",", "'OneOfTransaction'", "]", ",", "None", ",", "None", "]", ":", "for", "p", "in", "self...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
signFix
Convert negative int to positive int which has same bits set
hwt/hdl/types/bitValFunctions.py
def signFix(val, width): """ Convert negative int to positive int which has same bits set """ if val > 0: msb = 1 << (width - 1) if val & msb: val -= mask(width) + 1 return val
def signFix(val, width): """ Convert negative int to positive int which has same bits set """ if val > 0: msb = 1 << (width - 1) if val & msb: val -= mask(width) + 1 return val
[ "Convert", "negative", "int", "to", "positive", "int", "which", "has", "same", "bits", "set" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitValFunctions.py#L17-L25
[ "def", "signFix", "(", "val", ",", "width", ")", ":", "if", "val", ">", "0", ":", "msb", "=", "1", "<<", "(", "width", "-", "1", ")", "if", "val", "&", "msb", ":", "val", "-=", "mask", "(", "width", ")", "+", "1", "return", "val" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
bitsCmp
:attention: If other is Bool signal convert this to bool (not ideal, due VHDL event operator)
hwt/hdl/types/bitValFunctions.py
def bitsCmp(self, other, op, evalFn=None): """ :attention: If other is Bool signal convert this to bool (not ideal, due VHDL event operator) """ other = toHVal(other) t = self._dtype ot = other._dtype iamVal = isinstance(self, Value) otherIsVal = isinstance(other, Value) if...
def bitsCmp(self, other, op, evalFn=None): """ :attention: If other is Bool signal convert this to bool (not ideal, due VHDL event operator) """ other = toHVal(other) t = self._dtype ot = other._dtype iamVal = isinstance(self, Value) otherIsVal = isinstance(other, Value) if...
[ ":", "attention", ":", "If", "other", "is", "Bool", "signal", "convert", "this", "to", "bool", "(", "not", "ideal", "due", "VHDL", "event", "operator", ")" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitValFunctions.py#L91-L144
[ "def", "bitsCmp", "(", "self", ",", "other", ",", "op", ",", "evalFn", "=", "None", ")", ":", "other", "=", "toHVal", "(", "other", ")", "t", "=", "self", ".", "_dtype", "ot", "=", "other", ".", "_dtype", "iamVal", "=", "isinstance", "(", "self", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
bitsBitOp
:attention: If other is Bool signal, convert this to bool (not ideal, due VHDL event operator)
hwt/hdl/types/bitValFunctions.py
def bitsBitOp(self, other, op, getVldFn, reduceCheckFn): """ :attention: If other is Bool signal, convert this to bool (not ideal, due VHDL event operator) """ other = toHVal(other) iamVal = isinstance(self, Value) otherIsVal = isinstance(other, Value) if iamVal and otherIsVal: ...
def bitsBitOp(self, other, op, getVldFn, reduceCheckFn): """ :attention: If other is Bool signal, convert this to bool (not ideal, due VHDL event operator) """ other = toHVal(other) iamVal = isinstance(self, Value) otherIsVal = isinstance(other, Value) if iamVal and otherIsVal: ...
[ ":", "attention", ":", "If", "other", "is", "Bool", "signal", "convert", "this", "to", "bool", "(", "not", "ideal", "due", "VHDL", "event", "operator", ")" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/bitValFunctions.py#L162-L195
[ "def", "bitsBitOp", "(", "self", ",", "other", ",", "op", ",", "getVldFn", ",", "reduceCheckFn", ")", ":", "other", "=", "toHVal", "(", "other", ")", "iamVal", "=", "isinstance", "(", "self", ",", "Value", ")", "otherIsVal", "=", "isinstance", "(", "ot...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
HEnumVal.fromPy
:param val: value of python type bool or None :param typeObj: instance of HEnum :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid
hwt/hdl/types/enumVal.py
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: value of python type bool or None :param typeObj: instance of HEnum :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid """ ...
def fromPy(cls, val, typeObj, vldMask=None): """ :param val: value of python type bool or None :param typeObj: instance of HEnum :param vldMask: if is None validity is resolved from val if is 0 value is invalidated if is 1 value has to be valid """ ...
[ ":", "param", "val", ":", "value", "of", "python", "type", "bool", "or", "None", ":", "param", "typeObj", ":", "instance", "of", "HEnum", ":", "param", "vldMask", ":", "if", "is", "None", "validity", "is", "resolved", "from", "val", "if", "is", "0", ...
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/types/enumVal.py#L13-L33
[ "def", "fromPy", "(", "cls", ",", "val", ",", "typeObj", ",", "vldMask", "=", "None", ")", ":", "if", "val", "is", "None", ":", "assert", "vldMask", "is", "None", "or", "vldMask", "==", "0", "valid", "=", "False", "val", "=", "typeObj", ".", "_allV...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._discover_sensitivity
Doc on parent class :meth:`HdlStatement._discover_sensitivity`
hwt/hdl/switchContainer.py
def _discover_sensitivity(self, seen) -> None: """ Doc on parent class :meth:`HdlStatement._discover_sensitivity` """ assert self._sensitivity is None, self ctx = self._sensitivity = SensitivityCtx() casual_sensitivity = set() self.switchOn._walk_sensitivity(casu...
def _discover_sensitivity(self, seen) -> None: """ Doc on parent class :meth:`HdlStatement._discover_sensitivity` """ assert self._sensitivity is None, self ctx = self._sensitivity = SensitivityCtx() casual_sensitivity = set() self.switchOn._walk_sensitivity(casu...
[ "Doc", "on", "parent", "class", ":", "meth", ":", "HdlStatement", ".", "_discover_sensitivity" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L90-L106
[ "def", "_discover_sensitivity", "(", "self", ",", "seen", ")", "->", "None", ":", "assert", "self", ".", "_sensitivity", "is", "None", ",", "self", "ctx", "=", "self", ".", "_sensitivity", "=", "SensitivityCtx", "(", ")", "casual_sensitivity", "=", "set", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._fill_enclosure
:attention: enclosure has to be discoverd first use _discover_enclosure() method
hwt/hdl/switchContainer.py
def _fill_enclosure(self, enclosure: Dict[RtlSignalBase, HdlStatement]) -> None: """ :attention: enclosure has to be discoverd first use _discover_enclosure() method """ select = [] outputs = self._outputs for e in enclosure.keys(): if e in outputs: ...
def _fill_enclosure(self, enclosure: Dict[RtlSignalBase, HdlStatement]) -> None: """ :attention: enclosure has to be discoverd first use _discover_enclosure() method """ select = [] outputs = self._outputs for e in enclosure.keys(): if e in outputs: ...
[ ":", "attention", ":", "enclosure", "has", "to", "be", "discoverd", "first", "use", "_discover_enclosure", "()", "method" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L109-L131
[ "def", "_fill_enclosure", "(", "self", ",", "enclosure", ":", "Dict", "[", "RtlSignalBase", ",", "HdlStatement", "]", ")", "->", "None", ":", "select", "=", "[", "]", "outputs", "=", "self", ".", "_outputs", "for", "e", "in", "enclosure", ".", "keys", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._iter_stms
Doc on parent class :meth:`HdlStatement._iter_stms`
hwt/hdl/switchContainer.py
def _iter_stms(self): """ Doc on parent class :meth:`HdlStatement._iter_stms` """ for _, stms in self.cases: yield from stms if self.default is not None: yield from self.default
def _iter_stms(self): """ Doc on parent class :meth:`HdlStatement._iter_stms` """ for _, stms in self.cases: yield from stms if self.default is not None: yield from self.default
[ "Doc", "on", "parent", "class", ":", "meth", ":", "HdlStatement", ".", "_iter_stms" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L133-L141
[ "def", "_iter_stms", "(", "self", ")", ":", "for", "_", ",", "stms", "in", "self", ".", "cases", ":", "yield", "from", "stms", "if", "self", ".", "default", "is", "not", "None", ":", "yield", "from", "self", ".", "default" ]
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._is_mergable
:return: True if other can be merged into this statement else False
hwt/hdl/switchContainer.py
def _is_mergable(self, other) -> bool: """ :return: True if other can be merged into this statement else False """ if not isinstance(other, SwitchContainer): return False if not (self.switchOn is other.switchOn and len(self.cases) == len(other.cases) ...
def _is_mergable(self, other) -> bool: """ :return: True if other can be merged into this statement else False """ if not isinstance(other, SwitchContainer): return False if not (self.switchOn is other.switchOn and len(self.cases) == len(other.cases) ...
[ ":", "return", ":", "True", "if", "other", "can", "be", "merged", "into", "this", "statement", "else", "False" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L144-L160
[ "def", "_is_mergable", "(", "self", ",", "other", ")", "->", "bool", ":", "if", "not", "isinstance", "(", "other", ",", "SwitchContainer", ")", ":", "return", "False", "if", "not", "(", "self", ".", "switchOn", "is", "other", ".", "switchOn", "and", "l...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._merge_with_other_stm
Merge other statement to this statement
hwt/hdl/switchContainer.py
def _merge_with_other_stm(self, other: "IfContainer") -> None: """ Merge other statement to this statement """ merge = self._merge_statement_lists newCases = [] for (c, caseA), (_, caseB) in zip(self.cases, other.cases): newCases.append((c, merge(caseA, caseB)...
def _merge_with_other_stm(self, other: "IfContainer") -> None: """ Merge other statement to this statement """ merge = self._merge_statement_lists newCases = [] for (c, caseA), (_, caseB) in zip(self.cases, other.cases): newCases.append((c, merge(caseA, caseB)...
[ "Merge", "other", "statement", "to", "this", "statement" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L163-L177
[ "def", "_merge_with_other_stm", "(", "self", ",", "other", ":", "\"IfContainer\"", ")", "->", "None", ":", "merge", "=", "self", ".", "_merge_statement_lists", "newCases", "=", "[", "]", "for", "(", "c", ",", "caseA", ")", ",", "(", "_", ",", "caseB", ...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._try_reduce
Doc on parent class :meth:`HdlStatement._try_reduce`
hwt/hdl/switchContainer.py
def _try_reduce(self) -> Tuple[List["HdlStatement"], bool]: """ Doc on parent class :meth:`HdlStatement._try_reduce` """ io_change = False new_cases = [] for val, statements in self.cases: _statements, rank_decrease, _io_change = self._try_reduce_list( ...
def _try_reduce(self) -> Tuple[List["HdlStatement"], bool]: """ Doc on parent class :meth:`HdlStatement._try_reduce` """ io_change = False new_cases = [] for val, statements in self.cases: _statements, rank_decrease, _io_change = self._try_reduce_list( ...
[ "Doc", "on", "parent", "class", ":", "meth", ":", "HdlStatement", ".", "_try_reduce" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L180-L225
[ "def", "_try_reduce", "(", "self", ")", "->", "Tuple", "[", "List", "[", "\"HdlStatement\"", "]", ",", "bool", "]", ":", "io_change", "=", "False", "new_cases", "=", "[", "]", "for", "val", ",", "statements", "in", "self", ".", "cases", ":", "_statemen...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer._condHasEffect
:return: True if statements in branches has different effect
hwt/hdl/switchContainer.py
def _condHasEffect(self) -> bool: """ :return: True if statements in branches has different effect """ if not self.cases: return False # [TODO] type_domain_covered = bool(self.default) or len( self.cases) == self.switchOn._dtype.domain_size() ...
def _condHasEffect(self) -> bool: """ :return: True if statements in branches has different effect """ if not self.cases: return False # [TODO] type_domain_covered = bool(self.default) or len( self.cases) == self.switchOn._dtype.domain_size() ...
[ ":", "return", ":", "True", "if", "statements", "in", "branches", "has", "different", "effect" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L228-L251
[ "def", "_condHasEffect", "(", "self", ")", "->", "bool", ":", "if", "not", "self", ".", "cases", ":", "return", "False", "# [TODO]", "type_domain_covered", "=", "bool", "(", "self", ".", "default", ")", "or", "len", "(", "self", ".", "cases", ")", "=="...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
SwitchContainer.isSame
Doc on parent class :meth:`HdlStatement.isSame`
hwt/hdl/switchContainer.py
def isSame(self, other: HdlStatement) -> bool: """ Doc on parent class :meth:`HdlStatement.isSame` """ if self is other: return True if self.rank != other.rank: return False if isinstance(other, SwitchContainer) \ and isSameHVal(s...
def isSame(self, other: HdlStatement) -> bool: """ Doc on parent class :meth:`HdlStatement.isSame` """ if self is other: return True if self.rank != other.rank: return False if isinstance(other, SwitchContainer) \ and isSameHVal(s...
[ "Doc", "on", "parent", "class", ":", "meth", ":", "HdlStatement", ".", "isSame" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/hdl/switchContainer.py#L253-L272
[ "def", "isSame", "(", "self", ",", "other", ":", "HdlStatement", ")", "->", "bool", ":", "if", "self", "is", "other", ":", "return", "True", "if", "self", ".", "rank", "!=", "other", ".", "rank", ":", "return", "False", "if", "isinstance", "(", "othe...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
discoverEventDependency
:return: generator of tuples (event operator, signal)
hwt/synthesizer/rtlLevel/signalUtils/walkers.py
def discoverEventDependency(sig): """ :return: generator of tuples (event operator, signal) """ try: drivers = sig.drivers except AttributeError: return if len(drivers) == 1: d = drivers[0] if isinstance(d, Operator): if isEventDependentOp(d.operator...
def discoverEventDependency(sig): """ :return: generator of tuples (event operator, signal) """ try: drivers = sig.drivers except AttributeError: return if len(drivers) == 1: d = drivers[0] if isinstance(d, Operator): if isEventDependentOp(d.operator...
[ ":", "return", ":", "generator", "of", "tuples", "(", "event", "operator", "signal", ")" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/synthesizer/rtlLevel/signalUtils/walkers.py#L7-L24
[ "def", "discoverEventDependency", "(", "sig", ")", ":", "try", ":", "drivers", "=", "sig", ".", "drivers", "except", "AttributeError", ":", "return", "if", "len", "(", "drivers", ")", "==", "1", ":", "d", "=", "drivers", "[", "0", "]", "if", "isinstanc...
8cbb399e326da3b22c233b98188a9d08dec057e6
test
getIndent
Cached indent getter function
hwt/serializer/generic/indent.py
def getIndent(indentNum): """ Cached indent getter function """ try: return _indentCache[indentNum] except KeyError: i = "".join([_indent for _ in range(indentNum)]) _indentCache[indentNum] = i return i
def getIndent(indentNum): """ Cached indent getter function """ try: return _indentCache[indentNum] except KeyError: i = "".join([_indent for _ in range(indentNum)]) _indentCache[indentNum] = i return i
[ "Cached", "indent", "getter", "function" ]
Nic30/hwt
python
https://github.com/Nic30/hwt/blob/8cbb399e326da3b22c233b98188a9d08dec057e6/hwt/serializer/generic/indent.py#L5-L14
[ "def", "getIndent", "(", "indentNum", ")", ":", "try", ":", "return", "_indentCache", "[", "indentNum", "]", "except", "KeyError", ":", "i", "=", "\"\"", ".", "join", "(", "[", "_indent", "for", "_", "in", "range", "(", "indentNum", ")", "]", ")", "_...
8cbb399e326da3b22c233b98188a9d08dec057e6