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

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

Issue 368263003: Use a stub in crankshaft for grow store arrays. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase. Created 6 years, 1 month 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
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/interface-descriptors.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 50
51 const Register MathPowTaggedDescriptor::exponent() { return eax; } 51 const Register MathPowTaggedDescriptor::exponent() { return eax; }
52 52
53 53
54 const Register MathPowIntegerDescriptor::exponent() { 54 const Register MathPowIntegerDescriptor::exponent() {
55 return MathPowTaggedDescriptor::exponent(); 55 return MathPowTaggedDescriptor::exponent();
56 } 56 }
57 57
58 58
59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return eax; }
60 const Register GrowArrayElementsDescriptor::KeyRegister() { return ebx; }
61 const Register GrowArrayElementsDescriptor::CapacityRegister() { return ecx; }
62
63
59 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 64 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
60 Register registers[] = {esi, ebx}; 65 Register registers[] = {esi, ebx};
61 data->Initialize(arraysize(registers), registers, NULL); 66 data->Initialize(arraysize(registers), registers, NULL);
62 } 67 }
63 68
64 69
65 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { 70 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
66 Register registers[] = {esi, edi}; 71 Register registers[] = {esi, edi};
67 data->Initialize(arraysize(registers), registers, NULL); 72 data->Initialize(arraysize(registers), registers, NULL);
68 } 73 }
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 Representation::Tagged(), // call_data 312 Representation::Tagged(), // call_data
308 Representation::Tagged(), // holder 313 Representation::Tagged(), // holder
309 Representation::External(), // api_function_address 314 Representation::External(), // api_function_address
310 }; 315 };
311 data->Initialize(arraysize(registers), registers, representations); 316 data->Initialize(arraysize(registers), registers, representations);
312 } 317 }
313 } 318 }
314 } // namespace v8::internal 319 } // namespace v8::internal
315 320
316 #endif // V8_TARGET_ARCH_IA32 321 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/interface-descriptors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698