SPARC: Fix a stupid mistake which was breaking the SPARC regressions.
--HG-- extra : convert_revision : 34a11df0d467ea249211dd3aba86bc8d2aea45de
This commit is contained in:
parent
dd277e0d8f
commit
032a30f345
1 changed files with 8 additions and 8 deletions
|
@ -241,25 +241,25 @@ class SimpleThread : public ThreadState
|
|||
|
||||
FloatReg readFloatReg(int reg_idx, int width)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
return regs.readFloatReg(flatIndex, width);
|
||||
}
|
||||
|
||||
FloatReg readFloatReg(int reg_idx)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
return regs.readFloatReg(flatIndex);
|
||||
}
|
||||
|
||||
FloatRegBits readFloatRegBits(int reg_idx, int width)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
return regs.readFloatRegBits(flatIndex, width);
|
||||
}
|
||||
|
||||
FloatRegBits readFloatRegBits(int reg_idx)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
return regs.readFloatRegBits(flatIndex);
|
||||
}
|
||||
|
||||
|
@ -271,25 +271,25 @@ class SimpleThread : public ThreadState
|
|||
|
||||
void setFloatReg(int reg_idx, FloatReg val, int width)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
regs.setFloatReg(flatIndex, val, width);
|
||||
}
|
||||
|
||||
void setFloatReg(int reg_idx, FloatReg val)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
regs.setFloatReg(flatIndex, val);
|
||||
}
|
||||
|
||||
void setFloatRegBits(int reg_idx, FloatRegBits val, int width)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
regs.setFloatRegBits(flatIndex, val, width);
|
||||
}
|
||||
|
||||
void setFloatRegBits(int reg_idx, FloatRegBits val)
|
||||
{
|
||||
int flatIndex = TheISA::flattenIntIndex(getTC(), reg_idx);
|
||||
int flatIndex = TheISA::flattenFloatIndex(getTC(), reg_idx);
|
||||
regs.setFloatRegBits(flatIndex, val);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue