| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 #if V8_TARGET_ARCH_IA32 | 5 #if V8_TARGET_ARCH_IA32 |
| 6 | 6 |
| 7 #include "src/codegen.h" | 7 #include "src/codegen.h" |
| 8 #include "src/ic/ic.h" | 8 #include "src/ic/ic.h" |
| 9 #include "src/ic/ic-compiler.h" | 9 #include "src/ic/ic-compiler.h" |
| 10 #include "src/ic/stub-cache.h" | 10 #include "src/ic/stub-cache.h" |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 // change the IC from any downstream misses, a dummy vector can be used. | 558 // change the IC from any downstream misses, a dummy vector can be used. |
| 559 Handle<TypeFeedbackVector> dummy_vector = | 559 Handle<TypeFeedbackVector> dummy_vector = |
| 560 TypeFeedbackVector::DummyVector(masm->isolate()); | 560 TypeFeedbackVector::DummyVector(masm->isolate()); |
| 561 int slot = dummy_vector->GetIndex( | 561 int slot = dummy_vector->GetIndex( |
| 562 FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot)); | 562 FeedbackVectorSlot(TypeFeedbackVector::kDummyKeyedStoreICSlot)); |
| 563 __ push(Immediate(Smi::FromInt(slot))); | 563 __ push(Immediate(Smi::FromInt(slot))); |
| 564 __ push(Immediate(dummy_vector)); | 564 __ push(Immediate(dummy_vector)); |
| 565 | 565 |
| 566 Code::Flags flags = | 566 Code::Flags flags = |
| 567 Code::RemoveHolderFromFlags(Code::ComputeHandlerFlags(Code::STORE_IC)); | 567 Code::RemoveHolderFromFlags(Code::ComputeHandlerFlags(Code::STORE_IC)); |
| 568 masm->isolate()->stub_cache()->GenerateProbe(masm, Code::STORE_IC, flags, | 568 masm->isolate()->stub_cache()->GenerateProbe( |
| 569 receiver, key, edi, no_reg); | 569 masm, Code::KEYED_STORE_IC, flags, receiver, key, edi, no_reg); |
| 570 | 570 |
| 571 __ pop(VectorStoreICDescriptor::VectorRegister()); | 571 __ pop(VectorStoreICDescriptor::VectorRegister()); |
| 572 __ pop(VectorStoreICDescriptor::SlotRegister()); | 572 __ pop(VectorStoreICDescriptor::SlotRegister()); |
| 573 | 573 |
| 574 // Cache miss. | 574 // Cache miss. |
| 575 __ jmp(&miss); | 575 __ jmp(&miss); |
| 576 | 576 |
| 577 // Extra capacity case: Check if there is extra capacity to | 577 // Extra capacity case: Check if there is extra capacity to |
| 578 // perform the store and update the length. Used for adding one | 578 // perform the store and update the length. Used for adding one |
| 579 // element to the array by writing to array[array.length]. | 579 // element to the array by writing to array[array.length]. |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 Condition cc = | 852 Condition cc = |
| 853 (check == ENABLE_INLINED_SMI_CHECK) | 853 (check == ENABLE_INLINED_SMI_CHECK) |
| 854 ? (*jmp_address == Assembler::kJncShortOpcode ? not_zero : zero) | 854 ? (*jmp_address == Assembler::kJncShortOpcode ? not_zero : zero) |
| 855 : (*jmp_address == Assembler::kJnzShortOpcode ? not_carry : carry); | 855 : (*jmp_address == Assembler::kJnzShortOpcode ? not_carry : carry); |
| 856 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); | 856 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); |
| 857 } | 857 } |
| 858 } // namespace internal | 858 } // namespace internal |
| 859 } // namespace v8 | 859 } // namespace v8 |
| 860 | 860 |
| 861 #endif // V8_TARGET_ARCH_IA32 | 861 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |