Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: src/ia32/interface-descriptors-ia32.cc

Issue 587203002: ExtendStorageStub added, it is aimed for extending objects backing store when it runs out of space. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
11 namespace v8 { 11 namespace v8 {
12 namespace internal { 12 namespace internal {
13 13
14 const Register CallInterfaceDescriptor::ContextRegister() { return esi; } 14 const Register CallInterfaceDescriptor::ContextRegister() { return esi; }
15 15
16 16
17 const Register LoadDescriptor::ReceiverRegister() { return edx; } 17 const Register LoadDescriptor::ReceiverRegister() { return edx; }
18 const Register LoadDescriptor::NameRegister() { return ecx; } 18 const Register LoadDescriptor::NameRegister() { return ecx; }
19 19
20 20
21 const Register VectorLoadICTrampolineDescriptor::SlotRegister() { return eax; } 21 const Register VectorLoadICTrampolineDescriptor::SlotRegister() { return eax; }
22 22
23 23
24 const Register VectorLoadICDescriptor::VectorRegister() { return ebx; } 24 const Register VectorLoadICDescriptor::VectorRegister() { return ebx; }
25 25
26 26
27 const Register StoreDescriptor::ReceiverRegister() { return edx; } 27 const Register StoreDescriptor::ReceiverRegister() { return edx; }
28 const Register StoreDescriptor::NameRegister() { return ecx; } 28 const Register StoreDescriptor::NameRegister() { return ecx; }
29 const Register StoreDescriptor::ValueRegister() { return eax; } 29 const Register StoreDescriptor::ValueRegister() { return eax; }
30 const Register ExtendStorageDescriptor::MapRegister() {
31 return StoreDescriptor::NameRegister();
32 }
30 33
31 34
32 const Register ElementTransitionAndStoreDescriptor::MapRegister() { 35 const Register ElementTransitionAndStoreDescriptor::MapRegister() {
33 return ebx; 36 return ebx;
34 } 37 }
35 38
36 39
37 const Register InstanceofDescriptor::left() { return eax; } 40 const Register InstanceofDescriptor::left() { return eax; }
38 const Register InstanceofDescriptor::right() { return edx; } 41 const Register InstanceofDescriptor::right() { return edx; }
39 42
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 Representation::Tagged(), // call_data 298 Representation::Tagged(), // call_data
296 Representation::Tagged(), // holder 299 Representation::Tagged(), // holder
297 Representation::External(), // api_function_address 300 Representation::External(), // api_function_address
298 }; 301 };
299 data->Initialize(arraysize(registers), registers, representations); 302 data->Initialize(arraysize(registers), registers, representations);
300 } 303 }
301 } 304 }
302 } // namespace v8::internal 305 } // namespace v8::internal
303 306
304 #endif // V8_TARGET_ARCH_IA32 307 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« src/hydrogen.cc ('K') | « src/hydrogen.cc ('k') | src/ic/arm/handler-compiler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698