mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Check for vpi_release_handle even when no VL_DEBUG
This commit is contained in:
parent
7deac509c6
commit
3797b5bca1
@ -59,9 +59,7 @@ class VerilatedVpio VL_NOT_FINAL {
|
|||||||
// CONSTANTS
|
// CONSTANTS
|
||||||
/// Magic value stored in front of object to detect double free etc
|
/// Magic value stored in front of object to detect double free etc
|
||||||
/// Must be odd, as aligned pointer can never be odd
|
/// Must be odd, as aligned pointer can never be odd
|
||||||
#ifdef VL_DEBUG
|
|
||||||
static constexpr vluint32_t activeMagic() { return 0xfeed100f; }
|
static constexpr vluint32_t activeMagic() { return 0xfeed100f; }
|
||||||
#endif
|
|
||||||
|
|
||||||
// MEM MANGLEMENT
|
// MEM MANGLEMENT
|
||||||
static VL_THREAD_LOCAL vluint8_t* t_freeHead;
|
static VL_THREAD_LOCAL vluint8_t* t_freeHead;
|
||||||
@ -80,27 +78,21 @@ public:
|
|||||||
if (VL_LIKELY(t_freeHead)) {
|
if (VL_LIKELY(t_freeHead)) {
|
||||||
vluint8_t* newp = t_freeHead;
|
vluint8_t* newp = t_freeHead;
|
||||||
t_freeHead = *(reinterpret_cast<vluint8_t**>(newp));
|
t_freeHead = *(reinterpret_cast<vluint8_t**>(newp));
|
||||||
#ifdef VL_DEBUG
|
|
||||||
*(reinterpret_cast<vluint32_t*>(newp)) = activeMagic();
|
*(reinterpret_cast<vluint32_t*>(newp)) = activeMagic();
|
||||||
#endif
|
|
||||||
return newp + 8;
|
return newp + 8;
|
||||||
}
|
}
|
||||||
// +8: 8 bytes for next
|
// +8: 8 bytes for next
|
||||||
vluint8_t* newp = reinterpret_cast<vluint8_t*>(::operator new(chunk + 8));
|
vluint8_t* newp = reinterpret_cast<vluint8_t*>(::operator new(chunk + 8));
|
||||||
#ifdef VL_DEBUG
|
|
||||||
*(reinterpret_cast<vluint32_t*>(newp)) = activeMagic();
|
*(reinterpret_cast<vluint32_t*>(newp)) = activeMagic();
|
||||||
#endif
|
|
||||||
return newp + 8;
|
return newp + 8;
|
||||||
}
|
}
|
||||||
static void operator delete(void* obj, size_t /*size*/)VL_MT_SAFE {
|
static void operator delete(void* obj, size_t /*size*/)VL_MT_SAFE {
|
||||||
vluint8_t* oldp = (static_cast<vluint8_t*>(obj)) - 8;
|
vluint8_t* oldp = (static_cast<vluint8_t*>(obj)) - 8;
|
||||||
#ifdef VL_DEBUG
|
|
||||||
if (VL_UNLIKELY(*(reinterpret_cast<vluint32_t*>(oldp)) != activeMagic())) {
|
if (VL_UNLIKELY(*(reinterpret_cast<vluint32_t*>(oldp)) != activeMagic())) {
|
||||||
VL_FATAL_MT(__FILE__, __LINE__, "",
|
VL_FATAL_MT(__FILE__, __LINE__, "",
|
||||||
"vpi_release_handle() called on same object twice, or on non-Verilator "
|
"vpi_release_handle() called on same object twice, or on non-Verilator "
|
||||||
"VPI object");
|
"VPI object");
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
*(reinterpret_cast<void**>(oldp)) = t_freeHead;
|
*(reinterpret_cast<void**>(oldp)) = t_freeHead;
|
||||||
t_freeHead = oldp;
|
t_freeHead = oldp;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user