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

Unified Diff: runtime/vm/assembler_arm.h

Issue 730343005: Write-barrier verification on ARM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years 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_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_arm.h
===================================================================
--- runtime/vm/assembler_arm.h (revision 42190)
+++ runtime/vm/assembler_arm.h (working copy)
@@ -197,6 +197,7 @@
// Memory operand addressing mode
enum Mode {
+ kModeMask = (8|4|1) << 21,
// bit encoding P U W
Offset = (8|4|0) << 21, // offset (w/o writeback to base)
PreIndex = (8|4|1) << 21, // pre-indexed addressing with writeback
@@ -263,6 +264,18 @@
int64_t offset);
private:
+ Register rn() const {
+ return Instr::At(reinterpret_cast<uword>(&encoding_))->RnField();
+ }
+
+ Register rm() const {
+ return ((kind() == IndexRegister) || (kind() == ScaledIndexRegister)) ?
+ Instr::At(reinterpret_cast<uword>(&encoding_))->RmField() :
+ kNoRegister;
+ }
+
+ Mode mode() const { return static_cast<Mode>(encoding() & kModeMask); }
+
uint32_t encoding() const { return encoding_; }
// Encoding for addressing mode 3.
@@ -333,10 +346,13 @@
return FLAG_use_far_branches || use_far_branches_;
}
+#if defined(TESTING) || defined(DEBUG)
+ // Used in unit tests and to ensure predictable verification code size in
+ // FlowGraphCompiler::EmitEdgeCounter.
void set_use_far_branches(bool b) {
- ASSERT(buffer_.Size() == 0);
use_far_branches_ = b;
}
+#endif // TESTING || DEBUG
void FinalizeInstructions(const MemoryRegion& region) {
buffer_.FinalizeInstructions(region);
@@ -678,13 +694,17 @@
Register end,
Register value_even,
Register value_odd);
- // Like above, for the range [begin, begin+count*kWordSize), unrolled.
+ // Like above, for the range [base+begin_offset, base+end_offset), unrolled.
void InitializeFieldsNoBarrierUnrolled(Register object,
- Register begin,
- intptr_t count,
+ Register base,
+ intptr_t begin_offset,
+ intptr_t end_offset,
Register value_even,
Register value_odd);
+ // Stores a Smi value into a heap object field that always contains a Smi.
+ void StoreIntoSmiField(const Address& dest, Register value);
+
void LoadClassId(Register result, Register object, Condition cond = AL);
void LoadClassById(Register result, Register class_id);
void LoadClass(Register result, Register object, Register scratch);
@@ -1048,6 +1068,24 @@
Register value,
Label* no_update);
+ // Helpers for write-barrier verification.
+
+ // Returns VerifiedMemory::offset() as an Operand.
+ Operand GetVerifiedMemoryShadow();
+ // Writes value to [base + offset] and also its shadow location, if enabled.
+ void WriteShadowedField(Register base,
+ intptr_t offset,
+ Register value,
+ Condition cond = AL);
+ void WriteShadowedFieldPair(Register base,
+ intptr_t offset,
+ Register value_even,
+ Register value_odd,
+ Condition cond = AL);
+ // Writes new_value to address and its shadow location, if enabled, after
+ // verifying that its old value matches its shadow.
+ void VerifiedWrite(const Address& address, Register new_value);
+
DISALLOW_ALLOCATION();
DISALLOW_COPY_AND_ASSIGN(Assembler);
};
« no previous file with comments | « no previous file | runtime/vm/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698