| Index: runtime/vm/assembler_mips.h
|
| ===================================================================
|
| --- runtime/vm/assembler_mips.h (revision 37406)
|
| +++ runtime/vm/assembler_mips.h (working copy)
|
| @@ -1189,13 +1189,23 @@
|
| const Address& dest, // Where we are storing into.
|
| Register value, // Value we are storing.
|
| bool can_value_be_smi = true);
|
| + void StoreIntoObjectOffset(Register object,
|
| + int32_t offset,
|
| + Register value,
|
| + bool can_value_be_smi = true);
|
|
|
| void StoreIntoObjectNoBarrier(Register object,
|
| const Address& dest,
|
| Register value);
|
| + void StoreIntoObjectNoBarrierOffset(Register object,
|
| + int32_t offset,
|
| + Register value);
|
| void StoreIntoObjectNoBarrier(Register object,
|
| const Address& dest,
|
| const Object& value);
|
| + void StoreIntoObjectNoBarrierOffset(Register object,
|
| + int32_t offset,
|
| + const Object& value);
|
|
|
| void CallRuntime(const RuntimeEntry& entry, intptr_t argument_count);
|
|
|
|
|