mirror of
https://github.com/verilator/verilator.git
synced 2025-01-10 08:37:35 +00:00
Internals: Name cleanup. No functional change.
This commit is contained in:
parent
f30d71b0c5
commit
1e9e334929
@ -879,7 +879,7 @@ class GaterVisitor : public GaterBaseVisitor {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTUCTORS
|
// CONSTUCTORS
|
||||||
explicit GaterVisitor(AstNode* nodep) {
|
explicit GaterVisitor(AstNetlist* nodep) {
|
||||||
// AstAlways visitor does the real work, so most zeroing needs to be in clear()
|
// AstAlways visitor does the real work, so most zeroing needs to be in clear()
|
||||||
clear();
|
clear();
|
||||||
nodep->accept(*this);
|
nodep->accept(*this);
|
||||||
|
@ -203,7 +203,7 @@ public:
|
|||||||
public:
|
public:
|
||||||
// CONSTUCTORS
|
// CONSTUCTORS
|
||||||
explicit InstDeModVarVisitor() {}
|
explicit InstDeModVarVisitor() {}
|
||||||
void accept(AstNodeModule* nodep) {
|
void main(AstNodeModule* nodep) {
|
||||||
UINFO(8," dmMODULE "<<nodep<<endl);
|
UINFO(8," dmMODULE "<<nodep<<endl);
|
||||||
m_modVarNameMap.clear();
|
m_modVarNameMap.clear();
|
||||||
nodep->accept(*this);
|
nodep->accept(*this);
|
||||||
@ -266,7 +266,7 @@ private:
|
|||||||
UINFO(4," CELL "<<nodep<<endl);
|
UINFO(4," CELL "<<nodep<<endl);
|
||||||
// Find submodule vars
|
// Find submodule vars
|
||||||
if (!nodep->modp()) nodep->v3fatalSrc("Unlinked");
|
if (!nodep->modp()) nodep->v3fatalSrc("Unlinked");
|
||||||
m_deModVars.accept(nodep->modp());
|
m_deModVars.main(nodep->modp());
|
||||||
//
|
//
|
||||||
if (nodep->rangep()) {
|
if (nodep->rangep()) {
|
||||||
m_cellRangep = nodep->rangep();
|
m_cellRangep = nodep->rangep();
|
||||||
|
Loading…
Reference in New Issue
Block a user