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

Unified Diff: runtime/vm/deopt_instructions.h

Issue 10968059: Support for unboxed 64-bit integer bitwise operations and equality on ia32. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: addressed comments, added tests and flags Created 8 years, 3 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/deopt_instructions.h
===================================================================
--- runtime/vm/deopt_instructions.h (revision 12897)
+++ runtime/vm/deopt_instructions.h (working copy)
@@ -54,6 +54,10 @@
return xmm_registers_copy_[reg];
}
+ int64_t XmmRegisterValueAsMint(XmmRegister reg) const {
+ return (reinterpret_cast<int64_t*>(xmm_registers_copy_))[reg];
+ }
srdjan 2012/09/28 16:50:26 Sorry, actually this should be "XmmRegisterValueAs
Florian Schneider 2012/10/02 11:10:31 Done.
+
Isolate* isolate() const { return isolate_; }
intptr_t from_frame_size() const { return from_frame_size_; }
@@ -97,8 +101,10 @@
kCopyConstant,
kCopyRegister,
kCopyXmmRegister,
+ kCopyMintXmmRegister,
kCopyStackSlot,
kCopyDoubleStackSlot,
+ kCopyMintStackSlot,
kSetPcMarker,
kSetCallerFp,
kSetCallerPc,

Powered by Google App Engine
This is Rietveld 408576698