mirror of
https://github.com/verilator/verilator.git
synced 2025-01-01 04:07:34 +00:00
For FST tracing use LZ4 compression.
This commit is contained in:
parent
8d15276625
commit
6b3304320b
2
Changes
2
Changes
@ -8,6 +8,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
||||
|
||||
**** Support "'dx" constants, bug1423. [Udi Finkelstein]
|
||||
|
||||
**** For FST tracing use LZ4 compression. [Tony Bybell]
|
||||
|
||||
**** Add error when use parameters without value, bug1424. [Peter Gerst]
|
||||
|
||||
**** Fix missing VL_SHIFTL_ errors, bug1412, bug1415. [Larry Lee]
|
||||
|
@ -72,6 +72,7 @@ VerilatedFst::VerilatedFst(void* fst)
|
||||
void VerilatedFst::open(const char* filename) VL_MT_UNSAFE {
|
||||
m_assertOne.check();
|
||||
m_fst = fstWriterCreate(filename, 1);
|
||||
fstWriterSetPackType(m_fst, FST_WR_PT_LZ4);
|
||||
m_curScope.clear();
|
||||
|
||||
for (vluint32_t ent = 0; ent< m_callbacks.size(); ++ent) {
|
||||
|
Loading…
Reference in New Issue
Block a user