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

Side by Side Diff: src/arm64/interface-descriptors-arm64.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 to tip of tree. 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
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_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/interface-descriptors.h" 9 #include "src/interface-descriptors.h"
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 56
57 const Register MathPowTaggedDescriptor::exponent() { return x11; } 57 const Register MathPowTaggedDescriptor::exponent() { return x11; }
58 58
59 59
60 const Register MathPowIntegerDescriptor::exponent() { return x12; } 60 const Register MathPowIntegerDescriptor::exponent() { return x12; }
61 61
62 62
63 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; } 63 const Register GrowArrayElementsDescriptor::ObjectRegister() { return x0; }
64 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; } 64 const Register GrowArrayElementsDescriptor::KeyRegister() { return x3; }
65 const Register GrowArrayElementsDescriptor::CapacityRegister() { return x2; }
66 65
67 66
68 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) { 67 void FastNewClosureDescriptor::Initialize(CallInterfaceDescriptorData* data) {
69 // cp: context 68 // cp: context
70 // x2: function info 69 // x2: function info
71 Register registers[] = {cp, x2}; 70 Register registers[] = {cp, x2};
72 data->Initialize(arraysize(registers), registers, NULL); 71 data->Initialize(arraysize(registers), registers, NULL);
73 } 72 }
74 73
75 74
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 Representation::Tagged(), // holder 440 Representation::Tagged(), // holder
442 Representation::External(), // api_function_address 441 Representation::External(), // api_function_address
443 }; 442 };
444 data->Initialize(arraysize(registers), registers, representations, 443 data->Initialize(arraysize(registers), registers, representations,
445 &default_descriptor); 444 &default_descriptor);
446 } 445 }
447 } 446 }
448 } // namespace v8::internal 447 } // namespace v8::internal
449 448
450 #endif // V8_TARGET_ARCH_ARM64 449 #endif // V8_TARGET_ARCH_ARM64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698