| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_MIPS | 7 #if V8_TARGET_ARCH_MIPS |
| 8 | 8 |
| 9 #include "src/ic/call-optimization.h" | 9 #include "src/ic/call-optimization.h" |
| 10 #include "src/ic/handler-compiler.h" | 10 #include "src/ic/handler-compiler.h" |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 DCHECK(!map_reg.is(scratch)); | 325 DCHECK(!map_reg.is(scratch)); |
| 326 __ LoadWeakValue(map_reg, cell, miss); | 326 __ LoadWeakValue(map_reg, cell, miss); |
| 327 if (transition->CanBeDeprecated()) { | 327 if (transition->CanBeDeprecated()) { |
| 328 __ lw(scratch, FieldMemOperand(map_reg, Map::kBitField3Offset)); | 328 __ lw(scratch, FieldMemOperand(map_reg, Map::kBitField3Offset)); |
| 329 __ And(at, scratch, Operand(Map::Deprecated::kMask)); | 329 __ And(at, scratch, Operand(Map::Deprecated::kMask)); |
| 330 __ Branch(miss, ne, at, Operand(zero_reg)); | 330 __ Branch(miss, ne, at, Operand(zero_reg)); |
| 331 } | 331 } |
| 332 } | 332 } |
| 333 | 333 |
| 334 | 334 |
| 335 void NamedStoreHandlerCompiler::GenerateConstantCheck(Register map_reg, | 335 void NamedStoreHandlerCompiler::GenerateConstantCheck(Object* constant, |
| 336 int descriptor, | |
| 337 Register value_reg, | 336 Register value_reg, |
| 338 Register scratch, | |
| 339 Label* miss_label) { | 337 Label* miss_label) { |
| 340 DCHECK(!map_reg.is(scratch)); | 338 __ li(scratch1(), handle(constant, isolate())); |
| 341 DCHECK(!map_reg.is(value_reg)); | 339 __ Branch(miss_label, ne, value_reg, Operand(scratch1())); |
| 342 DCHECK(!value_reg.is(scratch)); | |
| 343 __ LoadInstanceDescriptors(map_reg, scratch); | |
| 344 __ lw(scratch, | |
| 345 FieldMemOperand(scratch, DescriptorArray::GetValueOffset(descriptor))); | |
| 346 __ Branch(miss_label, ne, value_reg, Operand(scratch)); | |
| 347 } | 340 } |
| 348 | 341 |
| 349 | 342 |
| 350 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type, | 343 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type, |
| 351 Register value_reg, | 344 Register value_reg, |
| 352 Label* miss_label) { | 345 Label* miss_label) { |
| 353 __ JumpIfSmi(value_reg, miss_label); | 346 __ JumpIfSmi(value_reg, miss_label); |
| 354 HeapType::Iterator<Map> it = field_type->Classes(); | 347 HeapType::Iterator<Map> it = field_type->Classes(); |
| 355 if (!it.Done()) { | 348 if (!it.Done()) { |
| 356 __ lw(scratch1(), FieldMemOperand(value_reg, HeapObject::kMapOffset)); | 349 __ lw(scratch1(), FieldMemOperand(value_reg, HeapObject::kMapOffset)); |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 // Return the generated code. | 684 // Return the generated code. |
| 692 return GetCode(kind(), Code::NORMAL, name); | 685 return GetCode(kind(), Code::NORMAL, name); |
| 693 } | 686 } |
| 694 | 687 |
| 695 | 688 |
| 696 #undef __ | 689 #undef __ |
| 697 } | 690 } |
| 698 } // namespace v8::internal | 691 } // namespace v8::internal |
| 699 | 692 |
| 700 #endif // V8_TARGET_ARCH_MIPS | 693 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |