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

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

Issue 2034773002: PPC/s390: [stubs] An easier way of defining a stub call interface descriptor. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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/ppc/interface-descriptors-ppc.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #if V8_TARGET_ARCH_S390 5 #if V8_TARGET_ARCH_S390
6 6
7 #include "src/interface-descriptors.h" 7 #include "src/interface-descriptors.h"
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 const Register MathPowTaggedDescriptor::exponent() { return r4; } 54 const Register MathPowTaggedDescriptor::exponent() { return r4; }
55 55
56 const Register MathPowIntegerDescriptor::exponent() { 56 const Register MathPowIntegerDescriptor::exponent() {
57 return MathPowTaggedDescriptor::exponent(); 57 return MathPowTaggedDescriptor::exponent();
58 } 58 }
59 59
60 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } 60 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; }
61 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } 61 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; }
62 62
63 const Register HasPropertyDescriptor::ObjectRegister() { return r2; }
64 const Register HasPropertyDescriptor::KeyRegister() { return r5; }
65
66 void FastNewClosureDescriptor::InitializePlatformSpecific( 63 void FastNewClosureDescriptor::InitializePlatformSpecific(
67 CallInterfaceDescriptorData* data) { 64 CallInterfaceDescriptorData* data) {
68 Register registers[] = {r4}; 65 Register registers[] = {r4};
69 data->InitializePlatformSpecific(arraysize(registers), registers); 66 data->InitializePlatformSpecific(arraysize(registers), registers);
70 } 67 }
71 68
72 void FastNewContextDescriptor::InitializePlatformSpecific( 69 void FastNewContextDescriptor::InitializePlatformSpecific(
73 CallInterfaceDescriptorData* data) { 70 CallInterfaceDescriptorData* data) {
74 Register registers[] = {r3}; 71 Register registers[] = {r3};
75 data->InitializePlatformSpecific(arraysize(registers), registers); 72 data->InitializePlatformSpecific(arraysize(registers), registers);
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 r3, // the JSGeneratorObject to resume 381 r3, // the JSGeneratorObject to resume
385 r4 // the resume mode (tagged) 382 r4 // the resume mode (tagged)
386 }; 383 };
387 data->InitializePlatformSpecific(arraysize(registers), registers); 384 data->InitializePlatformSpecific(arraysize(registers), registers);
388 } 385 }
389 386
390 } // namespace internal 387 } // namespace internal
391 } // namespace v8 388 } // namespace v8
392 389
393 #endif // V8_TARGET_ARCH_S390 390 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698