| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 __ sdc1(f4, FieldMemOperand(storage_reg, HeapNumber::kValueOffset)); | 384 __ sdc1(f4, FieldMemOperand(storage_reg, HeapNumber::kValueOffset)); |
| 385 } | 385 } |
| 386 | 386 |
| 387 // Stub never generated for objects that require access checks. | 387 // Stub never generated for objects that require access checks. |
| 388 DCHECK(!transition->is_access_check_needed()); | 388 DCHECK(!transition->is_access_check_needed()); |
| 389 | 389 |
| 390 // Perform map transition for the receiver if necessary. | 390 // Perform map transition for the receiver if necessary. |
| 391 if (details.type() == FIELD && | 391 if (details.type() == FIELD && |
| 392 Map::cast(transition->GetBackPointer())->unused_property_fields() == 0) { | 392 Map::cast(transition->GetBackPointer())->unused_property_fields() == 0) { |
| 393 // The properties must be extended before we can store the value. | 393 // The properties must be extended before we can store the value. |
| 394 __ Mov(ExtendStorageDescriptor::NameRegister(), Operand(name)); | 394 __ li(ExtendStorageDescriptor::NameRegister(), Operand(name)); |
| 395 __ Mov(ExtendStorageDescriptor::MapRegister(), Operand(transition)); | 395 __ li(ExtendStorageDescriptor::MapRegister(), Operand(transition)); |
| 396 | 396 |
| 397 ExtendStorageStub stub(isolate(), | 397 ExtendStorageStub stub(isolate(), |
| 398 FieldIndex::ForDescriptor(*transition, descriptor), | 398 FieldIndex::ForDescriptor(*transition, descriptor), |
| 399 representation); | 399 representation); |
| 400 GenerateTailCall(masm(), stub.GetCode()); | 400 GenerateTailCall(masm(), stub.GetCode()); |
| 401 return; | 401 return; |
| 402 } | 402 } |
| 403 | 403 |
| 404 // Update the map of the object. | 404 // Update the map of the object. |
| 405 __ li(scratch1, Operand(transition)); | 405 __ li(scratch1, Operand(transition)); |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 // Return the generated code. | 830 // Return the generated code. |
| 831 return GetCode(kind(), Code::NORMAL, name); | 831 return GetCode(kind(), Code::NORMAL, name); |
| 832 } | 832 } |
| 833 | 833 |
| 834 | 834 |
| 835 #undef __ | 835 #undef __ |
| 836 } | 836 } |
| 837 } // namespace v8::internal | 837 } // namespace v8::internal |
| 838 | 838 |
| 839 #endif // V8_TARGET_ARCH_MIPS64 | 839 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |