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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
8 | 8 |
9 #include "src/codegen.h" | 9 #include "src/codegen.h" |
10 #include "src/ic-inl.h" | 10 #include "src/ic-inl.h" |
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1032 const Register KeyedStoreIC::NameRegister() { | 1032 const Register KeyedStoreIC::NameRegister() { |
1033 return StoreIC::NameRegister(); | 1033 return StoreIC::NameRegister(); |
1034 } | 1034 } |
1035 | 1035 |
1036 | 1036 |
1037 const Register KeyedStoreIC::ValueRegister() { | 1037 const Register KeyedStoreIC::ValueRegister() { |
1038 return StoreIC::ValueRegister(); | 1038 return StoreIC::ValueRegister(); |
1039 } | 1039 } |
1040 | 1040 |
1041 | 1041 |
| 1042 const Register KeyedStoreIC::MapRegister() { |
| 1043 return ebx; |
| 1044 } |
| 1045 |
| 1046 |
1042 void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) { | 1047 void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) { |
1043 // Return address is on the stack. | 1048 // Return address is on the stack. |
1044 LoadIC_PushArgs(masm); | 1049 LoadIC_PushArgs(masm); |
1045 | 1050 |
1046 // Perform tail call to the entry. | 1051 // Perform tail call to the entry. |
1047 __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1); | 1052 __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1); |
1048 } | 1053 } |
1049 | 1054 |
1050 | 1055 |
1051 void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { | 1056 void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1246 Condition cc = (check == ENABLE_INLINED_SMI_CHECK) | 1251 Condition cc = (check == ENABLE_INLINED_SMI_CHECK) |
1247 ? (*jmp_address == Assembler::kJncShortOpcode ? not_zero : zero) | 1252 ? (*jmp_address == Assembler::kJncShortOpcode ? not_zero : zero) |
1248 : (*jmp_address == Assembler::kJnzShortOpcode ? not_carry : carry); | 1253 : (*jmp_address == Assembler::kJnzShortOpcode ? not_carry : carry); |
1249 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); | 1254 *jmp_address = static_cast<byte>(Assembler::kJccShortPrefix | cc); |
1250 } | 1255 } |
1251 | 1256 |
1252 | 1257 |
1253 } } // namespace v8::internal | 1258 } } // namespace v8::internal |
1254 | 1259 |
1255 #endif // V8_TARGET_ARCH_IA32 | 1260 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |