aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/fstdata.h
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2022-01-26 16:39:51 +0100
committerMiodrag Milanovic <mmicko@gmail.com>2022-01-26 16:39:51 +0100
commit226dc659f08ae4b58b22ff13b484f338160b539a (patch)
treeba6654b437054d3e7405250706710e55c65ade72 /kernel/fstdata.h
parentbe7be63fece641db3e3fa1bd28f10603d07732bf (diff)
downloadyosys-226dc659f08ae4b58b22ff13b484f338160b539a.tar.gz
yosys-226dc659f08ae4b58b22ff13b484f338160b539a.tar.bz2
yosys-226dc659f08ae4b58b22ff13b484f338160b539a.zip
Fix tabs/spaces
Diffstat (limited to 'kernel/fstdata.h')
-rw-r--r--kernel/fstdata.h62
1 files changed, 31 insertions, 31 deletions
diff --git a/kernel/fstdata.h b/kernel/fstdata.h
index c9a933836..e7595cbf6 100644
--- a/kernel/fstdata.h
+++ b/kernel/fstdata.h
@@ -27,51 +27,51 @@ YOSYS_NAMESPACE_BEGIN
struct FstVar
{
- fstHandle id;
- std::string name;
- bool is_alias;
- std::string scope;
- int width;
+ fstHandle id;
+ std::string name;
+ bool is_alias;
+ std::string scope;
+ int width;
};
class FstData
{
- public:
- FstData(std::string filename);
- ~FstData();
+ public:
+ FstData(std::string filename);
+ ~FstData();
- uint64_t getStartTime();
- uint64_t getEndTime();
+ uint64_t getStartTime();
+ uint64_t getEndTime();
- std::vector<FstVar>& getVars() { return vars; };
+ std::vector<FstVar>& getVars() { return vars; };
- void reconstruct_callback(uint64_t pnt_time, fstHandle pnt_facidx, const unsigned char *pnt_value, uint32_t plen);
- void reconstruct(std::vector<fstHandle> &signal);
- void reconstuctAll();
+ void reconstruct_callback(uint64_t pnt_time, fstHandle pnt_facidx, const unsigned char *pnt_value, uint32_t plen);
+ void reconstruct(std::vector<fstHandle> &signal);
+ void reconstuctAll();
- void reconstruct_callback_attimes(uint64_t pnt_time, fstHandle pnt_facidx, const unsigned char *pnt_value, uint32_t plen);
- void reconstructAtTimes(std::vector<fstHandle> &signal,std::vector<uint64_t> time);
+ void reconstruct_callback_attimes(uint64_t pnt_time, fstHandle pnt_facidx, const unsigned char *pnt_value, uint32_t plen);
+ void reconstructAtTimes(std::vector<fstHandle> &signal,std::vector<uint64_t> time);
void reconstructAllAtTimes(std::vector<uint64_t> time);
- std::string valueAt(fstHandle signal, uint64_t time);
- std::vector<uint64_t> edges(fstHandle signal, bool positive, bool negative);
- void recalc_time_offsets(fstHandle signal, std::vector<uint64_t> time);
+ std::string valueAt(fstHandle signal, uint64_t time);
+ std::vector<uint64_t> edges(fstHandle signal, bool positive, bool negative);
+ void recalc_time_offsets(fstHandle signal, std::vector<uint64_t> time);
fstHandle getHandle(std::string name);
- private:
- void extractVarNames();
+private:
+ void extractVarNames();
- struct fstReaderContext *ctx;
- std::vector<std::string> scopes;
- std::vector<FstVar> vars;
- std::map<fstHandle, FstVar> handle_to_var;
+ struct fstReaderContext *ctx;
+ std::vector<std::string> scopes;
+ std::vector<FstVar> vars;
+ std::map<fstHandle, FstVar> handle_to_var;
std::map<std::string, fstHandle> name_to_handle;
- std::map<fstHandle, std::vector<std::pair<uint64_t, std::string>>> handle_to_data;
- std::map<fstHandle, std::map<uint64_t, size_t>> time_to_index;
- std::map<fstHandle, std::map<size_t, uint64_t>> index_to_time;
- std::vector<uint64_t> sample_times;
- size_t sample_times_ndx;
- std::map<fstHandle, std::string> current;
+ std::map<fstHandle, std::vector<std::pair<uint64_t, std::string>>> handle_to_data;
+ std::map<fstHandle, std::map<uint64_t, size_t>> time_to_index;
+ std::map<fstHandle, std::map<size_t, uint64_t>> index_to_time;
+ std::vector<uint64_t> sample_times;
+ size_t sample_times_ndx;
+ std::map<fstHandle, std::string> current;
};
YOSYS_NAMESPACE_END