[m5-dev] encumbered: CPU: Stop using the ArgumentReg array to get argumen...

2009-02-27 Thread Gabe Black
changeset 4270e0502e5e in /z/repo/encumbered details: http://repo.m5sim.org/encumbered?cmd=changeset;node=4270e0502e5e summary: CPU: Stop using the ArgumentReg array to get argument indexes. diffstat: 1 file changed, 5 insertions(+), 5 deletions(-) eio/alpha_exo.h | 10 +- diffs (26

Re: [m5-dev] encumbered: CPU: Stop using the ArgumentReg array to get argumen...

2009-02-27 Thread Korey Sewell
Hey Gabe, why did we make the switch from ArgumentReg array to argument names? Just wondering. On Fri, Feb 27, 2009 at 12:37 PM, Gabe Black gbl...@eecs.umich.edu wrote: changeset 4270e0502e5e in /z/repo/encumbered details: http://repo.m5sim.org/encumbered?cmd=changeset;node=4270e0502e5e

Re: [m5-dev] encumbered: CPU: Stop using the ArgumentReg array to get argumen...

2009-02-27 Thread Gabriel Michael Black
I got rid of the argument arrays because x86 doesn't always use the same registers to get a particular argument depending on if you're in a 32 bit or 64 bit binary. Since the array doesn't exist any more, I put in a substitute in the few places it had been used directly. Gabe Quoting Korey