https://codereview.chromium.org/980073003/diff/20001/src/compiler/mips64/code-generator-mips64.cc
File src/compiler/mips64/code-generator-mips64.cc (right):

https://codereview.chromium.org/980073003/diff/20001/src/compiler/mips64/code-generator-mips64.cc#newcode693
src/compiler/mips64/code-generator-mips64.cc:693: __
dsrlv(i.OutputRegister(), i.OutputRegister(), at);
On 2015/03/05 17:40:48, paul.l... wrote:
You can avoid the load and use of 'at' register here by using:
__ dsll32(i.OutputRegister(), i.OutputRegister(), 0);
__ dsrl32(i.OutputRegister(), i.OutputRegister(), 0);

Thanks, I modify it. Anyway test are passed without the 2 shifts I just
added them to ensure unsigned result. Could I drop it?

https://codereview.chromium.org/980073003/

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to