| Index: src/mips/macro-assembler-mips.h
|
| diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
|
| index 0805bb967073ca3801113707e2936b97017c5e9b..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);
|
| @@ -293,17 +296,6 @@ class MacroAssembler: public Assembler {
|
| Heap::RootListIndex index,
|
| Condition cond, Register src1, const Operand& src2);
|
|
|
| - void LoadHeapObject(Register dst, Handle<HeapObject> object);
|
| -
|
| - void LoadObject(Register result, Handle<Object> object) {
|
| - AllowDeferredHandleDereference heap_object_check;
|
| - if (object->IsHeapObject()) {
|
| - LoadHeapObject(result, Handle<HeapObject>::cast(object));
|
| - } else {
|
| - li(result, object);
|
| - }
|
| - }
|
| -
|
| // ---------------------------------------------------------------------------
|
| // GC Support
|
|
|
| @@ -620,10 +612,7 @@ class MacroAssembler: public Assembler {
|
| inline void li(Register rd, int32_t j, LiFlags mode = OPTIMIZE_SIZE) {
|
| li(rd, Operand(j), mode);
|
| }
|
| - inline void li(Register dst, Handle<Object> value,
|
| - LiFlags mode = OPTIMIZE_SIZE) {
|
| - li(dst, Operand(value), mode);
|
| - }
|
| + void li(Register dst, Handle<Object> value, LiFlags mode = OPTIMIZE_SIZE);
|
|
|
| // Push multiple registers on the stack.
|
| // Registers are saved in numerical order, with higher numbered registers
|
| @@ -1540,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,
|
|
|