forked from github/verilator
Set vlSymsp in modules at construction time.
This ensures it's available from very early on. No functional change.
This commit is contained in:
parent
b1b5b5dfe2
commit
f9e69984ff
@ -118,7 +118,7 @@ class EmitCHeader final : public EmitCConstInit {
|
|||||||
void emitInternalVarDecls(const AstNodeModule* modp) {
|
void emitInternalVarDecls(const AstNodeModule* modp) {
|
||||||
if (!VN_IS(modp, Class)) {
|
if (!VN_IS(modp, Class)) {
|
||||||
putsDecoration("\n// INTERNAL VARIABLES\n");
|
putsDecoration("\n// INTERNAL VARIABLES\n");
|
||||||
puts(symClassName() + "* vlSymsp; // Symbol table\n");
|
puts(symClassName() + "* const vlSymsp;\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void emitParamDecls(const AstNodeModule* modp) {
|
void emitParamDecls(const AstNodeModule* modp) {
|
||||||
@ -146,7 +146,7 @@ class EmitCHeader final : public EmitCConstInit {
|
|||||||
if (!VN_IS(modp, Class)) { // Classes use CFuncs with isConstructor/isDestructor
|
if (!VN_IS(modp, Class)) { // Classes use CFuncs with isConstructor/isDestructor
|
||||||
const string& name = prefixNameProtect(modp);
|
const string& name = prefixNameProtect(modp);
|
||||||
putsDecoration("\n// CONSTRUCTORS\n");
|
putsDecoration("\n// CONSTRUCTORS\n");
|
||||||
puts(name + "(const char* name);\n");
|
puts(name + "(" + symClassName() + "* symsp, const char* name);\n");
|
||||||
puts("~" + name + "();\n");
|
puts("~" + name + "();\n");
|
||||||
puts("VL_UNCOPYABLE(" + name + ");\n");
|
puts("VL_UNCOPYABLE(" + name + ");\n");
|
||||||
}
|
}
|
||||||
@ -157,8 +157,7 @@ class EmitCHeader final : public EmitCConstInit {
|
|||||||
|
|
||||||
if (!VN_IS(modp, Class)) {
|
if (!VN_IS(modp, Class)) {
|
||||||
decorateFirst(first, section);
|
decorateFirst(first, section);
|
||||||
puts("void " + protect("__Vconfigure") + "(" + symClassName()
|
puts("void " + protect("__Vconfigure") + "(bool first);\n");
|
||||||
+ "* symsp, bool first);\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (v3Global.opt.coverage()) {
|
if (v3Global.opt.coverage()) {
|
||||||
|
@ -234,8 +234,8 @@ class EmitCImp final : EmitCFunc {
|
|||||||
"(" + modName + "* vlSelf);");
|
"(" + modName + "* vlSelf);");
|
||||||
puts("\n");
|
puts("\n");
|
||||||
|
|
||||||
puts(modName + "::" + modName + "(const char* _vcname__)\n");
|
puts(modName + "::" + modName + "(" + symClassName() + "* symsp, const char* name)\n");
|
||||||
puts(" : VerilatedModule(_vcname__)\n");
|
puts(" : VerilatedModule{name}\n");
|
||||||
|
|
||||||
ofp()->indentInc();
|
ofp()->indentInc();
|
||||||
for (const AstNode* nodep = modp->stmtsp(); nodep; nodep = nodep->nextp()) {
|
for (const AstNode* nodep = modp->stmtsp(); nodep; nodep = nodep->nextp()) {
|
||||||
@ -258,6 +258,7 @@ class EmitCImp final : EmitCFunc {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
puts(", vlSymsp{symsp}\n");
|
||||||
ofp()->indentDec();
|
ofp()->indentDec();
|
||||||
|
|
||||||
puts(" {\n");
|
puts(" {\n");
|
||||||
@ -277,10 +278,8 @@ class EmitCImp final : EmitCFunc {
|
|||||||
"(" + modName + "* vlSelf, bool first);");
|
"(" + modName + "* vlSelf, bool first);");
|
||||||
}
|
}
|
||||||
|
|
||||||
puts("\nvoid " + modName + "::" + protect("__Vconfigure") + "(" + symClassName()
|
puts("\nvoid " + modName + "::" + protect("__Vconfigure") + "(bool first) {\n");
|
||||||
+ "* _vlSymsp, bool first) {\n");
|
|
||||||
puts("if (false && first) {} // Prevent unused\n");
|
puts("if (false && first) {} // Prevent unused\n");
|
||||||
puts("this->vlSymsp = _vlSymsp;\n"); // First, as later stuff needs it.
|
|
||||||
if (v3Global.opt.coverage()) {
|
if (v3Global.opt.coverage()) {
|
||||||
puts(modName + "__" + protect("_configure_coverage") + "(this, first);\n");
|
puts(modName + "__" + protect("_configure_coverage") + "(this, first);\n");
|
||||||
}
|
}
|
||||||
|
@ -726,14 +726,16 @@ void EmitCSyms::emitSymImp() {
|
|||||||
const AstNodeModule* const modp = i.second;
|
const AstNodeModule* const modp = i.second;
|
||||||
puts(" , ");
|
puts(" , ");
|
||||||
puts(protect(scopep->nameDotless()));
|
puts(protect(scopep->nameDotless()));
|
||||||
|
puts("{this");
|
||||||
if (modp->isTop()) {
|
if (modp->isTop()) {
|
||||||
puts("(namep)\n");
|
puts(", namep");
|
||||||
} else {
|
} else {
|
||||||
// The "." is added by catName
|
// The "." is added by catName
|
||||||
puts("(Verilated::catName(namep, ");
|
puts(", Verilated::catName(namep, ");
|
||||||
putsQuoted(protectWordsIf(scopep->prettyName(), scopep->protect()));
|
putsQuoted(protectWordsIf(scopep->prettyName(), scopep->protect()));
|
||||||
puts("))\n");
|
puts(")");
|
||||||
}
|
}
|
||||||
|
puts("}\n");
|
||||||
++m_numStmts;
|
++m_numStmts;
|
||||||
}
|
}
|
||||||
puts("{\n");
|
puts("{\n");
|
||||||
@ -793,7 +795,7 @@ void EmitCSyms::emitSymImp() {
|
|||||||
const bool first = !modp->user1();
|
const bool first = !modp->user1();
|
||||||
modp->user1(true);
|
modp->user1(true);
|
||||||
puts(protectIf(scopep->nameDotless(), scopep->protect()) + "." + protect("__Vconfigure")
|
puts(protectIf(scopep->nameDotless(), scopep->protect()) + "." + protect("__Vconfigure")
|
||||||
+ "(this, " + (first ? "true" : "false") + ");\n");
|
+ "(" + (first ? "true" : "false") + ");\n");
|
||||||
++m_numStmts;
|
++m_numStmts;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user