forked from github/verilator
Internals: Avoid VM_COVERAGE ifdef in library to get closer to libverilated.a
This commit is contained in:
parent
785c51dd0b
commit
9d02082801
@ -357,9 +357,6 @@ public:
|
|||||||
void write(const char* filename) VL_MT_SAFE_EXCLUDES(m_mutex) {
|
void write(const char* filename) VL_MT_SAFE_EXCLUDES(m_mutex) {
|
||||||
Verilated::quiesce();
|
Verilated::quiesce();
|
||||||
const VerilatedLockGuard lock{m_mutex};
|
const VerilatedLockGuard lock{m_mutex};
|
||||||
#ifndef VM_COVERAGE
|
|
||||||
VL_FATAL_MT("", 0, "", "%Error: Called VerilatedCov::write when VM_COVERAGE disabled");
|
|
||||||
#endif
|
|
||||||
selftest();
|
selftest();
|
||||||
|
|
||||||
std::ofstream os{filename};
|
std::ofstream os{filename};
|
||||||
|
@ -35,22 +35,6 @@
|
|||||||
|
|
||||||
class VerilatedCovImp;
|
class VerilatedCovImp;
|
||||||
|
|
||||||
//=============================================================================
|
|
||||||
/// Conditionally compile statements only when doing coverage (when
|
|
||||||
/// VM_COVERAGE is defined)
|
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
#ifdef VM_COVERAGE
|
|
||||||
# define VL_IF_COVER(stmts) \
|
|
||||||
do { stmts; } while (false)
|
|
||||||
#else
|
|
||||||
# define VL_IF_COVER(stmts) \
|
|
||||||
do { \
|
|
||||||
if (false) { stmts; } \
|
|
||||||
} while (false)
|
|
||||||
#endif
|
|
||||||
// clang-format on
|
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
/// Insert a item for coverage analysis.
|
/// Insert a item for coverage analysis.
|
||||||
/// The first argument is a pointer to the count to be dumped.
|
/// The first argument is a pointer to the count to be dumped.
|
||||||
@ -83,8 +67,11 @@ class VerilatedCovImp;
|
|||||||
/// }
|
/// }
|
||||||
|
|
||||||
#define VL_COVER_INSERT(covcontextp, countp, ...) \
|
#define VL_COVER_INSERT(covcontextp, countp, ...) \
|
||||||
VL_IF_COVER(covcontextp->_inserti(countp); covcontextp->_insertf(__FILE__, __LINE__); \
|
do { \
|
||||||
covcontextp->_insertp("hier", name(), __VA_ARGS__))
|
covcontextp->_inserti(countp); \
|
||||||
|
covcontextp->_insertf(__FILE__, __LINE__); \
|
||||||
|
covcontextp->_insertp("hier", name(), __VA_ARGS__); \
|
||||||
|
} while (false)
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
// Convert VL_COVER_INSERT value arguments to strings, is \internal
|
// Convert VL_COVER_INSERT value arguments to strings, is \internal
|
||||||
|
Loading…
Reference in New Issue
Block a user