diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-03-15 15:38:14 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-03-15 15:38:14 -0500 |
commit | dc75cf121ce12500b387bee8ffe5d189d25faec1 (patch) | |
tree | 2c0c2b0c7ffbefb9f6cee3088f8c8200b49ba4bc | |
parent | 7405a3530b99f57b1d4a427a47e285afe5dd6e7f (diff) | |
download | gem5-dc75cf121ce12500b387bee8ffe5d189d25faec1.tar.xz |
Don't access init_regs directly. This does not affect newmem; Steve already changed this in newmem.
--HG--
extra : convert_revision : 19b1ed0bb2c8bcde72843e62f73635e84adf95b5
-rw-r--r-- | sim/process.cc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sim/process.cc b/sim/process.cc index df76e4ddc..a84a4f7ba 100644 --- a/sim/process.cc +++ b/sim/process.cc @@ -148,6 +148,7 @@ Process::registerExecContext(ExecContext *xc) if (myIndex == 0) { // copy process's initial regs struct + // Hack for now to copy init regs xc->copyArchRegs(cpuXC->getProxy()); } @@ -343,12 +344,12 @@ LiveProcess::LiveProcess(const string &nm, ObjectFile *objFile, copyStringArray(argv, argv_array_base, arg_data_base, memory); copyStringArray(envp, envp_array_base, env_data_base, memory); - init_regs->intRegFile[ArgumentReg0] = argc; - init_regs->intRegFile[ArgumentReg1] = argv_array_base; - init_regs->intRegFile[StackPointerReg] = stack_min; - init_regs->intRegFile[GlobalPointerReg] = objFile->globalPointer(); - init_regs->pc = prog_entry; - init_regs->npc = prog_entry + sizeof(MachInst); + cpuXC->setIntReg(ArgumentReg0, argc); + cpuXC->setIntReg(ArgumentReg1, argv_array_base); + cpuXC->setIntReg(StackPointerReg, stack_min); + cpuXC->setIntReg(GlobalPointerReg, objFile->globalPointer()); + cpuXC->setPC(prog_entry); + cpuXC->setNextPC(prog_entry + sizeof(MachInst)); } void |