mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-07 06:33:24 +00:00
Calling `throw dst_end_of_data_exception()` when the desired number of cycles has been reached means that the fst reader can't tidy up after itself and leads to memory leaks. This doesn't happen when the `-stop` flag is used because the `Yosys::FstData` struct tracks the end time and skips the outer callback if the simulation has gone past the desired end time. Move cycle checking into the inner callback along with the time checking means that the outer callback no longer needs to throw an exception in order to stop checking further values, while still allowing the fst reader to finish reading and deallocate memory.
86 lines
2.5 KiB
C++
86 lines
2.5 KiB
C++
/*
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
*
|
|
* Copyright (C) 2022 Miodrag Milanovic <micko@yosyshq.com>
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#ifndef FSTDATA_H
|
|
#define FSTDATA_H
|
|
|
|
#include "kernel/yosys.h"
|
|
#include "libs/fst/fstapi.h"
|
|
|
|
YOSYS_NAMESPACE_BEGIN
|
|
|
|
typedef std::function<void(uint64_t)> CallbackFunction;
|
|
struct fst_end_of_data_exception { };
|
|
|
|
struct FstVar
|
|
{
|
|
fstHandle id;
|
|
std::string name;
|
|
bool is_alias;
|
|
bool is_reg;
|
|
std::string scope;
|
|
int width;
|
|
};
|
|
|
|
class FstData
|
|
{
|
|
public:
|
|
FstData(std::string filename);
|
|
~FstData();
|
|
|
|
uint64_t getStartTime();
|
|
uint64_t getEndTime();
|
|
|
|
std::vector<FstVar>& getVars() { return vars; };
|
|
|
|
void reconstruct_callback_attimes(uint64_t pnt_time, fstHandle pnt_facidx, const unsigned char *pnt_value, uint32_t plen);
|
|
void reconstructAllAtTimes(std::vector<fstHandle> &signal, uint64_t start_time, uint64_t end_time, unsigned int end_cycle, CallbackFunction cb);
|
|
|
|
std::string valueOf(fstHandle signal);
|
|
fstHandle getHandle(std::string name);
|
|
dict<int,fstHandle> getMemoryHandles(std::string name);
|
|
double getTimescale() { return timescale; }
|
|
const char *getTimescaleString() { return timescale_str.c_str(); }
|
|
private:
|
|
void extractVarNames();
|
|
|
|
struct fstReaderContext *ctx;
|
|
std::vector<FstVar> vars;
|
|
std::map<fstHandle, FstVar> handle_to_var;
|
|
std::map<std::string, fstHandle> name_to_handle;
|
|
std::map<std::string, dict<int, fstHandle>> memory_to_handle;
|
|
std::map<fstHandle, std::string> last_data;
|
|
uint64_t last_time;
|
|
std::map<fstHandle, std::string> past_data;
|
|
uint64_t past_time;
|
|
double timescale;
|
|
std::string timescale_str;
|
|
uint64_t start_time;
|
|
uint64_t end_time;
|
|
unsigned int last_cycle;
|
|
unsigned int curr_cycle;
|
|
CallbackFunction callback;
|
|
std::vector<fstHandle> clk_signals;
|
|
bool all_samples;
|
|
std::string tmp_file;
|
|
};
|
|
|
|
YOSYS_NAMESPACE_END
|
|
|
|
#endif
|