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

Unified Diff: runtime/vm/assembler_x64.cc

Issue 10546035: Intrinsify some ByteArray methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | runtime/vm/intrinsifier.h » ('j') | runtime/vm/intrinsifier_ia32.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_x64.cc
diff --git a/runtime/vm/assembler_x64.cc b/runtime/vm/assembler_x64.cc
index 05b73f1ff944e608b62a7312f52dcfee9b70e13e..fd8f2189faa2c75469039e5f408878c0f773f455 100644
--- a/runtime/vm/assembler_x64.cc
+++ b/runtime/vm/assembler_x64.cc
@@ -323,8 +323,12 @@ void Assembler::movq(const Address& dst, const Immediate& imm) {
}
+// MOVSXD
srdjan 2012/06/06 23:30:00 Weird comment, remove?
cshapiro 2012/06/06 23:43:07 I will remove it. The curious thing about this in
void Assembler::movsxl(Register dst, const Address& src) {
- UNIMPLEMENTED();
+ AssemblerBuffer::EnsureCapacity ensured(&buffer_);
+ EmitOperandREX(dst, src, REX_W);
+ EmitUint8(0x63);
+ EmitOperand(dst & 7, src);
}
« no previous file with comments | « no previous file | runtime/vm/intrinsifier.h » ('j') | runtime/vm/intrinsifier_ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698