I missed a couple of WithEffects, this should do it
--HG-- extra : convert_revision : 19fce78a19b27b7ccb5e3653a64b46e6d5292915
This commit is contained in:
@@ -1368,7 +1368,7 @@ class ControlRegOperand(Operand):
|
||||
bit_select = 0
|
||||
if (self.ctype == 'float' or self.ctype == 'double'):
|
||||
error(0, 'Attempt to read control register as FP')
|
||||
base = 'xc->readMiscRegOperandWithEffect(this, %s)' % self.src_reg_idx
|
||||
base = 'xc->readMiscRegOperand(this, %s)' % self.src_reg_idx
|
||||
if self.size == self.dflt_size:
|
||||
return '%s = %s;\n' % (self.base_name, base)
|
||||
else:
|
||||
@@ -1378,7 +1378,7 @@ class ControlRegOperand(Operand):
|
||||
def makeWrite(self):
|
||||
if (self.ctype == 'float' or self.ctype == 'double'):
|
||||
error(0, 'Attempt to write control register as FP')
|
||||
wb = 'xc->setMiscRegOperandWithEffect(this, %s, %s);\n' % \
|
||||
wb = 'xc->setMiscRegOperand(this, %s, %s);\n' % \
|
||||
(self.dest_reg_idx, self.base_name)
|
||||
wb += 'if (traceData) { traceData->setData(%s); }' % \
|
||||
self.base_name
|
||||
|
||||
@@ -374,7 +374,7 @@ MiscReg MiscRegFile::readReg(int miscReg, ThreadContext * tc)
|
||||
case MISCREG_QUEUE_NRES_ERROR_TAIL:
|
||||
#if FULL_SYSTEM
|
||||
case MISCREG_HPSTATE:
|
||||
return readFSRegWithEffect(miscReg, tc);
|
||||
return readFSReg(miscReg, tc);
|
||||
#else
|
||||
case MISCREG_HPSTATE:
|
||||
//HPSTATE is special because because sometimes in privilege checks for instructions
|
||||
@@ -682,7 +682,7 @@ void MiscRegFile::setReg(int miscReg,
|
||||
case MISCREG_QUEUE_NRES_ERROR_TAIL:
|
||||
#if FULL_SYSTEM
|
||||
case MISCREG_HPSTATE:
|
||||
setFSRegWithEffect(miscReg, val, tc);
|
||||
setFSReg(miscReg, val, tc);
|
||||
return;
|
||||
#else
|
||||
case MISCREG_HPSTATE:
|
||||
|
||||
@@ -257,9 +257,8 @@ namespace SparcISA
|
||||
// These need to check the int_dis field and if 0 then
|
||||
// set appropriate bit in softint and checkinterrutps on the cpu
|
||||
#if FULL_SYSTEM
|
||||
void setFSRegWithEffect(int miscReg, const MiscReg &val,
|
||||
ThreadContext *tc);
|
||||
MiscReg readFSRegWithEffect(int miscReg, ThreadContext * tc);
|
||||
void setFSReg(int miscReg, const MiscReg &val, ThreadContext *tc);
|
||||
MiscReg readFSReg(int miscReg, ThreadContext * tc);
|
||||
|
||||
// Update interrupt state on softint or pil change
|
||||
void checkSoftInt(ThreadContext *tc);
|
||||
|
||||
@@ -59,8 +59,7 @@ MiscRegFile::checkSoftInt(ThreadContext *tc)
|
||||
|
||||
|
||||
void
|
||||
MiscRegFile::setFSRegWithEffect(int miscReg, const MiscReg &val,
|
||||
ThreadContext *tc)
|
||||
MiscRegFile::setFSReg(int miscReg, const MiscReg &val, ThreadContext *tc)
|
||||
{
|
||||
int64_t time;
|
||||
switch (miscReg) {
|
||||
@@ -196,7 +195,7 @@ MiscRegFile::setFSRegWithEffect(int miscReg, const MiscReg &val,
|
||||
}
|
||||
|
||||
MiscReg
|
||||
MiscRegFile::readFSRegWithEffect(int miscReg, ThreadContext * tc)
|
||||
MiscRegFile::readFSReg(int miscReg, ThreadContext * tc)
|
||||
{
|
||||
switch (miscReg) {
|
||||
/* Privileged registers. */
|
||||
|
||||
Reference in New Issue
Block a user