Renamed x86- and ARM-specific source files (for improved readability).

Updated include paths and CMake config appropriately

Change-Id: Ida5045cde0458b3031e64b73853fe5f58ef5a9d6
This commit is contained in:
Adrian Böckenkamp
2013-04-03 16:46:51 +02:00
parent a0293b9d18
commit a328a21887
15 changed files with 16 additions and 16 deletions

View File

@ -0,0 +1,53 @@
#include "X86Architecture.hpp"
#include "../Register.hpp"
#include <sstream>
namespace fail {
X86Architecture::X86Architecture()
{
// -------------------------------------
// Add the general purpose register:
#ifdef SIM_SUPPORT_64
// -- 64 bit register --
const std::string names[] = { "RAX", "RCX", "RDX", "RBX", "RSP", "RBP", "RSI", "RDI", "R8",
"R9", "R10", "R11", "R12", "R13", "R14", "R15" };
for (unsigned short i = 0; i < 16; i++) {
Register* pReg = new Register(i, RT_GP, 64);
pReg->setName(names[i]);
m_addRegister(pReg);
}
#else
// -- 32 bit register --
const std::string names[] = { "EAX", "ECX", "EDX", "EBX", "ESP", "EBP", "ESI", "EDI" };
for (unsigned short i = 0; i < 8; i++) {
Register* pReg = new Register(i, RT_GP, 32);
pReg->setName(names[i]);
m_addRegister(pReg);
}
#endif // SIM_SUPPORT_64
// -------------------------------------
// Add the program counter (PC) register:
#ifdef SIM_SUPPORT_64
Register* pPCReg = new Register(RID_PC, RT_IP, 64);
pPCReg->setName("RIP");
#else
Register* pPCReg = new Register(RID_PC, RT_IP, 32);
pPCReg->setName("EIP");
#endif // SIM_SUPPORT_64
m_addRegister(pPCReg);
// -------------------------------------
// Add the status register (EFLAGS):
Register* pFlagReg = new Register(RID_FLAGS, RT_ST, 32);
pFlagReg->setName("EFLAGS");
m_addRegister(pFlagReg);
}
X86Architecture::~X86Architecture()
{
for (std::vector<Register*>::iterator it = m_Registers.begin(); it != m_Registers.end(); it++)
delete *it;
m_Registers.clear();
}
} // end-of-namespace: fail