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

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

Issue 2601243003: PPC/s390: [stubs] Port FastNewObjectStub to TF (Closed)
Patch Set: Created 3 years, 11 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[] = {r4}; 64 Register registers[] = {r4};
65 data->InitializePlatformSpecific(arraysize(registers), registers); 65 data->InitializePlatformSpecific(arraysize(registers), registers);
66 } 66 }
67 67
68 void FastNewObjectDescriptor::InitializePlatformSpecific(
69 CallInterfaceDescriptorData* data) {
70 Register registers[] = {r3, r5};
71 data->InitializePlatformSpecific(arraysize(registers), registers);
72 }
73
74 void FastNewRestParameterDescriptor::InitializePlatformSpecific( 68 void FastNewRestParameterDescriptor::InitializePlatformSpecific(
75 CallInterfaceDescriptorData* data) { 69 CallInterfaceDescriptorData* data) {
76 Register registers[] = {r3}; 70 Register registers[] = {r3};
77 data->InitializePlatformSpecific(arraysize(registers), registers); 71 data->InitializePlatformSpecific(arraysize(registers), registers);
78 } 72 }
79 73
80 void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific( 74 void FastNewSloppyArgumentsDescriptor::InitializePlatformSpecific(
81 CallInterfaceDescriptorData* data) { 75 CallInterfaceDescriptorData* data) {
82 Register registers[] = {r3}; 76 Register registers[] = {r3};
83 data->InitializePlatformSpecific(arraysize(registers), registers); 77 data->InitializePlatformSpecific(arraysize(registers), registers);
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 r3, // the JSGeneratorObject to resume 378 r3, // the JSGeneratorObject to resume
385 r4 // the resume mode (tagged) 379 r4 // the resume mode (tagged)
386 }; 380 };
387 data->InitializePlatformSpecific(arraysize(registers), registers); 381 data->InitializePlatformSpecific(arraysize(registers), registers);
388 } 382 }
389 383
390 } // namespace internal 384 } // namespace internal
391 } // namespace v8 385 } // namespace v8
392 386
393 #endif // V8_TARGET_ARCH_S390 387 #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