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

Unified Diff: src/x64/lithium-gap-resolver-x64.cc

Issue 90643003: Experimental implementation: Exposing SIMD instructions into JavaScript Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | src/x64/lithium-x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/lithium-gap-resolver-x64.cc
diff --git a/src/x64/lithium-gap-resolver-x64.cc b/src/x64/lithium-gap-resolver-x64.cc
index 6059c50b726e7d467949d62bdc1b27b785edfc4a..20392bce14b797a9691c38a3ecf89e9a701ae5e0 100644
--- a/src/x64/lithium-gap-resolver-x64.cc
+++ b/src/x64/lithium-gap-resolver-x64.cc
@@ -244,6 +244,40 @@ void LGapResolver::EmitMove(int index) {
__ movsd(xmm0, src);
__ movsd(cgen_->ToOperand(destination), xmm0);
}
+ } else if (source->IsFloat32x4Register()) {
+ XMMRegister src = cgen_->ToFloat32x4Register(source);
+ if (destination->IsFloat32x4Register()) {
+ __ movaps(cgen_->ToFloat32x4Register(destination), src);
+ } else {
+ ASSERT(destination->IsFloat32x4StackSlot());
+ __ movups(cgen_->ToOperand(destination), src);
+ }
+ } else if (source->IsFloat32x4StackSlot()) {
+ Operand src = cgen_->ToOperand(source);
+ if (destination->IsFloat32x4Register()) {
+ __ movups(cgen_->ToFloat32x4Register(destination), src);
+ } else {
+ ASSERT(destination->IsFloat32x4StackSlot());
+ __ movups(xmm0, src);
+ __ movups(cgen_->ToOperand(destination), xmm0);
+ }
+ } else if (source->IsInt32x4Register()) {
+ XMMRegister src = cgen_->ToInt32x4Register(source);
+ if (destination->IsInt32x4Register()) {
+ __ movaps(cgen_->ToInt32x4Register(destination), src);
+ } else {
+ ASSERT(destination->IsInt32x4StackSlot());
+ __ movups(cgen_->ToOperand(destination), src);
+ }
+ } else if (source->IsInt32x4StackSlot()) {
+ Operand src = cgen_->ToOperand(source);
+ if (destination->IsInt32x4Register()) {
+ __ movups(cgen_->ToInt32x4Register(destination), src);
+ } else {
+ ASSERT(destination->IsInt32x4StackSlot());
+ __ movups(xmm0, src);
+ __ movups(cgen_->ToOperand(destination), xmm0);
+ }
} else {
UNREACHABLE();
}
@@ -285,6 +319,20 @@ void LGapResolver::EmitSwap(int index) {
__ movsd(dst, xmm0);
__ movq(src, kScratchRegister);
+ } else if ((source->IsFloat32x4StackSlot() &&
+ destination->IsFloat32x4StackSlot()) ||
+ ((source->IsInt32x4StackSlot() &&
+ destination->IsInt32x4StackSlot()))) {
+ // Swap two XMM stack slots.
+ Operand src = cgen_->ToOperand(source);
+ Operand dst = cgen_->ToOperand(destination);
+ __ movups(xmm0, src);
+ __ movq(kScratchRegister, dst);
+ __ movq(src, kScratchRegister);
+ __ movq(kScratchRegister, Operand(dst, kDoubleSize));
+ __ movq(Operand(src, kDoubleSize), kScratchRegister);
+ __ movups(dst, xmm0);
+
} else if (source->IsDoubleRegister() && destination->IsDoubleRegister()) {
// Swap two double registers.
XMMRegister source_reg = cgen_->ToDoubleRegister(source);
@@ -293,6 +341,24 @@ void LGapResolver::EmitSwap(int index) {
__ movaps(source_reg, destination_reg);
__ movaps(destination_reg, xmm0);
+ } else if (source->IsFloat32x4Register() &&
+ destination->IsFloat32x4Register()) {
+ // Swap two XMM registers.
+ XMMRegister source_reg = cgen_->ToFloat32x4Register(source);
+ XMMRegister destination_reg = cgen_->ToFloat32x4Register(destination);
+ __ movaps(xmm0, source_reg);
+ __ movaps(source_reg, destination_reg);
+ __ movaps(destination_reg, xmm0);
+
+ } else if (source->IsInt32x4Register() &&
+ destination->IsInt32x4Register()) {
+ // Swap two XMM registers.
+ XMMRegister source_reg = cgen_->ToInt32x4Register(source);
+ XMMRegister destination_reg = cgen_->ToInt32x4Register(destination);
+ __ movaps(xmm0, source_reg);
+ __ movaps(source_reg, destination_reg);
+ __ movaps(destination_reg, xmm0);
+
} else if (source->IsDoubleRegister() || destination->IsDoubleRegister()) {
// Swap a double register and a double stack slot.
ASSERT((source->IsDoubleRegister() && destination->IsDoubleStackSlot()) ||
@@ -307,6 +373,40 @@ void LGapResolver::EmitSwap(int index) {
__ movsd(other_operand, reg);
__ movaps(reg, xmm0);
+ } else if (source->IsFloat32x4Register() ||
+ destination->IsFloat32x4Register()) {
+ // Swap a xmm register and a xmm stack slot.
+ ASSERT((source->IsFloat32x4Register() &&
+ destination->IsFloat32x4StackSlot()) ||
+ (source->IsFloat32x4StackSlot() &&
+ destination->IsFloat32x4Register()));
+ XMMRegister reg = cgen_->ToFloat32x4Register(source->IsFloat32x4Register()
+ ? source
+ : destination);
+ LOperand* other = source->IsFloat32x4Register() ? destination : source;
+ ASSERT(other->IsFloat32x4StackSlot());
+ Operand other_operand = cgen_->ToOperand(other);
+ __ movups(xmm0, other_operand);
+ __ movups(other_operand, reg);
+ __ movups(reg, xmm0);
+
+ } else if (source->IsInt32x4Register() ||
+ destination->IsInt32x4Register()) {
+ // Swap a xmm register and a xmm stack slot.
+ ASSERT((source->IsInt32x4Register() &&
+ destination->IsInt32x4StackSlot()) ||
+ (source->IsInt32x4StackSlot() &&
+ destination->IsInt32x4Register()));
+ XMMRegister reg = cgen_->ToInt32x4Register(source->IsInt32x4Register()
+ ? source
+ : destination);
+ LOperand* other = source->IsInt32x4Register() ? destination : source;
+ ASSERT(other->IsInt32x4StackSlot());
+ Operand other_operand = cgen_->ToOperand(other);
+ __ movups(xmm0, other_operand);
+ __ movups(other_operand, reg);
+ __ movups(reg, xmm0);
+
} else {
// No other combinations are possible.
UNREACHABLE();
« no previous file with comments | « src/x64/lithium-codegen-x64.cc ('k') | src/x64/lithium-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698