| 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_MIPS64 | 7 #if V8_TARGET_ARCH_MIPS64 |
| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 DCHECK(!map_reg.is(scratch)); | 326 DCHECK(!map_reg.is(scratch)); |
| 327 __ LoadWeakValue(map_reg, cell, miss); | 327 __ LoadWeakValue(map_reg, cell, miss); |
| 328 if (transition->CanBeDeprecated()) { | 328 if (transition->CanBeDeprecated()) { |
| 329 __ ld(scratch, FieldMemOperand(map_reg, Map::kBitField3Offset)); | 329 __ ld(scratch, FieldMemOperand(map_reg, Map::kBitField3Offset)); |
| 330 __ And(at, scratch, Operand(Map::Deprecated::kMask)); | 330 __ And(at, scratch, Operand(Map::Deprecated::kMask)); |
| 331 __ Branch(miss, ne, at, Operand(zero_reg)); | 331 __ Branch(miss, ne, at, Operand(zero_reg)); |
| 332 } | 332 } |
| 333 } | 333 } |
| 334 | 334 |
| 335 | 335 |
| 336 void NamedStoreHandlerCompiler::GenerateConstantCheck(Register map_reg, | 336 void NamedStoreHandlerCompiler::GenerateConstantCheck(Object* constant, |
| 337 int descriptor, | |
| 338 Register value_reg, | 337 Register value_reg, |
| 339 Register scratch, | |
| 340 Label* miss_label) { | 338 Label* miss_label) { |
| 341 DCHECK(!map_reg.is(scratch)); | 339 __ li(scratch1(), handle(constant, isolate())); |
| 342 DCHECK(!map_reg.is(value_reg)); | 340 __ Branch(miss_label, ne, value_reg, Operand(scratch1())); |
| 343 DCHECK(!value_reg.is(scratch)); | |
| 344 __ LoadInstanceDescriptors(map_reg, scratch); | |
| 345 __ ld(scratch, | |
| 346 FieldMemOperand(scratch, DescriptorArray::GetValueOffset(descriptor))); | |
| 347 __ Branch(miss_label, ne, value_reg, Operand(scratch)); | |
| 348 } | 341 } |
| 349 | 342 |
| 350 | 343 |
| 351 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type, | 344 void NamedStoreHandlerCompiler::GenerateFieldTypeChecks(HeapType* field_type, |
| 352 Register value_reg, | 345 Register value_reg, |
| 353 Label* miss_label) { | 346 Label* miss_label) { |
| 354 __ JumpIfSmi(value_reg, miss_label); | 347 __ JumpIfSmi(value_reg, miss_label); |
| 355 HeapType::Iterator<Map> it = field_type->Classes(); | 348 HeapType::Iterator<Map> it = field_type->Classes(); |
| 356 if (!it.Done()) { | 349 if (!it.Done()) { |
| 357 __ ld(scratch1(), FieldMemOperand(value_reg, HeapObject::kMapOffset)); | 350 __ ld(scratch1(), FieldMemOperand(value_reg, HeapObject::kMapOffset)); |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 // Return the generated code. | 685 // Return the generated code. |
| 693 return GetCode(kind(), Code::NORMAL, name); | 686 return GetCode(kind(), Code::NORMAL, name); |
| 694 } | 687 } |
| 695 | 688 |
| 696 | 689 |
| 697 #undef __ | 690 #undef __ |
| 698 } | 691 } |
| 699 } // namespace v8::internal | 692 } // namespace v8::internal |
| 700 | 693 |
| 701 #endif // V8_TARGET_ARCH_MIPS64 | 694 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |