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

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

Issue 1376933006: Vector ICs: Get rid of stack arguments on ia32 transitioning stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Code comments. Created 5 years, 2 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/arm64/interface-descriptors-arm64.cc » ('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/arm/interface-descriptors-arm.h" 5 #include "src/arm/interface-descriptors-arm.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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 const Register MathPowIntegerDescriptor::exponent() { 74 const Register MathPowIntegerDescriptor::exponent() {
75 return MathPowTaggedDescriptor::exponent(); 75 return MathPowTaggedDescriptor::exponent();
76 } 76 }
77 77
78 78
79 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; } 79 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r0; }
80 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; } 80 const Register GrowArrayElementsDescriptor::KeyRegister() { return r3; }
81 81
82 82
83 void VectorStoreTransitionDescriptor::InitializePlatformSpecific(
84 CallInterfaceDescriptorData* data) {
85 Register registers[] = {ReceiverRegister(), NameRegister(), ValueRegister(),
86 SlotRegister(), VectorRegister(), MapRegister()};
87 data->InitializePlatformSpecific(arraysize(registers), registers);
88 }
89
90
91 void FastNewClosureDescriptor::InitializePlatformSpecific( 83 void FastNewClosureDescriptor::InitializePlatformSpecific(
92 CallInterfaceDescriptorData* data) { 84 CallInterfaceDescriptorData* data) {
93 Register registers[] = {r2}; 85 Register registers[] = {r2};
94 data->InitializePlatformSpecific(arraysize(registers), registers); 86 data->InitializePlatformSpecific(arraysize(registers), registers);
95 } 87 }
96 88
97 89
98 void FastNewContextDescriptor::InitializePlatformSpecific( 90 void FastNewContextDescriptor::InitializePlatformSpecific(
99 CallInterfaceDescriptorData* data) { 91 CallInterfaceDescriptorData* data) {
100 Register registers[] = {r1}; 92 Register registers[] = {r1};
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 r2, // address of first argument (argv) 427 r2, // address of first argument (argv)
436 r1 // the runtime function to call 428 r1 // the runtime function to call
437 }; 429 };
438 data->InitializePlatformSpecific(arraysize(registers), registers); 430 data->InitializePlatformSpecific(arraysize(registers), registers);
439 } 431 }
440 432
441 } // namespace internal 433 } // namespace internal
442 } // namespace v8 434 } // namespace v8
443 435
444 #endif // V8_TARGET_ARCH_ARM 436 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm64/interface-descriptors-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698