36f43ff6a5
configs/common/FSConfig.py: Use binaries we've compiled instead of the ones that come with Legion src/arch/alpha/interrupts.hh: get rid of post(int int_type) and add a get_vec function that gets the interrupt vector for an interrupt number src/arch/sparc/asi.cc: Add AsiIsInterrupt() to AsiIsMmu() src/arch/sparc/faults.cc: src/arch/sparc/faults.hh: Add InterruptVector type src/arch/sparc/interrupts.hh: rework interrupts. They are no longer cleared when created... A I/O or ASI read/write needs to happen before they are cleared src/arch/sparc/isa_traits.hh: Add the "interrupt" trap types to isa traits src/arch/sparc/miscregfile.cc: add names for all the misc registers and possible post an interrupt when TL is changed. src/arch/sparc/miscregfile.hh: Add a helper function to post an interrupt when pil < some set softint src/arch/sparc/regfile.cc: src/arch/sparc/regfile.hh: InterruptLevel shouldn't really live here, moved to interrupt.hh src/arch/sparc/tlb.cc: Add interrupt ASIs to TLB src/arch/sparc/ua2005.cc: Add checkSoftInt to check if a softint needs to be posted Check that a tickCompare isn't scheduled before scheduling one Post and clear interrupts on queue writes and what not src/base/bitfield.hh: Add an helper function to return the msb that is set src/cpu/base.cc: src/cpu/base.hh: get rid of post_interrupt(type) since it's no longer needed.. Add a way to see what interrupts are pending src/cpu/intr_control.cc: src/cpu/intr_control.hh: src/dev/alpha/tsunami_cchip.cc: src/python/m5/objects/IntrControl.py: Make IntrControl have a system pointer rather than using a cpu pointer to get one src/dev/sparc/SConscript: add iob to SConsscrip tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-atomic-dual/config.ini: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-atomic-dual/config.out: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-atomic/config.ini: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-atomic/config.out: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-timing-dual/config.ini: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-timing-dual/config.out: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-timing/config.ini: tests/quick/10.linux-boot/ref/alpha/linux/tsunami-simple-timing/config.out: tests/quick/80.netperf-stream/ref/alpha/linux/twosys-tsunami-simple-atomic/config.ini: tests/quick/80.netperf-stream/ref/alpha/linux/twosys-tsunami-simple-atomic/config.out: update config.ini/out for intrcntrl not having a cpu pointer anymore --HG-- extra : convert_revision : 38614f6b9ffc8f3c93949a94ff04b7d2987168dd
421 lines
14 KiB
C++
421 lines
14 KiB
C++
/*
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met: redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer;
|
|
* redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution;
|
|
* neither the name of the copyright holders nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* Authors: Gabe Black
|
|
* Ali Saidi
|
|
*/
|
|
|
|
#include "arch/sparc/regfile.hh"
|
|
#include "cpu/thread_context.hh"
|
|
|
|
class Checkpoint;
|
|
|
|
using namespace SparcISA;
|
|
using namespace std;
|
|
|
|
//RegFile class methods
|
|
Addr RegFile::readPC()
|
|
{
|
|
return pc;
|
|
}
|
|
|
|
void RegFile::setPC(Addr val)
|
|
{
|
|
pc = val;
|
|
}
|
|
|
|
Addr RegFile::readNextPC()
|
|
{
|
|
return npc;
|
|
}
|
|
|
|
void RegFile::setNextPC(Addr val)
|
|
{
|
|
npc = val;
|
|
}
|
|
|
|
Addr RegFile::readNextNPC()
|
|
{
|
|
return nnpc;
|
|
}
|
|
|
|
void RegFile::setNextNPC(Addr val)
|
|
{
|
|
nnpc = val;
|
|
}
|
|
|
|
void RegFile::clear()
|
|
{
|
|
floatRegFile.clear();
|
|
intRegFile.clear();
|
|
miscRegFile.clear();
|
|
}
|
|
|
|
MiscReg RegFile::readMiscReg(int miscReg)
|
|
{
|
|
return miscRegFile.readReg(miscReg);
|
|
}
|
|
|
|
MiscReg RegFile::readMiscRegWithEffect(int miscReg, ThreadContext *tc)
|
|
{
|
|
return miscRegFile.readRegWithEffect(miscReg, tc);
|
|
}
|
|
|
|
void RegFile::setMiscReg(int miscReg, const MiscReg &val)
|
|
{
|
|
miscRegFile.setReg(miscReg, val);
|
|
}
|
|
|
|
void RegFile::setMiscRegWithEffect(int miscReg, const MiscReg &val,
|
|
ThreadContext * tc)
|
|
{
|
|
miscRegFile.setRegWithEffect(miscReg, val, tc);
|
|
}
|
|
|
|
FloatReg RegFile::readFloatReg(int floatReg, int width)
|
|
{
|
|
return floatRegFile.readReg(floatReg, width);
|
|
}
|
|
|
|
FloatReg RegFile::readFloatReg(int floatReg)
|
|
{
|
|
//Use the "natural" width of a single float
|
|
return floatRegFile.readReg(floatReg, FloatRegFile::SingleWidth);
|
|
}
|
|
|
|
FloatRegBits RegFile::readFloatRegBits(int floatReg, int width)
|
|
{
|
|
return floatRegFile.readRegBits(floatReg, width);
|
|
}
|
|
|
|
FloatRegBits RegFile::readFloatRegBits(int floatReg)
|
|
{
|
|
//Use the "natural" width of a single float
|
|
return floatRegFile.readRegBits(floatReg,
|
|
FloatRegFile::SingleWidth);
|
|
}
|
|
|
|
void RegFile::setFloatReg(int floatReg, const FloatReg &val, int width)
|
|
{
|
|
floatRegFile.setReg(floatReg, val, width);
|
|
}
|
|
|
|
void RegFile::setFloatReg(int floatReg, const FloatReg &val)
|
|
{
|
|
//Use the "natural" width of a single float
|
|
setFloatReg(floatReg, val, FloatRegFile::SingleWidth);
|
|
}
|
|
|
|
void RegFile::setFloatRegBits(int floatReg, const FloatRegBits &val, int width)
|
|
{
|
|
floatRegFile.setRegBits(floatReg, val, width);
|
|
}
|
|
|
|
void RegFile::setFloatRegBits(int floatReg, const FloatRegBits &val)
|
|
{
|
|
//Use the "natural" width of a single float
|
|
floatRegFile.setRegBits(floatReg, val, FloatRegFile::SingleWidth);
|
|
}
|
|
|
|
IntReg RegFile::readIntReg(int intReg)
|
|
{
|
|
return intRegFile.readReg(intReg);
|
|
}
|
|
|
|
void RegFile::setIntReg(int intReg, const IntReg &val)
|
|
{
|
|
intRegFile.setReg(intReg, val);
|
|
}
|
|
|
|
int SparcISA::flattenIntIndex(ThreadContext * tc, int reg)
|
|
{
|
|
int gl = tc->readMiscReg(MISCREG_GL);
|
|
int cwp = tc->readMiscReg(MISCREG_CWP);
|
|
//DPRINTF(Sparc, "Global Level = %d, Current Window Pointer = %d\n", gl, cwp);
|
|
int newReg;
|
|
//The total number of global registers
|
|
int numGlobals = (MaxGL + 1) * 8;
|
|
if(reg < 8)
|
|
{
|
|
//Global register
|
|
//Put it in the appropriate set of globals
|
|
newReg = reg + gl * 8;
|
|
}
|
|
else if(reg < NumIntArchRegs)
|
|
{
|
|
//Regular windowed register
|
|
//Put it in the window pointed to by cwp
|
|
newReg = numGlobals +
|
|
((reg - 8 - cwp * 16 + NWindows * 16) % (NWindows * 16));
|
|
}
|
|
else if(reg < NumIntArchRegs + NumMicroIntRegs)
|
|
{
|
|
//Microcode register
|
|
//Displace from the end of the regular registers
|
|
newReg = reg - NumIntArchRegs + numGlobals + NWindows * 16;
|
|
}
|
|
else if(reg < 2 * NumIntArchRegs + NumMicroIntRegs)
|
|
{
|
|
reg -= (NumIntArchRegs + NumMicroIntRegs);
|
|
if(reg < 8)
|
|
{
|
|
//Global register from the next window
|
|
//Put it in the appropriate set of globals
|
|
newReg = reg + gl * 8;
|
|
}
|
|
else
|
|
{
|
|
//Windowed register from the previous window
|
|
//Put it in the window before the one pointed to by cwp
|
|
newReg = numGlobals +
|
|
((reg - 8 - (cwp - 1) * 16 + NWindows * 16) % (NWindows * 16));
|
|
}
|
|
}
|
|
else if(reg < 3 * NumIntArchRegs + NumMicroIntRegs)
|
|
{
|
|
reg -= (2 * NumIntArchRegs + NumMicroIntRegs);
|
|
if(reg < 8)
|
|
{
|
|
//Global register from the previous window
|
|
//Put it in the appropriate set of globals
|
|
newReg = reg + gl * 8;
|
|
}
|
|
else
|
|
{
|
|
//Windowed register from the next window
|
|
//Put it in the window after the one pointed to by cwp
|
|
newReg = numGlobals +
|
|
((reg - 8 - (cwp + 1) * 16 + NWindows * 16) % (NWindows * 16));
|
|
}
|
|
}
|
|
else
|
|
panic("Tried to flatten invalid register index %d!\n", reg);
|
|
DPRINTF(Sparc, "Flattened register %d to %d.\n", reg, newReg);
|
|
return newReg;
|
|
//return intRegFile.flattenIndex(reg);
|
|
}
|
|
|
|
void RegFile::serialize(std::ostream &os)
|
|
{
|
|
intRegFile.serialize(os);
|
|
floatRegFile.serialize(os);
|
|
miscRegFile.serialize(os);
|
|
SERIALIZE_SCALAR(pc);
|
|
SERIALIZE_SCALAR(npc);
|
|
SERIALIZE_SCALAR(nnpc);
|
|
}
|
|
|
|
void RegFile::unserialize(Checkpoint *cp, const std::string §ion)
|
|
{
|
|
intRegFile.unserialize(cp, section);
|
|
floatRegFile.unserialize(cp, section);
|
|
miscRegFile.unserialize(cp, section);
|
|
UNSERIALIZE_SCALAR(pc);
|
|
UNSERIALIZE_SCALAR(npc);
|
|
UNSERIALIZE_SCALAR(nnpc);
|
|
}
|
|
|
|
void RegFile::changeContext(RegContextParam param, RegContextVal val)
|
|
{
|
|
switch(param)
|
|
{
|
|
case CONTEXT_CWP:
|
|
intRegFile.setCWP(val);
|
|
break;
|
|
case CONTEXT_GLOBALS:
|
|
intRegFile.setGlobals(val);
|
|
break;
|
|
default:
|
|
panic("Tried to set illegal context parameter in the SPARC regfile.\n");
|
|
}
|
|
}
|
|
|
|
void SparcISA::copyMiscRegs(ThreadContext *src, ThreadContext *dest)
|
|
{
|
|
|
|
uint8_t tl = src->readMiscReg(MISCREG_TL);
|
|
|
|
// Read all the trap level dependent registers and save them off
|
|
for(int i = 1; i <= MaxTL; i++)
|
|
{
|
|
src->setMiscReg(MISCREG_TL, i);
|
|
dest->setMiscReg(MISCREG_TL, i);
|
|
|
|
dest->setMiscReg(MISCREG_TT, src->readMiscReg(MISCREG_TT));
|
|
dest->setMiscReg(MISCREG_TPC, src->readMiscReg(MISCREG_TPC));
|
|
dest->setMiscReg(MISCREG_TNPC, src->readMiscReg(MISCREG_TNPC));
|
|
dest->setMiscReg(MISCREG_TSTATE, src->readMiscReg(MISCREG_TSTATE));
|
|
}
|
|
|
|
// Save off the traplevel
|
|
dest->setMiscReg(MISCREG_TL, tl);
|
|
src->setMiscReg(MISCREG_TL, tl);
|
|
|
|
|
|
// ASRs
|
|
// dest->setMiscReg(MISCREG_Y, src->readMiscReg(MISCREG_Y));
|
|
// dest->setMiscReg(MISCREG_CCR, src->readMiscReg(MISCREG_CCR));
|
|
dest->setMiscReg(MISCREG_ASI, src->readMiscReg(MISCREG_ASI));
|
|
dest->setMiscReg(MISCREG_TICK, src->readMiscReg(MISCREG_TICK));
|
|
dest->setMiscReg(MISCREG_FPRS, src->readMiscReg(MISCREG_FPRS));
|
|
dest->setMiscReg(MISCREG_SOFTINT, src->readMiscReg(MISCREG_SOFTINT));
|
|
dest->setMiscReg(MISCREG_TICK_CMPR, src->readMiscReg(MISCREG_TICK_CMPR));
|
|
dest->setMiscReg(MISCREG_STICK, src->readMiscReg(MISCREG_STICK));
|
|
dest->setMiscReg(MISCREG_STICK_CMPR, src->readMiscReg(MISCREG_STICK_CMPR));
|
|
|
|
// Priv Registers
|
|
dest->setMiscReg(MISCREG_TICK, src->readMiscReg(MISCREG_TICK));
|
|
dest->setMiscReg(MISCREG_TBA, src->readMiscReg(MISCREG_TBA));
|
|
dest->setMiscReg(MISCREG_PSTATE, src->readMiscReg(MISCREG_PSTATE));
|
|
dest->setMiscReg(MISCREG_PIL, src->readMiscReg(MISCREG_PIL));
|
|
dest->setMiscReg(MISCREG_CWP, src->readMiscReg(MISCREG_CWP));
|
|
// dest->setMiscReg(MISCREG_CANSAVE, src->readMiscReg(MISCREG_CANSAVE));
|
|
// dest->setMiscReg(MISCREG_CANRESTORE, src->readMiscReg(MISCREG_CANRESTORE));
|
|
// dest->setMiscReg(MISCREG_OTHERWIN, src->readMiscReg(MISCREG_OTHERWIN));
|
|
// dest->setMiscReg(MISCREG_CLEANWIN, src->readMiscReg(MISCREG_CLEANWIN));
|
|
// dest->setMiscReg(MISCREG_WSTATE, src->readMiscReg(MISCREG_WSTATE));
|
|
dest->setMiscReg(MISCREG_GL, src->readMiscReg(MISCREG_GL));
|
|
|
|
// Hyperprivilged registers
|
|
dest->setMiscReg(MISCREG_HPSTATE, src->readMiscReg(MISCREG_HPSTATE));
|
|
dest->setMiscReg(MISCREG_HINTP, src->readMiscReg(MISCREG_HINTP));
|
|
dest->setMiscReg(MISCREG_HTBA, src->readMiscReg(MISCREG_HTBA));
|
|
dest->setMiscReg(MISCREG_STRAND_STS_REG,
|
|
src->readMiscReg(MISCREG_STRAND_STS_REG));
|
|
dest->setMiscReg(MISCREG_HSTICK_CMPR,
|
|
src->readMiscReg(MISCREG_HSTICK_CMPR));
|
|
|
|
// FSR
|
|
dest->setMiscReg(MISCREG_FSR, src->readMiscReg(MISCREG_FSR));
|
|
|
|
//Strand Status Register
|
|
dest->setMiscReg(MISCREG_STRAND_STS_REG,
|
|
src->readMiscReg(MISCREG_STRAND_STS_REG));
|
|
|
|
// MMU Registers
|
|
dest->setMiscReg(MISCREG_MMU_P_CONTEXT,
|
|
src->readMiscReg(MISCREG_MMU_P_CONTEXT));
|
|
dest->setMiscReg(MISCREG_MMU_S_CONTEXT,
|
|
src->readMiscReg(MISCREG_MMU_S_CONTEXT));
|
|
dest->setMiscReg(MISCREG_MMU_PART_ID,
|
|
src->readMiscReg(MISCREG_MMU_PART_ID));
|
|
dest->setMiscReg(MISCREG_MMU_LSU_CTRL,
|
|
src->readMiscReg(MISCREG_MMU_LSU_CTRL));
|
|
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_C0_TSB_PS0,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_C0_TSB_PS0));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_C0_TSB_PS1,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_C0_TSB_PS1));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_C0_CONFIG,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_C0_CONFIG));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_CX_TSB_PS0,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_CX_TSB_PS0));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_CX_TSB_PS1,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_CX_TSB_PS1));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_CX_CONFIG,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_CX_CONFIG));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_SFSR,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_SFSR));
|
|
dest->setMiscReg(MISCREG_MMU_ITLB_TAG_ACCESS,
|
|
src->readMiscReg(MISCREG_MMU_ITLB_TAG_ACCESS));
|
|
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_C0_TSB_PS0,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_C0_TSB_PS0));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_C0_TSB_PS1,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_C0_TSB_PS1));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_C0_CONFIG,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_C0_CONFIG));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_CX_TSB_PS0,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_CX_TSB_PS0));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_CX_TSB_PS1,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_CX_TSB_PS1));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_CX_CONFIG,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_CX_CONFIG));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_SFSR,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_SFSR));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_SFAR,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_SFAR));
|
|
dest->setMiscReg(MISCREG_MMU_DTLB_TAG_ACCESS,
|
|
src->readMiscReg(MISCREG_MMU_DTLB_TAG_ACCESS));
|
|
|
|
// Scratchpad Registers
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R0,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R0));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R1,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R1));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R2,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R2));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R3,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R3));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R4,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R4));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R5,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R5));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R6,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R6));
|
|
dest->setMiscReg(MISCREG_SCRATCHPAD_R7,
|
|
src->readMiscReg(MISCREG_SCRATCHPAD_R7));
|
|
|
|
// Queue Registers
|
|
dest->setMiscReg(MISCREG_QUEUE_CPU_MONDO_HEAD,
|
|
src->readMiscReg(MISCREG_QUEUE_CPU_MONDO_HEAD));
|
|
dest->setMiscReg(MISCREG_QUEUE_CPU_MONDO_TAIL,
|
|
src->readMiscReg(MISCREG_QUEUE_CPU_MONDO_TAIL));
|
|
dest->setMiscReg(MISCREG_QUEUE_DEV_MONDO_HEAD,
|
|
src->readMiscReg(MISCREG_QUEUE_DEV_MONDO_HEAD));
|
|
dest->setMiscReg(MISCREG_QUEUE_DEV_MONDO_TAIL,
|
|
src->readMiscReg(MISCREG_QUEUE_DEV_MONDO_TAIL));
|
|
dest->setMiscReg(MISCREG_QUEUE_RES_ERROR_HEAD,
|
|
src->readMiscReg(MISCREG_QUEUE_RES_ERROR_HEAD));
|
|
dest->setMiscReg(MISCREG_QUEUE_RES_ERROR_TAIL,
|
|
src->readMiscReg(MISCREG_QUEUE_RES_ERROR_TAIL));
|
|
dest->setMiscReg(MISCREG_QUEUE_NRES_ERROR_HEAD,
|
|
src->readMiscReg(MISCREG_QUEUE_NRES_ERROR_HEAD));
|
|
dest->setMiscReg(MISCREG_QUEUE_NRES_ERROR_TAIL,
|
|
src->readMiscReg(MISCREG_QUEUE_NRES_ERROR_TAIL));
|
|
}
|
|
|
|
void SparcISA::copyRegs(ThreadContext *src, ThreadContext *dest)
|
|
{
|
|
// First loop through the integer registers.
|
|
for (int i = 0; i < TheISA::NumIntRegs; ++i) {
|
|
dest->setIntReg(i, src->readIntReg(i));
|
|
}
|
|
|
|
// Then loop through the floating point registers.
|
|
for (int i = 0; i < TheISA::NumFloatRegs; ++i) {
|
|
dest->setFloatRegBits(i, src->readFloatRegBits(i));
|
|
}
|
|
|
|
// Copy misc. registers
|
|
copyMiscRegs(src, dest);
|
|
|
|
// Lastly copy PC/NPC
|
|
dest->setPC(src->readPC());
|
|
dest->setNextPC(src->readNextPC());
|
|
dest->setNextNPC(src->readNextNPC());
|
|
}
|