mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-27 02:45:52 +00:00
verilog: fix multiple AST_PREFIX scope resolution issues
- Root AST_PREFIX nodes are now subject to genblk expansion to allow them to refer to a locally-visible generate block - Part selects on AST_PREFIX member leafs can now refer to generate block items (previously would not resolve and raise an error) - Add source location information to AST_PREFIX nodes
This commit is contained in:
parent
3931b3a03f
commit
6b7267b849
4 changed files with 110 additions and 4 deletions
|
@ -4045,7 +4045,7 @@ AstNode *AstNode::readmem(bool is_readmemh, std::string mem_filename, AstNode *m
|
|||
// prefix is carried forward, but resolution of their children is deferred
|
||||
void AstNode::expand_genblock(const std::string &prefix)
|
||||
{
|
||||
if (type == AST_IDENTIFIER || type == AST_FCALL || type == AST_TCALL || type == AST_WIRETYPE) {
|
||||
if (type == AST_IDENTIFIER || type == AST_FCALL || type == AST_TCALL || type == AST_WIRETYPE || type == AST_PREFIX) {
|
||||
log_assert(!str.empty());
|
||||
|
||||
// search starting in the innermost scope and then stepping outward
|
||||
|
@ -4131,10 +4131,15 @@ void AstNode::expand_genblock(const std::string &prefix)
|
|||
|
||||
for (size_t i = 0; i < children.size(); i++) {
|
||||
AstNode *child = children[i];
|
||||
// AST_PREFIX member names should not be prefixed; a nested AST_PREFIX
|
||||
// still needs to recursed-into
|
||||
if (type == AST_PREFIX && i == 1 && child->type == AST_IDENTIFIER)
|
||||
// AST_PREFIX member names should not be prefixed; we recurse into them
|
||||
// as normal to ensure indices and ranges are properly resolved, and
|
||||
// then restore the previous string
|
||||
if (type == AST_PREFIX && i == 1) {
|
||||
std::string backup_scope_name = child->str;
|
||||
child->expand_genblock(prefix);
|
||||
child->str = backup_scope_name;
|
||||
continue;
|
||||
}
|
||||
// functions/tasks may reference wires, constants, etc. in this scope
|
||||
if (child->type == AST_FUNCTION || child->type == AST_TASK)
|
||||
continue;
|
||||
|
|
|
@ -2973,6 +2973,7 @@ rvalue:
|
|||
hierarchical_id '[' expr ']' '.' rvalue {
|
||||
$$ = new AstNode(AST_PREFIX, $3, $6);
|
||||
$$->str = *$1;
|
||||
SET_AST_NODE_LOC($$, @1, @6);
|
||||
delete $1;
|
||||
} |
|
||||
hierarchical_id range {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue