- Import timing information from traces that were recorded with timing.
- Allow restricting import to a memory map ("vertical" restriction).
- Proper fault-space right-margin handling.
- Cleanups, data-type usage, etc.
Change-Id: I7a49e8e9e49894c458e884bfc234f36b9ba8b130
19 lines
420 B
C++
19 lines
420 B
C++
#ifndef __BASIC_IMPORTER_H__
|
|
#define __BASIC_IMPORTER_H__
|
|
|
|
#include "Importer.hpp"
|
|
#include "util/CommandLine.hpp"
|
|
|
|
class BasicImporter : public Importer {
|
|
public:
|
|
virtual bool create_database();
|
|
bool add_trace_event(instruction_count_t begin,
|
|
instruction_count_t end,
|
|
fail::simtime_t time_begin,
|
|
fail::simtime_t time_end,
|
|
const Trace_Event &event,
|
|
bool is_fake = false);
|
|
};
|
|
|
|
#endif
|