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

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: Created 8 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
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/deopt_instructions.h
===================================================================
--- runtime/vm/deopt_instructions.h (revision 13110)
+++ runtime/vm/deopt_instructions.h (working copy)
@@ -54,6 +54,10 @@
return xmm_registers_copy_[reg];
}
+ int64_t XmmRegisterValueAsInt64(XmmRegister reg) const {
+ return (reinterpret_cast<int64_t*>(xmm_registers_copy_))[reg];
+ }
+
Isolate* isolate() const { return isolate_; }
intptr_t from_frame_size() const { return from_frame_size_; }
@@ -97,8 +101,10 @@
kCopyConstant,
kCopyRegister,
kCopyXmmRegister,
+ kCopyInt64XmmRegister,
kCopyStackSlot,
kCopyDoubleStackSlot,
+ kCopyInt64StackSlot,
kSetPcMarker,
kSetCallerFp,
kSetCallerPc,
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698