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

Unified Diff: runtime/vm/assembler_x64.h

Issue 616873003: Use UnboxedInt32 and UnboxedUint32 representation for LoadIndexedInstr (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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
Index: runtime/vm/assembler_x64.h
diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
index 117f1e832e2b0377ac6c559caedc71bb682b567a..1e5bd04597ebc875d3c75f58f9b0c01abeb54d82 100644
--- a/runtime/vm/assembler_x64.h
+++ b/runtime/vm/assembler_x64.h
@@ -478,6 +478,8 @@ class Assembler : public ValueObject {
void comisd(XmmRegister a, XmmRegister b);
void cvtsi2sd(XmmRegister a, Register b);
+ // Only looks at first 32-bits of b.
+ void cvtsi2sd32(XmmRegister a, Register b);
Vyacheslav Egorov (Google) 2014/10/09 19:08:58 I'd think that ideally this instructions would use
Cutch 2014/10/09 20:48:22 I had the same thought after Zach's suggestion. Do
void cvttsd2siq(Register dst, XmmRegister src);
void cvtss2sd(XmmRegister dst, XmmRegister src);

Powered by Google App Engine
This is Rietveld 408576698