Re: [m5-dev] [PATCH] fix SPARC udivcc instruction

2009-09-16 Thread nathan binkert
This looks pretty obviously correct to me. I'll add it to my patch queue and make sure that it doesn't break anything. Nate On Mon, Sep 14, 2009 at 10:14 PM, Vince Weaver vi...@csl.cornell.edu wrote: Hello the SPARC udivcc instruction was attempting to read bits 63:32 of a uint32_t, which

Re: [m5-dev] [PATCH] fix SPARC udivcc instruction

2009-09-16 Thread Gabe Black
I've got all of Vince's patches in except I think the loop instruction one. Gabe nathan binkert wrote: This looks pretty obviously correct to me. I'll add it to my patch queue and make sure that it doesn't break anything. Nate On Mon, Sep 14, 2009 at 10:14 PM, Vince Weaver

[m5-dev] [PATCH] fix SPARC udivcc instruction

2009-09-14 Thread Vince Weaver
Hello the SPARC udivcc instruction was attempting to read bits 63:32 of a uint32_t, which didn't work very well. The below patch changes the value to uint64_t which fixes my test case. Vince diff -r 3b2d7fdff6b1 src/arch/sparc/isa/decoder.isa --- a/src/arch/sparc/isa/decoder.isaFri Sep 11