Fix memory leaks found in trace related tests (#2708)

* Fix memory leak of t_trace_cat and t_trace_cat_renew

* Fix memory leak of t_trace_c_api

* Fix memory leak in t_trace_public_func and t_trace_public_func_vlt

* Fix memory leaks in t_flat_build (and probably more).

* Use unique_ptr in testcases
This commit is contained in:
Yutetsu TAKATSUKASA 2020-12-17 08:31:47 +09:00 committed by GitHub
parent d6168f654e
commit ce9293fcb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 24 additions and 18 deletions

View File

@ -893,6 +893,7 @@ void vcdTestMain(const char* filenamep) {
} }
# endif # endif
vcdp->close(); vcdp->close();
VL_DO_CLEAR(delete vcdp, vcdp = nullptr);
} }
} }
#endif #endif

View File

@ -1686,6 +1686,7 @@ sub _make_main {
print $fh "// Test defines\n"; print $fh "// Test defines\n";
print $fh "#define MAIN_TIME_MULTIPLIER ".($self->{main_time_multiplier} || 1)."\n"; print $fh "#define MAIN_TIME_MULTIPLIER ".($self->{main_time_multiplier} || 1)."\n";
print $fh "#include <memory>\n";
print $fh "// OS header\n"; print $fh "// OS header\n";
print $fh "#include \"verilatedos.h\"\n"; print $fh "#include \"verilatedos.h\"\n";
@ -1701,7 +1702,7 @@ sub _make_main {
print $fh "#include \"verilated_vcd_sc.h\"\n" if $self->{trace} && $self->{trace_format} eq 'vcd-sc'; print $fh "#include \"verilated_vcd_sc.h\"\n" if $self->{trace} && $self->{trace_format} eq 'vcd-sc';
print $fh "#include \"verilated_save.h\"\n" if $self->{savable}; print $fh "#include \"verilated_save.h\"\n" if $self->{savable};
print $fh "$VM_PREFIX* topp;\n"; print $fh "std::unique_ptr<$VM_PREFIX> topp;\n";
if (!$self->sc) { if (!$self->sc) {
if ($self->{vl_time_stamp64}) { if ($self->{vl_time_stamp64}) {
print $fh "vluint64_t main_time = 0;\n"; print $fh "vluint64_t main_time = 0;\n";
@ -1749,7 +1750,7 @@ sub _make_main {
print $fh " Verilated::debug(".($self->{verilated_debug}?1:0).");\n"; print $fh " Verilated::debug(".($self->{verilated_debug}?1:0).");\n";
print $fh " srand48(5);\n"; # Ensure determinism print $fh " srand48(5);\n"; # Ensure determinism
print $fh " Verilated::randReset(".$self->{verilated_randReset}.");\n" if defined $self->{verilated_randReset}; print $fh " Verilated::randReset(".$self->{verilated_randReset}.");\n" if defined $self->{verilated_randReset};
print $fh " topp = new $VM_PREFIX(\"top\");\n"; print $fh " topp.reset(new $VM_PREFIX(\"top\"));\n";
print $fh " Verilated::internalsDump()\n;" if $self->{verilated_debug}; print $fh " Verilated::internalsDump()\n;" if $self->{verilated_debug};
my $set; my $set;
@ -1766,10 +1767,10 @@ sub _make_main {
$fh->print("\n"); $fh->print("\n");
$fh->print("#if VM_TRACE\n"); $fh->print("#if VM_TRACE\n");
$fh->print(" Verilated::traceEverOn(true);\n"); $fh->print(" Verilated::traceEverOn(true);\n");
$fh->print(" VerilatedFstC* tfp = new VerilatedFstC;\n") if $self->{trace_format} eq 'fst-c'; $fh->print(" std::unique_ptr<VerilatedFstC> tfp{new VerilatedFstC};\n") if $self->{trace_format} eq 'fst-c';
$fh->print(" VerilatedVcdC* tfp = new VerilatedVcdC;\n") if $self->{trace_format} eq 'vcd-c'; $fh->print(" std::unique_ptr<VerilatedVcdC> tfp{new VerilatedVcdC};\n") if $self->{trace_format} eq 'vcd-c';
$fh->print(" VerilatedVcdSc* tfp = new VerilatedVcdSc;\n") if $self->{trace_format} eq 'vcd-sc'; $fh->print(" std::unique_ptr<VerilatedVcdSc> tfp{new VerilatedVcdSc};\n") if $self->{trace_format} eq 'vcd-sc';
$fh->print(" topp->trace(tfp, 99);\n"); $fh->print(" topp->trace(tfp.get(), 99);\n");
$fh->print(" tfp->open(\"".$self->trace_filename."\");\n"); $fh->print(" tfp->open(\"".$self->trace_filename."\");\n");
if ($self->{trace} && !$self->sc) { if ($self->{trace} && !$self->sc) {
$fh->print(" if (tfp) tfp->dump(main_time);\n"); $fh->print(" if (tfp) tfp->dump(main_time);\n");
@ -1831,11 +1832,12 @@ sub _make_main {
if ($self->{trace}) { if ($self->{trace}) {
$fh->print("#if VM_TRACE\n"); $fh->print("#if VM_TRACE\n");
$fh->print(" if (tfp) tfp->close();\n"); $fh->print(" if (tfp) tfp->close();\n");
$fh->print(" tfp.reset();\n");
$fh->print("#endif // VM_TRACE\n"); $fh->print("#endif // VM_TRACE\n");
} }
$fh->print("\n"); $fh->print("\n");
print $fh " VL_DO_DANGLING(delete topp, topp);\n"; print $fh " topp.reset();\n";
print $fh " exit(0L);\n"; print $fh " exit(0L);\n";
print $fh "}\n"; print $fh "}\n";
$fh->close(); $fh->close();

View File

@ -6,6 +6,7 @@
// any use, without warranty, 2008 by Wilson Snyder. // any use, without warranty, 2008 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0 // SPDX-License-Identifier: CC0-1.0
#include <memory>
#include <verilated.h> #include <verilated.h>
#include <verilated_vcd_c.h> #include <verilated_vcd_c.h>
@ -21,13 +22,13 @@ const char* trace_name() {
} }
int main(int argc, char** argv, char** env) { int main(int argc, char** argv, char** env) {
VM_PREFIX* top = new VM_PREFIX("top"); std::unique_ptr<VM_PREFIX> top{new VM_PREFIX("top")};
Verilated::debug(0); Verilated::debug(0);
Verilated::traceEverOn(true); Verilated::traceEverOn(true);
VerilatedVcdC* tfp = new VerilatedVcdC; std::unique_ptr<VerilatedVcdC> tfp{new VerilatedVcdC};
top->trace(tfp, 99); top->trace(tfp.get(), 99);
tfp->open(trace_name()); tfp->open(trace_name());
@ -45,9 +46,8 @@ int main(int argc, char** argv, char** env) {
tfp->open(trace_name()); tfp->open(trace_name());
#elif defined(T_TRACE_CAT_RENEW) #elif defined(T_TRACE_CAT_RENEW)
tfp->close(); tfp->close();
delete tfp; tfp.reset(new VerilatedVcdC);
tfp = new VerilatedVcdC; top->trace(tfp.get(), 99);
top->trace(tfp, 99);
tfp->open(trace_name()); tfp->open(trace_name());
#else #else
#error "Unknown test" #error "Unknown test"
@ -58,7 +58,8 @@ int main(int argc, char** argv, char** env) {
} }
tfp->close(); tfp->close();
top->final(); top->final();
VL_DO_DANGLING(delete top, top); tfp.reset();
top.reset();
printf("*-* All Finished *-*\n"); printf("*-* All Finished *-*\n");
return 0; return 0;
} }

View File

@ -6,6 +6,7 @@
// any use, without warranty, 2008 by Wilson Snyder. // any use, without warranty, 2008 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0 // SPDX-License-Identifier: CC0-1.0
#include <memory>
#include <verilated.h> #include <verilated.h>
#include <verilated_vcd_c.h> #include <verilated_vcd_c.h>
@ -26,13 +27,13 @@ double sc_time_stamp() { return (double)main_time; }
const unsigned long long dt_2 = 3; const unsigned long long dt_2 = 3;
int main(int argc, char** argv, char** env) { int main(int argc, char** argv, char** env) {
VM_PREFIX* top = new VM_PREFIX("top"); std::unique_ptr<VM_PREFIX> top{new VM_PREFIX("top")};
Verilated::debug(0); Verilated::debug(0);
Verilated::traceEverOn(true); Verilated::traceEverOn(true);
VerilatedVcdC* tfp = new VerilatedVcdC; std::unique_ptr<VerilatedVcdC> tfp{new VerilatedVcdC};
top->trace(tfp, 99); top->trace(tfp.get(), 99);
tfp->open(VL_STRINGIFY(TEST_OBJ_DIR) "/simx.vcd"); tfp->open(VL_STRINGIFY(TEST_OBJ_DIR) "/simx.vcd");
while (main_time <= 20) { while (main_time <= 20) {
@ -46,7 +47,8 @@ int main(int argc, char** argv, char** env) {
} }
tfp->close(); tfp->close();
top->final(); top->final();
VL_DO_DANGLING(delete top, top); tfp.reset();
top.reset();
printf("*-* All Finished *-*\n"); printf("*-* All Finished *-*\n");
return 0; return 0;
} }