mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 20:22:41 +00:00
Internals: Use more standard syntax for avoiding unused variable warnings (#4826)
This commit is contained in:
parent
c9d7486d16
commit
5073f208af
@ -112,7 +112,8 @@ thread_local Verilated::ThreadLocal Verilated::t_s;
|
|||||||
|
|
||||||
#ifndef VL_USER_FINISH ///< Define this to override the vl_finish function
|
#ifndef VL_USER_FINISH ///< Define this to override the vl_finish function
|
||||||
void vl_finish(const char* filename, int linenum, const char* hier) VL_MT_UNSAFE {
|
void vl_finish(const char* filename, int linenum, const char* hier) VL_MT_UNSAFE {
|
||||||
if (false && hier) {} // Unused argument
|
// hier is unused in the default implementation.
|
||||||
|
(void)hier;
|
||||||
VL_PRINTF( // Not VL_PRINTF_MT, already on main thread
|
VL_PRINTF( // Not VL_PRINTF_MT, already on main thread
|
||||||
"- %s:%d: Verilog $finish\n", filename, linenum);
|
"- %s:%d: Verilog $finish\n", filename, linenum);
|
||||||
Verilated::threadContextp()->gotFinish(true);
|
Verilated::threadContextp()->gotFinish(true);
|
||||||
@ -140,7 +141,8 @@ void vl_stop(const char* filename, int linenum, const char* hier) VL_MT_UNSAFE {
|
|||||||
|
|
||||||
#ifndef VL_USER_FATAL ///< Define this to override the vl_fatal function
|
#ifndef VL_USER_FATAL ///< Define this to override the vl_fatal function
|
||||||
void vl_fatal(const char* filename, int linenum, const char* hier, const char* msg) VL_MT_UNSAFE {
|
void vl_fatal(const char* filename, int linenum, const char* hier, const char* msg) VL_MT_UNSAFE {
|
||||||
if (false && hier) {}
|
// hier is unused in the default implementation.
|
||||||
|
(void)hier;
|
||||||
Verilated::threadContextp()->gotError(true);
|
Verilated::threadContextp()->gotError(true);
|
||||||
Verilated::threadContextp()->gotFinish(true);
|
Verilated::threadContextp()->gotFinish(true);
|
||||||
if (filename && filename[0]) {
|
if (filename && filename[0]) {
|
||||||
@ -178,7 +180,8 @@ void vl_stop_maybe(const char* filename, int linenum, const char* hier, bool may
|
|||||||
|
|
||||||
#ifndef VL_USER_WARN ///< Define this to override the vl_warn function
|
#ifndef VL_USER_WARN ///< Define this to override the vl_warn function
|
||||||
void vl_warn(const char* filename, int linenum, const char* hier, const char* msg) VL_MT_UNSAFE {
|
void vl_warn(const char* filename, int linenum, const char* hier, const char* msg) VL_MT_UNSAFE {
|
||||||
if (false && hier) {}
|
// hier is unused in the default implementation.
|
||||||
|
(void)hier;
|
||||||
if (filename && filename[0]) {
|
if (filename && filename[0]) {
|
||||||
// Not VL_PRINTF_MT, already on main thread
|
// Not VL_PRINTF_MT, already on main thread
|
||||||
VL_PRINTF("%%Warning: %s:%d: %s\n", filename, linenum, msg);
|
VL_PRINTF("%%Warning: %s:%d: %s\n", filename, linenum, msg);
|
||||||
|
@ -67,10 +67,10 @@ class V3CCtorsBuilder final {
|
|||||||
string preventUnusedStmt;
|
string preventUnusedStmt;
|
||||||
if (m_type.isClass()) {
|
if (m_type.isClass()) {
|
||||||
funcp->argTypes(EmitCBase::symClassVar());
|
funcp->argTypes(EmitCBase::symClassVar());
|
||||||
preventUnusedStmt = "if (false && vlSymsp) {} // Prevent unused\n";
|
preventUnusedStmt = "(void)vlSymsp; // Prevent unused variable warning\n";
|
||||||
} else if (m_type.isCoverage()) {
|
} else if (m_type.isCoverage()) {
|
||||||
funcp->argTypes("bool first");
|
funcp->argTypes("bool first");
|
||||||
preventUnusedStmt = "if (false && first) {} // Prevent unused\n";
|
preventUnusedStmt = "(void)first; // Prevent unused variable warning\n";
|
||||||
}
|
}
|
||||||
if (!preventUnusedStmt.empty()) {
|
if (!preventUnusedStmt.empty()) {
|
||||||
funcp->addStmtsp(new AstCStmt{m_modp->fileline(), preventUnusedStmt});
|
funcp->addStmtsp(new AstCStmt{m_modp->fileline(), preventUnusedStmt});
|
||||||
|
@ -286,7 +286,7 @@ public:
|
|||||||
m_lazyDecls.declared(nodep); // Defined here, so no longer needs declaration
|
m_lazyDecls.declared(nodep); // Defined here, so no longer needs declaration
|
||||||
if (!nodep->isStatic()) { // Standard prologue
|
if (!nodep->isStatic()) { // Standard prologue
|
||||||
m_useSelfForThis = true;
|
m_useSelfForThis = true;
|
||||||
puts("if (false && vlSelf) {} // Prevent unused\n");
|
puts("(void)vlSelf; // Prevent unused variable warning\n");
|
||||||
if (!VN_IS(m_modp, Class)) puts(symClassAssign());
|
if (!VN_IS(m_modp, Class)) puts(symClassAssign());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -293,7 +293,7 @@ class EmitCImp final : EmitCFunc {
|
|||||||
}
|
}
|
||||||
|
|
||||||
puts("\nvoid " + modName + "::" + protect("__Vconfigure") + "(bool first) {\n");
|
puts("\nvoid " + modName + "::" + protect("__Vconfigure") + "(bool first) {\n");
|
||||||
puts("if (false && first) {} // Prevent unused\n");
|
puts("(void)first; // Prevent unused variable warning\n");
|
||||||
if (v3Global.opt.coverage()) {
|
if (v3Global.opt.coverage()) {
|
||||||
puts(modName + "__" + protect("_configure_coverage") + "(this, first);\n");
|
puts(modName + "__" + protect("_configure_coverage") + "(this, first);\n");
|
||||||
}
|
}
|
||||||
|
@ -548,7 +548,7 @@ class EmitCModel final : public EmitCFunc {
|
|||||||
+ +"::trace()' shall not be called after '" + v3Global.opt.traceClassBase()
|
+ +"::trace()' shall not be called after '" + v3Global.opt.traceClassBase()
|
||||||
+ "C::open()'.\");\n");
|
+ "C::open()'.\");\n");
|
||||||
puts(/**/ "}\n");
|
puts(/**/ "}\n");
|
||||||
puts(/**/ "if (false && levels && options) {} // Prevent unused\n");
|
puts(/**/ "(void)levels; (void)options; // Prevent unused variable warning\n");
|
||||||
puts(/**/ "tfp->spTrace()->addModel(this);\n");
|
puts(/**/ "tfp->spTrace()->addModel(this);\n");
|
||||||
puts(/**/ "tfp->spTrace()->addInitCb(&" + protect("trace_init") + ", &(vlSymsp->TOP));\n");
|
puts(/**/ "tfp->spTrace()->addInitCb(&" + protect("trace_init") + ", &(vlSymsp->TOP));\n");
|
||||||
puts(/**/ topModNameProtected + "__" + protect("trace_register")
|
puts(/**/ topModNameProtected + "__" + protect("trace_register")
|
||||||
|
@ -533,7 +533,7 @@ class TraceVisitor final : public VNVisitor {
|
|||||||
addInitStr("const uint32_t base VL_ATTR_UNUSED = "
|
addInitStr("const uint32_t base VL_ATTR_UNUSED = "
|
||||||
"vlSymsp->__Vm_baseCode + "
|
"vlSymsp->__Vm_baseCode + "
|
||||||
+ cvtToStr(baseCode) + ";\n");
|
+ cvtToStr(baseCode) + ";\n");
|
||||||
addInitStr("if (false && bufp) {} // Prevent unused\n");
|
addInitStr("(void)bufp; // Prevent unused variable warning\n");
|
||||||
} else {
|
} else {
|
||||||
addInitStr("uint32_t* const oldp VL_ATTR_UNUSED = "
|
addInitStr("uint32_t* const oldp VL_ATTR_UNUSED = "
|
||||||
"bufp->oldp(vlSymsp->__Vm_baseCode + "
|
"bufp->oldp(vlSymsp->__Vm_baseCode + "
|
||||||
|
Loading…
Reference in New Issue
Block a user