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

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

Issue 1132743004: PPC: 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: 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/ppc/lithium-codegen-ppc.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC 7 #if V8_TARGET_ARCH_PPC
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 r5; } 49 const Register MathPowTaggedDescriptor::exponent() { return r5; }
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 r3; } 57 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r3; }
58 const Register GrowArrayElementsDescriptor::KeyRegister() { return r6; } 58 const Register GrowArrayElementsDescriptor::KeyRegister() { return r6; }
59 const Register GrowArrayElementsDescriptor::CapacityRegister() { return r5; }
60 59
61 60
62 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 61 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
63 Register registers[] = {cp, r5}; 62 Register registers[] = {cp, r5};
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, r4}; 68 Register registers[] = {cp, r4};
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 Representation::Tagged(), // 380 Representation::Tagged(), //
382 Representation::Tagged(), // 381 Representation::Tagged(), //
383 Representation::Tagged(), // 382 Representation::Tagged(), //
384 }; 383 };
385 data->Initialize(arraysize(registers), registers, representations); 384 data->Initialize(arraysize(registers), registers, representations);
386 } 385 }
387 } 386 }
388 } // namespace v8::internal 387 } // namespace v8::internal
389 388
390 #endif // V8_TARGET_ARCH_PPC 389 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « no previous file | src/ppc/lithium-codegen-ppc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698