| Index: src/mips/macro-assembler-mips.h
|
| diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
|
| index 0d232e4a58d08694982dcb5d20cebfa0f5c03683..a9ad5cf6971bc53c5c7bd174634c440b7aff5903 100644
|
| --- a/src/mips/macro-assembler-mips.h
|
| +++ b/src/mips/macro-assembler-mips.h
|
| @@ -279,6 +279,9 @@ class MacroAssembler: public Assembler {
|
| Branch(L);
|
| }
|
|
|
| + void Load(Register dst, const MemOperand& src, Representation r);
|
| + void Store(Register src, const MemOperand& dst, Representation r);
|
| +
|
| // Load an object from the root table.
|
| void LoadRoot(Register destination,
|
| Heap::RootListIndex index);
|
| @@ -1526,6 +1529,10 @@ class MacroAssembler: public Assembler {
|
| bind(&no_memento_found);
|
| }
|
|
|
| + // Jumps to found label if a prototype map has dictionary elements.
|
| + void JumpIfDictionaryInPrototypeChain(Register object, Register scratch0,
|
| + Register scratch1, Label* found);
|
| +
|
| private:
|
| void CallCFunctionHelper(Register function,
|
| int num_reg_arguments,
|
|
|