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

Side by Side Diff: src/mips64/interface-descriptors-mips64.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 | « src/mips/lithium-mips.cc ('k') | src/mips64/lithium-codegen-mips64.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_MIPS64 7 #if V8_TARGET_ARCH_MIPS64
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 a2; } 49 const Register MathPowTaggedDescriptor::exponent() { return a2; }
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 a0; } 57 const Register GrowArrayElementsDescriptor::ObjectRegister() { return a0; }
58 const Register GrowArrayElementsDescriptor::KeyRegister() { return a3; } 58 const Register GrowArrayElementsDescriptor::KeyRegister() { return a3; }
59 const Register GrowArrayElementsDescriptor::CapacityRegister() { return a2; }
60 59
61 60
62 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 61 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
63 Register registers[] = {cp, a2}; 62 Register registers[] = {cp, a2};
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, a1}; 68 Register registers[] = {cp, a1};
(...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_MIPS64 389 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/mips64/lithium-codegen-mips64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698