| Index: src/mips64/macro-assembler-mips64.h
|
| diff --git a/src/mips64/macro-assembler-mips64.h b/src/mips64/macro-assembler-mips64.h
|
| index 1cc3f9589d61d7590dc893013daba2dd9e59a083..a9e877253aeecf8111a7ea9083f40cf0d4b4f738 100644
|
| --- a/src/mips64/macro-assembler-mips64.h
|
| +++ b/src/mips64/macro-assembler-mips64.h
|
| @@ -1110,14 +1110,12 @@ class MacroAssembler: public Assembler {
|
| Label* fail,
|
| SmiCheckType smi_check_type);
|
|
|
| - // Check if the map of an object is equal to a specified map and branch to a
|
| - // specified target if equal. Skip the smi check if not required (object is
|
| - // known to be a heap object)
|
| - void DispatchMap(Register obj,
|
| - Register scratch,
|
| - Handle<Map> map,
|
| - Handle<Code> success,
|
| - SmiCheckType smi_check_type);
|
| + // Check if the map of an object is equal to a specified weak map and branch
|
| + // to a specified target if equal. Skip the smi check if not required
|
| + // (object is known to be a heap object)
|
| + void DispatchWeakMap(Register obj, Register scratch1, Register scratch2,
|
| + Handle<WeakCell> cell, Handle<Code> success,
|
| + SmiCheckType smi_check_type);
|
|
|
| // Get value of the weak cell.
|
| void GetWeakValue(Register value, Handle<WeakCell> cell);
|
|
|