| Index: src/ic/mips64/handler-compiler-mips64.cc
|
| diff --git a/src/ic/mips64/handler-compiler-mips64.cc b/src/ic/mips64/handler-compiler-mips64.cc
|
| index d3b861bc254b6193f195dedcf7b2a9084d77c9c3..00f77825bf6bc8a9a5c1392f09b36153033fe01f 100644
|
| --- a/src/ic/mips64/handler-compiler-mips64.cc
|
| +++ b/src/ic/mips64/handler-compiler-mips64.cc
|
| @@ -371,21 +371,24 @@ void NamedStoreHandlerCompiler::GenerateConstantCheck(Register map_reg,
|
| void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type,
|
| Register value_reg,
|
| Label* miss_label) {
|
| + Register map_reg = scratch1();
|
| + Register scratch = scratch2();
|
| + DCHECK(!value_reg.is(map_reg));
|
| + DCHECK(!value_reg.is(scratch));
|
| __ JumpIfSmi(value_reg, miss_label);
|
| HeapType::Iterator<Map> it = field_type->Classes();
|
| if (!it.Done()) {
|
| - __ ld(scratch1(), FieldMemOperand(value_reg, HeapObject::kMapOffset));
|
| + __ ld(map_reg, FieldMemOperand(value_reg, HeapObject::kMapOffset));
|
| Label do_store;
|
| - Handle<Map> current;
|
| while (true) {
|
| - // Do the CompareMap() directly within the Branch() functions.
|
| - current = it.Current();
|
| + // Compare map directly within the Branch() functions.
|
| it.Advance();
|
| + __ GetWeakValue(scratch, Map::WeakCellForMap(it.Current()));
|
| if (it.Done()) {
|
| - __ Branch(miss_label, ne, scratch1(), Operand(current));
|
| + __ Branch(miss_label, ne, map_reg, Operand(scratch));
|
| break;
|
| }
|
| - __ Branch(&do_store, eq, scratch1(), Operand(current));
|
| + __ Branch(&do_store, eq, map_reg, Operand(scratch));
|
| }
|
| __ bind(&do_store);
|
| }
|
|
|