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

Unified Diff: runtime/vm/assembler_ia32.h

Issue 12263010: Optimize stores to ExternalUint8Array and ExternalUint8ClampedArray in the optimizer. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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/assembler_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_ia32.h
===================================================================
--- runtime/vm/assembler_ia32.h (revision 18309)
+++ runtime/vm/assembler_ia32.h (working copy)
@@ -575,18 +575,18 @@
void LoadDoubleConstant(XmmRegister dst, double value);
void StoreIntoObject(Register object, // Object we are storing into.
- const FieldAddress& dest, // Where we are storing into.
+ const Address& dest, // Where we are storing into.
Register value); // Value we are storing.
void StoreIntoObjectNoBarrier(Register object,
- const FieldAddress& dest,
+ const Address& dest,
Register value);
void StoreIntoObjectNoBarrier(Register object,
- const FieldAddress& dest,
+ const Address& dest,
const Object& value);
void TraceStoreIntoObject(Register object,
- const FieldAddress& dest,
+ const Address& dest,
Register value);
void DoubleNegate(XmmRegister d);
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698