This change limits fault injection to general-purpose registers, instead of relying on the LLVM/Fail* bridge to only recognize the status register (EFLAGS on x86) and general-purpose registers. Since this bridge just learned to translate x86's control and segment registers, and these registers need special handling for fault injection (def/use pruning does not work here), only import register accesses from the RT_GP subset. Status register and instruction pointer injection remain functional, and import-trace now should work architecture independently. Change-Id: Id8ad2f0a9dab1861bf16ea9443c3bdfe7213d3fa
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
#ifndef __REGISTER_IMPORTER_H__
|
|
#define __REGISTER_IMPORTER_H__
|
|
|
|
#include <set>
|
|
#include "util/CommandLine.hpp"
|
|
#include "Importer.hpp"
|
|
|
|
#include "util/llvmdisassembler/LLVMDisassembler.hpp"
|
|
|
|
|
|
class RegisterImporter : public Importer {
|
|
llvm::OwningPtr<llvm::object::Binary> binary;
|
|
llvm::OwningPtr<fail::LLVMDisassembler> disas;
|
|
|
|
bool addRegisterTrace(fail::simtime_t curtime, instruction_count_t instr,
|
|
Trace_Event &ev,
|
|
const fail::LLVMtoFailTranslator::reginfo_t &info,
|
|
char access_type);
|
|
|
|
fail::CommandLine::option_handle NO_GP, FLAGS, IP, NO_SPLIT;
|
|
bool do_gp, do_flags, do_ip, do_split_registers;
|
|
|
|
std::set<unsigned> m_register_ids;
|
|
unsigned m_ip_register_id;
|
|
|
|
public:
|
|
RegisterImporter() : Importer(), do_gp(true), do_flags(false), do_ip(false),
|
|
do_split_registers(true) {}
|
|
/**
|
|
* Callback function that can be used to add command line options
|
|
* to the cmd interface
|
|
*/
|
|
virtual bool cb_commandline_init();
|
|
|
|
protected:
|
|
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
|