Skip to content
Snippets Groups Projects
Commit 354ec430 authored by whh8b's avatar whh8b
Browse files

Track size of free ranges

parent 0567e432
No related merge requests found
......@@ -18,6 +18,7 @@ class Stats_t
total_5byte_pins = 0;
total_tramp_space = 0;
total_other_space = 0;
total_free_ranges = 0;
};
void PrintStats(Options_t opts, std::ostream &out);
......@@ -35,6 +36,7 @@ class Stats_t
int total_5byte_pins;
int total_tramp_space;
int total_other_space;
int total_free_ranges;
/*
* Optimization stats tracking.
......
......@@ -107,6 +107,8 @@ void Zipr_t::CreateBinaryFile(const std::string &name)
// go ahead and update any callback sites with the new locations
UpdateCallbacks();
m_stats->total_free_ranges = free_ranges.length();
// write binary file to disk
OutputBinaryFile(name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment