OLD | NEW |
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } | 58 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } |
59 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } | 59 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } |
60 | 60 |
61 void FastNewClosureDescriptor::InitializePlatformSpecific( | 61 void FastNewClosureDescriptor::InitializePlatformSpecific( |
62 CallInterfaceDescriptorData* data) { | 62 CallInterfaceDescriptorData* data) { |
63 Register registers[] = {r4}; | 63 Register registers[] = {r4}; |
64 data->InitializePlatformSpecific(arraysize(registers), registers); | 64 data->InitializePlatformSpecific(arraysize(registers), registers); |
65 } | 65 } |
66 | 66 |
67 void FastNewContextDescriptor::InitializePlatformSpecific( | 67 void FastNewFunctionContextDescriptor::InitializePlatformSpecific( |
68 CallInterfaceDescriptorData* data) { | 68 CallInterfaceDescriptorData* data) { |
69 Register registers[] = {r3}; | 69 Register registers[] = {r3}; |
70 data->InitializePlatformSpecific(arraysize(registers), registers); | 70 data->InitializePlatformSpecific(arraysize(registers), registers); |
71 } | 71 } |
72 | 72 |
73 void FastNewObjectDescriptor::InitializePlatformSpecific( | 73 void FastNewObjectDescriptor::InitializePlatformSpecific( |
74 CallInterfaceDescriptorData* data) { | 74 CallInterfaceDescriptorData* data) { |
75 Register registers[] = {r3, r5}; | 75 Register registers[] = {r3, r5}; |
76 data->InitializePlatformSpecific(arraysize(registers), registers); | 76 data->InitializePlatformSpecific(arraysize(registers), registers); |
77 } | 77 } |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 r3, // the JSGeneratorObject to resume | 372 r3, // the JSGeneratorObject to resume |
373 r4 // the resume mode (tagged) | 373 r4 // the resume mode (tagged) |
374 }; | 374 }; |
375 data->InitializePlatformSpecific(arraysize(registers), registers); | 375 data->InitializePlatformSpecific(arraysize(registers), registers); |
376 } | 376 } |
377 | 377 |
378 } // namespace internal | 378 } // namespace internal |
379 } // namespace v8 | 379 } // namespace v8 |
380 | 380 |
381 #endif // V8_TARGET_ARCH_S390 | 381 #endif // V8_TARGET_ARCH_S390 |
OLD | NEW |