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

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

Issue 735323002: Revert "Re-land r25392 Use a stub in crankshaft for grow store arrays." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ports. 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
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('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_ARM 7 #if V8_TARGET_ARCH_ARM
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 48
49 const Register MathPowTaggedDescriptor::exponent() { return r2; } 49 const Register MathPowTaggedDescriptor::exponent() { return r2; }
50 50
51 51
52 const Register MathPowIntegerDescriptor::exponent() { 52 const Register MathPowIntegerDescriptor::exponent() {
53 return MathPowTaggedDescriptor::exponent(); 53 return MathPowTaggedDescriptor::exponent();
54 } 54 }
55 55
56 56
57 // IC register specifications
58 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; }
59 const Register GrowArrayElementsDescriptor::KeyRegister() { return r1; }
60 const Register GrowArrayElementsDescriptor::CapacityRegister() { return r2; }
61
62
63 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 57 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
64 Register registers[] = {cp, r2}; 58 Register registers[] = {cp, r2};
65 data->Initialize(arraysize(registers), registers, NULL); 59 data->Initialize(arraysize(registers), registers, NULL);
66 } 60 }
67 61
68 62
69 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { 63 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
70 Register registers[] = {cp, r1}; 64 Register registers[] = {cp, r1};
71 data->Initialize(arraysize(registers), registers, NULL); 65 data->Initialize(arraysize(registers), registers, NULL);
72 } 66 }
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 Representation::Tagged(), // holder 326 Representation::Tagged(), // holder
333 Representation::External(), // api_function_address 327 Representation::External(), // api_function_address
334 }; 328 };
335 data->Initialize(arraysize(registers), registers, representations, 329 data->Initialize(arraysize(registers), registers, representations,
336 &default_descriptor); 330 &default_descriptor);
337 } 331 }
338 } 332 }
339 } // namespace v8::internal 333 } // namespace v8::internal
340 334
341 #endif // V8_TARGET_ARCH_ARM 335 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698