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/s390/interface-descriptors-s390.cc

Issue 2686623002: PPC/s390: [builtins] Port parameter and argument-related code stubs to CSA (Closed)
Patch Set: Created 3 years, 10 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/s390/code-stubs-s390.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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } 59 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; }
60 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } 60 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; }
61 61
62 void FastNewClosureDescriptor::InitializePlatformSpecific( 62 void FastNewClosureDescriptor::InitializePlatformSpecific(
63 CallInterfaceDescriptorData* data) { 63 CallInterfaceDescriptorData* data) {
64 Register registers[] = {r3, r4, r5}; 64 Register registers[] = {r3, r4, r5};
65 data->InitializePlatformSpecific(arraysize(registers), registers); 65 data->InitializePlatformSpecific(arraysize(registers), registers);
66 } 66 }
67 67
68 void FastNewRestParameterDescriptor::InitializePlatformSpecific(
69 CallInterfaceDescriptorData* data) {
70 Register registers[] = {r3};
71 data->InitializePlatformSpecific(arraysize(registers), registers);
72 }
73
74 void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific(
75 CallInterfaceDescriptorData* data) {
76 Register registers[] = {r3};
77 data->InitializePlatformSpecific(arraysize(registers), registers);
78 }
79
80 void FastNewStrictArgumentsDescriptor::InitializePlatformSpecific(
81 CallInterfaceDescriptorData* data) {
82 Register registers[] = {r3};
83 data->InitializePlatformSpecific(arraysize(registers), registers);
84 }
85
86 // static 68 // static
87 const Register TypeConversionDescriptor::ArgumentRegister() { return r2; } 69 const Register TypeConversionDescriptor::ArgumentRegister() { return r2; }
88 70
89 void TypeofDescriptor::InitializePlatformSpecific( 71 void TypeofDescriptor::InitializePlatformSpecific(
90 CallInterfaceDescriptorData* data) { 72 CallInterfaceDescriptorData* data) {
91 Register registers[] = {r5}; 73 Register registers[] = {r5};
92 data->InitializePlatformSpecific(arraysize(registers), registers); 74 data->InitializePlatformSpecific(arraysize(registers), registers);
93 } 75 }
94 76
95 void FastCloneRegExpDescriptor::InitializePlatformSpecific( 77 void FastCloneRegExpDescriptor::InitializePlatformSpecific(
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 Register registers[] = { 383 Register registers[] = {
402 r3, // loaded new FP 384 r3, // loaded new FP
403 }; 385 };
404 data->InitializePlatformSpecific(arraysize(registers), registers); 386 data->InitializePlatformSpecific(arraysize(registers), registers);
405 } 387 }
406 388
407 } // namespace internal 389 } // namespace internal
408 } // namespace v8 390 } // namespace v8
409 391
410 #endif // V8_TARGET_ARCH_S390 392 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/s390/code-stubs-s390.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698