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

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

Issue 1124443004: New hydrogen instruction to reduce cost of growing an array on keyed stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 5 years, 7 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
« no previous file with comments | « no previous file | src/arm/lithium-arm.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_ARM 7 #if V8_TARGET_ARCH_ARM
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 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 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } 57 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; }
58 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; } 58 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; }
59 const Register GrowArrayElementsDescriptor::CapacityRegister() { return r2; }
60 59
61 60
62 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 61 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
63 Register registers[] = {cp, r2}; 62 Register registers[] = {cp, r2};
64 data->Initialize(arraysize(registers), registers, NULL); 63 data->Initialize(arraysize(registers), registers, NULL);
65 } 64 }
66 65
67 66
68 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { 67 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
69 Register registers[] = {cp, r1}; 68 Register registers[] = {cp, r1};
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 Representation::Tagged(), // 404 Representation::Tagged(), //
406 Representation::Tagged(), // 405 Representation::Tagged(), //
407 Representation::Tagged(), // 406 Representation::Tagged(), //
408 }; 407 };
409 data->Initialize(arraysize(registers), registers, representations); 408 data->Initialize(arraysize(registers), registers, representations);
410 } 409 }
411 } 410 }
412 } // namespace v8::internal 411 } // namespace v8::internal
413 412
414 #endif // V8_TARGET_ARCH_ARM 413 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698