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

Unified Diff: runtime/vm/assembler_ia32.h

Issue 10536067: Generate code for store buffer updates in open-coded object field stores. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: finish addressing review comments 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/assembler_ia32.cc » ('j') | runtime/vm/assembler_ia32.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_ia32.h
diff --git a/runtime/vm/assembler_ia32.h b/runtime/vm/assembler_ia32.h
index 4b7c87558a7b4b86485dfccc0ea95a68c22cdfb2..c6a7d9a1867259ef3da2cee724dd5b82b399c4e8 100644
--- a/runtime/vm/assembler_ia32.h
+++ b/runtime/vm/assembler_ia32.h
@@ -521,6 +521,13 @@ class Assembler : public ValueObject {
const FieldAddress& dest, // Where we are storing into.
Register value); // Value we are storing.
+ void StoreIntoObjectNoBarrier(Register object,
Ivan Posva 2012/06/12 13:43:58 I don't think you need the object for these two st
cshapiro 2012/06/12 21:41:01 If you are suggesting that a minimal implementatio
+ const FieldAddress& dest,
+ Register value);
+ void StoreIntoObjectNoBarrier(Register object,
+ const FieldAddress& dest,
+ const Immediate& value);
+
void DoubleNegate(XmmRegister d);
void FloatNegate(XmmRegister f);
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | runtime/vm/assembler_ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698