mirror of
https://github.com/verilator/verilator.git
synced 2025-04-04 19:52:39 +00:00
Internals: Use faster VNVisitorConst where able. No functional change intended.
This commit is contained in:
parent
2882737bcd
commit
ee3ba7c761
@ -320,7 +320,7 @@ public:
|
|||||||
|
|
||||||
//######################################################################
|
//######################################################################
|
||||||
|
|
||||||
class BeginRelinkVisitor final : public VNVisitor {
|
class BeginRelinkVisitor final : public VNVisitorConst {
|
||||||
// Replace tasks with new pointer
|
// Replace tasks with new pointer
|
||||||
private:
|
private:
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
@ -333,13 +333,13 @@ private:
|
|||||||
UINFO(9, " relinkFTask " << nodep << endl);
|
UINFO(9, " relinkFTask " << nodep << endl);
|
||||||
nodep->name(nodep->taskp()->name());
|
nodep->name(nodep->taskp()->name());
|
||||||
}
|
}
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
void visit(AstVarRef* nodep) override {
|
void visit(AstVarRef* nodep) override {
|
||||||
if (nodep->varp()->user1()) { // It was converted
|
if (nodep->varp()->user1()) { // It was converted
|
||||||
UINFO(9, " relinVarRef " << nodep << endl);
|
UINFO(9, " relinVarRef " << nodep << endl);
|
||||||
}
|
}
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
void visit(AstIfaceRefDType* nodep) override {
|
void visit(AstIfaceRefDType* nodep) override {
|
||||||
// May have changed cell names
|
// May have changed cell names
|
||||||
@ -347,14 +347,14 @@ private:
|
|||||||
UINFO(8, " IFACEREFDTYPE " << nodep << endl);
|
UINFO(8, " IFACEREFDTYPE " << nodep << endl);
|
||||||
if (nodep->cellp()) nodep->cellName(nodep->cellp()->name());
|
if (nodep->cellp()) nodep->cellName(nodep->cellp()->name());
|
||||||
UINFO(8, " rename to " << nodep << endl);
|
UINFO(8, " rename to " << nodep << endl);
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
//--------------------
|
//--------------------
|
||||||
void visit(AstNode* nodep) override { iterateChildren(nodep); }
|
void visit(AstNode* nodep) override { iterateChildrenConst(nodep); }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
BeginRelinkVisitor(AstNetlist* nodep, BeginState*) { iterate(nodep); }
|
BeginRelinkVisitor(AstNetlist* nodep, BeginState*) { iterateConst(nodep); }
|
||||||
~BeginRelinkVisitor() override = default;
|
~BeginRelinkVisitor() override = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
|
|||||||
// Visit within a module all nodes and data types they reference, finding
|
// Visit within a module all nodes and data types they reference, finding
|
||||||
// any classes so we can make sure they are defined when Verilated code
|
// any classes so we can make sure they are defined when Verilated code
|
||||||
// compiles
|
// compiles
|
||||||
class CUseVisitor final : public VNVisitor {
|
class CUseVisitor final : public VNVisitorConst {
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// AstNode::user1() -> bool. True if already visited
|
// AstNode::user1() -> bool. True if already visited
|
||||||
const VNUser1InUse m_inuser1;
|
const VNUser1InUse m_inuser1;
|
||||||
@ -56,44 +56,44 @@ class CUseVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
void visit(AstCFunc* nodep) override {
|
void visit(AstCFunc* nodep) override {
|
||||||
if (nodep->user1SetOnce()) return;
|
if (nodep->user1SetOnce()) return;
|
||||||
iterateAndNextNull(nodep->argsp());
|
iterateAndNextConstNull(nodep->argsp());
|
||||||
iterateAndNextNull(nodep->stmtsp());
|
iterateAndNextConstNull(nodep->stmtsp());
|
||||||
}
|
}
|
||||||
void visit(AstCCall* nodep) override { return; }
|
void visit(AstCCall* nodep) override { return; }
|
||||||
void visit(AstCReturn* nodep) override {
|
void visit(AstCReturn* nodep) override {
|
||||||
UASSERT(!nodep->user1SetOnce(), "Visited same return twice.");
|
UASSERT(!nodep->user1SetOnce(), "Visited same return twice.");
|
||||||
iterate(nodep->lhsp()->dtypep());
|
iterateConst(nodep->lhsp()->dtypep());
|
||||||
}
|
}
|
||||||
void visit(AstNodeDType* nodep) override {
|
void visit(AstNodeDType* nodep) override {
|
||||||
if (nodep->virtRefDTypep()) iterate(nodep->virtRefDTypep());
|
if (nodep->virtRefDTypep()) iterateConst(nodep->virtRefDTypep());
|
||||||
if (nodep->virtRefDType2p()) iterate(nodep->virtRefDType2p());
|
if (nodep->virtRefDType2p()) iterateConst(nodep->virtRefDType2p());
|
||||||
|
|
||||||
// Add a CUse for every struct that requires a declaration
|
// Add a CUse for every struct that requires a declaration
|
||||||
AstNodeUOrStructDType* const stypep = VN_CAST(nodep->skipRefp(), NodeUOrStructDType);
|
AstNodeUOrStructDType* const stypep = VN_CAST(nodep->skipRefp(), NodeUOrStructDType);
|
||||||
if (stypep && stypep->classOrPackagep()) {
|
if (stypep && stypep->classOrPackagep()) {
|
||||||
addNewUse(nodep, VUseType::INT_INCLUDE, stypep->classOrPackagep()->name());
|
addNewUse(nodep, VUseType::INT_INCLUDE, stypep->classOrPackagep()->name());
|
||||||
iterateChildren(stypep);
|
iterateChildrenConst(stypep);
|
||||||
} else if (AstClassRefDType* const classp = VN_CAST(nodep->skipRefp(), ClassRefDType)) {
|
} else if (AstClassRefDType* const classp = VN_CAST(nodep->skipRefp(), ClassRefDType)) {
|
||||||
addNewUse(nodep, VUseType::INT_FWD_CLASS, classp->name());
|
addNewUse(nodep, VUseType::INT_FWD_CLASS, classp->name());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstNode* nodep) override {
|
void visit(AstNode* nodep) override {
|
||||||
if (nodep->user1SetOnce()) return; // Process once
|
if (nodep->user1SetOnce()) return; // Process once
|
||||||
if (nodep->dtypep()) iterate(nodep->dtypep());
|
if (nodep->dtypep()) iterateConst(nodep->dtypep());
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
void visit(AstCell* nodep) override {
|
void visit(AstCell* nodep) override {
|
||||||
if (nodep->user1SetOnce()) return; // Process once
|
if (nodep->user1SetOnce()) return; // Process once
|
||||||
// Currently no IMP_INCLUDE because we include __Syms which has them all
|
// Currently no IMP_INCLUDE because we include __Syms which has them all
|
||||||
addNewUse(nodep, VUseType::INT_FWD_CLASS, nodep->modp()->name());
|
addNewUse(nodep, VUseType::INT_FWD_CLASS, nodep->modp()->name());
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
explicit CUseVisitor(AstNodeModule* modp)
|
explicit CUseVisitor(AstNodeModule* modp)
|
||||||
: m_modp(modp) {
|
: m_modp(modp) {
|
||||||
iterate(modp);
|
iterateConst(modp);
|
||||||
|
|
||||||
for (auto& used : m_didUse) {
|
for (auto& used : m_didUse) {
|
||||||
AstCUse* const newp = new AstCUse{used.second.first, used.second.second, used.first};
|
AstCUse* const newp = new AstCUse{used.second.first, used.second.second, used.first};
|
||||||
|
@ -37,7 +37,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
|
|||||||
//######################################################################
|
//######################################################################
|
||||||
// Find nodes with side effects, to mark as non-expandable
|
// Find nodes with side effects, to mark as non-expandable
|
||||||
|
|
||||||
class ExpandOkVisitor final : public VNVisitor {
|
class ExpandOkVisitor final : public VNVisitorConst {
|
||||||
private:
|
private:
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// AstNode::user2() -> bool. Is pure (along with all children)
|
// AstNode::user2() -> bool. Is pure (along with all children)
|
||||||
@ -53,7 +53,7 @@ private:
|
|||||||
{
|
{
|
||||||
VL_RESTORER(m_isImpure);
|
VL_RESTORER(m_isImpure);
|
||||||
m_isImpure = false;
|
m_isImpure = false;
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
selfImpure |= m_isImpure;
|
selfImpure |= m_isImpure;
|
||||||
nodep->user2(selfImpure);
|
nodep->user2(selfImpure);
|
||||||
}
|
}
|
||||||
@ -62,7 +62,7 @@ private:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
explicit ExpandOkVisitor(AstNetlist* nodep) { iterate(nodep); }
|
explicit ExpandOkVisitor(AstNetlist* nodep) { iterateConst(nodep); }
|
||||||
~ExpandOkVisitor() = default;
|
~ExpandOkVisitor() = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ string V3HierBlock::commandArgsFileName(bool forCMake) const {
|
|||||||
|
|
||||||
//######################################################################
|
//######################################################################
|
||||||
// Collect how hierarchical blocks are used
|
// Collect how hierarchical blocks are used
|
||||||
class HierBlockUsageCollectVisitor final : public VNVisitor {
|
class HierBlockUsageCollectVisitor final : public VNVisitorConst {
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// AstNode::user1() -> bool. Processed
|
// AstNode::user1() -> bool. Processed
|
||||||
const VNUser1InUse m_inuser1;
|
const VNUser1InUse m_inuser1;
|
||||||
@ -266,7 +266,7 @@ class HierBlockUsageCollectVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
prevGParams.swap(m_gparams);
|
prevGParams.swap(m_gparams);
|
||||||
|
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
|
|
||||||
if (nodep->hierBlock()) {
|
if (nodep->hierBlock()) {
|
||||||
m_planp->add(nodep, m_gparams);
|
m_planp->add(nodep, m_gparams);
|
||||||
@ -280,7 +280,7 @@ class HierBlockUsageCollectVisitor final : public VNVisitor {
|
|||||||
// Visit used module here to know that the module is hier_block or not.
|
// Visit used module here to know that the module is hier_block or not.
|
||||||
// This visitor behaves almost depth first search
|
// This visitor behaves almost depth first search
|
||||||
if (AstModule* const modp = VN_CAST(nodep->modp(), Module)) {
|
if (AstModule* const modp = VN_CAST(nodep->modp(), Module)) {
|
||||||
iterate(modp);
|
iterateConst(modp);
|
||||||
m_referred.insert(modp);
|
m_referred.insert(modp);
|
||||||
}
|
}
|
||||||
// Nothing to do for interface because hierarchical block does not exist
|
// Nothing to do for interface because hierarchical block does not exist
|
||||||
@ -294,12 +294,12 @@ class HierBlockUsageCollectVisitor final : public VNVisitor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void visit(AstNodeExpr*) override {} // Accelerate
|
void visit(AstNodeExpr*) override {} // Accelerate
|
||||||
void visit(AstNode* nodep) override { iterateChildren(nodep); }
|
void visit(AstNode* nodep) override { iterateChildrenConst(nodep); }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HierBlockUsageCollectVisitor(V3HierBlockPlan* planp, AstNetlist* netlist)
|
HierBlockUsageCollectVisitor(V3HierBlockPlan* planp, AstNetlist* netlist)
|
||||||
: m_planp{planp} {
|
: m_planp{planp} {
|
||||||
iterateChildren(netlist);
|
iterateChildrenConst(netlist);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
|
|||||||
//######################################################################
|
//######################################################################
|
||||||
// Name state, as a visitor of each AstNode
|
// Name state, as a visitor of each AstNode
|
||||||
|
|
||||||
class NameVisitor final : public VNVisitor {
|
class NameVisitor final : public VNVisitorConst {
|
||||||
private:
|
private:
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// Cleared on Netlist
|
// Cleared on Netlist
|
||||||
@ -69,7 +69,7 @@ private:
|
|||||||
VL_RESTORER(m_modp);
|
VL_RESTORER(m_modp);
|
||||||
{
|
{
|
||||||
m_modp = nodep;
|
m_modp = nodep;
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Add __PVT__ to names of local signals
|
// Add __PVT__ to names of local signals
|
||||||
@ -82,39 +82,39 @@ private:
|
|||||||
}
|
}
|
||||||
void visit(AstCFunc* nodep) override {
|
void visit(AstCFunc* nodep) override {
|
||||||
if (!nodep->user1()) {
|
if (!nodep->user1()) {
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
rename(nodep, false);
|
rename(nodep, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstVarRef* nodep) override { iterate(nodep->varp()); }
|
void visit(AstVarRef* nodep) override { iterateConst(nodep->varp()); }
|
||||||
void visit(AstCell* nodep) override {
|
void visit(AstCell* nodep) override {
|
||||||
if (!nodep->user1()) {
|
if (!nodep->user1()) {
|
||||||
rename(nodep, (!nodep->modp()->modPublic() && !VN_IS(nodep->modp(), ClassPackage)));
|
rename(nodep, (!nodep->modp()->modPublic() && !VN_IS(nodep->modp(), ClassPackage)));
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstMemberDType* nodep) override {
|
void visit(AstMemberDType* nodep) override {
|
||||||
if (!nodep->user1()) {
|
if (!nodep->user1()) {
|
||||||
rename(nodep, true);
|
rename(nodep, true);
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstMemberSel* nodep) override {
|
void visit(AstMemberSel* nodep) override {
|
||||||
if (!nodep->user1()) {
|
if (!nodep->user1()) {
|
||||||
rename(nodep, true);
|
rename(nodep, true);
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstStructSel* nodep) override {
|
void visit(AstStructSel* nodep) override {
|
||||||
if (!nodep->user1()) {
|
if (!nodep->user1()) {
|
||||||
rename(nodep, true);
|
rename(nodep, true);
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstScope* nodep) override {
|
void visit(AstScope* nodep) override {
|
||||||
if (!nodep->user1SetOnce()) {
|
if (!nodep->user1SetOnce()) {
|
||||||
if (nodep->aboveScopep()) iterate(nodep->aboveScopep());
|
if (nodep->aboveScopep()) iterateConst(nodep->aboveScopep());
|
||||||
if (nodep->aboveCellp()) iterate(nodep->aboveCellp());
|
if (nodep->aboveCellp()) iterateConst(nodep->aboveCellp());
|
||||||
// Always recompute name (as many levels above scope may have changed)
|
// Always recompute name (as many levels above scope may have changed)
|
||||||
// Same formula as V3Scope
|
// Same formula as V3Scope
|
||||||
nodep->name(nodep->isTop() ? "TOP"
|
nodep->name(nodep->isTop() ? "TOP"
|
||||||
@ -123,16 +123,16 @@ private:
|
|||||||
? ("TOP." + m_modp->name())
|
? ("TOP." + m_modp->name())
|
||||||
: (nodep->aboveScopep()->name() + "." + nodep->aboveCellp()->name()));
|
: (nodep->aboveScopep()->name() + "." + nodep->aboveCellp()->name()));
|
||||||
nodep->editCountInc();
|
nodep->editCountInc();
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------
|
//--------------------
|
||||||
void visit(AstNode* nodep) override { iterateChildren(nodep); }
|
void visit(AstNode* nodep) override { iterateChildrenConst(nodep); }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
explicit NameVisitor(AstNetlist* nodep) { iterate(nodep); }
|
explicit NameVisitor(AstNetlist* nodep) { iterateConst(nodep); }
|
||||||
~NameVisitor() override = default;
|
~NameVisitor() override = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ VL_DEFINE_DEBUG_FUNCTIONS;
|
|||||||
//######################################################################
|
//######################################################################
|
||||||
// Find all split variables in a block
|
// Find all split variables in a block
|
||||||
|
|
||||||
class SplitAsFindVisitor final : public VNVisitor {
|
class SplitAsFindVisitor final : public VNVisitorConst {
|
||||||
private:
|
private:
|
||||||
// STATE - across all visitors
|
// STATE - across all visitors
|
||||||
AstVarScope* m_splitVscp = nullptr; // Variable we want to split
|
AstVarScope* m_splitVscp = nullptr; // Variable we want to split
|
||||||
@ -49,11 +49,11 @@ private:
|
|||||||
// This will break if the m_splitVscp is a "ref" argument to the function,
|
// This will break if the m_splitVscp is a "ref" argument to the function,
|
||||||
// but little we can do.
|
// but little we can do.
|
||||||
}
|
}
|
||||||
void visit(AstNode* nodep) override { iterateChildren(nodep); }
|
void visit(AstNode* nodep) override { iterateChildrenConst(nodep); }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// CONSTRUCTORS
|
// CONSTRUCTORS
|
||||||
explicit SplitAsFindVisitor(AstAlways* nodep) { iterate(nodep); }
|
explicit SplitAsFindVisitor(AstAlways* nodep) { iterateConst(nodep); }
|
||||||
~SplitAsFindVisitor() override = default;
|
~SplitAsFindVisitor() override = default;
|
||||||
// METHODS
|
// METHODS
|
||||||
AstVarScope* splitVscp() const { return m_splitVscp; }
|
AstVarScope* splitVscp() const { return m_splitVscp; }
|
||||||
|
@ -165,7 +165,7 @@ public:
|
|||||||
// See if any variables have changed value since we determined subst value,
|
// See if any variables have changed value since we determined subst value,
|
||||||
// as a visitor of each AstNode
|
// as a visitor of each AstNode
|
||||||
|
|
||||||
class SubstUseVisitor final : public VNVisitor {
|
class SubstUseVisitor final : public VNVisitorConst {
|
||||||
private:
|
private:
|
||||||
// NODE STATE
|
// NODE STATE
|
||||||
// See SubstVisitor
|
// See SubstVisitor
|
||||||
@ -197,7 +197,7 @@ private:
|
|||||||
void visit(AstConst*) override {} // Accelerate
|
void visit(AstConst*) override {} // Accelerate
|
||||||
void visit(AstNode* nodep) override {
|
void visit(AstNode* nodep) override {
|
||||||
if (!nodep->isPure()) m_ok = false;
|
if (!nodep->isPure()) m_ok = false;
|
||||||
iterateChildren(nodep);
|
iterateChildrenConst(nodep);
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -205,7 +205,7 @@ public:
|
|||||||
SubstUseVisitor(AstNode* nodep, int origStep)
|
SubstUseVisitor(AstNode* nodep, int origStep)
|
||||||
: m_origStep{origStep} {
|
: m_origStep{origStep} {
|
||||||
UINFO(9, " SubstUseVisitor " << origStep << " " << nodep << endl);
|
UINFO(9, " SubstUseVisitor " << origStep << " " << nodep << endl);
|
||||||
iterate(nodep);
|
iterateConst(nodep);
|
||||||
}
|
}
|
||||||
~SubstUseVisitor() override = default;
|
~SubstUseVisitor() override = default;
|
||||||
// METHODS
|
// METHODS
|
||||||
|
Loading…
Reference in New Issue
Block a user