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

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

Issue 1124093008: X87: 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/x87/lithium-codegen-x87.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_X87 7 #if V8_TARGET_ARCH_X87
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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; } 59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return eax; }
60 const Register GrowArrayElementsDescriptor::KeyRegister() { return ebx; } 60 const Register GrowArrayElementsDescriptor::KeyRegister() { return ebx; }
61 const Register GrowArrayElementsDescriptor::CapacityRegister() { return ecx; }
62 61
63 62
64 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 63 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
65 Register registers[] = {esi, ebx}; 64 Register registers[] = {esi, ebx};
66 data->Initialize(arraysize(registers), registers, NULL); 65 data->Initialize(arraysize(registers), registers, NULL);
67 } 66 }
68 67
69 68
70 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) { 69 void FastNewContextDescriptor::Initialize(CallInterfaceDescriptorData* data) {
71 Register registers[] = {esi, edi}; 70 Register registers[] = {esi, edi};
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 Representation::Tagged(), // call_data 366 Representation::Tagged(), // call_data
368 Representation::Tagged(), // holder 367 Representation::Tagged(), // holder
369 Representation::External(), // api_function_address 368 Representation::External(), // api_function_address
370 }; 369 };
371 data->Initialize(arraysize(registers), registers, representations); 370 data->Initialize(arraysize(registers), registers, representations);
372 } 371 }
373 } 372 }
374 } // namespace v8::internal 373 } // namespace v8::internal
375 374
376 #endif // V8_TARGET_ARCH_X87 375 #endif // V8_TARGET_ARCH_X87
OLDNEW
« no previous file with comments | « no previous file | src/x87/lithium-codegen-x87.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698