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

Unified Diff: runtime/vm/assembler_x64.h

Issue 10581049: - Implement the filtering store barrier on x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
Index: runtime/vm/assembler_x64.h
===================================================================
--- runtime/vm/assembler_x64.h (revision 8921)
+++ runtime/vm/assembler_x64.h (working copy)
@@ -517,6 +517,13 @@
const FieldAddress& dest, // Where we are storing into.
Register value); // Value we are storing.
+ void StoreIntoObjectNoBarrier(Register object,
+ const FieldAddress& dest,
+ Register value);
+ void StoreIntoObjectNoBarrier(Register object,
+ const FieldAddress& dest,
+ const Object& value);
siva 2012/06/20 23:33:28 This method doesn't seem to be implemented in the
Ivan Posva 2012/06/20 23:48:01 I am waiting for a use of this and then we can imp
+
void DoubleNegate(XmmRegister d);
void FloatNegate(XmmRegister f);
@@ -622,6 +629,8 @@
void EmitGenericShift(bool wide, int rm, Register reg, const Immediate& imm);
void EmitGenericShift(bool wide, int rm, Register operand, Register shifter);
+ void StoreIntoObjectFilter(Register object, Register value, Label* no_update);
+
DISALLOW_ALLOCATION();
DISALLOW_COPY_AND_ASSIGN(Assembler);
};

Powered by Google App Engine
This is Rietveld 408576698