"failstar" sounds like a name for a cruise liner from the 80s. As "*" isn't a desirable part of directory names, just name the whole thing "fail/", the core parts being stored in "fail/core/". Additionally fixing two build system dependency issues: - missing jobserver -> protomessages dependency - broken bochs -> fail dependency (add_custom_target DEPENDS only allows plain file dependencies ... cmake for the win) git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@956 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
50 lines
967 B
C++
50 lines
967 B
C++
#include "OVPCpu.hpp"
|
|
#include "OVPStatusRegister.hpp"
|
|
#include "OVPPlatform.hpp"
|
|
#include "SAL/Register.hpp"
|
|
#include "SAL/SALInst.hpp"
|
|
|
|
|
|
OVPPlatform ovpplatform;
|
|
|
|
// current CPU
|
|
OVPCpu *platform;
|
|
icmProcessorObject *processor;
|
|
icmProcessorP cpuP;
|
|
|
|
void OVPPlatform::setCpu(void *ovpcpu) {
|
|
platform = (OVPCpu *)ovpcpu;
|
|
processor = platform->getProcessor();
|
|
cpuP = processor->getProcessorP();
|
|
}
|
|
|
|
void OVPPlatform::setRegisterData(void * link, unsigned int val) {
|
|
icmWriteRegInfoValue(cpuP, (icmRegInfoP)link, (void *) &val);
|
|
}
|
|
|
|
unsigned int OVPPlatform::getRegisterData(void *link) {
|
|
unsigned int res;
|
|
|
|
icmReadRegInfoValue(cpuP, (icmRegInfoP)link, (void *)&res);
|
|
return res;
|
|
}
|
|
|
|
uint32_t OVPPlatform::getPC() {
|
|
return (uint32_t) processor->getPC();
|
|
}
|
|
|
|
void OVPPlatform::setPC(uint32_t val) {
|
|
processor->setPC(val);
|
|
}
|
|
|
|
|
|
uint32_t OVPPlatform::getSP() {
|
|
uint32_t res;
|
|
void *buf = &res;
|
|
|
|
icmReadRegInfoValue(cpuP, platform->getSPReg(), buf);
|
|
|
|
return res;
|
|
|
|
}
|