Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: src/x64/lithium-codegen-x64.cc

Issue 11852007: Optimize the emitted instruction of random function for X64 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/x64/assembler-x64.h ('K') | « src/x64/assembler-x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/lithium-codegen-x64.cc
===================================================================
--- src/x64/lithium-codegen-x64.cc (revision 13335)
+++ src/x64/lithium-codegen-x64.cc (working copy)
@@ -3594,45 +3594,43 @@
// rbx: FixedArray of the native context's random seeds
// Load state[0].
- __ movl(rax, FieldOperand(rbx, ByteArray::kHeaderSize));
+ __ movl(rcx, FieldOperand(rbx, ByteArray::kHeaderSize));
Jakob Kummerow 2013/01/11 17:43:38 Is there a reason you're swapping usage of rax and
// If state[0] == 0, call runtime to initialize seeds.
- __ testl(rax, rax);
+ __ testl(rcx, rcx);
__ j(zero, deferred->entry());
// Load state[1].
- __ movl(rcx, FieldOperand(rbx, ByteArray::kHeaderSize + kSeedSize));
+ __ movl(rax, FieldOperand(rbx, ByteArray::kHeaderSize + kSeedSize));
// state[0] = 18273 * (state[0] & 0xFFFF) + (state[0] >> 16)
- // Only operate on the lower 32 bit of rax.
- __ movl(rdx, rax);
- __ andl(rdx, Immediate(0xFFFF));
+ // Only operate on the lower 32 bit of rcx.
+ __ movzxwl(rdx, rcx);
__ imull(rdx, rdx, Immediate(18273));
- __ shrl(rax, Immediate(16));
- __ addl(rax, rdx);
+ __ shrl(rcx, Immediate(16));
+ __ addl(rcx, rdx);
// Save state[0].
- __ movl(FieldOperand(rbx, ByteArray::kHeaderSize), rax);
+ __ movl(FieldOperand(rbx, ByteArray::kHeaderSize), rcx);
// state[1] = 36969 * (state[1] & 0xFFFF) + (state[1] >> 16)
- __ movl(rdx, rcx);
- __ andl(rdx, Immediate(0xFFFF));
+ __ movzxwl(rdx, rax);
__ imull(rdx, rdx, Immediate(36969));
- __ shrl(rcx, Immediate(16));
- __ addl(rcx, rdx);
+ __ shrl(rax, Immediate(16));
+ __ addl(rax, rdx);
// Save state[1].
- __ movl(FieldOperand(rbx, ByteArray::kHeaderSize + kSeedSize), rcx);
+ __ movl(FieldOperand(rbx, ByteArray::kHeaderSize + kSeedSize), rax);
// Random bit pattern = (state[0] << 14) + (state[1] & 0x3FFFF)
- __ shll(rax, Immediate(14));
- __ andl(rcx, Immediate(0x3FFFF));
- __ addl(rax, rcx);
+ __ shll(rcx, Immediate(14));
+ __ andl(rax, Immediate(0x3FFFF));
+ __ addl(rcx, rax);
__ bind(deferred->exit());
- // Convert 32 random bits in rax to 0.(32 random bits) in a double
+ // Convert 32 random bits in rcx to 0.(32 random bits) in a double
// by computing:
// ( 1.(20 0s)(32 random bits) x 2^20 ) - (1.0 x 2^20)).
- __ movl(rcx, Immediate(0x49800000)); // 1.0 x 2^20 as single.
- __ movd(xmm2, rcx);
- __ movd(xmm1, rax);
- __ cvtss2sd(xmm2, xmm2);
+ __ movq(rax, V8_INT64_C(0x4130000000000000),
+ RelocInfo::NONE64); // 1.0 x 2^20 as double
+ __ movq(xmm2, rax);
+ __ movd(xmm1, rcx);
__ xorps(xmm1, xmm2);
__ subsd(xmm1, xmm2);
}
« src/x64/assembler-x64.h ('K') | « src/x64/assembler-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698