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

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

Issue 2002143002: [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') | src/x64/interface-descriptors-x64.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 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 {
11 11
12 const Register CallInterfaceDescriptor::ContextRegister() { return cp; } 12 const Register CallInterfaceDescriptor::ContextRegister() { return cp; }
13 13
14 void CallInterfaceDescriptor::DefaultInitializePlatformSpecific(
15 CallInterfaceDescriptorData* data, int register_parameter_count) {
16 const Register default_stub_registers[] = {r2, r3, r4, r5, r6};
17 CHECK_LE(static_cast<size_t>(register_parameter_count),
18 arraysize(default_stub_registers));
19 data->InitializePlatformSpecific(register_parameter_count,
20 default_stub_registers);
21 }
22
14 const Register LoadDescriptor::ReceiverRegister() { return r3; } 23 const Register LoadDescriptor::ReceiverRegister() { return r3; }
15 const Register LoadDescriptor::NameRegister() { return r4; } 24 const Register LoadDescriptor::NameRegister() { return r4; }
16 const Register LoadDescriptor::SlotRegister() { return r2; } 25 const Register LoadDescriptor::SlotRegister() { return r2; }
17 26
18 const Register LoadWithVectorDescriptor::VectorRegister() { return r5; } 27 const Register LoadWithVectorDescriptor::VectorRegister() { return r5; }
19 28
20 const Register StoreDescriptor::ReceiverRegister() { return r3; } 29 const Register StoreDescriptor::ReceiverRegister() { return r3; }
21 const Register StoreDescriptor::NameRegister() { return r4; } 30 const Register StoreDescriptor::NameRegister() { return r4; }
22 const Register StoreDescriptor::ValueRegister() { return r2; } 31 const Register StoreDescriptor::ValueRegister() { return r2; }
23 32
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 r3, // the JSGeneratorObject to resume 384 r3, // the JSGeneratorObject to resume
376 r4 // the resume mode (tagged) 385 r4 // the resume mode (tagged)
377 }; 386 };
378 data->InitializePlatformSpecific(arraysize(registers), registers); 387 data->InitializePlatformSpecific(arraysize(registers), registers);
379 } 388 }
380 389
381 } // namespace internal 390 } // namespace internal
382 } // namespace v8 391 } // namespace v8
383 392
384 #endif // V8_TARGET_ARCH_S390 393 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698