| Index: runtime/vm/assembler_mips.h
|
| diff --git a/runtime/vm/assembler_mips.h b/runtime/vm/assembler_mips.h
|
| index e11c95e3260675afddd68a5b5c044f823c8168bf..a4c379b8798d5e877806b21c737b9f9a789a9336 100644
|
| --- a/runtime/vm/assembler_mips.h
|
| +++ b/runtime/vm/assembler_mips.h
|
| @@ -1539,6 +1539,7 @@ class Assembler : public ValueObject {
|
|
|
| void LoadWordFromPoolOffset(Register rd, int32_t offset);
|
| void LoadObject(Register rd, const Object& object);
|
| + void LoadUniqueObject(Register rd, const Object& object);
|
| void LoadExternalLabel(Register rd,
|
| const ExternalLabel* label,
|
| Patchability patchable);
|
| @@ -1651,6 +1652,8 @@ class Assembler : public ValueObject {
|
|
|
| bool allow_constant_pool_;
|
|
|
| + void LoadObjectHelper(Register rd, const Object& object, bool is_unique);
|
| +
|
| void Emit(int32_t value) {
|
| // Emitting an instruction clears the delay slot state.
|
| in_delay_slot_ = false;
|
|
|