This change touches several subsystems, tools and experiments (sal, util, cmake, import-trace, generic-tracing, nanojpeg), and changes details not worth separate commits. Change-Id: Icd1d664d1be5cfc2212dbf77801c271183214d08
40 lines
1.0 KiB
C++
40 lines
1.0 KiB
C++
#ifndef __RANDOM_JUMP_IMPORTER_H__
|
|
#define __RANDOM_JUMP_IMPORTER_H__
|
|
|
|
#include <vector>
|
|
#include "util/CommandLine.hpp"
|
|
#include "Importer.hpp"
|
|
|
|
#include "util/llvmdisassembler/LLVMDisassembler.hpp"
|
|
|
|
class RandomJumpImporter : public Importer {
|
|
llvm::OwningPtr<llvm::object::Binary> binary;
|
|
llvm::OwningPtr<fail::LLVMDisassembler> disas;
|
|
|
|
fail::CommandLine::option_handle FROM, TO;
|
|
|
|
fail::MemoryMap *m_mm_from, *m_mm_to;
|
|
std::vector<fail::guest_address_t> m_jump_to_addresses;
|
|
public:
|
|
RandomJumpImporter() : m_mm_from(0), m_mm_to(0) {}
|
|
/**
|
|
* Callback function that can be used to add command line options
|
|
* to the campaign
|
|
*/
|
|
virtual bool cb_commandline_init();
|
|
|
|
virtual bool handle_ip_event(fail::simtime_t curtime, instruction_count_t instr,
|
|
Trace_Event &ev);
|
|
virtual bool handle_mem_event(fail::simtime_t curtime, instruction_count_t instr,
|
|
Trace_Event &ev) {
|
|
/* ignore on purpose */
|
|
return true;
|
|
}
|
|
|
|
virtual void open_unused_ec_intervals() {
|
|
/* empty, Memory Map has a different meaning in this importer */
|
|
}
|
|
};
|
|
|
|
#endif
|